## Contexto Una empresa con sede en Carolina del Norte que se
especializa en la gestión de reclamaciones de compensación laboral busca
orientación sobre cómo utilizar análisis de datos para identificar los
principales factores de costo y agilizar los tiempos de procesamiento de
reclamaciones. Con el fin de mejorar la eficiencia y capacidad de
respuesta a los reclamantes, se realizó una base de datos donde detalles
de cada reclamo están documentados. Estos detalles se actualizan
continuamente a medida que se desembolsan los pagos para resolver el
reclamo, cubriendo diversas actividades como visitas al médico y gastos
de farmacia.
# Importar y juntar bases
transactions <- read.csv("C:\\Users\\HUAWEI\\Downloads\\TransactionsSummary2018.csv")
claims <- read.csv("C:\\Users\\HUAWEI\\OneDrive\\Documentos\\Análisis de Datos\\Modulo 4\\ClaimsData2018.csv")
bd <- merge(transactions, claims, by = "ClaimID", all = TRUE)
# Filtrar por "Claim Status: Closed"
db <- subset(bd, ClaimStatus == "C")
# Instalar Librerías
# instal.packages("dyplr")
library(dplyr)##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
# install.packages("rpart")
library(rpart)
# install.packages("rpart.plot")
library(rpart.plot)
# install.packages("ggplot2")
library(ggplot2)
# install.packages("factoextra")
library(factoextra)## Welcome! Want to learn more? See two factoextra-related books at https://goo.gl/ve3WBa
##
## Attaching package: 'data.table'
## The following objects are masked from 'package:dplyr':
##
## between, first, last
## ClaimID BillReviewALE Hospital PhysicianOutpatient
## Min. : 650915 Min. : -456.00 Min. : -12570.4 Min. : -549.5
## 1st Qu.: 810172 1st Qu.: 8.25 1st Qu.: 203.3 1st Qu.: 107.5
## Median : 843096 Median : 24.00 Median : 582.2 Median : 223.2
## Mean : 9305101 Mean : 189.62 Mean : 4787.0 Mean : 1768.7
## 3rd Qu.:22714408 3rd Qu.: 65.30 3rd Qu.: 2306.3 3rd Qu.: 691.0
## Max. :62203889 Max. :56475.30 Max. :2759604.0 Max. :1481468.5
## NA's :105335 NA's :108592 NA's :77786
## Rx TotalPaid TotalReserves TotalRecovery
## Min. : -469.5 Min. : -270.3 Min. :0 Min. : 0.0
## 1st Qu.: 22.7 1st Qu.: 57.0 1st Qu.:0 1st Qu.: 0.0
## Median : 60.0 Median : 224.9 Median :0 Median : 0.0
## Mean : 1455.1 Mean : 4139.0 Mean :0 Mean : 59.5
## 3rd Qu.: 179.2 3rd Qu.: 822.8 3rd Qu.:0 3rd Qu.: 0.0
## Max. :631635.5 Max. :1758919.5 Max. :0 Max. :130335.8
## NA's :109749
## IndemnityPaid OtherPaid ClaimStatus IncidentDate
## Min. : -475 Min. : -7820.5 Length:129318 Length:129318
## 1st Qu.: 0 1st Qu.: 54.6 Class :character Class :character
## Median : 0 Median : 220.6 Mode :character Mode :character
## Mean : 1915 Mean : 2224.0
## 3rd Qu.: 0 3rd Qu.: 757.0
## Max. :640732 Max. :1602337.1
##
## IncidentDescription ReturnToWorkDate AverageWeeklyWage ClaimantOpenedDate
## Length:129318 Length:129318 Length:129318 Length:129318
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
##
##
##
##
## ClaimantClosedDate EmployerNotificationDate ReceivedDate
## Length:129318 Length:129318 Length:129318
## Class :character Class :character Class :character
## Mode :character Mode :character Mode :character
##
##
##
##
## IsDenied ClaimantAge_at_DOI Gender ClaimantType
## Min. :0.00000 Length:129318 Length:129318 Length:129318
## 1st Qu.:0.00000 Class :character Class :character Class :character
## Median :0.00000 Mode :character Mode :character Mode :character
## Mean :0.04495
## 3rd Qu.:0.00000
## Max. :1.00000
##
## InjuryNature BodyPartRegion BodyPart X
## Length:129318 Length:129318 Length:129318 Mode:logical
## Class :character Class :character Class :character NA's:129318
## Mode :character Mode :character Mode :character
##
##
##
##
## X.1 X.2 X.3 X.4 X.5
## Mode:logical Mode:logical Mode:logical Mode:logical Mode:logical
## NA's:129318 NA's:129318 NA's:129318 NA's:129318 NA's:129318
##
##
##
##
##
## X.6 X.7 X.8 X.9 X.10
## Mode:logical Mode:logical Mode:logical Mode:logical Mode:logical
## NA's:129318 NA's:129318 NA's:129318 NA's:129318 NA's:129318
##
##
##
##
##
## X.11 X.12 X.13 X.14 X.15
## Mode:logical Mode:logical Mode:logical Mode:logical Mode:logical
## NA's:129318 NA's:129318 NA's:129318 NA's:129318 NA's:129318
##
##
##
##
##
## X.16 X.17 X.18 X.19 X.20
## Mode:logical Mode:logical Mode:logical Mode:logical Mode:logical
## NA's:129318 NA's:129318 NA's:129318 NA's:129318 NA's:129318
##
##
##
##
##
## X.21 X.22
## Mode:logical Mode:logical
## NA's:129318 NA's:129318
##
##
##
##
##
## ClaimID n
## 1 650915 1
## 2 650916 1
## 3 650917 1
## 4 650918 1
## 5 650919 1
## 6 650920 1
## 7 650928 1
## 8 650929 1
## 9 777624 1
## 10 777625 1
## 11 777626 1
## 12 777627 1
## 13 777628 1
## 14 777629 1
## 15 777630 1
## 16 777631 1
## 17 777632 1
## 18 777633 1
## 19 777634 1
## 20 777635 1
## 21 777636 1
## 22 777637 1
## 23 777638 1
## 24 777639 1
## 25 777640 1
## 26 777641 1
## 27 777642 1
## 28 777643 1
## 29 777644 1
## 30 777645 1
## 31 777646 1
## 32 777647 1
## 33 777648 1
## 34 777649 1
## 35 777650 1
## 36 777651 1
## 37 777652 1
## 38 777653 1
## 39 777654 1
## 40 777655 1
## 41 777656 1
## 42 777657 1
## 43 777658 1
## 44 777659 1
## 45 777660 1
## 46 777661 1
## 47 777662 1
## 48 777663 1
## 49 777664 1
## 50 777665 1
## 51 777666 1
## 52 777667 1
## 53 777668 1
## 54 777669 1
## 55 777670 1
## 56 777671 1
## 57 777672 1
## 58 777673 1
## 59 777674 1
## 60 777675 1
## 61 777676 1
## 62 777677 1
## 63 777678 1
## 64 777679 1
## 65 777680 1
## 66 777681 1
## 67 777682 1
## 68 777683 1
## 69 777684 1
## 70 777685 1
## 71 777686 1
## 72 777687 1
## 73 777688 1
## 74 777689 1
## 75 777690 1
## 76 777691 1
## 77 777692 1
## 78 777693 1
## 79 777694 1
## 80 777695 1
## 81 777696 1
## 82 777697 1
## 83 777698 1
## 84 777699 1
## 85 777700 1
## 86 777701 1
## 87 777702 1
## 88 777703 1
## 89 777704 1
## 90 777705 1
## 91 777706 1
## 92 777707 1
## 93 777708 1
## 94 777709 1
## 95 777710 1
## 96 777711 1
## 97 777712 1
## 98 777713 1
## 99 777714 1
## 100 777715 1
## 101 777716 1
## 102 777717 1
## 103 777718 1
## 104 777719 1
## 105 777720 1
## 106 777721 1
## 107 777722 1
## 108 777723 1
## 109 777724 1
## 110 777725 1
## 111 777726 1
## 112 777727 1
## 113 777728 1
## 114 777729 1
## 115 777730 1
## 116 777731 1
## 117 777732 1
## 118 777733 1
## 119 777734 1
## 120 777735 1
## 121 777736 1
## 122 777737 1
## 123 777738 1
## 124 777739 1
## 125 777740 1
## 126 777741 1
## 127 777742 1
## 128 777743 1
## 129 777744 1
## 130 777745 1
## 131 777746 1
## 132 777747 1
## 133 777748 1
## 134 777749 1
## 135 777750 1
## 136 777751 1
## 137 777752 1
## 138 777753 1
## 139 777754 1
## 140 777755 1
## 141 777756 1
## 142 777757 1
## 143 777758 1
## 144 777759 1
## 145 777760 1
## 146 777761 1
## 147 777762 1
## 148 777763 1
## 149 777764 1
## 150 777765 1
## 151 777766 1
## 152 777767 1
## 153 777768 1
## 154 777769 1
## 155 777770 1
## 156 777771 1
## 157 777772 1
## 158 777773 1
## 159 777774 1
## 160 777775 1
## 161 777776 1
## 162 777777 1
## 163 777778 1
## 164 777779 1
## 165 777780 1
## 166 777781 1
## 167 777782 1
## 168 777783 1
## 169 777784 1
## 170 777785 1
## 171 777786 1
## 172 777787 1
## 173 777788 1
## 174 777789 1
## 175 777790 1
## 176 777791 1
## 177 777792 1
## 178 777793 1
## 179 777794 1
## 180 777795 1
## 181 777796 1
## 182 777797 1
## 183 777798 1
## 184 777799 1
## 185 777800 1
## 186 777801 1
## 187 777802 1
## 188 777803 1
## 189 777804 1
## 190 777805 1
## 191 777806 1
## 192 777807 1
## 193 777808 1
## 194 777809 1
## 195 777810 1
## 196 777811 1
## 197 777812 1
## 198 777813 1
## 199 777814 1
## 200 777815 1
## 201 777816 1
## 202 777817 1
## 203 777818 1
## 204 777819 1
## 205 777820 1
## 206 777821 1
## 207 777822 1
## 208 777823 1
## 209 777824 1
## 210 777825 1
## 211 777826 1
## 212 777827 1
## 213 777828 1
## 214 777829 1
## 215 777830 1
## 216 777831 1
## 217 777832 1
## 218 777833 1
## 219 777834 1
## 220 777835 1
## 221 777836 1
## 222 777837 1
## 223 777838 1
## 224 777839 1
## 225 777840 1
## 226 777841 1
## 227 777842 1
## 228 777843 1
## 229 777844 1
## 230 777845 1
## 231 777846 1
## 232 777847 1
## 233 777848 1
## 234 777849 1
## 235 777850 1
## 236 777851 1
## 237 777852 1
## 238 777853 1
## 239 777862 1
## 240 777863 1
## 241 777864 1
## 242 777865 1
## 243 777866 1
## 244 777867 1
## 245 777868 1
## 246 777869 1
## 247 777870 1
## 248 777871 1
## 249 777872 1
## 250 777873 1
## 251 777874 1
## 252 777875 1
## 253 777876 1
## 254 777877 1
## 255 777878 1
## 256 777879 1
## 257 777880 1
## 258 777881 1
## 259 777882 1
## 260 777883 1
## 261 777884 1
## 262 777885 1
## 263 777886 1
## 264 777887 1
## 265 777888 1
## 266 777889 1
## 267 777890 1
## 268 777891 1
## 269 777892 1
## 270 777893 1
## 271 777894 1
## 272 777895 1
## 273 777896 1
## 274 777897 1
## 275 777898 1
## 276 777899 1
## 277 777900 1
## 278 777901 1
## 279 777902 1
## 280 777903 1
## 281 777904 1
## 282 777905 1
## 283 777906 1
## 284 777907 1
## 285 777908 1
## 286 777909 1
## 287 777910 1
## 288 777911 1
## 289 777912 1
## 290 777913 1
## 291 777914 1
## 292 777915 1
## 293 777916 1
## 294 777917 1
## 295 777918 1
## 296 777919 1
## 297 777920 1
## 298 777921 1
## 299 777922 1
## 300 777923 1
## 301 777924 1
## 302 777925 1
## 303 777926 1
## 304 777927 1
## 305 777928 1
## 306 777929 1
## 307 777930 1
## 308 777931 1
## 309 777932 1
## 310 777933 1
## 311 777934 1
## 312 777935 1
## 313 777936 1
## 314 777937 1
## 315 777938 1
## 316 777939 1
## 317 777940 1
## 318 777941 1
## 319 777942 1
## 320 777943 1
## 321 777944 1
## 322 777945 1
## 323 777946 1
## 324 777947 1
## 325 777948 1
## 326 777949 1
## 327 777950 1
## 328 777951 1
## 329 777952 1
## 330 777953 1
## 331 777954 1
## 332 777955 1
## 333 777956 1
## 334 777957 1
## 335 777958 1
## 336 777959 1
## 337 777960 1
## 338 777961 1
## 339 777962 1
## 340 777963 1
## 341 777964 1
## 342 777965 1
## 343 777966 1
## 344 777967 1
## 345 777968 1
## 346 777969 1
## 347 777970 1
## 348 777971 1
## 349 777972 1
## 350 777973 1
## 351 777974 1
## 352 777975 1
## 353 777976 1
## 354 777977 1
## 355 777978 1
## 356 777979 1
## 357 777980 1
## 358 777981 1
## 359 777982 1
## 360 777983 1
## 361 777984 1
## 362 777985 1
## 363 777986 1
## 364 777988 1
## 365 777989 1
## 366 777990 1
## 367 777991 1
## 368 777992 1
## 369 777993 1
## 370 777994 1
## 371 777995 1
## 372 777996 1
## 373 777997 1
## 374 777998 1
## 375 777999 1
## 376 778000 1
## 377 778001 1
## 378 778002 1
## 379 778003 1
## 380 778004 1
## 381 778005 1
## 382 778006 1
## 383 778007 1
## 384 778008 1
## 385 778009 1
## 386 778010 1
## 387 778011 1
## 388 778012 1
## 389 778013 1
## 390 778014 1
## 391 778015 1
## 392 778016 1
## 393 778017 1
## 394 778018 1
## 395 778019 1
## 396 778020 1
## 397 778021 1
## 398 778022 1
## 399 778023 1
## 400 778024 1
## 401 778025 1
## 402 778026 1
## 403 778027 1
## 404 778028 1
## 405 778029 1
## 406 778030 1
## 407 778031 1
## 408 778032 1
## 409 778033 1
## 410 778034 1
## 411 778035 1
## 412 778036 1
## 413 778037 1
## 414 778038 1
## 415 778039 1
## 416 778040 1
## 417 778041 1
## 418 778042 1
## 419 778043 1
## 420 778044 1
## 421 778045 1
## 422 778046 1
## 423 778047 1
## 424 778048 1
## 425 778049 1
## 426 778050 1
## 427 778051 1
## 428 778052 1
## 429 778053 1
## 430 778054 1
## 431 778055 1
## 432 778056 1
## 433 778057 1
## 434 778058 1
## 435 778059 1
## 436 778060 1
## 437 778061 1
## 438 778062 1
## 439 778063 1
## 440 778064 1
## 441 778065 1
## 442 778066 1
## 443 778067 1
## 444 778068 1
## 445 778069 1
## 446 778070 1
## 447 778071 1
## 448 778072 1
## 449 778073 1
## 450 778074 1
## 451 778075 1
## 452 778076 1
## 453 778077 1
## 454 778078 1
## 455 778079 1
## 456 778080 1
## 457 778081 1
## 458 778082 1
## 459 778083 1
## 460 778084 1
## 461 778085 1
## 462 778086 1
## 463 778087 1
## 464 778088 1
## 465 778089 1
## 466 778090 1
## 467 778091 1
## 468 778092 1
## 469 778093 1
## 470 778094 1
## 471 778095 1
## 472 778096 1
## 473 778097 1
## 474 778098 1
## 475 778099 1
## 476 778100 1
## 477 778101 1
## 478 778102 1
## 479 778103 1
## 480 778104 1
## 481 778105 1
## 482 778106 1
## 483 778107 1
## 484 778108 1
## 485 778109 1
## 486 778110 1
## 487 778111 1
## 488 778112 1
## 489 778113 1
## 490 778114 1
## 491 778115 1
## 492 778116 1
## 493 778117 1
## 494 778118 1
## 495 778119 1
## 496 778120 1
## 497 778121 1
## 498 778122 1
## 499 778123 1
## 500 778124 1
## 501 778125 1
## 502 778126 1
## 503 778127 1
## 504 778128 1
## 505 778129 1
## 506 778130 1
## 507 778131 1
## 508 778132 1
## 509 778133 1
## 510 778134 1
## 511 778135 1
## 512 778136 1
## 513 778137 1
## 514 778138 1
## 515 778139 1
## 516 778140 1
## 517 778141 1
## 518 778142 1
## 519 778143 1
## 520 778144 1
## 521 778145 1
## 522 778146 1
## 523 778147 1
## 524 778148 1
## 525 778149 1
## 526 778150 1
## 527 778151 1
## 528 778152 1
## 529 778153 1
## 530 778154 1
## 531 778155 1
## 532 778156 1
## 533 778157 1
## 534 778158 1
## 535 778159 1
## 536 778160 1
## 537 778161 1
## 538 778162 1
## 539 778163 1
## 540 778164 1
## 541 778165 1
## 542 778166 1
## 543 778167 1
## 544 778168 1
## 545 778169 1
## 546 778170 1
## 547 778171 1
## 548 778172 1
## 549 778173 1
## 550 778174 1
## 551 778175 1
## 552 778176 1
## 553 778177 1
## 554 778178 1
## 555 778179 1
## 556 778180 1
## 557 778181 1
## 558 778182 1
## 559 778183 1
## 560 778184 1
## 561 778185 1
## 562 778186 1
## 563 778187 1
## 564 778188 1
## 565 778189 1
## 566 778190 1
## 567 778191 1
## 568 778192 1
## 569 778193 1
## 570 778194 1
## 571 778195 1
## 572 778196 1
## 573 778197 1
## 574 778198 1
## 575 778199 1
## 576 778200 1
## 577 778201 1
## 578 778202 1
## 579 778203 1
## 580 778204 1
## 581 778205 1
## 582 778206 1
## 583 778207 1
## 584 778208 1
## 585 778209 1
## 586 778210 1
## 587 778211 1
## 588 778212 1
## 589 778213 1
## 590 778214 1
## 591 778215 1
## 592 778216 1
## 593 778217 1
## 594 778218 1
## 595 778219 1
## 596 778220 1
## 597 778221 1
## 598 778222 1
## 599 778223 1
## 600 778224 1
## 601 778225 1
## 602 778226 1
## 603 778227 1
## 604 778228 1
## 605 778229 1
## 606 778230 1
## 607 778231 1
## 608 778232 1
## 609 778233 1
## 610 778234 1
## 611 778235 1
## 612 778236 1
## 613 778237 1
## 614 778238 1
## 615 778239 1
## 616 778240 1
## 617 778241 1
## 618 778242 1
## 619 778243 1
## 620 778244 1
## 621 778245 1
## 622 778246 1
## 623 778247 1
## 624 778248 1
## 625 778249 1
## 626 778250 1
## 627 778251 1
## 628 778252 1
## 629 778253 1
## 630 778254 1
## 631 778255 1
## 632 778256 1
## 633 778257 1
## 634 778258 1
## 635 778259 1
## 636 778260 1
## 637 778261 1
## 638 778262 1
## 639 778263 1
## 640 778264 1
## 641 778265 1
## 642 778266 1
## 643 778267 1
## 644 778268 1
## 645 778269 1
## 646 778270 1
## 647 778271 1
## 648 778272 1
## 649 778273 1
## 650 778274 1
## 651 778275 1
## 652 778276 1
## 653 778277 1
## 654 778278 1
## 655 778279 1
## 656 778280 1
## 657 778281 1
## 658 778282 1
## 659 778283 1
## 660 778284 1
## 661 778285 1
## 662 778286 1
## 663 778287 1
## 664 778288 1
## 665 778289 1
## 666 778290 1
## 667 778291 1
## 668 778292 1
## 669 778293 1
## 670 778294 1
## 671 778295 1
## 672 778296 1
## 673 778297 1
## 674 778298 1
## 675 778299 1
## 676 778300 1
## 677 778301 1
## 678 778302 1
## 679 778303 1
## 680 778304 1
## 681 778305 1
## 682 778306 1
## 683 778307 1
## 684 778308 1
## 685 778309 1
## 686 778310 1
## 687 778311 1
## 688 778312 1
## 689 778313 1
## 690 778314 1
## 691 778315 1
## 692 778316 1
## 693 778317 1
## 694 778318 1
## 695 778319 1
## 696 778320 1
## 697 778321 1
## 698 778322 1
## 699 778323 1
## 700 778324 1
## 701 778325 1
## 702 778326 1
## 703 778327 1
## 704 778328 1
## 705 778329 1
## 706 778330 1
## 707 778331 1
## 708 778332 1
## 709 778333 1
## 710 778334 1
## 711 778335 1
## 712 778336 1
## 713 778337 1
## 714 778338 1
## 715 778339 1
## 716 778340 1
## 717 778341 1
## 718 778342 1
## 719 778343 1
## 720 778344 1
## 721 778345 1
## 722 778346 1
## 723 778347 1
## 724 778348 1
## 725 778349 1
## 726 778350 1
## 727 778351 1
## 728 778352 1
## 729 778353 1
## 730 778354 1
## 731 778355 1
## 732 778356 1
## 733 778357 1
## 734 778358 1
## 735 778359 1
## 736 778360 1
## 737 778361 1
## 738 778362 1
## 739 778363 1
## 740 778364 1
## 741 778365 1
## 742 778366 1
## 743 778367 1
## 744 778368 1
## 745 778369 1
## 746 778370 1
## 747 778371 1
## 748 778372 1
## 749 778373 1
## 750 778374 1
## 751 778375 1
## 752 778376 1
## 753 778377 1
## 754 778378 1
## 755 778379 1
## 756 778380 1
## 757 778381 1
## 758 778382 1
## 759 778383 1
## 760 778384 1
## 761 778385 1
## 762 778386 1
## 763 778387 1
## 764 778388 1
## 765 778389 1
## 766 778390 1
## 767 778391 1
## 768 778392 1
## 769 778393 1
## 770 778394 1
## 771 778395 1
## 772 778396 1
## 773 778397 1
## 774 778398 1
## 775 778399 1
## 776 778400 1
## 777 778401 1
## 778 778402 1
## 779 778403 1
## 780 778404 1
## 781 778405 1
## 782 778406 1
## 783 778407 1
## 784 778408 1
## 785 778409 1
## 786 778410 1
## 787 778411 1
## 788 778412 1
## 789 778413 1
## 790 778414 1
## 791 778415 1
## 792 778416 1
## 793 778417 1
## 794 778418 1
## 795 778419 1
## 796 778420 1
## 797 778421 1
## 798 778422 1
## 799 778423 1
## 800 778424 1
## 801 778425 1
## 802 778426 1
## 803 778427 1
## 804 778428 1
## 805 778429 1
## 806 778430 1
## 807 778431 1
## 808 778432 1
## 809 778433 1
## 810 778434 1
## 811 778435 1
## 812 778436 1
## 813 778437 1
## 814 778438 1
## 815 778439 1
## 816 778440 1
## 817 778441 1
## 818 778442 1
## 819 778443 1
## 820 778444 1
## 821 778445 1
## 822 778446 1
## 823 778447 1
## 824 778448 1
## 825 778449 1
## 826 778450 1
## 827 778451 1
## 828 778452 1
## 829 778453 1
## 830 778454 1
## 831 778455 1
## 832 778456 1
## 833 778457 1
## 834 778458 1
## 835 778459 1
## 836 778460 1
## 837 778461 1
## 838 778462 1
## 839 778463 1
## 840 778464 1
## 841 778465 1
## 842 778466 1
## 843 778467 1
## 844 778468 1
## 845 778469 1
## 846 778470 1
## 847 778471 1
## 848 778472 1
## 849 778473 1
## 850 778474 1
## 851 778475 1
## 852 778476 1
## 853 778477 1
## 854 778478 1
## 855 778479 1
## 856 778480 1
## 857 778481 1
## 858 778482 1
## 859 778483 1
## 860 778484 1
## 861 778485 1
## 862 778486 1
## 863 778487 1
## 864 778488 1
## 865 778489 1
## 866 778490 1
## 867 778491 1
## 868 778492 1
## 869 778493 1
## 870 778494 1
## 871 778495 1
## 872 778496 1
## 873 778497 1
## 874 778498 1
## 875 778499 1
## 876 778500 1
## 877 778501 1
## 878 778502 1
## 879 778503 1
## 880 778504 1
## 881 778505 1
## 882 778506 1
## 883 778507 1
## 884 778508 1
## 885 778509 1
## 886 778510 1
## 887 778511 1
## 888 778512 1
## 889 778513 1
## 890 778514 1
## 891 778515 1
## 892 778516 1
## 893 778517 1
## 894 778518 1
## 895 778519 1
## 896 778520 1
## 897 778521 1
## 898 778522 1
## 899 778523 1
## 900 778524 1
## 901 778525 1
## 902 778526 1
## 903 778527 1
## 904 778528 1
## 905 778529 1
## 906 778530 1
## 907 778531 1
## 908 778532 1
## 909 778533 1
## 910 778534 1
## 911 778535 1
## 912 778536 1
## 913 778537 1
## 914 778538 1
## 915 778539 1
## 916 778540 1
## 917 778541 1
## 918 778542 1
## 919 778543 1
## 920 778544 1
## 921 778545 1
## 922 778546 1
## 923 778547 1
## 924 778548 1
## 925 778549 1
## 926 778550 1
## 927 778551 1
## 928 778552 1
## 929 778553 1
## 930 778554 1
## 931 778555 1
## 932 778556 1
## 933 778557 1
## 934 778558 1
## 935 778559 1
## 936 778560 1
## 937 778561 1
## 938 778562 1
## 939 778563 1
## 940 778564 1
## 941 778565 1
## 942 778566 1
## 943 778567 1
## 944 778568 1
## 945 778569 1
## 946 778570 1
## 947 778571 1
## 948 778572 1
## 949 778573 1
## 950 778574 1
## 951 778575 1
## 952 778576 1
## 953 778577 1
## 954 778578 1
## 955 778579 1
## 956 778580 1
## 957 778581 1
## 958 778582 1
## 959 778583 1
## 960 778584 1
## 961 778585 1
## 962 778586 1
## 963 778587 1
## 964 778588 1
## 965 778589 1
## 966 778590 1
## 967 778591 1
## 968 778592 1
## 969 778593 1
## 970 778594 1
## 971 778595 1
## 972 778596 1
## 973 778597 1
## 974 778598 1
## 975 778599 1
## 976 778600 1
## 977 778601 1
## 978 778602 1
## 979 778603 1
## 980 778604 1
## 981 778605 1
## 982 778606 1
## 983 778607 1
## 984 778608 1
## 985 778609 1
## 986 778610 1
## 987 778611 1
## 988 778612 1
## 989 778613 1
## 990 778614 1
## 991 778615 1
## 992 778616 1
## 993 778617 1
## 994 778618 1
## 995 778619 1
## 996 778620 1
## 997 778621 1
## 998 778622 1
## 999 778623 1
## 1000 778624 1
## 1001 778625 1
## 1002 778626 1
## 1003 778627 1
## 1004 778628 1
## 1005 778629 1
## 1006 778630 1
## 1007 778631 1
## 1008 778632 1
## 1009 778633 1
## 1010 778634 1
## 1011 778635 1
## 1012 778636 1
## 1013 778637 1
## 1014 778638 1
## 1015 778639 1
## 1016 778640 1
## 1017 778641 1
## 1018 778642 1
## 1019 778643 1
## 1020 778644 1
## 1021 778645 1
## 1022 778646 1
## 1023 778647 1
## 1024 778648 1
## 1025 778649 1
## 1026 778650 1
## 1027 778651 1
## 1028 778652 1
## 1029 778653 1
## 1030 778654 1
## 1031 778655 1
## 1032 778656 1
## 1033 778657 1
## 1034 778658 1
## 1035 778659 1
## 1036 778660 1
## 1037 778661 1
## 1038 778662 1
## 1039 778663 1
## 1040 778664 1
## 1041 778665 1
## 1042 778666 1
## 1043 778667 1
## 1044 778668 1
## 1045 778669 1
## 1046 778670 1
## 1047 778671 1
## 1048 778672 1
## 1049 778673 1
## 1050 778674 1
## 1051 778675 1
## 1052 778676 1
## 1053 778677 1
## 1054 778678 1
## 1055 778679 1
## 1056 778680 1
## 1057 778681 1
## 1058 778682 1
## 1059 778683 1
## 1060 778684 1
## 1061 778685 1
## 1062 778686 1
## 1063 778687 1
## 1064 778688 1
## 1065 778689 1
## 1066 778690 1
## 1067 778691 1
## 1068 778692 1
## 1069 778693 1
## 1070 778694 1
## 1071 778695 1
## 1072 778696 1
## 1073 778697 1
## 1074 778698 1
## 1075 778699 1
## 1076 778700 1
## 1077 778701 1
## 1078 778702 1
## 1079 778703 1
## 1080 778704 1
## 1081 778705 1
## 1082 778706 1
## 1083 778707 1
## 1084 778708 1
## 1085 778709 1
## 1086 778710 1
## 1087 778711 1
## 1088 778712 1
## 1089 778713 1
## 1090 778714 1
## 1091 778715 1
## 1092 778716 1
## 1093 778717 1
## 1094 778718 1
## 1095 778719 1
## 1096 778720 1
## 1097 778721 1
## 1098 778722 1
## 1099 778723 1
## 1100 778724 1
## 1101 778725 1
## 1102 778726 1
## 1103 778727 1
## 1104 778728 1
## 1105 778729 1
## 1106 778730 1
## 1107 778731 1
## 1108 778732 1
## 1109 778733 1
## 1110 778734 1
## 1111 778735 1
## 1112 778736 1
## 1113 778737 1
## 1114 778738 1
## 1115 778739 1
## 1116 778740 1
## 1117 778741 1
## 1118 778742 1
## 1119 778743 1
## 1120 778744 1
## 1121 778745 1
## 1122 778746 1
## 1123 778747 1
## 1124 778748 1
## 1125 778749 1
## 1126 778750 1
## 1127 778751 1
## 1128 778752 1
## 1129 778753 1
## 1130 778754 1
## 1131 778755 1
## 1132 778756 1
## 1133 778757 1
## 1134 778758 1
## 1135 778759 1
## 1136 778760 1
## 1137 778761 1
## 1138 778762 1
## 1139 778763 1
## 1140 778764 1
## 1141 778765 1
## 1142 778766 1
## 1143 778767 1
## 1144 778768 1
## 1145 778769 1
## 1146 778770 1
## 1147 778771 1
## 1148 778772 1
## 1149 778773 1
## 1150 778774 1
## 1151 778775 1
## 1152 778776 1
## 1153 778777 1
## 1154 778778 1
## 1155 778779 1
## 1156 778780 1
## 1157 778781 1
## 1158 778782 1
## 1159 778783 1
## 1160 778784 1
## 1161 778785 1
## 1162 778786 1
## 1163 778787 1
## 1164 778788 1
## 1165 778789 1
## 1166 778790 1
## 1167 778791 1
## 1168 778792 1
## 1169 778793 1
## 1170 778794 1
## 1171 778795 1
## 1172 778796 1
## 1173 778797 1
## 1174 778798 1
## 1175 778799 1
## 1176 778800 1
## 1177 778801 1
## 1178 778802 1
## 1179 778803 1
## 1180 778804 1
## 1181 778805 1
## 1182 778806 1
## 1183 778807 1
## 1184 778808 1
## 1185 778809 1
## 1186 778810 1
## 1187 778811 1
## 1188 778812 1
## 1189 778813 1
## 1190 778814 1
## 1191 778815 1
## 1192 778816 1
## 1193 778817 1
## 1194 778818 1
## 1195 778819 1
## 1196 778820 1
## 1197 778821 1
## 1198 778822 1
## 1199 778823 1
## 1200 778824 1
## 1201 778825 1
## 1202 778826 1
## 1203 778827 1
## 1204 778828 1
## 1205 778829 1
## 1206 778830 1
## 1207 778831 1
## 1208 778832 1
## 1209 778833 1
## 1210 778834 1
## 1211 778835 1
## 1212 778836 1
## 1213 778837 1
## 1214 778838 1
## 1215 778839 1
## 1216 778840 1
## 1217 778841 1
## 1218 778842 1
## 1219 778843 1
## 1220 778844 1
## 1221 778845 1
## 1222 778846 1
## 1223 778847 1
## 1224 778848 1
## 1225 778849 1
## 1226 778850 1
## 1227 778851 1
## 1228 778852 1
## 1229 778853 1
## 1230 778854 1
## 1231 778855 1
## 1232 778856 1
## 1233 778858 1
## 1234 778859 1
## 1235 778860 1
## 1236 778861 1
## 1237 778862 1
## 1238 778863 1
## 1239 778864 1
## 1240 778865 1
## 1241 778866 1
## 1242 778867 1
## 1243 778868 1
## 1244 778869 1
## 1245 778870 1
## 1246 778871 1
## 1247 778872 1
## 1248 778873 1
## 1249 778874 1
## 1250 778875 1
## 1251 778876 1
## 1252 778877 1
## 1253 778878 1
## 1254 778879 1
## 1255 778880 1
## 1256 778881 1
## 1257 778882 1
## 1258 778883 1
## 1259 778884 1
## 1260 778885 1
## 1261 778886 1
## 1262 778887 1
## 1263 778888 1
## 1264 778889 1
## 1265 778890 1
## 1266 778891 1
## 1267 778892 1
## 1268 778893 1
## 1269 778894 1
## 1270 778895 1
## 1271 778896 1
## 1272 778897 1
## 1273 778898 1
## 1274 778899 1
## 1275 778900 1
## 1276 778901 1
## 1277 778902 1
## 1278 778903 1
## 1279 778904 1
## 1280 778905 1
## 1281 778906 1
## 1282 778907 1
## 1283 778908 1
## 1284 778909 1
## 1285 778910 1
## 1286 778911 1
## 1287 778912 1
## 1288 778913 1
## 1289 778914 1
## 1290 778915 1
## 1291 778916 1
## 1292 778917 1
## 1293 778918 1
## 1294 778919 1
## 1295 778920 1
## 1296 778921 1
## 1297 778922 1
## 1298 778923 1
## 1299 778924 1
## 1300 778925 1
## 1301 778926 1
## 1302 778927 1
## 1303 778928 1
## 1304 778929 1
## 1305 778930 1
## 1306 778931 1
## 1307 778932 1
## 1308 778933 1
## 1309 778934 1
## 1310 778935 1
## 1311 778936 1
## 1312 778937 1
## 1313 778938 1
## 1314 778939 1
## 1315 778940 1
## 1316 778941 1
## 1317 778942 1
## 1318 778943 1
## 1319 778944 1
## 1320 778945 1
## 1321 778946 1
## 1322 778947 1
## 1323 778948 1
## 1324 778949 1
## 1325 778950 1
## 1326 778951 1
## 1327 778952 1
## 1328 778953 1
## 1329 778954 1
## 1330 778955 1
## 1331 778956 1
## 1332 778957 1
## 1333 778958 1
## 1334 778959 1
## 1335 778960 1
## 1336 778961 1
## 1337 778962 1
## 1338 778963 1
## 1339 778964 1
## 1340 778965 1
## 1341 778966 1
## 1342 778967 1
## 1343 778968 1
## 1344 778969 1
## 1345 778970 1
## 1346 778971 1
## 1347 778972 1
## 1348 778973 1
## 1349 778974 1
## 1350 778975 1
## 1351 778976 1
## 1352 778977 1
## 1353 778978 1
## 1354 778979 1
## 1355 778980 1
## 1356 778981 1
## 1357 778982 1
## 1358 778983 1
## 1359 778984 1
## 1360 778985 1
## 1361 778986 1
## 1362 778987 1
## 1363 778988 1
## 1364 778989 1
## 1365 778990 1
## 1366 778991 1
## 1367 778992 1
## 1368 778993 1
## 1369 778994 1
## 1370 778995 1
## 1371 778996 1
## 1372 778997 1
## 1373 778998 1
## 1374 778999 1
## 1375 779000 1
## 1376 779001 1
## 1377 779002 1
## 1378 779003 1
## 1379 779004 1
## 1380 779005 1
## 1381 779006 1
## 1382 779007 1
## 1383 779008 1
## 1384 779009 1
## 1385 779010 1
## 1386 779011 1
## 1387 779012 1
## 1388 779013 1
## 1389 779014 1
## 1390 779015 1
## 1391 779016 1
## 1392 779017 1
## 1393 779018 1
## 1394 779019 1
## 1395 779020 1
## 1396 779021 1
## 1397 779022 1
## 1398 779023 1
## 1399 779024 1
## 1400 779025 1
## 1401 779026 1
## 1402 779027 1
## 1403 779028 1
## 1404 779029 1
## 1405 779030 1
## 1406 779031 1
## 1407 779032 1
## 1408 779033 1
## 1409 779034 1
## 1410 779035 1
## 1411 779036 1
## 1412 779037 1
## 1413 779038 1
## 1414 779039 1
## 1415 779040 1
## 1416 779041 1
## 1417 779042 1
## 1418 779043 1
## 1419 779044 1
## 1420 779045 1
## 1421 779046 1
## 1422 779047 1
## 1423 779048 1
## 1424 779049 1
## 1425 779052 1
## 1426 779053 1
## 1427 779054 1
## 1428 779055 1
## 1429 779056 1
## 1430 779057 1
## 1431 779058 1
## 1432 779059 1
## 1433 779060 1
## 1434 779061 1
## 1435 779062 1
## 1436 779063 1
## 1437 779064 1
## 1438 779065 1
## 1439 779066 1
## 1440 779067 1
## 1441 779068 1
## 1442 779069 1
## 1443 779070 1
## 1444 779071 1
## 1445 779072 1
## 1446 779073 1
## 1447 779074 1
## 1448 779075 1
## 1449 779076 1
## 1450 779077 1
## 1451 779078 1
## 1452 779079 1
## 1453 779080 1
## 1454 779081 1
## 1455 779082 1
## 1456 779083 1
## 1457 779084 1
## 1458 779085 1
## 1459 779086 1
## 1460 779087 1
## 1461 779088 1
## 1462 779089 1
## 1463 779090 1
## 1464 779091 1
## 1465 779092 1
## 1466 779093 1
## 1467 779094 1
## 1468 779095 1
## 1469 779096 1
## 1470 779097 1
## 1471 779098 1
## 1472 779099 1
## 1473 779100 1
## 1474 779101 1
## 1475 779103 1
## 1476 779104 1
## 1477 779105 1
## 1478 779106 1
## 1479 779107 1
## 1480 779108 1
## 1481 779109 1
## 1482 779110 1
## 1483 779111 1
## 1484 779112 1
## 1485 779113 1
## 1486 779114 1
## 1487 779115 1
## 1488 779116 1
## 1489 779117 1
## 1490 779118 1
## 1491 779119 1
## 1492 779120 1
## 1493 779121 1
## 1494 779122 1
## 1495 779123 1
## 1496 779124 1
## 1497 779125 1
## 1498 779126 1
## 1499 779127 1
## 1500 779128 1
## 1501 779129 1
## 1502 779130 1
## 1503 779131 1
## 1504 779132 1
## 1505 779133 1
## 1506 779134 1
## 1507 779135 1
## 1508 779136 1
## 1509 779137 1
## 1510 779138 1
## 1511 779139 1
## 1512 779140 1
## 1513 779141 1
## 1514 779142 1
## 1515 779143 1
## 1516 779144 1
## 1517 779145 1
## 1518 779146 1
## 1519 779147 1
## 1520 779148 1
## 1521 779149 1
## 1522 779151 1
## 1523 779152 1
## 1524 779153 1
## 1525 779154 1
## 1526 779155 1
## 1527 779156 1
## 1528 779157 1
## 1529 779158 1
## 1530 779159 1
## 1531 779160 1
## 1532 779161 1
## 1533 779162 1
## 1534 779163 1
## 1535 779164 1
## 1536 779165 1
## 1537 779166 1
## 1538 779167 1
## 1539 779168 1
## 1540 779169 1
## 1541 779170 1
## 1542 779171 1
## 1543 779172 1
## 1544 779173 1
## 1545 779174 1
## 1546 779175 1
## 1547 779176 1
## 1548 779177 1
## 1549 779178 1
## 1550 779179 1
## 1551 779180 1
## 1552 779181 1
## 1553 779182 1
## 1554 779183 1
## 1555 779184 1
## 1556 779185 1
## 1557 779186 1
## 1558 779187 1
## 1559 779188 1
## 1560 779189 1
## 1561 779190 1
## 1562 779191 1
## 1563 779192 1
## 1564 779193 1
## 1565 779194 1
## 1566 779195 1
## 1567 779196 1
## 1568 779197 1
## 1569 779198 1
## 1570 779199 1
## 1571 779200 1
## 1572 779201 1
## 1573 779202 1
## 1574 779203 1
## 1575 779204 1
## 1576 779205 1
## 1577 779206 1
## 1578 779207 1
## 1579 779208 1
## 1580 779209 1
## 1581 779210 1
## 1582 779211 1
## 1583 779212 1
## 1584 779213 1
## 1585 779214 1
## 1586 779215 1
## 1587 779216 1
## 1588 779217 1
## 1589 779218 1
## 1590 779219 1
## 1591 779220 1
## 1592 779221 1
## 1593 779222 1
## 1594 779223 1
## 1595 779224 1
## 1596 779225 1
## 1597 779226 1
## 1598 779227 1
## 1599 779228 1
## 1600 779229 1
## 1601 779230 1
## 1602 779231 1
## 1603 779232 1
## 1604 779233 1
## 1605 779234 1
## 1606 779235 1
## 1607 779236 1
## 1608 779237 1
## 1609 779238 1
## 1610 779239 1
## 1611 779240 1
## 1612 779241 1
## 1613 779242 1
## 1614 779243 1
## 1615 779244 1
## 1616 779245 1
## 1617 779246 1
## 1618 779247 1
## 1619 779248 1
## 1620 779249 1
## 1621 779250 1
## 1622 779251 1
## 1623 779252 1
## 1624 779253 1
## 1625 779254 1
## 1626 779255 1
## 1627 779256 1
## 1628 779257 1
## 1629 779258 1
## 1630 779259 1
## 1631 779260 1
## 1632 779261 1
## 1633 779262 1
## 1634 779263 1
## 1635 779264 1
## 1636 779265 1
## 1637 779266 1
## 1638 779267 1
## 1639 779268 1
## 1640 779269 1
## 1641 779270 1
## 1642 779271 1
## 1643 779272 1
## 1644 779273 1
## 1645 779274 1
## 1646 779275 1
## 1647 779276 1
## 1648 779277 1
## 1649 779278 1
## 1650 779279 1
## 1651 779280 1
## 1652 779281 1
## 1653 779282 1
## 1654 779283 1
## 1655 779284 1
## 1656 779285 1
## 1657 779286 1
## 1658 779287 1
## 1659 779288 1
## 1660 779289 1
## 1661 779290 1
## 1662 779291 1
## 1663 779292 1
## 1664 779293 1
## 1665 779294 1
## 1666 779295 1
## 1667 779296 1
## 1668 779297 1
## 1669 779298 1
## 1670 779299 1
## 1671 779300 1
## 1672 779301 1
## 1673 779302 1
## 1674 779303 1
## 1675 779304 1
## 1676 779305 1
## 1677 779306 1
## 1678 779307 1
## 1679 779308 1
## 1680 779309 1
## 1681 779310 1
## 1682 779311 1
## 1683 779312 1
## 1684 779313 1
## 1685 779314 1
## 1686 779315 1
## 1687 779316 1
## 1688 779317 1
## 1689 779318 1
## 1690 779319 1
## 1691 779320 1
## 1692 779321 1
## 1693 779322 1
## 1694 779323 1
## 1695 779324 1
## 1696 779325 1
## 1697 779326 1
## 1698 779327 1
## 1699 779328 1
## 1700 779329 1
## 1701 779330 1
## 1702 779331 1
## 1703 779332 1
## 1704 779333 1
## 1705 779334 1
## 1706 779335 1
## 1707 779336 1
## 1708 779337 1
## 1709 779338 1
## 1710 779339 1
## 1711 779340 1
## 1712 779341 1
## 1713 779342 1
## 1714 779343 1
## 1715 779344 1
## 1716 779345 1
## 1717 779346 1
## 1718 779347 1
## 1719 779348 1
## 1720 779349 1
## 1721 779350 1
## 1722 779351 1
## 1723 779352 1
## 1724 779353 1
## 1725 779354 1
## 1726 779355 1
## 1727 779356 1
## 1728 779357 1
## 1729 779358 1
## 1730 779359 1
## 1731 779360 1
## 1732 779361 1
## 1733 779362 1
## 1734 779363 1
## 1735 779364 1
## 1736 779365 1
## 1737 779366 1
## 1738 779367 1
## 1739 779368 1
## 1740 779369 1
## 1741 779370 1
## 1742 779371 1
## 1743 779372 1
## 1744 779373 1
## 1745 779374 1
## 1746 779375 1
## 1747 779376 1
## 1748 779377 1
## 1749 779378 1
## 1750 779379 1
## 1751 779380 1
## 1752 779381 1
## 1753 779382 1
## 1754 779383 1
## 1755 779384 1
## 1756 779385 1
## 1757 779386 1
## 1758 779387 1
## 1759 779388 1
## 1760 779389 1
## 1761 779390 1
## 1762 779391 1
## 1763 779392 1
## 1764 779393 1
## 1765 779394 1
## 1766 779395 1
## 1767 779396 1
## 1768 779397 1
## 1769 779398 1
## 1770 779399 1
## 1771 779400 1
## 1772 779401 1
## 1773 779402 1
## 1774 779403 1
## 1775 779404 1
## 1776 779405 1
## 1777 779406 1
## 1778 779407 1
## 1779 779408 1
## 1780 779409 1
## 1781 779410 1
## 1782 779411 1
## 1783 779412 1
## 1784 779413 1
## 1785 779414 1
## 1786 779415 1
## 1787 779416 1
## 1788 779417 1
## 1789 779418 1
## 1790 779419 1
## 1791 779420 1
## 1792 779421 1
## 1793 779422 1
## 1794 779423 1
## 1795 779424 1
## 1796 779425 1
## 1797 779426 1
## 1798 779427 1
## 1799 779428 1
## 1800 779429 1
## 1801 779430 1
## 1802 779431 1
## 1803 779432 1
## 1804 779433 1
## 1805 779434 1
## 1806 779435 1
## 1807 779436 1
## 1808 779437 1
## 1809 779438 1
## 1810 779439 1
## 1811 779440 1
## 1812 779441 1
## 1813 779442 1
## 1814 779443 1
## 1815 779444 1
## 1816 779445 1
## 1817 779446 1
## 1818 779447 1
## 1819 779448 1
## 1820 779449 1
## 1821 779450 1
## 1822 779451 1
## 1823 779452 1
## 1824 779453 1
## 1825 779454 1
## 1826 779455 1
## 1827 779456 1
## 1828 779457 1
## 1829 779458 1
## 1830 779459 1
## 1831 779460 1
## 1832 779461 1
## 1833 779462 1
## 1834 779463 1
## 1835 779464 1
## 1836 779465 1
## 1837 779466 1
## 1838 779467 1
## 1839 779468 1
## 1840 779469 1
## 1841 779470 1
## 1842 779471 1
## 1843 779472 1
## 1844 779473 1
## 1845 779474 1
## 1846 779475 1
## 1847 779476 1
## 1848 779477 1
## 1849 779478 1
## 1850 779479 1
## 1851 779480 1
## 1852 779481 1
## 1853 779482 1
## 1854 779483 1
## 1855 779484 1
## 1856 779485 1
## 1857 779486 1
## 1858 779487 1
## 1859 779488 1
## 1860 779489 1
## 1861 779490 1
## 1862 779491 1
## 1863 779492 1
## 1864 779493 1
## 1865 779494 1
## 1866 779495 1
## 1867 779496 1
## 1868 779497 1
## 1869 779498 1
## 1870 779499 1
## 1871 779500 1
## 1872 779501 1
## 1873 779502 1
## 1874 779503 1
## 1875 779504 1
## 1876 779505 1
## 1877 779506 1
## 1878 779507 1
## 1879 779508 1
## 1880 779509 1
## 1881 779510 1
## 1882 779511 1
## 1883 779512 1
## 1884 779513 1
## 1885 779514 1
## 1886 779515 1
## 1887 779516 1
## 1888 779517 1
## 1889 779518 1
## 1890 779519 1
## 1891 779520 1
## 1892 779521 1
## 1893 779522 1
## 1894 779523 1
## 1895 779524 1
## 1896 779525 1
## 1897 779526 1
## 1898 779527 1
## 1899 779528 1
## 1900 779529 1
## 1901 779530 1
## 1902 779531 1
## 1903 779532 1
## 1904 779533 1
## 1905 779534 1
## 1906 779535 1
## 1907 779536 1
## 1908 779537 1
## 1909 779538 1
## 1910 779539 1
## 1911 779540 1
## 1912 779541 1
## 1913 779542 1
## 1914 779543 1
## 1915 779544 1
## 1916 779545 1
## 1917 779546 1
## 1918 779547 1
## 1919 779548 1
## 1920 779549 1
## 1921 779550 1
## 1922 779551 1
## 1923 779552 1
## 1924 779553 1
## 1925 779554 1
## 1926 779555 1
## 1927 779556 1
## 1928 779557 1
## 1929 779558 1
## 1930 779559 1
## 1931 779560 1
## 1932 779561 1
## 1933 779562 1
## 1934 779563 1
## 1935 779564 1
## 1936 779565 1
## 1937 779566 1
## 1938 779567 1
## 1939 779568 1
## 1940 779569 1
## 1941 779570 1
## 1942 779571 1
## 1943 779572 1
## 1944 779573 1
## 1945 779574 1
## 1946 779575 1
## 1947 779576 1
## 1948 779577 1
## 1949 779578 1
## 1950 779579 1
## 1951 779580 1
## 1952 779581 1
## 1953 779582 1
## 1954 779583 1
## 1955 779584 1
## 1956 779585 1
## 1957 779586 1
## 1958 779587 1
## 1959 779588 1
## 1960 779590 1
## 1961 779591 1
## 1962 779592 1
## 1963 779593 1
## 1964 779594 1
## 1965 779595 1
## 1966 779596 1
## 1967 779597 1
## 1968 779598 1
## 1969 779599 1
## 1970 779600 1
## 1971 779601 1
## 1972 779602 1
## 1973 779603 1
## 1974 779604 1
## 1975 779605 1
## 1976 779606 1
## 1977 779607 1
## 1978 779608 1
## 1979 779609 1
## 1980 779610 1
## 1981 779611 1
## 1982 779612 1
## 1983 779613 1
## 1984 779614 1
## 1985 779615 1
## 1986 779616 1
## 1987 779617 1
## 1988 779618 1
## 1989 779619 1
## 1990 779620 1
## 1991 779621 1
## 1992 779622 1
## 1993 779623 1
## 1994 779624 1
## 1995 779625 1
## 1996 779626 1
## 1997 779627 1
## 1998 779628 1
## 1999 779629 1
## 2000 779630 1
## 2001 779631 1
## 2002 779632 1
## 2003 779633 1
## 2004 779634 1
## 2005 779635 1
## 2006 779636 1
## 2007 779637 1
## 2008 779638 1
## 2009 779639 1
## 2010 779640 1
## 2011 779641 1
## 2012 779642 1
## 2013 779643 1
## 2014 779644 1
## 2015 779645 1
## 2016 779646 1
## 2017 779647 1
## 2018 779648 1
## 2019 779649 1
## 2020 779650 1
## 2021 779651 1
## 2022 779652 1
## 2023 779653 1
## 2024 779654 1
## 2025 779655 1
## 2026 779656 1
## 2027 779657 1
## 2028 779658 1
## 2029 779659 1
## 2030 779660 1
## 2031 779661 1
## 2032 779662 1
## 2033 779663 1
## 2034 779664 1
## 2035 779665 1
## 2036 779666 1
## 2037 779667 1
## 2038 779668 1
## 2039 779669 1
## 2040 779670 1
## 2041 779671 1
## 2042 779672 1
## 2043 779673 1
## 2044 779674 1
## 2045 779675 1
## 2046 779676 1
## 2047 779677 1
## 2048 779678 1
## 2049 779679 1
## 2050 779680 1
## 2051 779681 1
## 2052 779682 1
## 2053 779683 1
## 2054 779684 1
## 2055 779685 1
## 2056 779686 1
## 2057 779687 1
## 2058 779688 1
## 2059 779689 1
## 2060 779690 1
## 2061 779691 1
## 2062 779692 1
## 2063 779693 1
## 2064 779694 1
## 2065 779695 1
## 2066 779696 1
## 2067 779697 1
## 2068 779698 1
## 2069 779699 1
## 2070 779700 1
## 2071 779701 1
## 2072 779702 1
## 2073 779703 1
## 2074 779704 1
## 2075 779705 1
## 2076 779706 1
## 2077 779707 1
## 2078 779708 1
## 2079 779709 1
## 2080 779710 1
## 2081 779711 1
## 2082 779712 1
## 2083 779713 1
## 2084 779714 1
## 2085 779715 1
## 2086 779716 1
## 2087 779717 1
## 2088 779718 1
## 2089 779719 1
## 2090 779720 1
## 2091 779721 1
## 2092 779722 1
## 2093 779723 1
## 2094 779724 1
## 2095 779725 1
## 2096 779726 1
## 2097 779727 1
## 2098 779728 1
## 2099 779729 1
## 2100 779730 1
## 2101 779731 1
## 2102 779732 1
## 2103 779733 1
## 2104 779734 1
## 2105 779735 1
## 2106 779736 1
## 2107 779737 1
## 2108 779738 1
## 2109 779739 1
## 2110 779740 1
## 2111 779741 1
## 2112 779742 1
## 2113 779743 1
## 2114 779744 1
## 2115 779745 1
## 2116 779746 1
## 2117 779747 1
## 2118 779748 1
## 2119 779749 1
## 2120 779750 1
## 2121 779751 1
## 2122 779752 1
## 2123 779753 1
## 2124 779754 1
## 2125 779755 1
## 2126 779756 1
## 2127 779757 1
## 2128 779758 1
## 2129 779759 1
## 2130 779760 1
## 2131 779761 1
## 2132 779762 1
## 2133 779763 1
## 2134 779764 1
## 2135 779765 1
## 2136 779766 1
## 2137 779767 1
## 2138 779768 1
## 2139 779769 1
## 2140 779770 1
## 2141 779771 1
## 2142 779772 1
## 2143 779773 1
## 2144 779774 1
## 2145 779775 1
## 2146 779776 1
## 2147 779777 1
## 2148 779778 1
## 2149 779779 1
## 2150 779780 1
## 2151 779781 1
## 2152 779782 1
## 2153 779783 1
## 2154 779784 1
## 2155 779785 1
## 2156 779786 1
## 2157 779787 1
## 2158 779788 1
## 2159 779789 1
## 2160 779790 1
## 2161 779791 1
## 2162 779792 1
## 2163 779793 1
## 2164 779794 1
## 2165 779795 1
## 2166 779796 1
## 2167 779797 1
## 2168 779798 1
## 2169 779799 1
## 2170 779800 1
## 2171 779801 1
## 2172 779802 1
## 2173 779803 1
## 2174 779804 1
## 2175 779805 1
## 2176 779806 1
## 2177 779807 1
## 2178 779808 1
## 2179 779809 1
## 2180 779810 1
## 2181 779811 1
## 2182 779812 1
## 2183 779813 1
## 2184 779814 1
## 2185 779815 1
## 2186 779816 1
## 2187 779817 1
## 2188 779818 1
## 2189 779819 1
## 2190 779820 1
## 2191 779821 1
## 2192 779822 1
## 2193 779823 1
## 2194 779824 1
## 2195 779825 1
## 2196 779826 1
## 2197 779827 1
## 2198 779828 1
## 2199 779829 1
## 2200 779830 1
## 2201 779831 1
## 2202 779832 1
## 2203 779833 1
## 2204 779834 1
## 2205 779835 1
## 2206 779836 1
## 2207 779837 1
## 2208 779838 1
## 2209 779839 1
## 2210 779840 1
## 2211 779841 1
## 2212 779842 1
## 2213 779843 1
## 2214 779844 1
## 2215 779845 1
## 2216 779846 1
## 2217 779847 1
## 2218 779848 1
## 2219 779849 1
## 2220 779850 1
## 2221 779851 1
## 2222 779852 1
## 2223 779853 1
## 2224 779854 1
## 2225 779855 1
## 2226 779856 1
## 2227 779857 1
## 2228 779858 1
## 2229 779859 1
## 2230 779860 1
## 2231 779861 1
## 2232 779862 1
## 2233 779863 1
## 2234 779864 1
## 2235 779865 1
## 2236 779866 1
## 2237 779867 1
## 2238 779868 1
## 2239 779869 1
## 2240 779870 1
## 2241 779871 1
## 2242 779872 1
## 2243 779873 1
## 2244 779874 1
## 2245 779875 1
## 2246 779876 1
## 2247 779877 1
## 2248 779878 1
## 2249 779879 1
## 2250 779880 1
## 2251 779881 1
## 2252 779882 1
## 2253 779883 1
## 2254 779884 1
## 2255 779885 1
## 2256 779886 1
## 2257 779887 1
## 2258 779888 1
## 2259 779889 1
## 2260 779890 1
## 2261 779891 1
## 2262 779892 1
## 2263 779893 1
## 2264 779894 1
## 2265 779895 1
## 2266 779896 1
## 2267 779897 1
## 2268 779898 1
## 2269 779899 1
## 2270 779900 1
## 2271 779901 1
## 2272 779902 1
## 2273 779903 1
## 2274 779904 1
## 2275 779905 1
## 2276 779906 1
## 2277 779907 1
## 2278 779908 1
## 2279 779909 1
## 2280 779910 1
## 2281 779911 1
## 2282 779912 1
## 2283 779913 1
## 2284 779914 1
## 2285 779915 1
## 2286 779916 1
## 2287 779917 1
## 2288 779918 1
## 2289 779919 1
## 2290 779920 1
## 2291 779921 1
## 2292 779922 1
## 2293 779923 1
## 2294 779924 1
## 2295 779925 1
## 2296 779926 1
## 2297 779927 1
## 2298 779928 1
## 2299 779929 1
## 2300 779930 1
## 2301 779931 1
## 2302 779932 1
## 2303 779933 1
## 2304 779934 1
## 2305 779935 1
## 2306 779936 1
## 2307 779937 1
## 2308 779938 1
## 2309 779939 1
## 2310 779940 1
## 2311 779941 1
## 2312 779942 1
## 2313 779943 1
## 2314 779944 1
## 2315 779945 1
## 2316 779946 1
## 2317 779947 1
## 2318 779948 1
## 2319 779949 1
## 2320 779950 1
## 2321 779951 1
## 2322 779952 1
## 2323 779953 1
## 2324 779954 1
## 2325 779955 1
## 2326 779956 1
## 2327 779957 1
## 2328 779958 1
## 2329 779959 1
## 2330 779960 1
## 2331 779961 1
## 2332 779962 1
## 2333 779963 1
## 2334 779964 1
## 2335 779965 1
## 2336 779966 1
## 2337 779967 1
## 2338 779968 1
## 2339 779969 1
## 2340 779970 1
## 2341 779971 1
## 2342 779972 1
## 2343 779973 1
## 2344 779974 1
## 2345 779975 1
## 2346 779976 1
## 2347 779977 1
## 2348 779978 1
## 2349 779979 1
## 2350 779980 1
## 2351 779981 1
## 2352 779982 1
## 2353 779983 1
## 2354 779984 1
## 2355 779985 1
## 2356 779986 1
## 2357 779987 1
## 2358 779988 1
## 2359 779989 1
## 2360 779990 1
## 2361 779991 1
## 2362 779992 1
## 2363 779993 1
## 2364 779994 1
## 2365 779995 1
## 2366 779996 1
## 2367 779997 1
## 2368 779998 1
## 2369 779999 1
## 2370 780000 1
## 2371 780001 1
## 2372 780002 1
## 2373 780003 1
## 2374 780004 1
## 2375 780005 1
## 2376 780006 1
## 2377 780007 1
## 2378 780008 1
## 2379 780009 1
## 2380 780010 1
## 2381 780011 1
## 2382 780012 1
## 2383 780013 1
## 2384 780014 1
## 2385 780015 1
## 2386 780016 1
## 2387 780017 1
## 2388 780018 1
## 2389 780019 1
## 2390 780020 1
## 2391 780021 1
## 2392 780022 1
## 2393 780023 1
## 2394 780024 1
## 2395 780025 1
## 2396 780026 1
## 2397 780027 1
## 2398 780028 1
## 2399 780029 1
## 2400 780030 1
## 2401 780031 1
## 2402 780032 1
## 2403 780033 1
## 2404 780034 1
## 2405 780035 1
## 2406 780036 1
## 2407 780037 1
## 2408 780038 1
## 2409 780039 1
## 2410 780040 1
## 2411 780041 1
## 2412 780042 1
## 2413 780043 1
## 2414 780044 1
## 2415 780045 1
## 2416 780046 1
## 2417 780047 1
## 2418 780048 1
## 2419 780049 1
## 2420 780050 1
## 2421 780051 1
## 2422 780052 1
## 2423 780053 1
## 2424 780054 1
## 2425 780055 1
## 2426 780056 1
## 2427 780057 1
## 2428 780058 1
## 2429 780059 1
## 2430 780060 1
## 2431 780061 1
## 2432 780062 1
## 2433 780063 1
## 2434 780064 1
## 2435 780065 1
## 2436 780066 1
## 2437 780067 1
## 2438 780068 1
## 2439 780069 1
## 2440 780070 1
## 2441 780071 1
## 2442 780072 1
## 2443 780073 1
## 2444 780074 1
## 2445 780075 1
## 2446 780076 1
## 2447 780077 1
## 2448 780078 1
## 2449 780079 1
## 2450 780080 1
## 2451 780081 1
## 2452 780082 1
## 2453 780083 1
## 2454 780084 1
## 2455 780085 1
## 2456 780086 1
## 2457 780088 1
## 2458 780089 1
## 2459 780090 1
## 2460 780091 1
## 2461 780092 1
## 2462 780093 1
## 2463 780094 1
## 2464 780095 1
## 2465 780096 1
## 2466 780097 1
## 2467 780098 1
## 2468 780099 1
## 2469 780100 1
## 2470 780101 1
## 2471 780102 1
## 2472 780103 1
## 2473 780104 1
## 2474 780105 1
## 2475 780106 1
## 2476 780107 1
## 2477 780108 1
## 2478 780109 1
## 2479 780110 1
## 2480 780111 1
## 2481 780112 1
## 2482 780113 1
## 2483 780114 1
## 2484 780115 1
## 2485 780116 1
## 2486 780117 1
## 2487 780118 1
## 2488 780119 1
## 2489 780120 1
## 2490 780121 1
## 2491 780122 1
## 2492 780123 1
## 2493 780124 1
## 2494 780125 1
## 2495 780126 1
## 2496 780127 1
## 2497 780128 1
## 2498 780129 1
## 2499 780130 1
## 2500 780131 1
## 2501 780132 1
## 2502 780133 1
## 2503 780134 1
## 2504 780135 1
## 2505 780136 1
## 2506 780137 1
## 2507 780138 1
## 2508 780139 1
## 2509 780140 1
## 2510 780141 1
## 2511 780142 1
## 2512 780143 1
## 2513 780144 1
## 2514 780146 1
## 2515 780147 1
## 2516 780148 1
## 2517 780149 1
## 2518 780150 1
## 2519 780151 1
## 2520 780152 1
## 2521 780153 1
## 2522 780154 1
## 2523 780155 1
## 2524 780156 1
## 2525 780157 1
## 2526 780158 1
## 2527 780159 1
## 2528 780160 1
## 2529 780161 1
## 2530 780162 1
## 2531 780163 1
## 2532 780164 1
## 2533 780165 1
## 2534 780166 1
## 2535 780167 1
## 2536 780168 1
## 2537 780169 1
## 2538 780170 1
## 2539 780171 1
## 2540 780172 1
## 2541 780173 1
## 2542 780174 1
## 2543 780175 1
## 2544 780176 1
## 2545 780177 1
## 2546 780178 1
## 2547 780179 1
## 2548 780180 1
## 2549 780181 1
## 2550 780182 1
## 2551 780183 1
## 2552 780184 1
## 2553 780185 1
## 2554 780186 1
## 2555 780187 1
## 2556 780188 1
## 2557 780189 1
## 2558 780190 1
## 2559 780191 1
## 2560 780192 1
## 2561 780193 1
## 2562 780194 1
## 2563 780195 1
## 2564 780196 1
## 2565 780197 1
## 2566 780198 1
## 2567 780199 1
## 2568 780200 1
## 2569 780201 1
## 2570 780202 1
## 2571 780203 1
## 2572 780204 1
## 2573 780205 1
## 2574 780206 1
## 2575 780207 1
## 2576 780208 1
## 2577 780209 1
## 2578 780210 1
## 2579 780211 1
## 2580 780212 1
## 2581 780213 1
## 2582 780214 1
## 2583 780215 1
## 2584 780216 1
## 2585 780217 1
## 2586 780218 1
## 2587 780219 1
## 2588 780220 1
## 2589 780221 1
## 2590 780222 1
## 2591 780223 1
## 2592 780224 1
## 2593 780225 1
## 2594 780226 1
## 2595 780227 1
## 2596 780228 1
## 2597 780229 1
## 2598 780230 1
## 2599 780231 1
## 2600 780232 1
## 2601 780233 1
## 2602 780234 1
## 2603 780235 1
## 2604 780236 1
## 2605 780237 1
## 2606 780238 1
## 2607 780239 1
## 2608 780240 1
## 2609 780241 1
## 2610 780242 1
## 2611 780243 1
## 2612 780244 1
## 2613 780245 1
## 2614 780246 1
## 2615 780247 1
## 2616 780248 1
## 2617 780249 1
## 2618 780250 1
## 2619 780251 1
## 2620 780252 1
## 2621 780253 1
## 2622 780254 1
## 2623 780255 1
## 2624 780256 1
## 2625 780257 1
## 2626 780258 1
## 2627 780259 1
## 2628 780260 1
## 2629 780261 1
## 2630 780262 1
## 2631 780263 1
## 2632 780264 1
## 2633 780265 1
## 2634 780266 1
## 2635 780267 1
## 2636 780268 1
## 2637 780269 1
## 2638 780270 1
## 2639 780271 1
## 2640 780272 1
## 2641 780273 1
## 2642 780274 1
## 2643 780275 1
## 2644 780276 1
## 2645 780277 1
## 2646 780278 1
## 2647 780279 1
## 2648 780280 1
## 2649 780281 1
## 2650 780282 1
## 2651 780283 1
## 2652 780284 1
## 2653 780285 1
## 2654 780286 1
## 2655 780287 1
## 2656 780288 1
## 2657 780289 1
## 2658 780290 1
## 2659 780291 1
## 2660 780292 1
## 2661 780293 1
## 2662 780294 1
## 2663 780295 1
## 2664 780296 1
## 2665 780297 1
## 2666 780298 1
## 2667 780299 1
## 2668 780300 1
## 2669 780301 1
## 2670 780302 1
## 2671 780303 1
## 2672 780304 1
## 2673 780305 1
## 2674 780306 1
## 2675 780307 1
## 2676 780308 1
## 2677 780309 1
## 2678 780310 1
## 2679 780311 1
## 2680 780312 1
## 2681 780313 1
## 2682 780314 1
## 2683 780315 1
## 2684 780316 1
## 2685 780317 1
## 2686 780318 1
## 2687 780319 1
## 2688 780320 1
## 2689 780321 1
## 2690 780322 1
## 2691 780323 1
## 2692 780324 1
## 2693 780325 1
## 2694 780326 1
## 2695 780327 1
## 2696 780328 1
## 2697 780329 1
## 2698 780330 1
## 2699 780331 1
## 2700 780332 1
## 2701 780333 1
## 2702 780334 1
## 2703 780335 1
## 2704 780336 1
## 2705 780337 1
## 2706 780338 1
## 2707 780339 1
## 2708 780340 1
## 2709 780341 1
## 2710 780342 1
## 2711 780343 1
## 2712 780344 1
## 2713 780345 1
## 2714 780346 1
## 2715 780347 1
## 2716 780348 1
## 2717 780349 1
## 2718 780350 1
## 2719 780351 1
## 2720 780352 1
## 2721 780353 1
## 2722 780354 1
## 2723 780355 1
## 2724 780356 1
## 2725 780357 1
## 2726 780358 1
## 2727 780359 1
## 2728 780360 1
## 2729 780361 1
## 2730 780362 1
## 2731 780363 1
## 2732 780364 1
## 2733 780365 1
## 2734 780366 1
## 2735 780367 1
## 2736 780368 1
## 2737 780369 1
## 2738 780370 1
## 2739 780371 1
## 2740 780372 1
## 2741 780373 1
## 2742 780374 1
## 2743 780375 1
## 2744 780376 1
## 2745 780377 1
## 2746 780378 1
## 2747 780379 1
## 2748 780380 1
## 2749 780381 1
## 2750 780382 1
## 2751 780383 1
## 2752 780384 1
## 2753 780385 1
## 2754 780386 1
## 2755 780387 1
## 2756 780388 1
## 2757 780389 1
## 2758 780390 1
## 2759 780391 1
## 2760 780392 1
## 2761 780393 1
## 2762 780394 1
## 2763 780395 1
## 2764 780396 1
## 2765 780397 1
## 2766 780398 1
## 2767 780399 1
## 2768 780400 1
## 2769 780401 1
## 2770 780402 1
## 2771 780403 1
## 2772 780404 1
## 2773 780405 1
## 2774 780406 1
## 2775 780407 1
## 2776 780408 1
## 2777 780409 1
## 2778 780410 1
## 2779 780411 1
## 2780 780412 1
## 2781 780413 1
## 2782 780414 1
## 2783 780415 1
## 2784 780416 1
## 2785 780417 1
## 2786 780418 1
## 2787 780419 1
## 2788 780420 1
## 2789 780421 1
## 2790 780422 1
## 2791 780423 1
## 2792 780424 1
## 2793 780425 1
## 2794 780426 1
## 2795 780427 1
## 2796 780428 1
## 2797 780429 1
## 2798 780430 1
## 2799 780431 1
## 2800 780432 1
## 2801 780433 1
## 2802 780435 1
## 2803 780436 1
## 2804 780437 1
## 2805 780438 1
## 2806 780439 1
## 2807 780440 1
## 2808 780441 1
## 2809 780442 1
## 2810 780443 1
## 2811 780444 1
## 2812 780445 1
## 2813 780446 1
## 2814 780447 1
## 2815 780448 1
## 2816 780449 1
## 2817 780450 1
## 2818 780451 1
## 2819 780452 1
## 2820 780453 1
## 2821 780454 1
## 2822 780455 1
## 2823 780456 1
## 2824 780457 1
## 2825 780458 1
## 2826 780459 1
## 2827 780460 1
## 2828 780461 1
## 2829 780462 1
## 2830 780463 1
## 2831 780464 1
## 2832 780465 1
## 2833 780466 1
## 2834 780467 1
## 2835 780468 1
## 2836 780469 1
## 2837 780470 1
## 2838 780471 1
## 2839 780472 1
## 2840 780473 1
## 2841 780474 1
## 2842 780475 1
## 2843 780476 1
## 2844 780477 1
## 2845 780478 1
## 2846 780479 1
## 2847 780480 1
## 2848 780481 1
## 2849 780482 1
## 2850 780483 1
## 2851 780484 1
## 2852 780485 1
## 2853 780486 1
## 2854 780487 1
## 2855 780488 1
## 2856 780489 1
## 2857 780490 1
## 2858 780491 1
## 2859 780492 1
## 2860 780493 1
## 2861 780494 1
## 2862 780495 1
## 2863 780496 1
## 2864 780497 1
## 2865 780498 1
## 2866 780499 1
## 2867 780500 1
## 2868 780501 1
## 2869 780502 1
## 2870 780503 1
## 2871 780504 1
## 2872 780505 1
## 2873 780506 1
## 2874 780507 1
## 2875 780508 1
## 2876 780509 1
## 2877 780510 1
## 2878 780511 1
## 2879 780512 1
## 2880 780513 1
## 2881 780514 1
## 2882 780515 1
## 2883 780516 1
## 2884 780517 1
## 2885 780518 1
## 2886 780519 1
## 2887 780520 1
## 2888 780521 1
## 2889 780522 1
## 2890 780523 1
## 2891 780524 1
## 2892 780525 1
## 2893 780526 1
## 2894 780527 1
## 2895 780528 1
## 2896 780529 1
## 2897 780530 1
## 2898 780531 1
## 2899 780532 1
## 2900 780533 1
## 2901 780534 1
## 2902 780535 1
## 2903 780536 1
## 2904 780537 1
## 2905 780538 1
## 2906 780539 1
## 2907 780540 1
## 2908 780541 1
## 2909 780542 1
## 2910 780543 1
## 2911 780544 1
## 2912 780545 1
## 2913 780546 1
## 2914 780547 1
## 2915 780548 1
## 2916 780549 1
## 2917 780550 1
## 2918 780551 1
## 2919 780552 1
## 2920 780553 1
## 2921 780554 1
## 2922 780555 1
## 2923 780556 1
## 2924 780557 1
## 2925 780558 1
## 2926 780559 1
## 2927 780560 1
## 2928 780561 1
## 2929 780562 1
## 2930 780563 1
## 2931 780564 1
## 2932 780565 1
## 2933 780566 1
## 2934 780567 1
## 2935 780568 1
## 2936 780569 1
## 2937 780570 1
## 2938 780571 1
## 2939 780572 1
## 2940 780573 1
## 2941 780574 1
## 2942 780575 1
## 2943 780576 1
## 2944 780577 1
## 2945 780578 1
## 2946 780579 1
## 2947 780580 1
## 2948 780581 1
## 2949 780582 1
## 2950 780583 1
## 2951 780584 1
## 2952 780585 1
## 2953 780586 1
## 2954 780587 1
## 2955 780588 1
## 2956 780589 1
## 2957 780590 1
## 2958 780591 1
## 2959 780592 1
## 2960 780593 1
## 2961 780594 1
## 2962 780595 1
## 2963 780596 1
## 2964 780597 1
## 2965 780598 1
## 2966 780599 1
## 2967 780600 1
## 2968 780601 1
## 2969 780602 1
## 2970 780603 1
## 2971 780604 1
## 2972 780605 1
## 2973 780606 1
## 2974 780607 1
## 2975 780608 1
## 2976 780609 1
## 2977 780610 1
## 2978 780611 1
## 2979 780612 1
## 2980 780613 1
## 2981 780614 1
## 2982 780615 1
## 2983 780616 1
## 2984 780617 1
## 2985 780618 1
## 2986 780619 1
## 2987 780620 1
## 2988 780621 1
## 2989 780622 1
## 2990 780623 1
## 2991 780624 1
## 2992 780625 1
## 2993 780626 1
## 2994 780627 1
## 2995 780628 1
## 2996 780629 1
## 2997 780630 1
## 2998 780631 1
## 2999 780632 1
## 3000 780633 1
## 3001 780634 1
## 3002 780635 1
## 3003 780636 1
## 3004 780637 1
## 3005 780638 1
## 3006 780639 1
## 3007 780640 1
## 3008 780641 1
## 3009 780642 1
## 3010 780643 1
## 3011 780644 1
## 3012 780645 1
## 3013 780646 1
## 3014 780647 1
## 3015 780648 1
## 3016 780649 1
## 3017 780650 1
## 3018 780651 1
## 3019 780652 1
## 3020 780653 1
## 3021 780654 1
## 3022 780655 1
## 3023 780656 1
## 3024 780657 1
## 3025 780658 1
## 3026 780659 1
## 3027 780660 1
## 3028 780661 1
## 3029 780662 1
## 3030 780663 1
## 3031 780664 1
## 3032 780665 1
## 3033 780666 1
## 3034 780667 1
## 3035 780668 1
## 3036 780669 1
## 3037 780670 1
## 3038 780671 1
## 3039 780672 1
## 3040 780673 1
## 3041 780674 1
## 3042 780675 1
## 3043 780676 1
## 3044 780677 1
## 3045 780678 1
## 3046 780679 1
## 3047 780680 1
## 3048 780681 1
## 3049 780682 1
## 3050 780683 1
## 3051 780684 1
## 3052 780685 1
## 3053 780686 1
## 3054 780687 1
## 3055 780688 1
## 3056 780689 1
## 3057 780690 1
## 3058 780691 1
## 3059 780692 1
## 3060 780693 1
## 3061 780694 1
## 3062 780695 1
## 3063 780696 1
## 3064 780697 1
## 3065 780698 1
## 3066 780699 1
## 3067 780700 1
## 3068 780701 1
## 3069 780702 1
## 3070 780703 1
## 3071 780704 1
## 3072 780705 1
## 3073 780706 1
## 3074 780707 1
## 3075 780708 1
## 3076 780709 1
## 3077 780710 1
## 3078 780711 1
## 3079 780712 1
## 3080 780713 1
## 3081 780714 1
## 3082 780715 1
## 3083 780716 1
## 3084 780717 1
## 3085 780718 1
## 3086 780719 1
## 3087 780720 1
## 3088 780721 1
## 3089 780722 1
## 3090 780723 1
## 3091 780724 1
## 3092 780725 1
## 3093 780726 1
## 3094 780727 1
## 3095 780728 1
## 3096 780729 1
## 3097 780730 1
## 3098 780731 1
## 3099 780732 1
## 3100 780733 1
## 3101 780734 1
## 3102 780735 1
## 3103 780736 1
## 3104 780737 1
## 3105 780738 1
## 3106 780739 1
## 3107 780740 1
## 3108 780741 1
## 3109 780742 1
## 3110 780743 1
## 3111 780744 1
## 3112 780745 1
## 3113 780746 1
## 3114 780747 1
## 3115 780748 1
## 3116 780749 1
## 3117 780750 1
## 3118 780751 1
## 3119 780752 1
## 3120 780753 1
## 3121 780754 1
## 3122 780755 1
## 3123 780756 1
## 3124 780757 1
## 3125 780758 1
## 3126 780759 1
## 3127 780760 1
## 3128 780761 1
## 3129 780762 1
## 3130 780763 1
## 3131 780764 1
## 3132 780765 1
## 3133 780766 1
## 3134 780767 1
## 3135 780768 1
## 3136 780769 1
## 3137 780770 1
## 3138 780771 1
## 3139 780772 1
## 3140 780773 1
## 3141 780774 1
## 3142 780775 1
## 3143 780776 1
## 3144 780777 1
## 3145 780778 1
## 3146 780779 1
## 3147 780780 1
## 3148 780781 1
## 3149 780782 1
## 3150 780783 1
## 3151 780784 1
## 3152 780785 1
## 3153 780786 1
## 3154 780787 1
## 3155 780788 1
## 3156 780789 1
## 3157 780790 1
## 3158 780791 1
## 3159 780792 1
## 3160 780793 1
## 3161 780794 1
## 3162 780795 1
## 3163 780796 1
## 3164 780797 1
## 3165 780798 1
## 3166 780799 1
## 3167 780800 1
## 3168 780801 1
## 3169 780802 1
## 3170 780803 1
## 3171 780804 1
## 3172 780805 1
## 3173 780806 1
## 3174 780807 1
## 3175 780808 1
## 3176 780809 1
## 3177 780810 1
## 3178 780811 1
## 3179 780812 1
## 3180 780813 1
## 3181 780814 1
## 3182 780815 1
## 3183 780816 1
## 3184 780817 1
## 3185 780818 1
## 3186 780819 1
## 3187 780820 1
## 3188 780821 1
## 3189 780822 1
## 3190 780823 1
## 3191 780824 1
## 3192 780825 1
## 3193 780826 1
## 3194 780827 1
## 3195 780828 1
## 3196 780829 1
## 3197 780830 1
## 3198 780831 1
## 3199 780832 1
## 3200 780833 1
## 3201 780834 1
## 3202 780835 1
## 3203 780836 1
## 3204 780837 1
## 3205 780838 1
## 3206 780839 1
## 3207 780840 1
## 3208 780841 1
## 3209 780842 1
## 3210 780843 1
## 3211 780844 1
## 3212 780845 1
## 3213 780846 1
## 3214 780847 1
## 3215 780848 1
## 3216 780849 1
## 3217 780850 1
## 3218 780851 1
## 3219 780852 1
## 3220 780853 1
## 3221 780854 1
## 3222 780855 1
## 3223 780856 1
## 3224 780857 1
## 3225 780858 1
## 3226 780859 1
## 3227 780860 1
## 3228 780861 1
## 3229 780862 1
## 3230 780863 1
## 3231 780864 1
## 3232 780865 1
## 3233 780866 1
## 3234 780867 1
## 3235 780868 1
## 3236 780869 1
## 3237 780870 1
## 3238 780871 1
## 3239 780872 1
## 3240 780873 1
## 3241 780874 1
## 3242 780875 1
## 3243 780876 1
## 3244 780877 1
## 3245 780878 1
## 3246 780879 1
## 3247 780880 1
## 3248 780881 1
## 3249 780882 1
## 3250 780883 1
## 3251 780884 1
## 3252 780885 1
## 3253 780886 1
## 3254 780887 1
## 3255 780888 1
## 3256 780889 1
## 3257 780890 1
## 3258 780891 1
## 3259 780892 1
## 3260 780893 1
## 3261 780894 1
## 3262 780895 1
## 3263 780896 1
## 3264 780897 1
## 3265 780898 1
## 3266 780899 1
## 3267 780900 1
## 3268 780901 1
## 3269 780902 1
## 3270 780903 1
## 3271 780904 1
## 3272 780905 1
## 3273 780906 1
## 3274 780907 1
## 3275 780908 1
## 3276 780909 1
## 3277 780910 1
## 3278 780911 1
## 3279 780912 1
## 3280 780913 1
## 3281 780914 1
## 3282 780915 1
## 3283 780916 1
## 3284 780917 1
## 3285 780918 1
## 3286 780919 1
## 3287 780920 1
## 3288 780921 1
## 3289 780922 1
## 3290 780923 1
## 3291 780924 1
## 3292 780925 1
## 3293 780926 1
## 3294 780927 1
## 3295 780928 1
## 3296 780929 1
## 3297 780930 1
## 3298 780931 1
## 3299 780932 1
## 3300 780933 1
## 3301 780934 1
## 3302 780935 1
## 3303 780936 1
## 3304 780937 1
## 3305 780938 1
## 3306 780939 1
## 3307 780940 1
## 3308 780941 1
## 3309 780942 1
## 3310 780943 1
## 3311 780944 1
## 3312 780945 1
## 3313 780946 1
## 3314 780947 1
## 3315 780948 1
## 3316 780949 1
## 3317 780950 1
## 3318 780951 1
## 3319 780952 1
## 3320 780953 1
## 3321 780954 1
## 3322 780955 1
## 3323 780956 1
## 3324 780957 1
## 3325 780958 1
## 3326 780959 1
## 3327 780960 1
## 3328 780961 1
## 3329 780962 1
## 3330 780963 1
## 3331 780964 1
## 3332 780965 1
## 3333 780966 1
## 3334 780967 1
## 3335 780968 1
## 3336 780969 1
## 3337 780970 1
## 3338 780971 1
## 3339 780972 1
## 3340 780973 1
## 3341 780974 1
## 3342 780975 1
## 3343 780976 1
## 3344 780977 1
## 3345 780978 1
## 3346 780979 1
## 3347 780980 1
## 3348 780981 1
## 3349 780982 1
## 3350 780983 1
## 3351 780984 1
## 3352 780985 1
## 3353 780986 1
## 3354 780987 1
## 3355 780988 1
## 3356 780989 1
## 3357 780990 1
## 3358 780991 1
## 3359 780992 1
## 3360 780993 1
## 3361 780994 1
## 3362 780995 1
## 3363 780996 1
## 3364 780997 1
## 3365 780998 1
## 3366 780999 1
## 3367 781000 1
## 3368 781001 1
## 3369 781002 1
## 3370 781003 1
## 3371 781004 1
## 3372 781005 1
## 3373 781006 1
## 3374 781007 1
## 3375 781008 1
## 3376 781009 1
## 3377 781010 1
## 3378 781011 1
## 3379 781012 1
## 3380 781013 1
## 3381 781014 1
## 3382 781015 1
## 3383 781016 1
## 3384 781017 1
## 3385 781018 1
## 3386 781019 1
## 3387 781020 1
## 3388 781021 1
## 3389 781022 1
## 3390 781023 1
## 3391 781024 1
## 3392 781025 1
## 3393 781026 1
## 3394 781027 1
## 3395 781028 1
## 3396 781029 1
## 3397 781030 1
## 3398 781031 1
## 3399 781032 1
## 3400 781033 1
## 3401 781034 1
## 3402 781035 1
## 3403 781036 1
## 3404 781037 1
## 3405 781038 1
## 3406 781039 1
## 3407 781040 1
## 3408 781041 1
## 3409 781042 1
## 3410 781043 1
## 3411 781044 1
## 3412 781045 1
## 3413 781046 1
## 3414 781047 1
## 3415 781048 1
## 3416 781049 1
## 3417 781050 1
## 3418 781051 1
## 3419 781052 1
## 3420 781053 1
## 3421 781054 1
## 3422 781055 1
## 3423 781056 1
## 3424 781057 1
## 3425 781059 1
## 3426 781060 1
## 3427 781061 1
## 3428 781062 1
## 3429 781063 1
## 3430 781064 1
## 3431 781065 1
## 3432 781066 1
## 3433 781067 1
## 3434 781068 1
## 3435 781069 1
## 3436 781070 1
## 3437 781071 1
## 3438 781072 1
## 3439 781073 1
## 3440 781074 1
## 3441 781075 1
## 3442 781076 1
## 3443 781077 1
## 3444 781078 1
## 3445 781079 1
## 3446 781080 1
## 3447 781081 1
## 3448 781082 1
## 3449 781083 1
## 3450 781084 1
## 3451 781085 1
## 3452 781086 1
## 3453 781087 1
## 3454 781088 1
## 3455 781089 1
## 3456 781090 1
## 3457 781091 1
## 3458 781092 1
## 3459 781093 1
## 3460 781094 1
## 3461 781095 1
## 3462 781096 1
## 3463 781097 1
## 3464 781098 1
## 3465 781099 1
## 3466 781100 1
## 3467 781101 1
## 3468 781102 1
## 3469 781103 1
## 3470 781104 1
## 3471 781105 1
## 3472 781106 1
## 3473 781107 1
## 3474 781108 1
## 3475 781109 1
## 3476 781110 1
## 3477 781111 1
## 3478 781112 1
## 3479 781113 1
## 3480 781114 1
## 3481 781115 1
## 3482 781116 1
## 3483 781117 1
## 3484 781118 1
## 3485 781119 1
## 3486 781120 1
## 3487 781121 1
## 3488 781122 1
## 3489 781123 1
## 3490 781124 1
## 3491 781125 1
## 3492 781126 1
## 3493 781127 1
## 3494 781128 1
## 3495 781129 1
## 3496 781130 1
## 3497 781131 1
## 3498 781132 1
## 3499 781133 1
## 3500 781134 1
## 3501 781135 1
## 3502 781136 1
## 3503 781137 1
## 3504 781138 1
## 3505 781139 1
## 3506 781140 1
## 3507 781141 1
## 3508 781142 1
## 3509 781143 1
## 3510 781144 1
## 3511 781145 1
## 3512 781146 1
## 3513 781147 1
## 3514 781148 1
## 3515 781149 1
## 3516 781150 1
## 3517 781151 1
## 3518 781152 1
## 3519 781153 1
## 3520 781154 1
## 3521 781155 1
## 3522 781156 1
## 3523 781157 1
## 3524 781158 1
## 3525 781159 1
## 3526 781160 1
## 3527 781161 1
## 3528 781162 1
## 3529 781163 1
## 3530 781164 1
## 3531 781165 1
## 3532 781166 1
## 3533 781167 1
## 3534 781168 1
## 3535 781169 1
## 3536 781170 1
## 3537 781171 1
## 3538 781172 1
## 3539 781173 1
## 3540 781174 1
## 3541 781175 1
## 3542 781176 1
## 3543 781177 1
## 3544 781178 1
## 3545 781179 1
## 3546 781180 1
## 3547 781181 1
## 3548 781182 1
## 3549 781183 1
## 3550 781184 1
## 3551 781185 1
## 3552 781186 1
## 3553 781187 1
## 3554 781188 1
## 3555 781189 1
## 3556 781190 1
## 3557 781191 1
## 3558 781192 1
## 3559 781193 1
## 3560 781194 1
## 3561 781195 1
## 3562 781196 1
## 3563 781197 1
## 3564 781198 1
## 3565 781199 1
## 3566 781200 1
## 3567 781201 1
## 3568 781202 1
## 3569 781203 1
## 3570 781204 1
## 3571 781205 1
## 3572 781206 1
## 3573 781207 1
## 3574 781208 1
## 3575 781209 1
## 3576 781210 1
## 3577 781211 1
## 3578 781212 1
## 3579 781213 1
## 3580 781214 1
## 3581 781215 1
## 3582 781216 1
## 3583 781217 1
## 3584 781218 1
## 3585 781219 1
## 3586 781220 1
## 3587 781221 1
## 3588 781222 1
## 3589 781223 1
## 3590 781224 1
## 3591 781225 1
## 3592 781226 1
## 3593 781227 1
## 3594 781228 1
## 3595 781229 1
## 3596 781230 1
## 3597 781231 1
## 3598 781232 1
## 3599 781233 1
## 3600 781234 1
## 3601 781235 1
## 3602 781236 1
## 3603 781237 1
## 3604 781238 1
## 3605 781239 1
## 3606 781240 1
## 3607 781241 1
## 3608 781242 1
## 3609 781243 1
## 3610 781244 1
## 3611 781245 1
## 3612 781246 1
## 3613 781247 1
## 3614 781248 1
## 3615 781249 1
## 3616 781250 1
## 3617 781251 1
## 3618 781252 1
## 3619 781253 1
## 3620 781254 1
## 3621 781255 1
## 3622 781256 1
## 3623 781257 1
## 3624 781258 1
## 3625 781259 1
## 3626 781260 1
## 3627 781261 1
## 3628 781262 1
## 3629 781263 1
## 3630 781264 1
## 3631 781265 1
## 3632 781266 1
## 3633 781267 1
## 3634 781268 1
## 3635 781269 1
## 3636 781270 1
## 3637 781271 1
## 3638 781272 1
## 3639 781273 1
## 3640 781275 1
## 3641 781276 1
## 3642 781277 1
## 3643 781278 1
## 3644 781279 1
## 3645 781280 1
## 3646 781281 1
## 3647 781282 1
## 3648 781283 1
## 3649 781284 1
## 3650 781285 1
## 3651 781286 1
## 3652 781287 1
## 3653 781288 1
## 3654 781289 1
## 3655 781290 1
## 3656 781291 1
## 3657 781292 1
## 3658 781293 1
## 3659 781294 1
## 3660 781295 1
## 3661 781296 1
## 3662 781297 1
## 3663 781298 1
## 3664 781299 1
## 3665 781300 1
## 3666 781301 1
## 3667 781302 1
## 3668 781303 1
## 3669 781304 1
## 3670 781305 1
## 3671 781306 1
## 3672 781307 1
## 3673 781308 1
## 3674 781309 1
## 3675 781310 1
## 3676 781311 1
## 3677 781312 1
## 3678 781313 1
## 3679 781314 1
## 3680 781315 1
## 3681 781316 1
## 3682 781317 1
## 3683 781318 1
## 3684 781319 1
## 3685 781320 1
## 3686 781321 1
## 3687 781322 1
## 3688 781323 1
## 3689 781324 1
## 3690 781325 1
## 3691 781326 1
## 3692 781327 1
## 3693 781328 1
## 3694 781329 1
## 3695 781330 1
## 3696 781331 1
## 3697 781332 1
## 3698 781333 1
## 3699 781334 1
## 3700 781335 1
## 3701 781336 1
## 3702 781337 1
## 3703 781338 1
## 3704 781339 1
## 3705 781340 1
## 3706 781341 1
## 3707 781342 1
## 3708 781343 1
## 3709 781344 1
## 3710 781345 1
## 3711 781346 1
## 3712 781347 1
## 3713 781348 1
## 3714 781349 1
## 3715 781350 1
## 3716 781351 1
## 3717 781352 1
## 3718 781353 1
## 3719 781354 1
## 3720 781355 1
## 3721 781356 1
## 3722 781357 1
## 3723 781358 1
## 3724 781359 1
## 3725 781360 1
## 3726 781361 1
## 3727 781362 1
## 3728 781363 1
## 3729 781364 1
## 3730 781365 1
## 3731 781366 1
## 3732 781367 1
## 3733 781368 1
## 3734 781369 1
## 3735 781370 1
## 3736 781371 1
## 3737 781372 1
## 3738 781373 1
## 3739 781374 1
## 3740 781375 1
## 3741 781376 1
## 3742 781377 1
## 3743 781378 1
## 3744 781379 1
## 3745 781380 1
## 3746 781381 1
## 3747 781382 1
## 3748 781383 1
## 3749 781384 1
## 3750 781385 1
## 3751 781386 1
## 3752 781387 1
## 3753 781388 1
## 3754 781389 1
## 3755 781390 1
## 3756 781391 1
## 3757 781392 1
## 3758 781393 1
## 3759 781394 1
## 3760 781395 1
## 3761 781396 1
## 3762 781397 1
## 3763 781398 1
## 3764 781399 1
## 3765 781400 1
## 3766 781401 1
## 3767 781402 1
## 3768 781403 1
## 3769 781404 1
## 3770 781405 1
## 3771 781406 1
## 3772 781407 1
## 3773 781408 1
## 3774 781409 1
## 3775 781410 1
## 3776 781411 1
## 3777 781412 1
## 3778 781413 1
## 3779 781414 1
## 3780 781415 1
## 3781 781416 1
## 3782 781417 1
## 3783 781418 1
## 3784 781419 1
## 3785 781420 1
## 3786 781421 1
## 3787 781422 1
## 3788 781423 1
## 3789 781424 1
## 3790 781425 1
## 3791 781426 1
## 3792 781427 1
## 3793 781428 1
## 3794 781429 1
## 3795 781430 1
## 3796 781431 1
## 3797 781432 1
## 3798 781433 1
## 3799 781434 1
## 3800 781435 1
## 3801 781436 1
## 3802 781437 1
## 3803 781438 1
## 3804 781439 1
## 3805 781440 1
## 3806 781441 1
## 3807 781442 1
## 3808 781443 1
## 3809 781444 1
## 3810 781445 1
## 3811 781446 1
## 3812 781447 1
## 3813 781448 1
## 3814 781449 1
## 3815 781450 1
## 3816 781451 1
## 3817 781452 1
## 3818 781453 1
## 3819 781454 1
## 3820 781455 1
## 3821 781456 1
## 3822 781457 1
## 3823 781458 1
## 3824 781459 1
## 3825 781460 1
## 3826 781461 1
## 3827 781462 1
## 3828 781463 1
## 3829 781464 1
## 3830 781465 1
## 3831 781466 1
## 3832 781467 1
## 3833 781468 1
## 3834 781469 1
## 3835 781470 1
## 3836 781471 1
## 3837 781472 1
## 3838 781473 1
## 3839 781474 1
## 3840 781475 1
## 3841 781476 1
## 3842 781477 1
## 3843 781478 1
## 3844 781479 1
## 3845 781480 1
## 3846 781481 1
## 3847 781482 1
## 3848 781483 1
## 3849 781484 1
## 3850 781485 1
## 3851 781486 1
## 3852 781487 1
## 3853 781488 1
## 3854 781489 1
## 3855 781490 1
## 3856 781491 1
## 3857 781492 1
## 3858 781493 1
## 3859 781494 1
## 3860 781495 1
## 3861 781496 1
## 3862 781497 1
## 3863 781498 1
## 3864 781499 1
## 3865 781500 1
## 3866 781501 1
## 3867 781502 1
## 3868 781503 1
## 3869 781504 1
## 3870 781505 1
## 3871 781506 1
## 3872 781507 1
## 3873 781508 1
## 3874 781509 1
## 3875 781510 1
## 3876 781511 1
## 3877 781512 1
## 3878 781513 1
## 3879 781514 1
## 3880 781515 1
## 3881 781516 1
## 3882 781517 1
## 3883 781518 1
## 3884 781519 1
## 3885 781520 1
## 3886 781521 1
## 3887 781522 1
## 3888 781523 1
## 3889 781524 1
## 3890 781525 1
## 3891 781526 1
## 3892 781527 1
## 3893 781528 1
## 3894 781529 1
## 3895 781530 1
## 3896 781531 1
## 3897 781532 1
## 3898 781533 1
## 3899 781534 1
## 3900 781535 1
## 3901 781536 1
## 3902 781537 1
## 3903 781538 1
## 3904 781539 1
## 3905 781540 1
## 3906 781541 1
## 3907 781542 1
## 3908 781543 1
## 3909 781544 1
## 3910 781545 1
## 3911 781546 1
## 3912 781547 1
## 3913 781548 1
## 3914 781549 1
## 3915 781550 1
## 3916 781551 1
## 3917 781552 1
## 3918 781553 1
## 3919 781554 1
## 3920 781555 1
## 3921 781556 1
## 3922 781557 1
## 3923 781558 1
## 3924 781559 1
## 3925 781560 1
## 3926 781561 1
## 3927 781562 1
## 3928 781563 1
## 3929 781564 1
## 3930 781565 1
## 3931 781566 1
## 3932 781567 1
## 3933 781568 1
## 3934 781569 1
## 3935 781570 1
## 3936 781571 1
## 3937 781572 1
## 3938 781573 1
## 3939 781574 1
## 3940 781575 1
## 3941 781576 1
## 3942 781577 1
## 3943 781578 1
## 3944 781579 1
## 3945 781580 1
## 3946 781581 1
## 3947 781582 1
## 3948 781583 1
## 3949 781584 1
## 3950 781585 1
## 3951 781586 1
## 3952 781587 1
## 3953 781588 1
## 3954 781589 1
## 3955 781590 1
## 3956 781591 1
## 3957 781592 1
## 3958 781593 1
## 3959 781594 1
## 3960 781595 1
## 3961 781596 1
## 3962 781597 1
## 3963 781598 1
## 3964 781599 1
## 3965 781600 1
## 3966 781601 1
## 3967 781602 1
## 3968 781603 1
## 3969 781604 1
## 3970 781605 1
## 3971 781606 1
## 3972 781607 1
## 3973 781608 1
## 3974 781609 1
## 3975 781610 1
## 3976 781611 1
## 3977 781612 1
## 3978 781613 1
## 3979 781614 1
## 3980 781615 1
## 3981 781616 1
## 3982 781617 1
## 3983 781618 1
## 3984 781619 1
## 3985 781620 1
## 3986 781621 1
## 3987 781622 1
## 3988 781623 1
## 3989 781624 1
## 3990 781625 1
## 3991 781626 1
## 3992 781627 1
## 3993 781628 1
## 3994 781629 1
## 3995 781630 1
## 3996 781631 1
## 3997 781632 1
## 3998 781633 1
## 3999 781634 1
## 4000 781635 1
## 4001 781636 1
## 4002 781637 1
## 4003 781638 1
## 4004 781639 1
## 4005 781640 1
## 4006 781641 1
## 4007 781642 1
## 4008 781643 1
## 4009 781644 1
## 4010 781645 1
## 4011 781646 1
## 4012 781647 1
## 4013 781648 1
## 4014 781649 1
## 4015 781650 1
## 4016 781651 1
## 4017 781652 1
## 4018 781653 1
## 4019 781654 1
## 4020 781655 1
## 4021 781656 1
## 4022 781657 1
## 4023 781658 1
## 4024 781659 1
## 4025 781660 1
## 4026 781661 1
## 4027 781662 1
## 4028 781663 1
## 4029 781664 1
## 4030 781665 1
## 4031 781666 1
## 4032 781667 1
## 4033 781668 1
## 4034 781669 1
## 4035 781670 1
## 4036 781671 1
## 4037 781672 1
## 4038 781673 1
## 4039 781674 1
## 4040 781675 1
## 4041 781676 1
## 4042 781677 1
## 4043 781678 1
## 4044 781679 1
## 4045 781680 1
## 4046 781681 1
## 4047 781682 1
## 4048 781683 1
## 4049 781684 1
## 4050 781685 1
## 4051 781686 1
## 4052 781687 1
## 4053 781688 1
## 4054 781689 1
## 4055 781690 1
## 4056 781691 1
## 4057 781692 1
## 4058 781693 1
## 4059 781694 1
## 4060 781695 1
## 4061 781696 1
## 4062 781697 1
## 4063 781698 1
## 4064 781699 1
## 4065 781700 1
## 4066 781701 1
## 4067 781702 1
## 4068 781703 1
## 4069 781704 1
## 4070 781705 1
## 4071 781706 1
## 4072 781707 1
## 4073 781708 1
## 4074 781709 1
## 4075 781710 1
## 4076 781711 1
## 4077 781712 1
## 4078 781713 1
## 4079 781714 1
## 4080 781715 1
## 4081 781716 1
## 4082 781717 1
## 4083 781718 1
## 4084 781719 1
## 4085 781720 1
## 4086 781721 1
## 4087 781722 1
## 4088 781723 1
## 4089 781724 1
## 4090 781725 1
## 4091 781726 1
## 4092 781727 1
## 4093 781728 1
## 4094 781729 1
## 4095 781730 1
## 4096 781731 1
## 4097 781732 1
## 4098 781733 1
## 4099 781734 1
## 4100 781735 1
## 4101 781736 1
## 4102 781737 1
## 4103 781738 1
## 4104 781739 1
## 4105 781740 1
## 4106 781741 1
## 4107 781742 1
## 4108 781743 1
## 4109 781744 1
## 4110 781745 1
## 4111 781746 1
## 4112 781747 1
## 4113 781748 1
## 4114 781749 1
## 4115 781750 1
## 4116 781751 1
## 4117 781752 1
## 4118 781753 1
## 4119 781754 1
## 4120 781755 1
## 4121 781756 1
## 4122 781757 1
## 4123 781758 1
## 4124 781759 1
## 4125 781760 1
## 4126 781761 1
## 4127 781762 1
## 4128 781763 1
## 4129 781764 1
## 4130 781765 1
## 4131 781766 1
## 4132 781767 1
## 4133 781768 1
## 4134 781769 1
## 4135 781770 1
## 4136 781771 1
## 4137 781772 1
## 4138 781773 1
## 4139 781774 1
## 4140 781775 1
## 4141 781776 1
## 4142 781777 1
## 4143 781778 1
## 4144 781779 1
## 4145 781780 1
## 4146 781781 1
## 4147 781782 1
## 4148 781783 1
## 4149 781784 1
## 4150 781785 1
## 4151 781786 1
## 4152 781787 1
## 4153 781788 1
## 4154 781789 1
## 4155 781790 1
## 4156 781791 1
## 4157 781792 1
## 4158 781793 1
## 4159 781794 1
## 4160 781795 1
## 4161 781796 1
## 4162 781797 1
## 4163 781798 1
## 4164 781799 1
## 4165 781800 1
## 4166 781801 1
## 4167 781802 1
## 4168 781803 1
## 4169 781804 1
## 4170 781805 1
## 4171 781806 1
## 4172 781807 1
## 4173 781808 1
## 4174 781809 1
## 4175 781810 1
## 4176 781811 1
## 4177 781812 1
## 4178 781813 1
## 4179 781814 1
## 4180 781815 1
## 4181 781816 1
## 4182 781817 1
## 4183 781818 1
## 4184 781819 1
## 4185 781820 1
## 4186 781821 1
## 4187 781822 1
## 4188 781823 1
## 4189 781824 1
## 4190 781825 1
## 4191 781826 1
## 4192 781827 1
## 4193 781828 1
## 4194 781829 1
## 4195 781830 1
## 4196 781831 1
## 4197 781832 1
## 4198 781833 1
## 4199 781834 1
## 4200 781835 1
## 4201 781836 1
## 4202 781837 1
## 4203 781838 1
## 4204 781839 1
## 4205 781840 1
## 4206 781841 1
## 4207 781842 1
## 4208 781843 1
## 4209 781844 1
## 4210 781845 1
## 4211 781846 1
## 4212 781847 1
## 4213 781848 1
## 4214 781849 1
## 4215 781850 1
## 4216 781851 1
## 4217 781852 1
## 4218 781853 1
## 4219 781854 1
## 4220 781855 1
## 4221 781856 1
## 4222 781857 1
## 4223 781858 1
## 4224 781859 1
## 4225 781860 1
## 4226 781861 1
## 4227 781862 1
## 4228 781863 1
## 4229 781864 1
## 4230 781865 1
## 4231 781866 1
## 4232 781867 1
## 4233 781868 1
## 4234 781869 1
## 4235 781870 1
## 4236 781871 1
## 4237 781872 1
## 4238 781873 1
## 4239 781874 1
## 4240 781875 1
## 4241 781876 1
## 4242 781877 1
## 4243 781878 1
## 4244 781879 1
## 4245 781880 1
## 4246 781881 1
## 4247 781882 1
## 4248 781883 1
## 4249 781884 1
## 4250 781885 1
## 4251 781886 1
## 4252 781887 1
## 4253 781888 1
## 4254 781889 1
## 4255 781890 1
## 4256 781891 1
## 4257 781892 1
## 4258 781893 1
## 4259 781894 1
## 4260 781895 1
## 4261 781896 1
## 4262 781897 1
## 4263 781898 1
## 4264 781899 1
## 4265 781900 1
## 4266 781901 1
## 4267 781902 1
## 4268 781903 1
## 4269 781904 1
## 4270 781905 1
## 4271 781906 1
## 4272 781907 1
## 4273 781908 1
## 4274 781909 1
## 4275 781910 1
## 4276 781911 1
## 4277 781912 1
## 4278 781913 1
## 4279 781914 1
## 4280 781915 1
## 4281 781916 1
## 4282 781917 1
## 4283 781918 1
## 4284 781919 1
## 4285 781920 1
## 4286 781921 1
## 4287 781922 1
## 4288 781923 1
## 4289 781924 1
## 4290 781925 1
## 4291 781926 1
## 4292 781927 1
## 4293 781928 1
## 4294 781929 1
## 4295 781930 1
## 4296 781931 1
## 4297 781932 1
## 4298 781933 1
## 4299 781934 1
## 4300 781935 1
## 4301 781936 1
## 4302 781937 1
## 4303 781938 1
## 4304 781939 1
## 4305 781940 1
## 4306 781941 1
## 4307 781942 1
## 4308 781943 1
## 4309 781944 1
## 4310 781945 1
## 4311 781946 1
## 4312 781947 1
## 4313 781948 1
## 4314 781949 1
## 4315 781950 1
## 4316 781951 1
## 4317 781952 1
## 4318 781953 1
## 4319 781954 1
## 4320 781955 1
## 4321 781956 1
## 4322 781957 1
## 4323 781958 1
## 4324 781959 1
## 4325 781960 1
## 4326 781961 1
## 4327 781962 1
## 4328 781963 1
## 4329 781964 1
## 4330 781965 1
## 4331 781966 1
## 4332 781967 1
## 4333 781968 1
## 4334 781969 1
## 4335 781970 1
## 4336 781971 1
## 4337 781972 1
## 4338 781973 1
## 4339 781974 1
## 4340 781975 1
## 4341 781976 1
## 4342 781977 1
## 4343 781978 1
## 4344 781979 1
## 4345 781980 1
## 4346 781981 1
## 4347 781982 1
## 4348 781983 1
## 4349 781984 1
## 4350 781985 1
## 4351 781986 1
## 4352 781987 1
## 4353 781988 1
## 4354 781989 1
## 4355 781990 1
## 4356 781991 1
## 4357 781992 1
## 4358 781993 1
## 4359 781994 1
## 4360 781995 1
## 4361 781996 1
## 4362 781997 1
## 4363 781998 1
## 4364 781999 1
## 4365 782000 1
## 4366 782001 1
## 4367 782002 1
## 4368 782003 1
## 4369 782004 1
## 4370 782005 1
## 4371 782006 1
## 4372 782007 1
## 4373 782008 1
## 4374 782009 1
## 4375 782010 1
## 4376 782011 1
## 4377 782012 1
## 4378 782013 1
## 4379 782014 1
## 4380 782015 1
## 4381 782016 1
## 4382 782017 1
## 4383 782018 1
## 4384 782019 1
## 4385 782020 1
## 4386 782021 1
## 4387 782022 1
## 4388 782023 1
## 4389 782024 1
## 4390 782025 1
## 4391 782026 1
## 4392 782027 1
## 4393 782028 1
## 4394 782029 1
## 4395 782030 1
## 4396 782031 1
## 4397 782032 1
## 4398 782033 1
## 4399 782034 1
## 4400 782035 1
## 4401 782036 1
## 4402 782037 1
## 4403 782038 1
## 4404 782039 1
## 4405 782040 1
## 4406 782041 1
## 4407 782042 1
## 4408 782043 1
## 4409 782044 1
## 4410 782045 1
## 4411 782046 1
## 4412 782047 1
## 4413 782048 1
## 4414 782049 1
## 4415 782050 1
## 4416 782051 1
## 4417 782052 1
## 4418 782053 1
## 4419 782054 1
## 4420 782055 1
## 4421 782056 1
## 4422 782057 1
## 4423 782058 1
## 4424 782059 1
## 4425 782060 1
## 4426 782061 1
## 4427 782062 1
## 4428 782063 1
## 4429 782064 1
## 4430 782065 1
## 4431 782066 1
## 4432 782067 1
## 4433 782068 1
## 4434 782069 1
## 4435 782070 1
## 4436 782071 1
## 4437 782072 1
## 4438 782073 1
## 4439 782074 1
## 4440 782075 1
## 4441 782076 1
## 4442 782077 1
## 4443 782078 1
## 4444 782079 1
## 4445 782080 1
## 4446 782081 1
## 4447 782082 1
## 4448 782083 1
## 4449 782084 1
## 4450 782085 1
## 4451 782086 1
## 4452 782087 1
## 4453 782088 1
## 4454 782089 1
## 4455 782090 1
## 4456 782091 1
## 4457 782092 1
## 4458 782093 1
## 4459 782094 1
## 4460 782095 1
## 4461 782096 1
## 4462 782097 1
## 4463 782098 1
## 4464 782099 1
## 4465 782100 1
## 4466 782101 1
## 4467 782102 1
## 4468 782103 1
## 4469 782104 1
## 4470 782105 1
## 4471 782106 1
## 4472 782107 1
## 4473 782108 1
## 4474 782109 1
## 4475 782110 1
## 4476 782111 1
## 4477 782112 1
## 4478 782113 1
## 4479 782114 1
## 4480 782115 1
## 4481 782116 1
## 4482 782117 1
## 4483 782118 1
## 4484 782119 1
## 4485 782120 1
## 4486 782121 1
## 4487 782122 1
## 4488 782123 1
## 4489 782124 1
## 4490 782125 1
## 4491 782126 1
## 4492 782127 1
## 4493 782128 1
## 4494 782129 1
## 4495 782130 1
## 4496 782131 1
## 4497 782132 1
## 4498 782133 1
## 4499 782134 1
## 4500 782135 1
## 4501 782136 1
## 4502 782137 1
## 4503 782138 1
## 4504 782139 1
## 4505 782140 1
## 4506 782141 1
## 4507 782142 1
## 4508 782143 1
## 4509 782144 1
## 4510 782145 1
## 4511 782146 1
## 4512 782147 1
## 4513 782148 1
## 4514 782149 1
## 4515 782150 1
## 4516 782151 1
## 4517 782152 1
## 4518 782153 1
## 4519 782154 1
## 4520 782155 1
## 4521 782156 1
## 4522 782157 1
## 4523 782158 1
## 4524 782159 1
## 4525 782160 1
## 4526 782161 1
## 4527 782162 1
## 4528 782163 1
## 4529 782164 1
## 4530 782165 1
## 4531 782166 1
## 4532 782167 1
## 4533 782169 1
## 4534 782170 1
## 4535 782171 1
## 4536 782172 1
## 4537 782173 1
## 4538 782174 1
## 4539 782175 1
## 4540 782176 1
## 4541 782177 1
## 4542 782178 1
## 4543 782179 1
## 4544 782180 1
## 4545 782181 1
## 4546 782182 1
## 4547 782183 1
## 4548 782184 1
## 4549 782185 1
## 4550 782186 1
## 4551 782187 1
## 4552 782188 1
## 4553 782189 1
## 4554 782190 1
## 4555 782191 1
## 4556 782192 1
## 4557 782193 1
## 4558 782194 1
## 4559 782195 1
## 4560 782196 1
## 4561 782197 1
## 4562 782198 1
## 4563 782199 1
## 4564 782200 1
## 4565 782201 1
## 4566 782202 1
## 4567 782203 1
## 4568 782204 1
## 4569 782205 1
## 4570 782206 1
## 4571 782207 1
## 4572 782208 1
## 4573 782209 1
## 4574 782210 1
## 4575 782211 1
## 4576 782212 1
## 4577 782213 1
## 4578 782214 1
## 4579 782215 1
## 4580 782216 1
## 4581 782217 1
## 4582 782218 1
## 4583 782219 1
## 4584 782220 1
## 4585 782221 1
## 4586 782222 1
## 4587 782223 1
## 4588 782224 1
## 4589 782225 1
## 4590 782226 1
## 4591 782227 1
## 4592 782228 1
## 4593 782229 1
## 4594 782230 1
## 4595 782231 1
## 4596 782232 1
## 4597 782233 1
## 4598 782234 1
## 4599 782235 1
## 4600 782236 1
## 4601 782237 1
## 4602 782238 1
## 4603 782239 1
## 4604 782240 1
## 4605 782241 1
## 4606 782242 1
## 4607 782243 1
## 4608 782244 1
## 4609 782245 1
## 4610 782246 1
## 4611 782247 1
## 4612 782248 1
## 4613 782249 1
## 4614 782250 1
## 4615 782251 1
## 4616 782252 1
## 4617 782253 1
## 4618 782254 1
## 4619 782255 1
## 4620 782256 1
## 4621 782257 1
## 4622 782258 1
## 4623 782259 1
## 4624 782260 1
## 4625 782261 1
## 4626 782262 1
## 4627 782263 1
## 4628 782264 1
## 4629 782265 1
## 4630 782266 1
## 4631 782267 1
## 4632 782268 1
## 4633 782269 1
## 4634 782270 1
## 4635 782271 1
## 4636 782272 1
## 4637 782273 1
## 4638 782274 1
## 4639 782275 1
## 4640 782276 1
## 4641 782277 1
## 4642 782278 1
## 4643 782279 1
## 4644 782280 1
## 4645 782281 1
## 4646 782282 1
## 4647 782283 1
## 4648 782284 1
## 4649 782285 1
## 4650 782286 1
## 4651 782287 1
## 4652 782288 1
## 4653 782289 1
## 4654 782290 1
## 4655 782291 1
## 4656 782292 1
## 4657 782293 1
## 4658 782294 1
## 4659 782295 1
## 4660 782296 1
## 4661 782297 1
## 4662 782298 1
## 4663 782299 1
## 4664 782300 1
## 4665 782301 1
## 4666 782302 1
## 4667 782303 1
## 4668 782304 1
## 4669 782305 1
## 4670 782306 1
## 4671 782307 1
## 4672 782308 1
## 4673 782309 1
## 4674 782310 1
## 4675 782311 1
## 4676 782312 1
## 4677 782313 1
## 4678 782314 1
## 4679 782315 1
## 4680 782316 1
## 4681 782317 1
## 4682 782318 1
## 4683 782319 1
## 4684 782320 1
## 4685 782321 1
## 4686 782322 1
## 4687 782323 1
## 4688 782324 1
## 4689 782325 1
## 4690 782326 1
## 4691 782327 1
## 4692 782328 1
## 4693 782329 1
## 4694 782330 1
## 4695 782331 1
## 4696 782332 1
## 4697 782333 1
## 4698 782334 1
## 4699 782335 1
## 4700 782336 1
## 4701 782337 1
## 4702 782338 1
## 4703 782339 1
## 4704 782340 1
## 4705 782341 1
## 4706 782342 1
## 4707 782343 1
## 4708 782344 1
## 4709 782345 1
## 4710 782346 1
## 4711 782347 1
## 4712 782348 1
## 4713 782349 1
## 4714 782350 1
## 4715 782351 1
## 4716 782352 1
## 4717 782353 1
## 4718 782354 1
## 4719 782355 1
## 4720 782356 1
## 4721 782357 1
## 4722 782358 1
## 4723 782359 1
## 4724 782360 1
## 4725 782361 1
## 4726 782362 1
## 4727 782363 1
## 4728 782364 1
## 4729 782365 1
## 4730 782366 1
## 4731 782367 1
## 4732 782368 1
## 4733 782369 1
## 4734 782370 1
## 4735 782371 1
## 4736 782372 1
## 4737 782373 1
## 4738 782374 1
## 4739 782375 1
## 4740 782376 1
## 4741 782377 1
## 4742 782378 1
## 4743 782379 1
## 4744 782380 1
## 4745 782381 1
## 4746 782382 1
## 4747 782383 1
## 4748 782384 1
## 4749 782385 1
## 4750 782386 1
## 4751 782387 1
## 4752 782388 1
## 4753 782389 1
## 4754 782390 1
## 4755 782391 1
## 4756 782392 1
## 4757 782393 1
## 4758 782394 1
## 4759 782395 1
## 4760 782396 1
## 4761 782397 1
## 4762 782398 1
## 4763 782399 1
## 4764 782400 1
## 4765 782401 1
## 4766 782402 1
## 4767 782403 1
## 4768 782404 1
## 4769 782405 1
## 4770 782406 1
## 4771 782407 1
## 4772 782408 1
## 4773 782409 1
## 4774 782410 1
## 4775 782411 1
## 4776 782412 1
## 4777 782413 1
## 4778 782414 1
## 4779 782415 1
## 4780 782416 1
## 4781 782417 1
## 4782 782418 1
## 4783 782419 1
## 4784 782420 1
## 4785 782421 1
## 4786 782422 1
## 4787 782423 1
## 4788 782424 1
## 4789 782425 1
## 4790 782426 1
## 4791 782427 1
## 4792 782428 1
## 4793 782429 1
## 4794 782430 1
## 4795 782431 1
## 4796 782432 1
## 4797 782433 1
## 4798 782434 1
## 4799 782435 1
## 4800 782436 1
## 4801 782437 1
## 4802 782438 1
## 4803 782439 1
## 4804 782440 1
## 4805 782441 1
## 4806 782442 1
## 4807 782443 1
## 4808 782444 1
## 4809 782445 1
## 4810 782446 1
## 4811 782447 1
## 4812 782448 1
## 4813 782449 1
## 4814 782450 1
## 4815 782451 1
## 4816 782452 1
## 4817 782453 1
## 4818 782454 1
## 4819 782455 1
## 4820 782456 1
## 4821 782457 1
## 4822 782458 1
## 4823 782459 1
## 4824 782460 1
## 4825 782461 1
## 4826 782462 1
## 4827 782463 1
## 4828 782464 1
## 4829 782465 1
## 4830 782466 1
## 4831 782467 1
## 4832 782468 1
## 4833 782469 1
## 4834 782470 1
## 4835 782471 1
## 4836 782472 1
## 4837 782473 1
## 4838 782474 1
## 4839 782475 1
## 4840 782476 1
## 4841 782477 1
## 4842 782478 1
## 4843 782479 1
## 4844 782480 1
## 4845 782481 1
## 4846 782482 1
## 4847 782483 1
## 4848 782484 1
## 4849 782485 1
## 4850 782486 1
## 4851 782487 1
## 4852 782488 1
## 4853 782489 1
## 4854 782490 1
## 4855 782491 1
## 4856 782492 1
## 4857 782493 1
## 4858 782494 1
## 4859 782495 1
## 4860 782496 1
## 4861 782497 1
## 4862 782498 1
## 4863 782499 1
## 4864 782500 1
## 4865 782501 1
## 4866 782502 1
## 4867 782503 1
## 4868 782504 1
## 4869 782506 1
## 4870 782507 1
## 4871 782508 1
## 4872 782509 1
## 4873 782510 1
## 4874 782511 1
## 4875 782512 1
## 4876 782513 1
## 4877 782514 1
## 4878 782515 1
## 4879 782516 1
## 4880 782517 1
## 4881 782518 1
## 4882 782519 1
## 4883 782520 1
## 4884 782523 1
## 4885 782524 1
## 4886 782525 1
## 4887 782526 1
## 4888 782527 1
## 4889 782528 1
## 4890 782529 1
## 4891 782530 1
## 4892 782531 1
## 4893 782532 1
## 4894 782533 1
## 4895 782534 1
## 4896 782535 1
## 4897 782536 1
## 4898 782537 1
## 4899 782538 1
## 4900 782539 1
## 4901 782540 1
## 4902 782541 1
## 4903 782542 1
## 4904 782543 1
## 4905 782544 1
## 4906 782545 1
## 4907 782546 1
## 4908 782547 1
## 4909 782548 1
## 4910 782549 1
## 4911 782550 1
## 4912 782551 1
## 4913 782552 1
## 4914 782553 1
## 4915 782554 1
## 4916 782555 1
## 4917 782556 1
## 4918 782557 1
## 4919 782558 1
## 4920 782559 1
## 4921 782560 1
## 4922 782561 1
## 4923 782562 1
## 4924 782563 1
## 4925 782564 1
## 4926 782565 1
## 4927 782566 1
## 4928 782567 1
## 4929 782568 1
## 4930 782569 1
## 4931 782570 1
## 4932 782571 1
## 4933 782572 1
## 4934 782573 1
## 4935 782574 1
## 4936 782575 1
## 4937 782576 1
## 4938 782577 1
## 4939 782578 1
## 4940 782579 1
## 4941 782580 1
## 4942 782581 1
## 4943 782582 1
## 4944 782583 1
## 4945 782584 1
## 4946 782585 1
## 4947 782586 1
## 4948 782587 1
## 4949 782588 1
## 4950 782589 1
## 4951 782590 1
## 4952 782591 1
## 4953 782592 1
## 4954 782593 1
## 4955 782594 1
## 4956 782595 1
## 4957 782596 1
## 4958 782597 1
## 4959 782598 1
## 4960 782599 1
## 4961 782600 1
## 4962 782601 1
## 4963 782602 1
## 4964 782603 1
## 4965 782604 1
## 4966 782605 1
## 4967 782606 1
## 4968 782607 1
## 4969 782608 1
## 4970 782609 1
## 4971 782610 1
## 4972 782611 1
## 4973 782612 1
## 4974 782613 1
## 4975 782614 1
## 4976 782615 1
## 4977 782616 1
## 4978 782617 1
## 4979 782618 1
## 4980 782619 1
## 4981 782620 1
## 4982 782621 1
## 4983 782622 1
## 4984 782623 1
## 4985 782624 1
## 4986 782625 1
## 4987 782626 1
## 4988 782627 1
## 4989 782628 1
## 4990 782629 1
## 4991 782630 1
## 4992 782631 1
## 4993 782632 1
## 4994 782633 1
## 4995 782634 1
## 4996 782635 1
## 4997 782636 1
## 4998 782637 1
## 4999 782638 1
## 5000 782639 1
## 5001 782640 1
## 5002 782641 1
## 5003 782642 1
## 5004 782643 1
## 5005 782644 1
## 5006 782645 1
## 5007 782646 1
## 5008 782647 1
## 5009 782648 1
## 5010 782649 1
## 5011 782650 1
## 5012 782651 1
## 5013 782652 1
## 5014 782653 1
## 5015 782654 1
## 5016 782655 1
## 5017 782656 1
## 5018 782657 1
## 5019 782658 1
## 5020 782659 1
## 5021 782660 1
## 5022 782661 1
## 5023 782662 1
## 5024 782663 1
## 5025 782664 1
## 5026 782665 1
## 5027 782666 1
## 5028 782667 1
## 5029 782668 1
## 5030 782669 1
## 5031 782670 1
## 5032 782671 1
## 5033 782672 1
## 5034 782673 1
## 5035 782674 1
## 5036 782675 1
## 5037 782676 1
## 5038 782677 1
## 5039 782678 1
## 5040 782679 1
## 5041 782680 1
## 5042 782681 1
## 5043 782682 1
## 5044 782683 1
## 5045 782684 1
## 5046 782685 1
## 5047 782687 1
## 5048 782688 1
## 5049 782689 1
## 5050 782690 1
## 5051 782691 1
## 5052 782692 1
## 5053 782693 1
## 5054 782694 1
## 5055 782695 1
## 5056 782696 1
## 5057 782697 1
## 5058 782698 1
## 5059 782699 1
## 5060 782700 1
## 5061 782701 1
## 5062 782702 1
## 5063 782703 1
## 5064 782704 1
## 5065 782705 1
## 5066 782706 1
## 5067 782707 1
## 5068 782708 1
## 5069 782709 1
## 5070 782710 1
## 5071 782711 1
## 5072 782712 1
## 5073 782713 1
## 5074 782714 1
## 5075 782715 1
## 5076 782716 1
## 5077 782717 1
## 5078 782718 1
## 5079 782719 1
## 5080 782720 1
## 5081 782721 1
## 5082 782722 1
## 5083 782723 1
## 5084 782724 1
## 5085 782725 1
## 5086 782726 1
## 5087 782727 1
## 5088 782728 1
## 5089 782729 1
## 5090 782730 1
## 5091 782731 1
## 5092 782732 1
## 5093 782733 1
## 5094 782734 1
## 5095 782735 1
## 5096 782736 1
## 5097 782737 1
## 5098 782738 1
## 5099 782739 1
## 5100 782740 1
## 5101 782741 1
## 5102 782742 1
## 5103 782743 1
## 5104 782744 1
## 5105 782745 1
## 5106 782746 1
## 5107 782747 1
## 5108 782748 1
## 5109 782749 1
## 5110 782750 1
## 5111 782751 1
## 5112 782752 1
## 5113 782753 1
## 5114 782754 1
## 5115 782755 1
## 5116 782756 1
## 5117 782757 1
## 5118 782758 1
## 5119 782759 1
## 5120 782760 1
## 5121 782761 1
## 5122 782762 1
## 5123 782763 1
## 5124 782764 1
## 5125 782765 1
## 5126 782766 1
## 5127 782767 1
## 5128 782768 1
## 5129 782769 1
## 5130 782770 1
## 5131 782771 1
## 5132 782772 1
## 5133 782773 1
## 5134 782774 1
## 5135 782775 1
## 5136 782776 1
## 5137 782777 1
## 5138 782778 1
## 5139 782779 1
## 5140 782780 1
## 5141 782781 1
## 5142 782782 1
## 5143 782783 1
## 5144 782784 1
## 5145 782785 1
## 5146 782786 1
## 5147 782787 1
## 5148 782788 1
## 5149 782789 1
## 5150 782790 1
## 5151 782791 1
## 5152 782792 1
## 5153 782793 1
## 5154 782794 1
## 5155 782795 1
## 5156 782796 1
## 5157 782797 1
## 5158 782798 1
## 5159 782799 1
## 5160 782800 1
## 5161 782801 1
## 5162 782802 1
## 5163 782803 1
## 5164 782804 1
## 5165 782805 1
## 5166 782806 1
## 5167 782807 1
## 5168 782808 1
## 5169 782809 1
## 5170 782810 1
## 5171 782811 1
## 5172 782812 1
## 5173 782813 1
## 5174 782814 1
## 5175 782815 1
## 5176 782816 1
## 5177 782817 1
## 5178 782818 1
## 5179 782819 1
## 5180 782820 1
## 5181 782821 1
## 5182 782822 1
## 5183 782823 1
## 5184 782824 1
## 5185 782825 1
## 5186 782826 1
## 5187 782827 1
## 5188 782828 1
## 5189 782829 1
## 5190 782830 1
## 5191 782831 1
## 5192 782832 1
## 5193 782833 1
## 5194 782834 1
## 5195 782835 1
## 5196 782836 1
## 5197 782837 1
## 5198 782838 1
## 5199 782839 1
## 5200 782840 1
## 5201 782841 1
## 5202 782842 1
## 5203 782843 1
## 5204 782844 1
## 5205 782845 1
## 5206 782846 1
## 5207 782847 1
## 5208 782848 1
## 5209 782849 1
## 5210 782850 1
## 5211 782851 1
## 5212 782852 1
## 5213 782853 1
## 5214 782854 1
## 5215 782855 1
## 5216 782856 1
## 5217 782857 1
## 5218 782858 1
## 5219 782859 1
## 5220 782860 1
## 5221 782861 1
## 5222 782862 1
## 5223 782863 1
## 5224 782864 1
## 5225 782865 1
## 5226 782866 1
## 5227 782867 1
## 5228 782868 1
## 5229 782869 1
## 5230 782870 1
## 5231 782871 1
## 5232 782873 1
## 5233 782874 1
## 5234 782875 1
## 5235 782876 1
## 5236 782877 1
## 5237 782878 1
## 5238 782879 1
## 5239 782880 1
## 5240 782881 1
## 5241 782882 1
## 5242 782883 1
## 5243 782884 1
## 5244 782885 1
## 5245 782886 1
## 5246 782887 1
## 5247 782888 1
## 5248 782889 1
## 5249 782890 1
## 5250 782891 1
## 5251 782892 1
## 5252 782893 1
## 5253 782894 1
## 5254 782895 1
## 5255 782896 1
## 5256 782897 1
## 5257 782898 1
## 5258 782899 1
## 5259 782900 1
## 5260 782901 1
## 5261 782902 1
## 5262 782903 1
## 5263 782904 1
## 5264 782905 1
## 5265 782906 1
## 5266 782907 1
## 5267 782908 1
## 5268 782909 1
## 5269 782910 1
## 5270 782911 1
## 5271 782912 1
## 5272 782913 1
## 5273 782914 1
## 5274 782915 1
## 5275 782916 1
## 5276 782917 1
## 5277 782918 1
## 5278 782919 1
## 5279 782920 1
## 5280 782921 1
## 5281 782922 1
## 5282 782923 1
## 5283 782924 1
## 5284 782925 1
## 5285 782926 1
## 5286 782927 1
## 5287 782928 1
## 5288 782929 1
## 5289 782930 1
## 5290 782931 1
## 5291 782932 1
## 5292 782933 1
## 5293 782934 1
## 5294 782935 1
## 5295 782936 1
## 5296 782937 1
## 5297 782938 1
## 5298 782939 1
## 5299 782940 1
## 5300 782941 1
## 5301 782942 1
## 5302 782943 1
## 5303 782944 1
## 5304 782945 1
## 5305 782946 1
## 5306 782947 1
## 5307 782948 1
## 5308 782949 1
## 5309 782950 1
## 5310 782951 1
## 5311 782952 1
## 5312 782953 1
## 5313 782954 1
## 5314 782955 1
## 5315 782956 1
## 5316 782957 1
## 5317 782958 1
## 5318 782959 1
## 5319 782960 1
## 5320 782961 1
## 5321 782962 1
## 5322 782963 1
## 5323 782964 1
## 5324 782965 1
## 5325 782966 1
## 5326 782967 1
## 5327 782968 1
## 5328 782969 1
## 5329 782970 1
## 5330 782971 1
## 5331 782972 1
## 5332 782973 1
## 5333 782974 1
## 5334 782975 1
## 5335 782976 1
## 5336 782977 1
## 5337 782978 1
## 5338 782979 1
## 5339 782980 1
## 5340 782981 1
## 5341 782982 1
## 5342 782983 1
## 5343 782984 1
## 5344 782985 1
## 5345 782986 1
## 5346 782987 1
## 5347 782988 1
## 5348 782989 1
## 5349 782990 1
## 5350 782991 1
## 5351 782992 1
## 5352 782993 1
## 5353 782994 1
## 5354 782995 1
## 5355 782996 1
## 5356 782997 1
## 5357 782998 1
## 5358 782999 1
## 5359 783000 1
## 5360 783001 1
## 5361 783002 1
## 5362 783003 1
## 5363 783004 1
## 5364 783005 1
## 5365 783006 1
## 5366 783007 1
## 5367 783008 1
## 5368 783009 1
## 5369 783010 1
## 5370 783011 1
## 5371 783012 1
## 5372 783013 1
## 5373 783014 1
## 5374 783015 1
## 5375 783016 1
## 5376 783017 1
## 5377 783018 1
## 5378 783019 1
## 5379 783020 1
## 5380 783021 1
## 5381 783022 1
## 5382 783023 1
## 5383 783024 1
## 5384 783025 1
## 5385 783026 1
## 5386 783027 1
## 5387 783028 1
## 5388 783029 1
## 5389 783030 1
## 5390 783031 1
## 5391 783032 1
## 5392 783033 1
## 5393 783034 1
## 5394 783035 1
## 5395 783036 1
## 5396 783037 1
## 5397 783038 1
## 5398 783039 1
## 5399 783040 1
## 5400 783041 1
## 5401 783042 1
## 5402 783043 1
## 5403 783044 1
## 5404 783045 1
## 5405 783046 1
## 5406 783047 1
## 5407 783048 1
## 5408 783049 1
## 5409 783050 1
## 5410 783051 1
## 5411 783052 1
## 5412 783053 1
## 5413 783054 1
## 5414 783055 1
## 5415 783056 1
## 5416 783057 1
## 5417 783058 1
## 5418 783059 1
## 5419 783060 1
## 5420 783061 1
## 5421 783062 1
## 5422 783063 1
## 5423 783064 1
## 5424 783065 1
## 5425 783066 1
## 5426 783067 1
## 5427 783068 1
## 5428 783069 1
## 5429 783070 1
## 5430 783071 1
## 5431 783072 1
## 5432 783073 1
## 5433 783074 1
## 5434 783075 1
## 5435 783076 1
## 5436 783077 1
## 5437 783078 1
## 5438 783080 1
## 5439 783082 1
## 5440 783083 1
## 5441 783084 1
## 5442 783085 1
## 5443 783086 1
## 5444 783087 1
## 5445 783088 1
## 5446 783089 1
## 5447 783090 1
## 5448 783091 1
## 5449 783092 1
## 5450 783093 1
## 5451 783094 1
## 5452 783095 1
## 5453 783096 1
## 5454 783097 1
## 5455 783098 1
## 5456 783099 1
## 5457 783100 1
## 5458 783101 1
## 5459 783102 1
## 5460 783103 1
## 5461 783104 1
## 5462 783105 1
## 5463 783106 1
## 5464 783107 1
## 5465 783108 1
## 5466 783109 1
## 5467 783110 1
## 5468 783111 1
## 5469 783112 1
## 5470 783113 1
## 5471 783114 1
## 5472 783115 1
## 5473 783116 1
## 5474 783117 1
## 5475 783118 1
## 5476 783119 1
## 5477 783120 1
## 5478 783121 1
## 5479 783122 1
## 5480 783123 1
## 5481 783124 1
## 5482 783125 1
## 5483 783126 1
## 5484 783127 1
## 5485 783128 1
## 5486 783129 1
## 5487 783130 1
## 5488 783131 1
## 5489 783132 1
## 5490 783133 1
## 5491 783134 1
## 5492 783135 1
## 5493 783136 1
## 5494 783137 1
## 5495 783138 1
## 5496 783139 1
## 5497 783140 1
## 5498 783141 1
## 5499 783142 1
## 5500 783143 1
## 5501 783144 1
## 5502 783145 1
## 5503 783146 1
## 5504 783147 1
## 5505 783148 1
## 5506 783149 1
## 5507 783150 1
## 5508 783151 1
## 5509 783152 1
## 5510 783153 1
## 5511 783154 1
## 5512 783155 1
## 5513 783156 1
## 5514 783157 1
## 5515 783158 1
## 5516 783159 1
## 5517 783160 1
## 5518 783161 1
## 5519 783162 1
## 5520 783163 1
## 5521 783164 1
## 5522 783165 1
## 5523 783166 1
## 5524 783167 1
## 5525 783168 1
## 5526 783169 1
## 5527 783170 1
## 5528 783171 1
## 5529 783172 1
## 5530 783173 1
## 5531 783174 1
## 5532 783175 1
## 5533 783176 1
## 5534 783177 1
## 5535 783178 1
## 5536 783179 1
## 5537 783180 1
## 5538 783181 1
## 5539 783182 1
## 5540 783183 1
## 5541 783184 1
## 5542 783185 1
## 5543 783186 1
## 5544 783187 1
## 5545 783188 1
## 5546 783189 1
## 5547 783190 1
## 5548 783191 1
## 5549 783192 1
## 5550 783193 1
## 5551 783194 1
## 5552 783195 1
## 5553 783196 1
## 5554 783197 1
## 5555 783198 1
## 5556 783199 1
## 5557 783200 1
## 5558 783201 1
## 5559 783202 1
## 5560 783203 1
## 5561 783204 1
## 5562 783205 1
## 5563 783206 1
## 5564 783207 1
## 5565 783208 1
## 5566 783209 1
## 5567 783210 1
## 5568 783211 1
## 5569 783212 1
## 5570 783213 1
## 5571 783214 1
## 5572 783215 1
## 5573 783216 1
## 5574 783217 1
## 5575 783218 1
## 5576 783219 1
## 5577 783220 1
## 5578 783221 1
## 5579 783222 1
## 5580 783223 1
## 5581 783224 1
## 5582 783225 1
## 5583 783226 1
## 5584 783227 1
## 5585 783228 1
## 5586 783229 1
## 5587 783230 1
## 5588 783231 1
## 5589 783232 1
## 5590 783233 1
## 5591 783234 1
## 5592 783235 1
## 5593 783236 1
## 5594 783237 1
## 5595 783238 1
## 5596 783239 1
## 5597 783240 1
## 5598 783241 1
## 5599 783242 1
## 5600 783243 1
## 5601 783244 1
## 5602 783245 1
## 5603 783246 1
## 5604 783247 1
## 5605 783248 1
## 5606 783249 1
## 5607 783250 1
## 5608 783251 1
## 5609 783252 1
## 5610 783253 1
## 5611 783254 1
## 5612 783255 1
## 5613 783256 1
## 5614 783257 1
## 5615 783258 1
## 5616 783259 1
## 5617 783260 1
## 5618 783261 1
## 5619 783262 1
## 5620 783263 1
## 5621 783264 1
## 5622 783265 1
## 5623 783266 1
## 5624 783267 1
## 5625 783268 1
## 5626 783269 1
## 5627 783270 1
## 5628 783271 1
## 5629 783272 1
## 5630 783273 1
## 5631 783274 1
## 5632 783275 1
## 5633 783276 1
## 5634 783277 1
## 5635 783278 1
## 5636 783279 1
## 5637 783280 1
## 5638 783281 1
## 5639 783282 1
## 5640 783283 1
## 5641 783284 1
## 5642 783285 1
## 5643 783286 1
## 5644 783287 1
## 5645 783288 1
## 5646 783289 1
## 5647 783290 1
## 5648 783291 1
## 5649 783292 1
## 5650 783293 1
## 5651 783294 1
## 5652 783295 1
## 5653 783296 1
## 5654 783297 1
## 5655 783298 1
## 5656 783299 1
## 5657 783300 1
## 5658 783301 1
## 5659 783302 1
## 5660 783303 1
## 5661 783304 1
## 5662 783305 1
## 5663 783306 1
## 5664 783307 1
## 5665 783308 1
## 5666 783309 1
## 5667 783310 1
## 5668 783311 1
## 5669 783312 1
## 5670 783313 1
## 5671 783314 1
## 5672 783315 1
## 5673 783316 1
## 5674 783317 1
## 5675 783318 1
## 5676 783319 1
## 5677 783320 1
## 5678 783321 1
## 5679 783322 1
## 5680 783323 1
## 5681 783324 1
## 5682 783325 1
## 5683 783326 1
## 5684 783327 1
## 5685 783328 1
## 5686 783329 1
## 5687 783330 1
## 5688 783331 1
## 5689 783332 1
## 5690 783333 1
## 5691 783334 1
## 5692 783335 1
## 5693 783336 1
## 5694 783337 1
## 5695 783338 1
## 5696 783339 1
## 5697 783340 1
## 5698 783341 1
## 5699 783342 1
## 5700 783343 1
## 5701 783344 1
## 5702 783345 1
## 5703 783346 1
## 5704 783347 1
## 5705 783348 1
## 5706 783349 1
## 5707 783350 1
## 5708 783351 1
## 5709 783352 1
## 5710 783353 1
## 5711 783354 1
## 5712 783355 1
## 5713 783356 1
## 5714 783357 1
## 5715 783358 1
## 5716 783359 1
## 5717 783360 1
## 5718 783361 1
## 5719 783362 1
## 5720 783363 1
## 5721 783364 1
## 5722 783365 1
## 5723 783366 1
## 5724 783367 1
## 5725 783368 1
## 5726 783369 1
## 5727 783370 1
## 5728 783371 1
## 5729 783372 1
## 5730 783373 1
## 5731 783374 1
## 5732 783375 1
## 5733 783376 1
## 5734 783377 1
## 5735 783378 1
## 5736 783379 1
## 5737 783380 1
## 5738 783381 1
## 5739 783382 1
## 5740 783383 1
## 5741 783384 1
## 5742 783385 1
## 5743 783386 1
## 5744 783387 1
## 5745 783388 1
## 5746 783389 1
## 5747 783390 1
## 5748 783391 1
## 5749 783392 1
## 5750 783393 1
## 5751 783394 1
## 5752 783395 1
## 5753 783396 1
## 5754 783397 1
## 5755 783398 1
## 5756 783399 1
## 5757 783401 1
## 5758 783402 1
## 5759 783403 1
## 5760 783404 1
## 5761 783405 1
## 5762 783406 1
## 5763 783407 1
## 5764 783408 1
## 5765 783409 1
## 5766 783410 1
## 5767 783411 1
## 5768 783412 1
## 5769 783413 1
## 5770 783414 1
## 5771 783415 1
## 5772 783416 1
## 5773 783417 1
## 5774 783418 1
## 5775 783419 1
## 5776 783420 1
## 5777 783421 1
## 5778 783422 1
## 5779 783423 1
## 5780 783424 1
## 5781 783425 1
## 5782 783426 1
## 5783 783427 1
## 5784 783428 1
## 5785 783429 1
## 5786 783430 1
## 5787 783431 1
## 5788 783432 1
## 5789 783433 1
## 5790 783434 1
## 5791 783435 1
## 5792 783436 1
## 5793 783437 1
## 5794 783438 1
## 5795 783439 1
## 5796 783440 1
## 5797 783441 1
## 5798 783442 1
## 5799 783443 1
## 5800 783444 1
## 5801 783445 1
## 5802 783446 1
## 5803 783447 1
## 5804 783448 1
## 5805 783449 1
## 5806 783450 1
## 5807 783451 1
## 5808 783452 1
## 5809 783453 1
## 5810 783454 1
## 5811 783455 1
## 5812 783456 1
## 5813 783457 1
## 5814 783458 1
## 5815 783459 1
## 5816 783460 1
## 5817 783461 1
## 5818 783462 1
## 5819 783463 1
## 5820 783464 1
## 5821 783465 1
## 5822 783466 1
## 5823 783467 1
## 5824 783468 1
## 5825 783469 1
## 5826 783470 1
## 5827 783471 1
## 5828 783472 1
## 5829 783473 1
## 5830 783474 1
## 5831 783475 1
## 5832 783476 1
## 5833 783477 1
## 5834 783478 1
## 5835 783479 1
## 5836 783480 1
## 5837 783481 1
## 5838 783482 1
## 5839 783483 1
## 5840 783484 1
## 5841 783485 1
## 5842 783486 1
## 5843 783487 1
## 5844 783488 1
## 5845 783489 1
## 5846 783490 1
## 5847 783491 1
## 5848 783492 1
## 5849 783493 1
## 5850 783494 1
## 5851 783495 1
## 5852 783496 1
## 5853 783497 1
## 5854 783498 1
## 5855 783499 1
## 5856 783500 1
## 5857 783501 1
## 5858 783502 1
## 5859 783503 1
## 5860 783504 1
## 5861 783505 1
## 5862 783506 1
## 5863 783507 1
## 5864 783508 1
## 5865 783509 1
## 5866 783510 1
## 5867 783511 1
## 5868 783512 1
## 5869 783513 1
## 5870 783514 1
## 5871 783515 1
## 5872 783516 1
## 5873 783517 1
## 5874 783518 1
## 5875 783519 1
## 5876 783520 1
## 5877 783521 1
## 5878 783522 1
## 5879 783523 1
## 5880 783524 1
## 5881 783525 1
## 5882 783526 1
## 5883 783527 1
## 5884 783528 1
## 5885 783529 1
## 5886 783530 1
## 5887 783531 1
## 5888 783532 1
## 5889 783533 1
## 5890 783534 1
## 5891 783535 1
## 5892 783536 1
## 5893 783537 1
## 5894 783538 1
## 5895 783539 1
## 5896 783540 1
## 5897 783541 1
## 5898 783542 1
## 5899 783543 1
## 5900 783544 1
## 5901 783545 1
## 5902 783546 1
## 5903 783547 1
## 5904 783548 1
## 5905 783549 1
## 5906 783550 1
## 5907 783551 1
## 5908 783552 1
## 5909 783553 1
## 5910 783554 1
## 5911 783555 1
## 5912 783556 1
## 5913 783557 1
## 5914 783558 1
## 5915 783559 1
## 5916 783560 1
## 5917 783561 1
## 5918 783562 1
## 5919 783563 1
## 5920 783564 1
## 5921 783565 1
## 5922 783566 1
## 5923 783567 1
## 5924 783568 1
## 5925 783569 1
## 5926 783570 1
## 5927 783571 1
## 5928 783572 1
## 5929 783573 1
## 5930 783574 1
## 5931 783575 1
## 5932 783576 1
## 5933 783577 1
## 5934 783578 1
## 5935 783579 1
## 5936 783580 1
## 5937 783581 1
## 5938 783582 1
## 5939 783583 1
## 5940 783584 1
## 5941 783585 1
## 5942 783586 1
## 5943 783587 1
## 5944 783588 1
## 5945 783589 1
## 5946 783590 1
## 5947 783591 1
## 5948 783592 1
## 5949 783593 1
## 5950 783594 1
## 5951 783595 1
## 5952 783596 1
## 5953 783597 1
## 5954 783598 1
## 5955 783599 1
## 5956 783600 1
## 5957 783601 1
## 5958 783602 1
## 5959 783603 1
## 5960 783604 1
## 5961 783605 1
## 5962 783606 1
## 5963 783607 1
## 5964 783608 1
## 5965 783609 1
## 5966 783610 1
## 5967 783611 1
## 5968 783612 1
## 5969 783613 1
## 5970 783614 1
## 5971 783615 1
## 5972 783616 1
## 5973 783617 1
## 5974 783618 1
## 5975 783619 1
## 5976 783620 1
## 5977 783621 1
## 5978 783622 1
## 5979 783623 1
## 5980 783624 1
## 5981 783625 1
## 5982 783626 1
## 5983 783627 1
## 5984 783628 1
## 5985 783629 1
## 5986 783630 1
## 5987 783631 1
## 5988 783632 1
## 5989 783633 1
## 5990 783634 1
## 5991 783635 1
## 5992 783636 1
## 5993 783637 1
## 5994 783638 1
## 5995 783639 1
## 5996 783640 1
## 5997 783641 1
## 5998 783642 1
## 5999 783643 1
## 6000 783644 1
## 6001 783645 1
## 6002 783646 1
## 6003 783647 1
## 6004 783648 1
## 6005 783649 1
## 6006 783650 1
## 6007 783651 1
## 6008 783652 1
## 6009 783653 1
## 6010 783654 1
## 6011 783655 1
## 6012 783656 1
## 6013 783657 1
## 6014 783658 1
## 6015 783659 1
## 6016 783660 1
## 6017 783661 1
## 6018 783662 1
## 6019 783663 1
## 6020 783664 1
## 6021 783665 1
## 6022 783666 1
## 6023 783667 1
## 6024 783668 1
## 6025 783669 1
## 6026 783670 1
## 6027 783671 1
## 6028 783672 1
## 6029 783673 1
## 6030 783674 1
## 6031 783675 1
## 6032 783676 1
## 6033 783677 1
## 6034 783678 1
## 6035 783679 1
## 6036 783680 1
## 6037 783681 1
## 6038 783682 1
## 6039 783683 1
## 6040 783684 1
## 6041 783685 1
## 6042 783686 1
## 6043 783687 1
## 6044 783688 1
## 6045 783689 1
## 6046 783690 1
## 6047 783691 1
## 6048 783692 1
## 6049 783693 1
## 6050 783694 1
## 6051 783695 1
## 6052 783696 1
## 6053 783697 1
## 6054 783698 1
## 6055 783699 1
## 6056 783700 1
## 6057 783701 1
## 6058 783702 1
## 6059 783703 1
## 6060 783704 1
## 6061 783705 1
## 6062 783706 1
## 6063 783707 1
## 6064 783708 1
## 6065 783709 1
## 6066 783710 1
## 6067 783711 1
## 6068 783712 1
## 6069 783713 1
## 6070 783714 1
## 6071 783715 1
## 6072 783716 1
## 6073 783717 1
## 6074 783718 1
## 6075 783719 1
## 6076 783720 1
## 6077 783721 1
## 6078 783722 1
## 6079 783723 1
## 6080 783724 1
## 6081 783725 1
## 6082 783726 1
## 6083 783727 1
## 6084 783728 1
## 6085 783729 1
## 6086 783730 1
## 6087 783731 1
## 6088 783732 1
## 6089 783733 1
## 6090 783734 1
## 6091 783735 1
## 6092 783736 1
## 6093 783737 1
## 6094 783738 1
## 6095 783739 1
## 6096 783740 1
## 6097 783741 1
## 6098 783742 1
## 6099 783743 1
## 6100 783744 1
## 6101 783745 1
## 6102 783746 1
## 6103 783747 1
## 6104 783748 1
## 6105 783749 1
## 6106 783750 1
## 6107 783751 1
## 6108 783752 1
## 6109 783753 1
## 6110 783754 1
## 6111 783755 1
## 6112 783756 1
## 6113 783757 1
## 6114 783758 1
## 6115 783759 1
## 6116 783760 1
## 6117 783761 1
## 6118 783762 1
## 6119 783763 1
## 6120 783764 1
## 6121 783765 1
## 6122 783766 1
## 6123 783767 1
## 6124 783768 1
## 6125 783769 1
## 6126 783770 1
## 6127 783771 1
## 6128 783772 1
## 6129 783773 1
## 6130 783774 1
## 6131 783775 1
## 6132 783776 1
## 6133 783777 1
## 6134 783778 1
## 6135 783779 1
## 6136 783780 1
## 6137 783781 1
## 6138 783782 1
## 6139 783783 1
## 6140 783784 1
## 6141 783785 1
## 6142 783786 1
## 6143 783787 1
## 6144 783788 1
## 6145 783789 1
## 6146 783790 1
## 6147 783791 1
## 6148 783792 1
## 6149 783793 1
## 6150 783794 1
## 6151 783795 1
## 6152 783796 1
## 6153 783797 1
## 6154 783798 1
## 6155 783799 1
## 6156 783800 1
## 6157 783801 1
## 6158 783802 1
## 6159 783803 1
## 6160 783804 1
## 6161 783805 1
## 6162 783806 1
## 6163 783807 1
## 6164 783808 1
## 6165 783809 1
## 6166 783810 1
## 6167 783811 1
## 6168 783812 1
## 6169 783813 1
## 6170 783814 1
## 6171 783815 1
## 6172 783816 1
## 6173 783817 1
## 6174 783818 1
## 6175 783819 1
## 6176 783820 1
## 6177 783821 1
## 6178 783822 1
## 6179 783823 1
## 6180 783824 1
## 6181 783825 1
## 6182 783826 1
## 6183 783827 1
## 6184 783828 1
## 6185 783829 1
## 6186 783830 1
## 6187 783831 1
## 6188 783832 1
## 6189 783833 1
## 6190 783834 1
## 6191 783835 1
## 6192 783836 1
## 6193 783837 1
## 6194 783838 1
## 6195 783839 1
## 6196 783840 1
## 6197 783841 1
## 6198 783842 1
## 6199 783843 1
## 6200 783844 1
## 6201 783845 1
## 6202 783846 1
## 6203 783847 1
## 6204 783848 1
## 6205 783849 1
## 6206 783850 1
## 6207 783851 1
## 6208 783852 1
## 6209 783853 1
## 6210 783854 1
## 6211 783855 1
## 6212 783856 1
## 6213 783857 1
## 6214 783858 1
## 6215 783859 1
## 6216 783860 1
## 6217 783861 1
## 6218 783862 1
## 6219 783863 1
## 6220 783864 1
## 6221 783865 1
## 6222 783866 1
## 6223 783867 1
## 6224 783868 1
## 6225 783869 1
## 6226 783870 1
## 6227 783871 1
## 6228 783872 1
## 6229 783873 1
## 6230 783874 1
## 6231 783875 1
## 6232 783876 1
## 6233 783877 1
## 6234 783878 1
## 6235 783879 1
## 6236 783880 1
## 6237 783881 1
## 6238 783882 1
## 6239 783883 1
## 6240 783884 1
## 6241 783885 1
## 6242 783886 1
## 6243 783887 1
## 6244 783888 1
## 6245 783889 1
## 6246 783890 1
## 6247 783891 1
## 6248 783892 1
## 6249 783893 1
## 6250 783894 1
## 6251 783895 1
## 6252 783896 1
## 6253 783897 1
## 6254 783898 1
## 6255 783899 1
## 6256 783900 1
## 6257 783901 1
## 6258 783902 1
## 6259 783903 1
## 6260 783904 1
## 6261 783905 1
## 6262 783906 1
## 6263 783907 1
## 6264 783908 1
## 6265 783909 1
## 6266 783910 1
## 6267 783911 1
## 6268 783912 1
## 6269 783913 1
## 6270 783914 1
## 6271 783915 1
## 6272 783916 1
## 6273 783917 1
## 6274 783918 1
## 6275 783919 1
## 6276 783920 1
## 6277 783921 1
## 6278 783922 1
## 6279 783924 1
## 6280 783925 1
## 6281 783926 1
## 6282 783927 1
## 6283 783928 1
## 6284 783929 1
## 6285 783930 1
## 6286 783931 1
## 6287 783932 1
## 6288 783933 1
## 6289 783934 1
## 6290 783935 1
## 6291 783936 1
## 6292 783937 1
## 6293 783938 1
## 6294 783939 1
## 6295 783940 1
## 6296 783941 1
## 6297 783942 1
## 6298 783943 1
## 6299 783944 1
## 6300 783945 1
## 6301 783946 1
## 6302 783947 1
## 6303 783948 1
## 6304 783949 1
## 6305 783950 1
## 6306 783951 1
## 6307 783952 1
## 6308 783953 1
## 6309 783954 1
## 6310 783955 1
## 6311 783956 1
## 6312 783957 1
## 6313 783958 1
## 6314 783959 1
## 6315 783960 1
## 6316 783961 1
## 6317 783962 1
## 6318 783963 1
## 6319 783964 1
## 6320 783965 1
## 6321 783966 1
## 6322 783967 1
## 6323 783968 1
## 6324 783969 1
## 6325 783970 1
## 6326 783971 1
## 6327 783972 1
## 6328 783973 1
## 6329 783974 1
## 6330 783975 1
## 6331 783976 1
## 6332 783977 1
## 6333 783978 1
## 6334 783979 1
## 6335 783980 1
## 6336 783981 1
## 6337 783982 1
## 6338 783983 1
## 6339 783984 1
## 6340 783985 1
## 6341 783986 1
## 6342 783987 1
## 6343 783988 1
## 6344 783989 1
## 6345 783990 1
## 6346 783991 1
## 6347 783992 1
## 6348 783993 1
## 6349 783994 1
## 6350 783995 1
## 6351 783996 1
## 6352 783997 1
## 6353 783998 1
## 6354 783999 1
## 6355 784000 1
## 6356 784001 1
## 6357 784003 1
## 6358 784004 1
## 6359 784005 1
## 6360 784006 1
## 6361 784007 1
## 6362 784008 1
## 6363 784009 1
## 6364 784010 1
## 6365 784011 1
## 6366 784012 1
## 6367 784013 1
## 6368 784014 1
## 6369 784015 1
## 6370 784016 1
## 6371 784017 1
## 6372 784018 1
## 6373 784019 1
## 6374 784020 1
## 6375 784021 1
## 6376 784022 1
## 6377 784023 1
## 6378 784024 1
## 6379 784025 1
## 6380 784026 1
## 6381 784027 1
## 6382 784028 1
## 6383 784029 1
## 6384 784030 1
## 6385 784031 1
## 6386 784032 1
## 6387 784033 1
## 6388 784034 1
## 6389 784035 1
## 6390 784036 1
## 6391 784037 1
## 6392 784038 1
## 6393 784039 1
## 6394 784040 1
## 6395 784041 1
## 6396 784042 1
## 6397 784043 1
## 6398 784044 1
## 6399 784045 1
## 6400 784046 1
## 6401 784047 1
## 6402 784048 1
## 6403 784049 1
## 6404 784050 1
## 6405 784051 1
## 6406 784052 1
## 6407 784053 1
## 6408 784054 1
## 6409 784055 1
## 6410 784056 1
## 6411 784057 1
## 6412 784058 1
## 6413 784059 1
## 6414 784060 1
## 6415 784061 1
## 6416 784062 1
## 6417 784063 1
## 6418 784064 1
## 6419 784065 1
## 6420 784066 1
## 6421 784067 1
## 6422 784068 1
## 6423 784069 1
## 6424 784070 1
## 6425 784071 1
## 6426 784072 1
## 6427 784073 1
## 6428 784074 1
## 6429 784075 1
## 6430 784076 1
## 6431 784077 1
## 6432 784078 1
## 6433 784079 1
## 6434 784080 1
## 6435 784081 1
## 6436 784082 1
## 6437 784083 1
## 6438 784084 1
## 6439 784085 1
## 6440 784086 1
## 6441 784087 1
## 6442 784088 1
## 6443 784089 1
## 6444 784090 1
## 6445 784091 1
## 6446 784092 1
## 6447 784093 1
## 6448 784094 1
## 6449 784095 1
## 6450 784096 1
## 6451 784097 1
## 6452 784098 1
## 6453 784099 1
## 6454 784100 1
## 6455 784101 1
## 6456 784102 1
## 6457 784103 1
## 6458 784104 1
## 6459 784105 1
## 6460 784106 1
## 6461 784107 1
## 6462 784108 1
## 6463 784109 1
## 6464 784110 1
## 6465 784111 1
## 6466 784112 1
## 6467 784113 1
## 6468 784114 1
## 6469 784115 1
## 6470 784116 1
## 6471 784117 1
## 6472 784118 1
## 6473 784119 1
## 6474 784120 1
## 6475 784121 1
## 6476 784122 1
## 6477 784123 1
## 6478 784124 1
## 6479 784125 1
## 6480 784126 1
## 6481 784127 1
## 6482 784128 1
## 6483 784129 1
## 6484 784130 1
## 6485 784131 1
## 6486 784132 1
## 6487 784133 1
## 6488 784134 1
## 6489 784135 1
## 6490 784136 1
## 6491 784137 1
## 6492 784138 1
## 6493 784139 1
## 6494 784140 1
## 6495 784141 1
## 6496 784142 1
## 6497 784143 1
## 6498 784144 1
## 6499 784145 1
## 6500 784146 1
## 6501 784147 1
## 6502 784148 1
## 6503 784149 1
## 6504 784150 1
## 6505 784151 1
## 6506 784152 1
## 6507 784153 1
## 6508 784154 1
## 6509 784155 1
## 6510 784156 1
## 6511 784157 1
## 6512 784158 1
## 6513 784159 1
## 6514 784160 1
## 6515 784161 1
## 6516 784162 1
## 6517 784163 1
## 6518 784164 1
## 6519 784165 1
## 6520 784166 1
## 6521 784167 1
## 6522 784168 1
## 6523 784169 1
## 6524 784170 1
## 6525 784171 1
## 6526 784172 1
## 6527 784173 1
## 6528 784174 1
## 6529 784175 1
## 6530 784176 1
## 6531 784177 1
## 6532 784178 1
## 6533 784179 1
## 6534 784180 1
## 6535 784181 1
## 6536 784182 1
## 6537 784183 1
## 6538 784184 1
## 6539 784185 1
## 6540 784186 1
## 6541 784187 1
## 6542 784188 1
## 6543 784189 1
## 6544 784190 1
## 6545 784191 1
## 6546 784192 1
## 6547 784193 1
## 6548 784194 1
## 6549 784195 1
## 6550 784196 1
## 6551 784197 1
## 6552 784198 1
## 6553 784199 1
## 6554 784200 1
## 6555 784201 1
## 6556 784202 1
## 6557 784203 1
## 6558 784204 1
## 6559 784205 1
## 6560 784206 1
## 6561 784207 1
## 6562 784208 1
## 6563 784209 1
## 6564 784210 1
## 6565 784211 1
## 6566 784212 1
## 6567 784213 1
## 6568 784214 1
## 6569 784215 1
## 6570 784216 1
## 6571 784217 1
## 6572 784218 1
## 6573 784219 1
## 6574 784220 1
## 6575 784221 1
## 6576 784222 1
## 6577 784223 1
## 6578 784224 1
## 6579 784225 1
## 6580 784226 1
## 6581 784227 1
## 6582 784228 1
## 6583 784229 1
## 6584 784230 1
## 6585 784231 1
## 6586 784232 1
## 6587 784233 1
## 6588 784234 1
## 6589 784235 1
## 6590 784236 1
## 6591 784237 1
## 6592 784238 1
## 6593 784239 1
## 6594 784240 1
## 6595 784241 1
## 6596 784242 1
## 6597 784243 1
## 6598 784244 1
## 6599 784245 1
## 6600 784246 1
## 6601 784247 1
## 6602 784248 1
## 6603 784249 1
## 6604 784250 1
## 6605 784251 1
## 6606 784252 1
## 6607 784253 1
## 6608 784254 1
## 6609 784255 1
## 6610 784256 1
## 6611 784257 1
## 6612 784258 1
## 6613 784259 1
## 6614 784260 1
## 6615 784261 1
## 6616 784262 1
## 6617 784263 1
## 6618 784264 1
## 6619 784265 1
## 6620 784266 1
## 6621 784267 1
## 6622 784268 1
## 6623 784269 1
## 6624 784270 1
## 6625 784271 1
## 6626 784272 1
## 6627 784273 1
## 6628 784274 1
## 6629 784275 1
## 6630 784276 1
## 6631 784277 1
## 6632 784278 1
## 6633 784279 1
## 6634 784280 1
## 6635 784281 1
## 6636 784282 1
## 6637 784283 1
## 6638 784284 1
## 6639 784285 1
## 6640 784286 1
## 6641 784287 1
## 6642 784288 1
## 6643 784289 1
## 6644 784290 1
## 6645 784291 1
## 6646 784292 1
## 6647 784294 1
## 6648 784295 1
## 6649 784296 1
## 6650 784297 1
## 6651 784298 1
## 6652 784299 1
## 6653 784300 1
## 6654 784301 1
## 6655 784302 1
## 6656 784303 1
## 6657 784304 1
## 6658 784305 1
## 6659 784306 1
## 6660 784307 1
## 6661 784308 1
## 6662 784309 1
## 6663 784310 1
## 6664 784311 1
## 6665 784312 1
## 6666 784313 1
## 6667 784314 1
## 6668 784315 1
## 6669 784316 1
## 6670 784317 1
## 6671 784318 1
## 6672 784319 1
## 6673 784320 1
## 6674 784321 1
## 6675 784322 1
## 6676 784323 1
## 6677 784324 1
## 6678 784325 1
## 6679 784326 1
## 6680 784327 1
## 6681 784328 1
## 6682 784329 1
## 6683 784330 1
## 6684 784331 1
## 6685 784332 1
## 6686 784333 1
## 6687 784334 1
## 6688 784335 1
## 6689 784336 1
## 6690 784337 1
## 6691 784338 1
## 6692 784339 1
## 6693 784340 1
## 6694 784341 1
## 6695 784342 1
## 6696 784343 1
## 6697 784344 1
## 6698 784345 1
## 6699 784346 1
## 6700 784347 1
## 6701 784348 1
## 6702 784349 1
## 6703 784351 1
## 6704 784352 1
## 6705 784353 1
## 6706 784354 1
## 6707 784355 1
## 6708 784356 1
## 6709 784357 1
## 6710 784358 1
## 6711 784359 1
## 6712 784360 1
## 6713 784361 1
## 6714 784362 1
## 6715 784363 1
## 6716 784364 1
## 6717 784365 1
## 6718 784366 1
## 6719 784367 1
## 6720 784368 1
## 6721 784369 1
## 6722 784370 1
## 6723 784371 1
## 6724 784372 1
## 6725 784373 1
## 6726 784374 1
## 6727 784375 1
## 6728 784376 1
## 6729 784377 1
## 6730 784378 1
## 6731 784379 1
## 6732 784380 1
## 6733 784381 1
## 6734 784382 1
## 6735 784383 1
## 6736 784384 1
## 6737 784385 1
## 6738 784386 1
## 6739 784387 1
## 6740 784388 1
## 6741 784390 1
## 6742 784391 1
## 6743 784392 1
## 6744 784393 1
## 6745 784394 1
## 6746 784395 1
## 6747 784396 1
## 6748 784397 1
## 6749 784398 1
## 6750 784399 1
## 6751 784400 1
## 6752 784401 1
## 6753 784402 1
## 6754 784403 1
## 6755 784404 1
## 6756 784405 1
## 6757 784406 1
## 6758 784407 1
## 6759 784408 1
## 6760 784409 1
## 6761 784410 1
## 6762 784411 1
## 6763 784412 1
## 6764 784413 1
## 6765 784414 1
## 6766 784415 1
## 6767 784416 1
## 6768 784417 1
## 6769 784418 1
## 6770 784419 1
## 6771 784420 1
## 6772 784421 1
## 6773 784422 1
## 6774 784423 1
## 6775 784424 1
## 6776 784425 1
## 6777 784426 1
## 6778 784427 1
## 6779 784428 1
## 6780 784429 1
## 6781 784430 1
## 6782 784431 1
## 6783 784432 1
## 6784 784433 1
## 6785 784434 1
## 6786 784435 1
## 6787 784436 1
## 6788 784437 1
## 6789 784438 1
## 6790 784439 1
## 6791 784440 1
## 6792 784441 1
## 6793 784442 1
## 6794 784443 1
## 6795 784444 1
## 6796 784445 1
## 6797 784446 1
## 6798 784447 1
## 6799 784448 1
## 6800 784449 1
## 6801 784450 1
## 6802 784451 1
## 6803 784452 1
## 6804 784453 1
## 6805 784454 1
## 6806 784455 1
## 6807 784456 1
## 6808 784457 1
## 6809 784458 1
## 6810 784459 1
## 6811 784460 1
## 6812 784461 1
## 6813 784462 1
## 6814 784463 1
## 6815 784464 1
## 6816 784465 1
## 6817 784466 1
## 6818 784467 1
## 6819 784468 1
## 6820 784469 1
## 6821 784470 1
## 6822 784471 1
## 6823 784472 1
## 6824 784473 1
## 6825 784474 1
## 6826 784475 1
## 6827 784476 1
## 6828 784477 1
## 6829 784478 1
## 6830 784479 1
## 6831 784480 1
## 6832 784481 1
## 6833 784482 1
## 6834 784483 1
## 6835 784484 1
## 6836 784485 1
## 6837 784486 1
## 6838 784487 1
## 6839 784488 1
## 6840 784489 1
## 6841 784490 1
## 6842 784491 1
## 6843 784492 1
## 6844 784493 1
## 6845 784494 1
## 6846 784495 1
## 6847 784496 1
## 6848 784497 1
## 6849 784498 1
## 6850 784499 1
## 6851 784500 1
## 6852 784501 1
## 6853 784502 1
## 6854 784503 1
## 6855 784504 1
## 6856 784505 1
## 6857 784506 1
## 6858 784507 1
## 6859 784508 1
## 6860 784509 1
## 6861 784510 1
## 6862 784511 1
## 6863 784512 1
## 6864 784513 1
## 6865 784514 1
## 6866 784515 1
## 6867 784517 1
## 6868 784518 1
## 6869 784519 1
## 6870 784520 1
## 6871 784521 1
## 6872 784522 1
## 6873 784523 1
## 6874 784524 1
## 6875 784525 1
## 6876 784526 1
## 6877 784527 1
## 6878 784528 1
## 6879 784529 1
## 6880 784530 1
## 6881 784531 1
## 6882 784532 1
## 6883 784533 1
## 6884 784534 1
## 6885 784535 1
## 6886 784536 1
## 6887 784537 1
## 6888 784538 1
## 6889 784539 1
## 6890 784540 1
## 6891 784541 1
## 6892 784542 1
## 6893 784543 1
## 6894 784544 1
## 6895 784545 1
## 6896 784546 1
## 6897 784547 1
## 6898 784548 1
## 6899 784549 1
## 6900 784550 1
## 6901 784551 1
## 6902 784552 1
## 6903 784553 1
## 6904 784554 1
## 6905 784555 1
## 6906 784556 1
## 6907 784557 1
## 6908 784558 1
## 6909 784559 1
## 6910 784560 1
## 6911 784561 1
## 6912 784562 1
## 6913 784563 1
## 6914 784564 1
## 6915 784565 1
## 6916 784566 1
## 6917 784567 1
## 6918 784568 1
## 6919 784569 1
## 6920 784570 1
## 6921 784571 1
## 6922 784572 1
## 6923 784573 1
## 6924 784574 1
## 6925 784575 1
## 6926 784576 1
## 6927 784577 1
## 6928 784578 1
## 6929 784579 1
## 6930 784580 1
## 6931 784581 1
## 6932 784582 1
## 6933 784583 1
## 6934 784584 1
## 6935 784585 1
## 6936 784586 1
## 6937 784587 1
## 6938 784588 1
## 6939 784589 1
## 6940 784590 1
## 6941 784591 1
## 6942 784592 1
## 6943 784593 1
## 6944 784594 1
## 6945 784595 1
## 6946 784596 1
## 6947 784597 1
## 6948 784598 1
## 6949 784599 1
## 6950 784600 1
## 6951 784601 1
## 6952 784602 1
## 6953 784603 1
## 6954 784604 1
## 6955 784605 1
## 6956 784606 1
## 6957 784607 1
## 6958 784608 1
## 6959 784609 1
## 6960 784610 1
## 6961 784611 1
## 6962 784612 1
## 6963 784613 1
## 6964 784614 1
## 6965 784615 1
## 6966 784616 1
## 6967 784617 1
## 6968 784618 1
## 6969 784619 1
## 6970 784620 1
## 6971 784621 1
## 6972 784622 1
## 6973 784623 1
## 6974 784624 1
## 6975 784625 1
## 6976 784626 1
## 6977 784627 1
## 6978 784628 1
## 6979 784629 1
## 6980 784630 1
## 6981 784631 1
## 6982 784632 1
## 6983 784633 1
## 6984 784634 1
## 6985 784635 1
## 6986 784636 1
## 6987 784637 1
## 6988 784638 1
## 6989 784639 1
## 6990 784640 1
## 6991 784641 1
## 6992 784642 1
## 6993 784643 1
## 6994 784644 1
## 6995 784645 1
## 6996 784646 1
## 6997 784647 1
## 6998 784648 1
## 6999 784649 1
## 7000 784650 1
## 7001 784651 1
## 7002 784652 1
## 7003 784653 1
## 7004 784654 1
## 7005 784655 1
## 7006 784656 1
## 7007 784657 1
## 7008 784658 1
## 7009 784659 1
## 7010 784660 1
## 7011 784661 1
## 7012 784662 1
## 7013 784663 1
## 7014 784664 1
## 7015 784665 1
## 7016 784666 1
## 7017 784667 1
## 7018 784668 1
## 7019 784669 1
## 7020 784670 1
## 7021 784671 1
## 7022 784672 1
## 7023 784673 1
## 7024 784674 1
## 7025 784675 1
## 7026 784676 1
## 7027 784677 1
## 7028 784678 1
## 7029 784679 1
## 7030 784680 1
## 7031 784681 1
## 7032 784682 1
## 7033 784683 1
## 7034 784684 1
## 7035 784685 1
## 7036 784686 1
## 7037 784687 1
## 7038 784688 1
## 7039 784689 1
## 7040 784690 1
## 7041 784691 1
## 7042 784692 1
## 7043 784693 1
## 7044 784694 1
## 7045 784695 1
## 7046 784696 1
## 7047 784697 1
## 7048 784698 1
## 7049 784699 1
## 7050 784700 1
## 7051 784701 1
## 7052 784702 1
## 7053 784703 1
## 7054 784704 1
## 7055 784705 1
## 7056 784706 1
## 7057 784707 1
## 7058 784708 1
## 7059 784709 1
## 7060 784710 1
## 7061 784711 1
## 7062 784712 1
## 7063 784713 1
## 7064 784714 1
## 7065 784715 1
## 7066 784716 1
## 7067 784717 1
## 7068 784718 1
## 7069 784719 1
## 7070 784720 1
## 7071 784721 1
## 7072 784722 1
## 7073 784723 1
## 7074 784724 1
## 7075 784725 1
## 7076 784726 1
## 7077 784727 1
## 7078 784728 1
## 7079 784729 1
## 7080 784730 1
## 7081 784731 1
## 7082 784732 1
## 7083 784733 1
## 7084 784734 1
## 7085 784735 1
## 7086 784736 1
## 7087 784737 1
## 7088 784738 1
## 7089 784739 1
## 7090 784740 1
## 7091 784741 1
## 7092 784742 1
## 7093 784743 1
## 7094 784744 1
## 7095 784745 1
## 7096 784746 1
## 7097 784748 1
## 7098 784749 1
## 7099 784750 1
## 7100 784751 1
## 7101 784752 1
## 7102 784753 1
## 7103 784754 1
## 7104 784755 1
## 7105 784756 1
## 7106 784757 1
## 7107 784758 1
## 7108 784759 1
## 7109 784760 1
## 7110 784761 1
## 7111 784762 1
## 7112 784763 1
## 7113 784764 1
## 7114 784765 1
## 7115 784766 1
## 7116 784767 1
## 7117 784768 1
## 7118 784769 1
## 7119 784770 1
## 7120 784771 1
## 7121 784772 1
## 7122 784773 1
## 7123 784774 1
## 7124 784775 1
## 7125 784776 1
## 7126 784777 1
## 7127 784778 1
## 7128 784779 1
## 7129 784780 1
## 7130 784781 1
## 7131 784782 1
## 7132 784783 1
## 7133 784784 1
## 7134 784785 1
## 7135 784786 1
## 7136 784787 1
## 7137 784788 1
## 7138 784789 1
## 7139 784790 1
## 7140 784791 1
## 7141 784792 1
## 7142 784793 1
## 7143 784794 1
## 7144 784795 1
## 7145 784796 1
## 7146 784797 1
## 7147 784798 1
## 7148 784799 1
## 7149 784800 1
## 7150 784801 1
## 7151 784802 1
## 7152 784803 1
## 7153 784804 1
## 7154 784805 1
## 7155 784806 1
## 7156 784807 1
## 7157 784808 1
## 7158 784809 1
## 7159 784810 1
## 7160 784811 1
## 7161 784812 1
## 7162 784813 1
## 7163 784814 1
## 7164 784815 1
## 7165 784816 1
## 7166 784817 1
## 7167 784818 1
## 7168 784819 1
## 7169 784820 1
## 7170 784821 1
## 7171 784822 1
## 7172 784823 1
## 7173 784824 1
## 7174 784825 1
## 7175 784826 1
## 7176 784827 1
## 7177 784828 1
## 7178 784829 1
## 7179 784830 1
## 7180 784831 1
## 7181 784832 1
## 7182 784833 1
## 7183 784834 1
## 7184 784835 1
## 7185 784836 1
## 7186 784837 1
## 7187 784838 1
## 7188 784839 1
## 7189 784840 1
## 7190 784841 1
## 7191 784842 1
## 7192 784843 1
## 7193 784844 1
## 7194 784845 1
## 7195 784846 1
## 7196 784847 1
## 7197 784848 1
## 7198 784849 1
## 7199 784850 1
## 7200 784851 1
## 7201 784852 1
## 7202 784853 1
## 7203 784854 1
## 7204 784855 1
## 7205 784856 1
## 7206 784857 1
## 7207 784858 1
## 7208 784859 1
## 7209 784860 1
## 7210 784861 1
## 7211 784862 1
## 7212 784863 1
## 7213 784864 1
## 7214 784865 1
## 7215 784866 1
## 7216 784867 1
## 7217 784868 1
## 7218 784869 1
## 7219 784870 1
## 7220 784871 1
## 7221 784872 1
## 7222 784873 1
## 7223 784874 1
## 7224 784875 1
## 7225 784876 1
## 7226 784877 1
## 7227 784878 1
## 7228 784879 1
## 7229 784880 1
## 7230 784881 1
## 7231 784882 1
## 7232 784883 1
## 7233 784884 1
## 7234 784885 1
## 7235 784886 1
## 7236 784887 1
## 7237 784888 1
## 7238 784889 1
## 7239 784890 1
## 7240 784891 1
## 7241 784892 1
## 7242 784893 1
## 7243 784894 1
## 7244 784895 1
## 7245 784896 1
## 7246 784897 1
## 7247 784898 1
## 7248 784899 1
## 7249 784900 1
## 7250 784901 1
## 7251 784902 1
## 7252 784903 1
## 7253 784904 1
## 7254 784905 1
## 7255 784906 1
## 7256 784907 1
## 7257 784908 1
## 7258 784909 1
## 7259 784910 1
## 7260 784911 1
## 7261 784912 1
## 7262 784913 1
## 7263 784914 1
## 7264 784915 1
## 7265 784916 1
## 7266 784917 1
## 7267 784918 1
## 7268 784919 1
## 7269 784920 1
## 7270 784921 1
## 7271 784922 1
## 7272 784923 1
## 7273 784924 1
## 7274 784925 1
## 7275 784926 1
## 7276 784927 1
## 7277 784928 1
## 7278 784929 1
## 7279 784930 1
## 7280 784931 1
## 7281 784932 1
## 7282 784933 1
## 7283 784934 1
## 7284 784935 1
## 7285 784936 1
## 7286 784937 1
## 7287 784938 1
## 7288 784939 1
## 7289 784940 1
## 7290 784941 1
## 7291 784942 1
## 7292 784943 1
## 7293 784944 1
## 7294 784945 1
## 7295 784946 1
## 7296 784947 1
## 7297 784948 1
## 7298 784949 1
## 7299 784950 1
## 7300 784951 1
## 7301 784952 1
## 7302 784953 1
## 7303 784954 1
## 7304 784955 1
## 7305 784956 1
## 7306 784957 1
## 7307 784958 1
## 7308 784959 1
## 7309 784960 1
## 7310 784961 1
## 7311 784962 1
## 7312 784963 1
## 7313 784964 1
## 7314 784965 1
## 7315 784966 1
## 7316 784967 1
## 7317 784968 1
## 7318 784969 1
## 7319 784970 1
## 7320 784971 1
## 7321 784972 1
## 7322 784973 1
## 7323 784974 1
## 7324 784975 1
## 7325 784976 1
## 7326 784977 1
## 7327 784978 1
## 7328 784979 1
## 7329 784980 1
## 7330 784981 1
## 7331 784982 1
## 7332 784983 1
## 7333 784984 1
## 7334 784985 1
## 7335 784986 1
## 7336 784987 1
## 7337 784988 1
## 7338 784989 1
## 7339 784990 1
## 7340 784991 1
## 7341 784992 1
## 7342 784993 1
## 7343 784994 1
## 7344 784995 1
## 7345 784996 1
## 7346 784997 1
## 7347 784998 1
## 7348 784999 1
## 7349 785000 1
## 7350 785001 1
## 7351 785002 1
## 7352 785003 1
## 7353 785004 1
## 7354 785005 1
## 7355 785006 1
## 7356 785007 1
## 7357 785008 1
## 7358 785009 1
## 7359 785010 1
## 7360 785011 1
## 7361 785012 1
## 7362 785013 1
## 7363 785014 1
## 7364 785015 1
## 7365 785016 1
## 7366 785017 1
## 7367 785018 1
## 7368 785019 1
## 7369 785020 1
## 7370 785021 1
## 7371 785023 1
## 7372 785024 1
## 7373 785025 1
## 7374 785026 1
## 7375 785027 1
## 7376 785028 1
## 7377 785029 1
## 7378 785030 1
## 7379 785031 1
## 7380 785032 1
## 7381 785033 1
## 7382 785034 1
## 7383 785035 1
## 7384 785036 1
## 7385 785037 1
## 7386 785038 1
## 7387 785039 1
## 7388 785040 1
## 7389 785041 1
## 7390 785042 1
## 7391 785043 1
## 7392 785044 1
## 7393 785045 1
## 7394 785046 1
## 7395 785047 1
## 7396 785048 1
## 7397 785049 1
## 7398 785050 1
## 7399 785051 1
## 7400 785052 1
## 7401 785053 1
## 7402 785054 1
## 7403 785055 1
## 7404 785056 1
## 7405 785057 1
## 7406 785058 1
## 7407 785059 1
## 7408 785060 1
## 7409 785061 1
## 7410 785062 1
## 7411 785063 1
## 7412 785064 1
## 7413 785065 1
## 7414 785066 1
## 7415 785067 1
## 7416 785068 1
## 7417 785069 1
## 7418 785070 1
## 7419 785071 1
## 7420 785072 1
## 7421 785073 1
## 7422 785074 1
## 7423 785075 1
## 7424 785076 1
## 7425 785077 1
## 7426 785078 1
## 7427 785079 1
## 7428 785080 1
## 7429 785081 1
## 7430 785082 1
## 7431 785083 1
## 7432 785084 1
## 7433 785085 1
## 7434 785086 1
## 7435 785087 1
## 7436 785088 1
## 7437 785089 1
## 7438 785090 1
## 7439 785091 1
## 7440 785092 1
## 7441 785093 1
## 7442 785094 1
## 7443 785095 1
## 7444 785096 1
## 7445 785097 1
## 7446 785098 1
## 7447 785099 1
## 7448 785100 1
## 7449 785101 1
## 7450 785102 1
## 7451 785103 1
## 7452 785104 1
## 7453 785105 1
## 7454 785106 1
## 7455 785107 1
## 7456 785108 1
## 7457 785109 1
## 7458 785110 1
## 7459 785111 1
## 7460 785112 1
## 7461 785113 1
## 7462 785114 1
## 7463 785115 1
## 7464 785116 1
## 7465 785117 1
## 7466 785118 1
## 7467 785119 1
## 7468 785120 1
## 7469 785121 1
## 7470 785122 1
## 7471 785123 1
## 7472 785124 1
## 7473 785125 1
## 7474 785126 1
## 7475 785127 1
## 7476 785128 1
## 7477 785129 1
## 7478 785130 1
## 7479 785131 1
## 7480 785132 1
## 7481 785133 1
## 7482 785134 1
## 7483 785135 1
## 7484 785136 1
## 7485 785137 1
## 7486 785138 1
## 7487 785139 1
## 7488 785140 1
## 7489 785141 1
## 7490 785142 1
## 7491 785143 1
## 7492 785144 1
## 7493 785145 1
## 7494 785146 1
## 7495 785147 1
## 7496 785148 1
## 7497 785149 1
## 7498 785150 1
## 7499 785151 1
## 7500 785152 1
## 7501 785153 1
## 7502 785154 1
## 7503 785155 1
## 7504 785156 1
## 7505 785157 1
## 7506 785158 1
## 7507 785159 1
## 7508 785160 1
## 7509 785161 1
## 7510 785162 1
## 7511 785163 1
## 7512 785164 1
## 7513 785165 1
## 7514 785166 1
## 7515 785167 1
## 7516 785168 1
## 7517 785169 1
## 7518 785170 1
## 7519 785171 1
## 7520 785172 1
## 7521 785173 1
## 7522 785174 1
## 7523 785175 1
## 7524 785176 1
## 7525 785177 1
## 7526 785178 1
## 7527 785179 1
## 7528 785180 1
## 7529 785181 1
## 7530 785182 1
## 7531 785183 1
## 7532 785184 1
## 7533 785185 1
## 7534 785186 1
## 7535 785187 1
## 7536 785188 1
## 7537 785189 1
## 7538 785190 1
## 7539 785191 1
## 7540 785192 1
## 7541 785193 1
## 7542 785194 1
## 7543 785195 1
## 7544 785196 1
## 7545 785197 1
## 7546 785198 1
## 7547 785199 1
## 7548 785200 1
## 7549 785201 1
## 7550 785202 1
## 7551 785203 1
## 7552 785204 1
## 7553 785205 1
## 7554 785206 1
## 7555 785207 1
## 7556 785208 1
## 7557 785209 1
## 7558 785210 1
## 7559 785211 1
## 7560 785212 1
## 7561 785213 1
## 7562 785214 1
## 7563 785215 1
## 7564 785216 1
## 7565 785217 1
## 7566 785218 1
## 7567 785219 1
## 7568 785220 1
## 7569 785221 1
## 7570 785222 1
## 7571 785223 1
## 7572 785224 1
## 7573 785225 1
## 7574 785226 1
## 7575 785227 1
## 7576 785228 1
## 7577 785229 1
## 7578 785230 1
## 7579 785231 1
## 7580 785232 1
## 7581 785233 1
## 7582 785234 1
## 7583 785235 1
## 7584 785236 1
## 7585 785237 1
## 7586 785238 1
## 7587 785239 1
## 7588 785240 1
## 7589 785241 1
## 7590 785242 1
## 7591 785243 1
## 7592 785244 1
## 7593 785245 1
## 7594 785246 1
## 7595 785247 1
## 7596 785248 1
## 7597 785249 1
## 7598 785250 1
## 7599 785251 1
## 7600 785252 1
## 7601 785253 1
## 7602 785254 1
## 7603 785255 1
## 7604 785256 1
## 7605 785257 1
## 7606 785258 1
## 7607 785259 1
## 7608 785260 1
## 7609 785261 1
## 7610 785262 1
## 7611 785263 1
## 7612 785264 1
## 7613 785265 1
## 7614 785266 1
## 7615 785267 1
## 7616 785268 1
## 7617 785269 1
## 7618 785270 1
## 7619 785271 1
## 7620 785272 1
## 7621 785273 1
## 7622 785274 1
## 7623 785275 1
## 7624 785276 1
## 7625 785277 1
## 7626 785278 1
## 7627 785279 1
## 7628 785280 1
## 7629 785281 1
## 7630 785282 1
## 7631 785283 1
## 7632 785284 1
## 7633 785285 1
## 7634 785286 1
## 7635 785287 1
## 7636 785288 1
## 7637 785289 1
## 7638 785290 1
## 7639 785291 1
## 7640 785292 1
## 7641 785293 1
## 7642 785294 1
## 7643 785295 1
## 7644 785296 1
## 7645 785297 1
## 7646 785298 1
## 7647 785299 1
## 7648 785300 1
## 7649 785301 1
## 7650 785302 1
## 7651 785303 1
## 7652 785304 1
## 7653 785305 1
## 7654 785306 1
## 7655 785307 1
## 7656 785308 1
## 7657 785309 1
## 7658 785310 1
## 7659 785311 1
## 7660 785312 1
## 7661 785313 1
## 7662 785314 1
## 7663 785315 1
## 7664 785316 1
## 7665 785317 1
## 7666 785318 1
## 7667 785319 1
## 7668 785320 1
## 7669 785321 1
## 7670 785322 1
## 7671 785323 1
## 7672 785324 1
## 7673 785325 1
## 7674 785326 1
## 7675 785327 1
## 7676 785328 1
## 7677 785329 1
## 7678 785330 1
## 7679 785331 1
## 7680 785332 1
## 7681 785333 1
## 7682 785334 1
## 7683 785335 1
## 7684 785336 1
## 7685 785337 1
## 7686 785338 1
## 7687 785339 1
## 7688 785340 1
## 7689 785341 1
## 7690 785342 1
## 7691 785343 1
## 7692 785344 1
## 7693 785345 1
## 7694 785346 1
## 7695 785347 1
## 7696 785348 1
## 7697 785349 1
## 7698 785350 1
## 7699 785351 1
## 7700 785352 1
## 7701 785353 1
## 7702 785354 1
## 7703 785355 1
## 7704 785356 1
## 7705 785357 1
## 7706 785358 1
## 7707 785359 1
## 7708 785360 1
## 7709 785361 1
## 7710 785362 1
## 7711 785363 1
## 7712 785364 1
## 7713 785365 1
## 7714 785366 1
## 7715 785367 1
## 7716 785368 1
## 7717 785369 1
## 7718 785370 1
## 7719 785371 1
## 7720 785372 1
## 7721 785373 1
## 7722 785374 1
## 7723 785375 1
## 7724 785376 1
## 7725 785377 1
## 7726 785378 1
## 7727 785379 1
## 7728 785380 1
## 7729 785381 1
## 7730 785382 1
## 7731 785383 1
## 7732 785384 1
## 7733 785385 1
## 7734 785386 1
## 7735 785387 1
## 7736 785388 1
## 7737 785389 1
## 7738 785390 1
## 7739 785391 1
## 7740 785392 1
## 7741 785393 1
## 7742 785394 1
## 7743 785395 1
## 7744 785396 1
## 7745 785397 1
## 7746 785398 1
## 7747 785399 1
## 7748 785400 1
## 7749 785401 1
## 7750 785402 1
## 7751 785403 1
## 7752 785404 1
## 7753 785405 1
## 7754 785406 1
## 7755 785407 1
## 7756 785408 1
## 7757 785409 1
## 7758 785410 1
## 7759 785411 1
## 7760 785412 1
## 7761 785413 1
## 7762 785414 1
## 7763 785415 1
## 7764 785416 1
## 7765 785417 1
## 7766 785418 1
## 7767 785419 1
## 7768 785420 1
## 7769 785421 1
## 7770 785422 1
## 7771 785423 1
## 7772 785424 1
## 7773 785425 1
## 7774 785426 1
## 7775 785427 1
## 7776 785428 1
## 7777 785429 1
## 7778 785430 1
## 7779 785431 1
## 7780 785432 1
## 7781 785433 1
## 7782 785434 1
## 7783 785435 1
## 7784 785436 1
## 7785 785437 1
## 7786 785438 1
## 7787 785439 1
## 7788 785440 1
## 7789 785441 1
## 7790 785442 1
## 7791 785443 1
## 7792 785444 1
## 7793 785445 1
## 7794 785446 1
## 7795 785447 1
## 7796 785448 1
## 7797 785449 1
## 7798 785450 1
## 7799 785451 1
## 7800 785452 1
## 7801 785453 1
## 7802 785454 1
## 7803 785455 1
## 7804 785456 1
## 7805 785457 1
## 7806 785458 1
## 7807 785459 1
## 7808 785460 1
## 7809 785461 1
## 7810 785462 1
## 7811 785463 1
## 7812 785464 1
## 7813 785465 1
## 7814 785466 1
## 7815 785467 1
## 7816 785468 1
## 7817 785469 1
## 7818 785470 1
## 7819 785471 1
## 7820 785472 1
## 7821 785473 1
## 7822 785474 1
## 7823 785475 1
## 7824 785476 1
## 7825 785477 1
## 7826 785478 1
## 7827 785479 1
## 7828 785480 1
## 7829 785481 1
## 7830 785482 1
## 7831 785483 1
## 7832 785484 1
## 7833 785485 1
## 7834 785486 1
## 7835 785487 1
## 7836 785488 1
## 7837 785489 1
## 7838 785490 1
## 7839 785491 1
## 7840 785492 1
## 7841 785493 1
## 7842 785494 1
## 7843 785495 1
## 7844 785496 1
## 7845 785497 1
## 7846 785498 1
## 7847 785499 1
## 7848 785500 1
## 7849 785501 1
## 7850 785502 1
## 7851 785503 1
## 7852 785504 1
## 7853 785505 1
## 7854 785506 1
## 7855 785507 1
## 7856 785508 1
## 7857 785509 1
## 7858 785510 1
## 7859 785511 1
## 7860 785512 1
## 7861 785513 1
## 7862 785514 1
## 7863 785515 1
## 7864 785516 1
## 7865 785517 1
## 7866 785518 1
## 7867 785519 1
## 7868 785520 1
## 7869 785521 1
## 7870 785522 1
## 7871 785523 1
## 7872 785524 1
## 7873 785525 1
## 7874 785526 1
## 7875 785527 1
## 7876 785528 1
## 7877 785529 1
## 7878 785530 1
## 7879 785531 1
## 7880 785532 1
## 7881 785533 1
## 7882 785534 1
## 7883 785535 1
## 7884 785536 1
## 7885 785537 1
## 7886 785538 1
## 7887 785539 1
## 7888 785540 1
## 7889 785541 1
## 7890 785542 1
## 7891 785543 1
## 7892 785544 1
## 7893 785545 1
## 7894 785546 1
## 7895 785547 1
## 7896 785548 1
## 7897 785549 1
## 7898 785550 1
## 7899 785551 1
## 7900 785552 1
## 7901 785553 1
## 7902 785554 1
## 7903 785555 1
## 7904 785556 1
## 7905 785557 1
## 7906 785558 1
## 7907 785559 1
## 7908 785560 1
## 7909 785561 1
## 7910 785562 1
## 7911 785563 1
## 7912 785564 1
## 7913 785565 1
## 7914 785566 1
## 7915 785567 1
## 7916 785568 1
## 7917 785569 1
## 7918 785570 1
## 7919 785571 1
## 7920 785572 1
## 7921 785573 1
## 7922 785574 1
## 7923 785575 1
## 7924 785576 1
## 7925 785577 1
## 7926 785578 1
## 7927 785579 1
## 7928 785580 1
## 7929 785581 1
## 7930 785582 1
## 7931 785583 1
## 7932 785584 1
## 7933 785585 1
## 7934 785586 1
## 7935 785587 1
## 7936 785588 1
## 7937 785589 1
## 7938 785590 1
## 7939 785591 1
## 7940 785592 1
## 7941 785593 1
## 7942 785594 1
## 7943 785595 1
## 7944 785596 1
## 7945 785597 1
## 7946 785598 1
## 7947 785599 1
## 7948 785600 1
## 7949 785601 1
## 7950 785602 1
## 7951 785603 1
## 7952 785604 1
## 7953 785605 1
## 7954 785606 1
## 7955 785607 1
## 7956 785608 1
## 7957 785609 1
## 7958 785610 1
## 7959 785611 1
## 7960 785612 1
## 7961 785613 1
## 7962 785614 1
## 7963 785615 1
## 7964 785616 1
## 7965 785617 1
## 7966 785618 1
## 7967 785619 1
## 7968 785620 1
## 7969 785621 1
## 7970 785622 1
## 7971 785623 1
## 7972 785624 1
## 7973 785625 1
## 7974 785626 1
## 7975 785627 1
## 7976 785628 1
## 7977 785629 1
## 7978 785630 1
## 7979 785631 1
## 7980 785632 1
## 7981 785633 1
## 7982 785634 1
## 7983 785635 1
## 7984 785636 1
## 7985 785637 1
## 7986 785638 1
## 7987 785639 1
## 7988 785640 1
## 7989 785641 1
## 7990 785642 1
## 7991 785643 1
## 7992 785644 1
## 7993 785645 1
## 7994 785646 1
## 7995 785647 1
## 7996 785648 1
## 7997 785649 1
## 7998 785650 1
## 7999 785651 1
## 8000 785652 1
## 8001 785653 1
## 8002 785654 1
## 8003 785655 1
## 8004 785656 1
## 8005 785657 1
## 8006 785658 1
## 8007 785659 1
## 8008 785660 1
## 8009 785661 1
## 8010 785662 1
## 8011 785663 1
## 8012 785664 1
## 8013 785665 1
## 8014 785666 1
## 8015 785667 1
## 8016 785668 1
## 8017 785669 1
## 8018 785670 1
## 8019 785671 1
## 8020 785672 1
## 8021 785673 1
## 8022 785674 1
## 8023 785675 1
## 8024 785676 1
## 8025 785677 1
## 8026 785678 1
## 8027 785679 1
## 8028 785680 1
## 8029 785681 1
## 8030 785682 1
## 8031 785683 1
## 8032 785684 1
## 8033 785685 1
## 8034 785686 1
## 8035 785687 1
## 8036 785688 1
## 8037 785689 1
## 8038 785690 1
## 8039 785691 1
## 8040 785692 1
## 8041 785693 1
## 8042 785694 1
## 8043 785695 1
## 8044 785696 1
## 8045 785697 1
## 8046 785698 1
## 8047 785699 1
## 8048 785700 1
## 8049 785701 1
## 8050 785702 1
## 8051 785703 1
## 8052 785704 1
## 8053 785705 1
## 8054 785706 1
## 8055 785707 1
## 8056 785708 1
## 8057 785709 1
## 8058 785710 1
## 8059 785711 1
## 8060 785712 1
## 8061 785713 1
## 8062 785714 1
## 8063 785715 1
## 8064 785716 1
## 8065 785717 1
## 8066 785718 1
## 8067 785719 1
## 8068 785720 1
## 8069 785721 1
## 8070 785722 1
## 8071 785723 1
## 8072 785724 1
## 8073 785726 1
## 8074 785728 1
## 8075 785729 1
## 8076 785730 1
## 8077 785731 1
## 8078 785732 1
## 8079 785733 1
## 8080 785734 1
## 8081 785735 1
## 8082 785736 1
## 8083 785737 1
## 8084 785738 1
## 8085 785739 1
## 8086 785740 1
## 8087 785741 1
## 8088 785742 1
## 8089 785743 1
## 8090 785744 1
## 8091 785745 1
## 8092 785746 1
## 8093 785747 1
## 8094 785748 1
## 8095 785749 1
## 8096 785750 1
## 8097 785751 1
## 8098 785752 1
## 8099 785753 1
## 8100 785754 1
## 8101 785755 1
## 8102 785756 1
## 8103 785757 1
## 8104 785758 1
## 8105 785759 1
## 8106 785760 1
## 8107 785761 1
## 8108 785762 1
## 8109 785763 1
## 8110 785764 1
## 8111 785765 1
## 8112 785766 1
## 8113 785767 1
## 8114 785768 1
## 8115 785769 1
## 8116 785770 1
## 8117 785771 1
## 8118 785772 1
## 8119 785773 1
## 8120 785774 1
## 8121 785775 1
## 8122 785776 1
## 8123 785777 1
## 8124 785779 1
## 8125 785780 1
## 8126 785781 1
## 8127 785782 1
## 8128 785783 1
## 8129 785784 1
## 8130 785785 1
## 8131 785786 1
## 8132 785787 1
## 8133 785788 1
## 8134 785789 1
## 8135 785790 1
## 8136 785791 1
## 8137 785792 1
## 8138 785793 1
## 8139 785794 1
## 8140 785795 1
## 8141 785796 1
## 8142 785797 1
## 8143 785798 1
## 8144 785799 1
## 8145 785800 1
## 8146 785801 1
## 8147 785802 1
## 8148 785803 1
## 8149 785804 1
## 8150 785805 1
## 8151 785806 1
## 8152 785807 1
## 8153 785808 1
## 8154 785809 1
## 8155 785810 1
## 8156 785811 1
## 8157 785812 1
## 8158 785813 1
## 8159 785814 1
## 8160 785815 1
## 8161 785816 1
## 8162 785817 1
## 8163 785818 1
## 8164 785819 1
## 8165 785820 1
## 8166 785821 1
## 8167 785822 1
## 8168 785823 1
## 8169 785824 1
## 8170 785825 1
## 8171 785826 1
## 8172 785827 1
## 8173 785828 1
## 8174 785829 1
## 8175 785830 1
## 8176 785831 1
## 8177 785832 1
## 8178 785833 1
## 8179 785834 1
## 8180 785835 1
## 8181 785836 1
## 8182 785837 1
## 8183 785838 1
## 8184 785839 1
## 8185 785840 1
## 8186 785841 1
## 8187 785842 1
## 8188 785843 1
## 8189 785844 1
## 8190 785845 1
## 8191 785846 1
## 8192 785847 1
## 8193 785848 1
## 8194 785849 1
## 8195 785850 1
## 8196 785851 1
## 8197 785852 1
## 8198 785853 1
## 8199 785854 1
## 8200 785855 1
## 8201 785856 1
## 8202 785857 1
## 8203 785858 1
## 8204 785859 1
## 8205 785860 1
## 8206 785861 1
## 8207 785862 1
## 8208 785863 1
## 8209 785864 1
## 8210 785865 1
## 8211 785866 1
## 8212 785867 1
## 8213 785868 1
## 8214 785869 1
## 8215 785870 1
## 8216 785871 1
## 8217 785872 1
## 8218 785873 1
## 8219 785874 1
## 8220 785875 1
## 8221 785876 1
## 8222 785877 1
## 8223 785878 1
## 8224 785879 1
## 8225 785880 1
## 8226 785881 1
## 8227 785882 1
## 8228 785883 1
## 8229 785884 1
## 8230 785885 1
## 8231 785886 1
## 8232 785887 1
## 8233 785888 1
## 8234 785889 1
## 8235 785890 1
## 8236 785891 1
## 8237 785892 1
## 8238 785893 1
## 8239 785894 1
## 8240 785895 1
## 8241 785896 1
## 8242 785897 1
## 8243 785898 1
## 8244 785899 1
## 8245 785900 1
## 8246 785901 1
## 8247 785902 1
## 8248 785903 1
## 8249 785904 1
## 8250 785905 1
## 8251 785906 1
## 8252 785907 1
## 8253 785908 1
## 8254 785909 1
## 8255 785910 1
## 8256 785911 1
## 8257 785912 1
## 8258 785913 1
## 8259 785914 1
## 8260 785915 1
## 8261 785916 1
## 8262 785917 1
## 8263 785918 1
## 8264 785919 1
## 8265 785920 1
## 8266 785921 1
## 8267 785922 1
## 8268 785923 1
## 8269 785924 1
## 8270 785925 1
## 8271 785926 1
## 8272 785927 1
## 8273 785928 1
## 8274 785929 1
## 8275 785930 1
## 8276 785931 1
## 8277 785932 1
## 8278 785933 1
## 8279 785934 1
## 8280 785935 1
## 8281 785936 1
## 8282 785937 1
## 8283 785938 1
## 8284 785939 1
## 8285 785940 1
## 8286 785941 1
## 8287 785942 1
## 8288 785943 1
## 8289 785944 1
## 8290 785945 1
## 8291 785946 1
## 8292 785947 1
## 8293 785948 1
## 8294 785949 1
## 8295 785950 1
## 8296 785951 1
## 8297 785952 1
## 8298 785953 1
## 8299 785954 1
## 8300 785955 1
## 8301 785956 1
## 8302 785957 1
## 8303 785958 1
## 8304 785960 1
## 8305 785961 1
## 8306 785962 1
## 8307 785964 1
## 8308 785965 1
## 8309 785966 1
## 8310 785967 1
## 8311 785968 1
## 8312 785969 1
## 8313 785970 1
## 8314 785971 1
## 8315 785972 1
## 8316 785973 1
## 8317 785974 1
## 8318 785975 1
## 8319 785976 1
## 8320 785977 1
## 8321 785978 1
## 8322 785979 1
## 8323 785980 1
## 8324 785981 1
## 8325 785982 1
## 8326 785983 1
## 8327 785984 1
## 8328 785985 1
## 8329 785986 1
## 8330 785987 1
## 8331 785988 1
## 8332 785989 1
## 8333 785990 1
## 8334 785991 1
## 8335 785992 1
## 8336 785993 1
## 8337 785994 1
## 8338 785995 1
## 8339 785996 1
## 8340 785997 1
## 8341 785998 1
## 8342 785999 1
## 8343 786000 1
## 8344 786001 1
## 8345 786002 1
## 8346 786003 1
## 8347 786004 1
## 8348 786005 1
## 8349 786006 1
## 8350 786007 1
## 8351 786008 1
## 8352 786009 1
## 8353 786010 1
## 8354 786011 1
## 8355 786012 1
## 8356 786013 1
## 8357 786014 1
## 8358 786015 1
## 8359 786016 1
## 8360 786017 1
## 8361 786018 1
## 8362 786019 1
## 8363 786020 1
## 8364 786021 1
## 8365 786022 1
## 8366 786023 1
## 8367 786024 1
## 8368 786025 1
## 8369 786026 1
## 8370 786027 1
## 8371 786028 1
## 8372 786029 1
## 8373 786030 1
## 8374 786031 1
## 8375 786032 1
## 8376 786033 1
## 8377 786034 1
## 8378 786035 1
## 8379 786036 1
## 8380 786037 1
## 8381 786038 1
## 8382 786039 1
## 8383 786040 1
## 8384 786041 1
## 8385 786042 1
## 8386 786043 1
## 8387 786044 1
## 8388 786045 1
## 8389 786046 1
## 8390 786047 1
## 8391 786048 1
## 8392 786049 1
## 8393 786050 1
## 8394 786051 1
## 8395 786052 1
## 8396 786053 1
## 8397 786054 1
## 8398 786055 1
## 8399 786056 1
## 8400 786057 1
## 8401 786058 1
## 8402 786059 1
## 8403 786060 1
## 8404 786061 1
## 8405 786062 1
## 8406 786063 1
## 8407 786064 1
## 8408 786065 1
## 8409 786066 1
## 8410 786067 1
## 8411 786068 1
## 8412 786069 1
## 8413 786070 1
## 8414 786071 1
## 8415 786072 1
## 8416 786073 1
## 8417 786074 1
## 8418 786075 1
## 8419 786076 1
## 8420 786077 1
## 8421 786078 1
## 8422 786079 1
## 8423 786080 1
## 8424 786081 1
## 8425 786082 1
## 8426 786083 1
## 8427 786084 1
## 8428 786085 1
## 8429 786086 1
## 8430 786087 1
## 8431 786088 1
## 8432 786089 1
## 8433 786090 1
## 8434 786091 1
## 8435 786092 1
## 8436 786093 1
## 8437 786094 1
## 8438 786095 1
## 8439 786096 1
## 8440 786097 1
## 8441 786098 1
## 8442 786099 1
## 8443 786100 1
## 8444 786101 1
## 8445 786102 1
## 8446 786103 1
## 8447 786104 1
## 8448 786105 1
## 8449 786106 1
## 8450 786107 1
## 8451 786108 1
## 8452 786109 1
## 8453 786110 1
## 8454 786111 1
## 8455 786112 1
## 8456 786113 1
## 8457 786114 1
## 8458 786115 1
## 8459 786116 1
## 8460 786117 1
## 8461 786118 1
## 8462 786119 1
## 8463 786120 1
## 8464 786121 1
## 8465 786122 1
## 8466 786123 1
## 8467 786124 1
## 8468 786125 1
## 8469 786126 1
## 8470 786127 1
## 8471 786128 1
## 8472 786129 1
## 8473 786130 1
## 8474 786131 1
## 8475 786132 1
## 8476 786133 1
## 8477 786134 1
## 8478 786135 1
## 8479 786136 1
## 8480 786137 1
## 8481 786138 1
## 8482 786139 1
## 8483 786140 1
## 8484 786141 1
## 8485 786142 1
## 8486 786143 1
## 8487 786144 1
## 8488 786145 1
## 8489 786146 1
## 8490 786147 1
## 8491 786148 1
## 8492 786149 1
## 8493 786150 1
## 8494 786151 1
## 8495 786152 1
## 8496 786153 1
## 8497 786154 1
## 8498 786155 1
## 8499 786156 1
## 8500 786157 1
## 8501 786158 1
## 8502 786159 1
## 8503 786160 1
## 8504 786161 1
## 8505 786162 1
## 8506 786163 1
## 8507 786164 1
## 8508 786165 1
## 8509 786166 1
## 8510 786167 1
## 8511 786168 1
## 8512 786169 1
## 8513 786170 1
## 8514 786171 1
## 8515 786172 1
## 8516 786173 1
## 8517 786174 1
## 8518 786175 1
## 8519 786176 1
## 8520 786177 1
## 8521 786178 1
## 8522 786179 1
## 8523 786180 1
## 8524 786181 1
## 8525 786182 1
## 8526 786183 1
## 8527 786184 1
## 8528 786185 1
## 8529 786186 1
## 8530 786187 1
## 8531 786188 1
## 8532 786189 1
## 8533 786190 1
## 8534 786191 1
## 8535 786192 1
## 8536 786193 1
## 8537 786194 1
## 8538 786195 1
## 8539 786196 1
## 8540 786197 1
## 8541 786198 1
## 8542 786199 1
## 8543 786200 1
## 8544 786201 1
## 8545 786202 1
## 8546 786203 1
## 8547 786204 1
## 8548 786205 1
## 8549 786206 1
## 8550 786207 1
## 8551 786208 1
## 8552 786209 1
## 8553 786210 1
## 8554 786211 1
## 8555 786212 1
## 8556 786213 1
## 8557 786214 1
## 8558 786215 1
## 8559 786216 1
## 8560 786217 1
## 8561 786218 1
## 8562 786219 1
## 8563 786220 1
## 8564 786221 1
## 8565 786222 1
## 8566 786223 1
## 8567 786224 1
## 8568 786225 1
## 8569 786226 1
## 8570 786227 1
## 8571 786228 1
## 8572 786229 1
## 8573 786230 1
## 8574 786231 1
## 8575 786232 1
## 8576 786233 1
## 8577 786234 1
## 8578 786235 1
## 8579 786236 1
## 8580 786237 1
## 8581 786238 1
## 8582 786239 1
## 8583 786240 1
## 8584 786241 1
## 8585 786242 1
## 8586 786243 1
## 8587 786244 1
## 8588 786245 1
## 8589 786246 1
## 8590 786247 1
## 8591 786248 1
## 8592 786249 1
## 8593 786250 1
## 8594 786251 1
## 8595 786252 1
## 8596 786253 1
## 8597 786254 1
## 8598 786255 1
## 8599 786256 1
## 8600 786257 1
## 8601 786258 1
## 8602 786259 1
## 8603 786260 1
## 8604 786261 1
## 8605 786262 1
## 8606 786263 1
## 8607 786264 1
## 8608 786265 1
## 8609 786266 1
## 8610 786267 1
## 8611 786268 1
## 8612 786269 1
## 8613 786270 1
## 8614 786271 1
## 8615 786272 1
## 8616 786273 1
## 8617 786274 1
## 8618 786275 1
## 8619 786276 1
## 8620 786277 1
## 8621 786278 1
## 8622 786279 1
## 8623 786280 1
## 8624 786281 1
## 8625 786282 1
## 8626 786283 1
## 8627 786284 1
## 8628 786285 1
## 8629 786286 1
## 8630 786287 1
## 8631 786288 1
## 8632 786289 1
## 8633 786290 1
## 8634 786291 1
## 8635 786292 1
## 8636 786293 1
## 8637 786294 1
## 8638 786295 1
## 8639 786296 1
## 8640 786297 1
## 8641 786298 1
## 8642 786299 1
## 8643 786300 1
## 8644 786301 1
## 8645 786302 1
## 8646 786303 1
## 8647 786304 1
## 8648 786305 1
## 8649 786306 1
## 8650 786307 1
## 8651 786308 1
## 8652 786309 1
## 8653 786310 1
## 8654 786311 1
## 8655 786312 1
## 8656 786313 1
## 8657 786314 1
## 8658 786315 1
## 8659 786316 1
## 8660 786317 1
## 8661 786318 1
## 8662 786319 1
## 8663 786320 1
## 8664 786321 1
## 8665 786322 1
## 8666 786323 1
## 8667 786324 1
## 8668 786325 1
## 8669 786326 1
## 8670 786327 1
## 8671 786328 1
## 8672 786329 1
## 8673 786330 1
## 8674 786331 1
## 8675 786332 1
## 8676 786333 1
## 8677 786334 1
## 8678 786335 1
## 8679 786336 1
## 8680 786337 1
## 8681 786338 1
## 8682 786339 1
## 8683 786340 1
## 8684 786341 1
## 8685 786342 1
## 8686 786343 1
## 8687 786344 1
## 8688 786345 1
## 8689 786346 1
## 8690 786347 1
## 8691 786348 1
## 8692 786349 1
## 8693 786350 1
## 8694 786351 1
## 8695 786352 1
## 8696 786353 1
## 8697 786354 1
## 8698 786355 1
## 8699 786356 1
## 8700 786357 1
## 8701 786358 1
## 8702 786359 1
## 8703 786360 1
## 8704 786361 1
## 8705 786362 1
## 8706 786363 1
## 8707 786364 1
## 8708 786365 1
## 8709 786366 1
## 8710 786367 1
## 8711 786368 1
## 8712 786369 1
## 8713 786370 1
## 8714 786371 1
## 8715 786372 1
## 8716 786373 1
## 8717 786374 1
## 8718 786375 1
## 8719 786376 1
## 8720 786377 1
## 8721 786378 1
## 8722 786379 1
## 8723 786380 1
## 8724 786381 1
## 8725 786382 1
## 8726 786383 1
## 8727 786384 1
## 8728 786385 1
## 8729 786386 1
## 8730 786387 1
## 8731 786388 1
## 8732 786389 1
## 8733 786390 1
## 8734 786391 1
## 8735 786392 1
## 8736 786393 1
## 8737 786394 1
## 8738 786395 1
## 8739 786396 1
## 8740 786397 1
## 8741 786398 1
## 8742 786399 1
## 8743 786400 1
## 8744 786401 1
## 8745 786402 1
## 8746 786403 1
## 8747 786404 1
## 8748 786405 1
## 8749 786406 1
## 8750 786407 1
## 8751 786408 1
## 8752 786409 1
## 8753 786410 1
## 8754 786411 1
## 8755 786412 1
## 8756 786413 1
## 8757 786414 1
## 8758 786415 1
## 8759 786416 1
## 8760 786417 1
## 8761 786418 1
## 8762 786419 1
## 8763 786420 1
## 8764 786421 1
## 8765 786422 1
## 8766 786423 1
## 8767 786424 1
## 8768 786425 1
## 8769 786426 1
## 8770 786427 1
## 8771 786428 1
## 8772 786429 1
## 8773 786430 1
## 8774 786431 1
## 8775 786432 1
## 8776 786433 1
## 8777 786434 1
## 8778 786435 1
## 8779 786436 1
## 8780 786437 1
## 8781 786438 1
## 8782 786439 1
## 8783 786440 1
## 8784 786441 1
## 8785 786442 1
## 8786 786443 1
## 8787 786444 1
## 8788 786445 1
## 8789 786446 1
## 8790 786447 1
## 8791 786448 1
## 8792 786449 1
## 8793 786450 1
## 8794 786451 1
## 8795 786452 1
## 8796 786453 1
## 8797 786454 1
## 8798 786455 1
## 8799 786456 1
## 8800 786457 1
## 8801 786458 1
## 8802 786459 1
## 8803 786460 1
## 8804 786461 1
## 8805 786462 1
## 8806 786463 1
## 8807 786464 1
## 8808 786465 1
## 8809 786466 1
## 8810 786467 1
## 8811 786468 1
## 8812 786469 1
## 8813 786470 1
## 8814 786471 1
## 8815 786472 1
## 8816 786473 1
## 8817 786474 1
## 8818 786475 1
## 8819 786476 1
## 8820 786477 1
## 8821 786478 1
## 8822 786479 1
## 8823 786480 1
## 8824 786481 1
## 8825 786482 1
## 8826 786483 1
## 8827 786484 1
## 8828 786485 1
## 8829 786486 1
## 8830 786487 1
## 8831 786488 1
## 8832 786489 1
## 8833 786490 1
## 8834 786491 1
## 8835 786492 1
## 8836 786493 1
## 8837 786494 1
## 8838 786495 1
## 8839 786496 1
## 8840 786497 1
## 8841 786498 1
## 8842 786499 1
## 8843 786500 1
## 8844 786501 1
## 8845 786502 1
## 8846 786503 1
## 8847 786504 1
## 8848 786505 1
## 8849 786506 1
## 8850 786507 1
## 8851 786508 1
## 8852 786509 1
## 8853 786510 1
## 8854 786511 1
## 8855 786512 1
## 8856 786513 1
## 8857 786514 1
## 8858 786515 1
## 8859 786516 1
## 8860 786517 1
## 8861 786518 1
## 8862 786519 1
## 8863 786520 1
## 8864 786521 1
## 8865 786522 1
## 8866 786523 1
## 8867 786524 1
## 8868 786525 1
## 8869 786526 1
## 8870 786527 1
## 8871 786528 1
## 8872 786529 1
## 8873 786530 1
## 8874 786531 1
## 8875 786532 1
## 8876 786533 1
## 8877 786534 1
## 8878 786535 1
## 8879 786536 1
## 8880 786537 1
## 8881 786538 1
## 8882 786539 1
## 8883 786540 1
## 8884 786541 1
## 8885 786542 1
## 8886 786543 1
## 8887 786544 1
## 8888 786545 1
## 8889 786546 1
## 8890 786547 1
## 8891 786548 1
## 8892 786549 1
## 8893 786550 1
## 8894 786551 1
## 8895 786552 1
## 8896 786553 1
## 8897 786554 1
## 8898 786555 1
## 8899 786556 1
## 8900 786557 1
## 8901 786558 1
## 8902 786559 1
## 8903 786560 1
## 8904 786561 1
## 8905 786562 1
## 8906 786563 1
## 8907 786564 1
## 8908 786565 1
## 8909 786566 1
## 8910 786567 1
## 8911 786568 1
## 8912 786569 1
## 8913 786570 1
## 8914 786571 1
## 8915 786572 1
## 8916 786573 1
## 8917 786574 1
## 8918 786575 1
## 8919 786576 1
## 8920 786577 1
## 8921 786578 1
## 8922 786579 1
## 8923 786580 1
## 8924 786581 1
## 8925 786582 1
## 8926 786583 1
## 8927 786584 1
## 8928 786585 1
## 8929 786586 1
## 8930 786587 1
## 8931 786588 1
## 8932 786589 1
## 8933 786590 1
## 8934 786591 1
## 8935 786592 1
## 8936 786593 1
## 8937 786594 1
## 8938 786595 1
## 8939 786596 1
## 8940 786597 1
## 8941 786598 1
## 8942 786599 1
## 8943 786600 1
## 8944 786601 1
## 8945 786602 1
## 8946 786603 1
## 8947 786604 1
## 8948 786605 1
## 8949 786606 1
## 8950 786607 1
## 8951 786608 1
## 8952 786609 1
## 8953 786610 1
## 8954 786611 1
## 8955 786612 1
## 8956 786613 1
## 8957 786614 1
## 8958 786615 1
## 8959 786616 1
## 8960 786617 1
## 8961 786618 1
## 8962 786619 1
## 8963 786620 1
## 8964 786621 1
## 8965 786622 1
## 8966 786623 1
## 8967 786624 1
## 8968 786625 1
## 8969 786626 1
## 8970 786627 1
## 8971 786628 1
## 8972 786629 1
## 8973 786630 1
## 8974 786631 1
## 8975 786632 1
## 8976 786633 1
## 8977 786634 1
## 8978 786635 1
## 8979 786636 1
## 8980 786637 1
## 8981 786638 1
## 8982 786639 1
## 8983 786640 1
## 8984 786641 1
## 8985 786642 1
## 8986 786643 1
## 8987 786644 1
## 8988 786645 1
## 8989 786646 1
## 8990 786647 1
## 8991 786648 1
## 8992 786649 1
## 8993 786650 1
## 8994 786651 1
## 8995 786652 1
## 8996 786653 1
## 8997 786654 1
## 8998 786655 1
## 8999 786656 1
## 9000 786657 1
## 9001 786658 1
## 9002 786659 1
## 9003 786660 1
## 9004 786661 1
## 9005 786662 1
## 9006 786663 1
## 9007 786664 1
## 9008 786665 1
## 9009 786666 1
## 9010 786667 1
## 9011 786668 1
## 9012 786669 1
## 9013 786670 1
## 9014 786671 1
## 9015 786672 1
## 9016 786673 1
## 9017 786674 1
## 9018 786675 1
## 9019 786676 1
## 9020 786677 1
## 9021 786678 1
## 9022 786679 1
## 9023 786680 1
## 9024 786681 1
## 9025 786682 1
## 9026 786683 1
## 9027 786684 1
## 9028 786685 1
## 9029 786686 1
## 9030 786687 1
## 9031 786688 1
## 9032 786689 1
## 9033 786690 1
## 9034 786691 1
## 9035 786692 1
## 9036 786693 1
## 9037 786694 1
## 9038 786695 1
## 9039 786696 1
## 9040 786697 1
## 9041 786698 1
## 9042 786699 1
## 9043 786700 1
## 9044 786701 1
## 9045 786702 1
## 9046 786703 1
## 9047 786704 1
## 9048 786705 1
## 9049 786706 1
## 9050 786707 1
## 9051 786708 1
## 9052 786709 1
## 9053 786710 1
## 9054 786711 1
## 9055 786712 1
## 9056 786713 1
## 9057 786714 1
## 9058 786715 1
## 9059 786716 1
## 9060 786717 1
## 9061 786718 1
## 9062 786719 1
## 9063 786720 1
## 9064 786721 1
## 9065 786722 1
## 9066 786723 1
## 9067 786724 1
## 9068 786725 1
## 9069 786726 1
## 9070 786727 1
## 9071 786728 1
## 9072 786729 1
## 9073 786730 1
## 9074 786731 1
## 9075 786732 1
## 9076 786733 1
## 9077 786734 1
## 9078 786735 1
## 9079 786736 1
## 9080 786737 1
## 9081 786738 1
## 9082 786739 1
## 9083 786740 1
## 9084 786741 1
## 9085 786742 1
## 9086 786743 1
## 9087 786744 1
## 9088 786745 1
## 9089 786746 1
## 9090 786747 1
## 9091 786748 1
## 9092 786749 1
## 9093 786750 1
## 9094 786751 1
## 9095 786752 1
## 9096 786753 1
## 9097 786754 1
## 9098 786755 1
## 9099 786756 1
## 9100 786757 1
## 9101 786758 1
## 9102 786759 1
## 9103 786760 1
## 9104 786761 1
## 9105 786762 1
## 9106 786763 1
## 9107 786764 1
## 9108 786765 1
## 9109 786766 1
## 9110 786767 1
## 9111 786768 1
## 9112 786769 1
## 9113 786770 1
## 9114 786771 1
## 9115 786772 1
## 9116 786773 1
## 9117 786774 1
## 9118 786775 1
## 9119 786776 1
## 9120 786777 1
## 9121 786778 1
## 9122 786779 1
## 9123 786780 1
## 9124 786781 1
## 9125 786782 1
## 9126 786783 1
## 9127 786784 1
## 9128 786785 1
## 9129 786786 1
## 9130 786787 1
## 9131 786788 1
## 9132 786789 1
## 9133 786790 1
## 9134 786791 1
## 9135 786792 1
## 9136 786793 1
## 9137 786794 1
## 9138 786795 1
## 9139 786796 1
## 9140 786797 1
## 9141 786798 1
## 9142 786799 1
## 9143 786800 1
## 9144 786801 1
## 9145 786802 1
## 9146 786803 1
## 9147 786804 1
## 9148 786805 1
## 9149 786806 1
## 9150 786807 1
## 9151 786808 1
## 9152 786809 1
## 9153 786810 1
## 9154 786811 1
## 9155 786812 1
## 9156 786813 1
## 9157 786814 1
## 9158 786815 1
## 9159 786816 1
## 9160 786817 1
## 9161 786818 1
## 9162 786819 1
## 9163 786820 1
## 9164 786821 1
## 9165 786822 1
## 9166 786823 1
## 9167 786824 1
## 9168 786825 1
## 9169 786826 1
## 9170 786827 1
## 9171 786828 1
## 9172 786829 1
## 9173 786830 1
## 9174 786831 1
## 9175 786832 1
## 9176 786833 1
## 9177 786834 1
## 9178 786835 1
## 9179 786836 1
## 9180 786837 1
## 9181 786838 1
## 9182 786839 1
## 9183 786840 1
## 9184 786841 1
## 9185 786842 1
## 9186 786843 1
## 9187 786844 1
## 9188 786845 1
## 9189 786846 1
## 9190 786847 1
## 9191 786848 1
## 9192 786849 1
## 9193 786850 1
## 9194 786851 1
## 9195 786852 1
## 9196 786853 1
## 9197 786854 1
## 9198 786855 1
## 9199 786856 1
## 9200 786857 1
## 9201 786858 1
## 9202 786859 1
## 9203 786861 1
## 9204 786862 1
## 9205 786863 1
## 9206 786864 1
## 9207 786865 1
## 9208 786866 1
## 9209 786867 1
## 9210 786868 1
## 9211 786869 1
## 9212 786870 1
## 9213 786871 1
## 9214 786872 1
## 9215 786873 1
## 9216 786874 1
## 9217 786875 1
## 9218 786876 1
## 9219 786877 1
## 9220 786878 1
## 9221 786879 1
## 9222 786880 1
## 9223 786881 1
## 9224 786882 1
## 9225 786883 1
## 9226 786884 1
## 9227 786885 1
## 9228 786886 1
## 9229 786887 1
## 9230 786888 1
## 9231 786889 1
## 9232 786890 1
## 9233 786891 1
## 9234 786892 1
## 9235 786893 1
## 9236 786894 1
## 9237 786895 1
## 9238 786896 1
## 9239 786897 1
## 9240 786898 1
## 9241 786899 1
## 9242 786900 1
## 9243 786901 1
## 9244 786902 1
## 9245 786903 1
## 9246 786904 1
## 9247 786905 1
## 9248 786906 1
## 9249 786907 1
## 9250 786908 1
## 9251 786909 1
## 9252 786910 1
## 9253 786911 1
## 9254 786912 1
## 9255 786913 1
## 9256 786914 1
## 9257 786915 1
## 9258 786916 1
## 9259 786917 1
## 9260 786918 1
## 9261 786920 1
## 9262 786921 1
## 9263 786922 1
## 9264 786923 1
## 9265 786924 1
## 9266 786925 1
## 9267 786926 1
## 9268 786927 1
## 9269 786928 1
## 9270 786929 1
## 9271 786930 1
## 9272 786931 1
## 9273 786932 1
## 9274 786933 1
## 9275 786934 1
## 9276 786935 1
## 9277 786936 1
## 9278 786937 1
## 9279 786938 1
## 9280 786939 1
## 9281 786940 1
## 9282 786941 1
## 9283 786942 1
## 9284 786943 1
## 9285 786944 1
## 9286 786945 1
## 9287 786946 1
## 9288 786947 1
## 9289 786948 1
## 9290 786949 1
## 9291 786950 1
## 9292 786951 1
## 9293 786952 1
## 9294 786953 1
## 9295 786954 1
## 9296 786955 1
## 9297 786956 1
## 9298 786957 1
## 9299 786958 1
## 9300 786959 1
## 9301 786960 1
## 9302 786961 1
## 9303 786962 1
## 9304 786963 1
## 9305 786964 1
## 9306 786965 1
## 9307 786966 1
## 9308 786967 1
## 9309 786968 1
## 9310 786969 1
## 9311 786970 1
## 9312 786971 1
## 9313 786972 1
## 9314 786973 1
## 9315 786974 1
## 9316 786975 1
## 9317 786976 1
## 9318 786977 1
## 9319 786978 1
## 9320 786979 1
## 9321 786980 1
## 9322 786981 1
## 9323 786982 1
## 9324 786983 1
## 9325 786984 1
## 9326 786985 1
## 9327 786986 1
## 9328 786987 1
## 9329 786988 1
## 9330 786989 1
## 9331 786990 1
## 9332 786991 1
## 9333 786992 1
## 9334 786993 1
## 9335 786994 1
## 9336 786995 1
## 9337 786996 1
## 9338 786997 1
## 9339 786998 1
## 9340 786999 1
## 9341 787000 1
## 9342 787001 1
## 9343 787002 1
## 9344 787003 1
## 9345 787004 1
## 9346 787005 1
## 9347 787006 1
## 9348 787007 1
## 9349 787008 1
## 9350 787009 1
## 9351 787010 1
## 9352 787011 1
## 9353 787012 1
## 9354 787013 1
## 9355 787014 1
## 9356 787015 1
## 9357 787016 1
## 9358 787017 1
## 9359 787018 1
## 9360 787019 1
## 9361 787020 1
## 9362 787021 1
## 9363 787022 1
## 9364 787023 1
## 9365 787025 1
## 9366 787026 1
## 9367 787027 1
## 9368 787028 1
## 9369 787029 1
## 9370 787030 1
## 9371 787031 1
## 9372 787032 1
## 9373 787033 1
## 9374 787034 1
## 9375 787035 1
## 9376 787036 1
## 9377 787037 1
## 9378 787038 1
## 9379 787039 1
## 9380 787040 1
## 9381 787041 1
## 9382 787042 1
## 9383 787043 1
## 9384 787044 1
## 9385 787045 1
## 9386 787046 1
## 9387 787047 1
## 9388 787048 1
## 9389 787049 1
## 9390 787050 1
## 9391 787051 1
## 9392 787052 1
## 9393 787053 1
## 9394 787054 1
## 9395 787055 1
## 9396 787056 1
## 9397 787057 1
## 9398 787058 1
## 9399 787059 1
## 9400 787060 1
## 9401 787061 1
## 9402 787062 1
## 9403 787063 1
## 9404 787064 1
## 9405 787065 1
## 9406 787066 1
## 9407 787067 1
## 9408 787068 1
## 9409 787069 1
## 9410 787070 1
## 9411 787071 1
## 9412 787072 1
## 9413 787073 1
## 9414 787074 1
## 9415 787075 1
## 9416 787076 1
## 9417 787077 1
## 9418 787078 1
## 9419 787079 1
## 9420 787080 1
## 9421 787081 1
## 9422 787082 1
## 9423 787083 1
## 9424 787084 1
## 9425 787085 1
## 9426 787086 1
## 9427 787087 1
## 9428 787088 1
## 9429 787089 1
## 9430 787090 1
## 9431 787091 1
## 9432 787092 1
## 9433 787093 1
## 9434 787094 1
## 9435 787095 1
## 9436 787096 1
## 9437 787097 1
## 9438 787098 1
## 9439 787099 1
## 9440 787100 1
## 9441 787101 1
## 9442 787102 1
## 9443 787103 1
## 9444 787104 1
## 9445 787105 1
## 9446 787106 1
## 9447 787107 1
## 9448 787108 1
## 9449 787109 1
## 9450 787110 1
## 9451 787111 1
## 9452 787112 1
## 9453 787113 1
## 9454 787114 1
## 9455 787115 1
## 9456 787116 1
## 9457 787117 1
## 9458 787118 1
## 9459 787119 1
## 9460 787120 1
## 9461 787121 1
## 9462 787122 1
## 9463 787123 1
## 9464 787124 1
## 9465 787125 1
## 9466 787126 1
## 9467 787127 1
## 9468 787128 1
## 9469 787129 1
## 9470 787130 1
## 9471 787131 1
## 9472 787132 1
## 9473 787133 1
## 9474 787134 1
## 9475 787135 1
## 9476 787136 1
## 9477 787137 1
## 9478 787138 1
## 9479 787139 1
## 9480 787140 1
## 9481 787141 1
## 9482 787142 1
## 9483 787143 1
## 9484 787144 1
## 9485 787145 1
## 9486 787146 1
## 9487 787147 1
## 9488 787148 1
## 9489 787149 1
## 9490 787150 1
## 9491 787151 1
## 9492 787152 1
## 9493 787153 1
## 9494 787154 1
## 9495 787155 1
## 9496 787156 1
## 9497 787157 1
## 9498 787158 1
## 9499 787159 1
## 9500 787160 1
## 9501 787161 1
## 9502 787162 1
## 9503 787163 1
## 9504 787164 1
## 9505 787165 1
## 9506 787166 1
## 9507 787167 1
## 9508 787168 1
## 9509 787169 1
## 9510 787170 1
## 9511 787171 1
## 9512 787172 1
## 9513 787173 1
## 9514 787174 1
## 9515 787175 1
## 9516 787176 1
## 9517 787177 1
## 9518 787178 1
## 9519 787179 1
## 9520 787180 1
## 9521 787181 1
## 9522 787182 1
## 9523 787183 1
## 9524 787184 1
## 9525 787185 1
## 9526 787186 1
## 9527 787187 1
## 9528 787188 1
## 9529 787189 1
## 9530 787190 1
## 9531 787191 1
## 9532 787192 1
## 9533 787193 1
## 9534 787194 1
## 9535 787195 1
## 9536 787196 1
## 9537 787197 1
## 9538 787198 1
## 9539 787199 1
## 9540 787200 1
## 9541 787201 1
## 9542 787202 1
## 9543 787203 1
## 9544 787204 1
## 9545 787205 1
## 9546 787206 1
## 9547 787207 1
## 9548 787208 1
## 9549 787209 1
## 9550 787210 1
## 9551 787211 1
## 9552 787212 1
## 9553 787213 1
## 9554 787214 1
## 9555 787215 1
## 9556 787216 1
## 9557 787217 1
## 9558 787218 1
## 9559 787219 1
## 9560 787220 1
## 9561 787221 1
## 9562 787222 1
## 9563 787223 1
## 9564 787224 1
## 9565 787225 1
## 9566 787226 1
## 9567 787227 1
## 9568 787228 1
## 9569 787229 1
## 9570 787230 1
## 9571 787231 1
## 9572 787232 1
## 9573 787233 1
## 9574 787234 1
## 9575 787236 1
## 9576 787237 1
## 9577 787238 1
## 9578 787239 1
## 9579 787240 1
## 9580 787241 1
## 9581 787242 1
## 9582 787243 1
## 9583 787244 1
## 9584 787245 1
## 9585 787246 1
## 9586 787247 1
## 9587 787248 1
## 9588 787249 1
## 9589 787250 1
## 9590 787251 1
## 9591 787252 1
## 9592 787253 1
## 9593 787254 1
## 9594 787255 1
## 9595 787256 1
## 9596 787257 1
## 9597 787258 1
## 9598 787259 1
## 9599 787260 1
## 9600 787261 1
## 9601 787262 1
## 9602 787263 1
## 9603 787264 1
## 9604 787265 1
## 9605 787267 1
## 9606 787268 1
## 9607 787269 1
## 9608 787270 1
## 9609 787271 1
## 9610 787272 1
## 9611 787273 1
## 9612 787274 1
## 9613 787275 1
## 9614 787276 1
## 9615 787277 1
## 9616 787278 1
## 9617 787279 1
## 9618 787280 1
## 9619 787281 1
## 9620 787282 1
## 9621 787283 1
## 9622 787284 1
## 9623 787285 1
## 9624 787286 1
## 9625 787287 1
## 9626 787288 1
## 9627 787289 1
## 9628 787290 1
## 9629 787291 1
## 9630 787292 1
## 9631 787293 1
## 9632 787294 1
## 9633 787295 1
## 9634 787296 1
## 9635 787297 1
## 9636 787298 1
## 9637 787299 1
## 9638 787300 1
## 9639 787301 1
## 9640 787302 1
## 9641 787303 1
## 9642 787304 1
## 9643 787305 1
## 9644 787306 1
## 9645 787307 1
## 9646 787308 1
## 9647 787309 1
## 9648 787310 1
## 9649 787311 1
## 9650 787312 1
## 9651 787313 1
## 9652 787314 1
## 9653 787315 1
## 9654 787316 1
## 9655 787317 1
## 9656 787318 1
## 9657 787319 1
## 9658 787320 1
## 9659 787321 1
## 9660 787322 1
## 9661 787323 1
## 9662 787324 1
## 9663 787325 1
## 9664 787326 1
## 9665 787327 1
## 9666 787328 1
## 9667 787329 1
## 9668 787330 1
## 9669 787331 1
## 9670 787332 1
## 9671 787333 1
## 9672 787334 1
## 9673 787335 1
## 9674 787336 1
## 9675 787337 1
## 9676 787338 1
## 9677 787339 1
## 9678 787340 1
## 9679 787341 1
## 9680 787342 1
## 9681 787343 1
## 9682 787344 1
## 9683 787345 1
## 9684 787346 1
## 9685 787347 1
## 9686 787348 1
## 9687 787349 1
## 9688 787350 1
## 9689 787351 1
## 9690 787352 1
## 9691 787353 1
## 9692 787354 1
## 9693 787355 1
## 9694 787356 1
## 9695 787357 1
## 9696 787358 1
## 9697 787359 1
## 9698 787360 1
## 9699 787361 1
## 9700 787362 1
## 9701 787363 1
## 9702 787364 1
## 9703 787365 1
## 9704 787366 1
## 9705 787367 1
## 9706 787368 1
## 9707 787369 1
## 9708 787370 1
## 9709 787371 1
## 9710 787372 1
## 9711 787373 1
## 9712 787374 1
## 9713 787375 1
## 9714 787376 1
## 9715 787377 1
## 9716 787378 1
## 9717 787379 1
## 9718 787380 1
## 9719 787381 1
## 9720 787382 1
## 9721 787383 1
## 9722 787384 1
## 9723 787385 1
## 9724 787386 1
## 9725 787387 1
## 9726 787388 1
## 9727 787389 1
## 9728 787390 1
## 9729 787391 1
## 9730 787392 1
## 9731 787393 1
## 9732 787394 1
## 9733 787395 1
## 9734 787396 1
## 9735 787397 1
## 9736 787398 1
## 9737 787399 1
## 9738 787400 1
## 9739 787401 1
## 9740 787402 1
## 9741 787403 1
## 9742 787404 1
## 9743 787405 1
## 9744 787406 1
## 9745 787407 1
## 9746 787408 1
## 9747 787409 1
## 9748 787410 1
## 9749 787411 1
## 9750 787412 1
## 9751 787413 1
## 9752 787414 1
## 9753 787415 1
## 9754 787416 1
## 9755 787417 1
## 9756 787418 1
## 9757 787419 1
## 9758 787420 1
## 9759 787421 1
## 9760 787422 1
## 9761 787423 1
## 9762 787424 1
## 9763 787425 1
## 9764 787426 1
## 9765 787427 1
## 9766 787428 1
## 9767 787429 1
## 9768 787430 1
## 9769 787431 1
## 9770 787432 1
## 9771 787433 1
## 9772 787434 1
## 9773 787435 1
## 9774 787436 1
## 9775 787437 1
## 9776 787438 1
## 9777 787439 1
## 9778 787440 1
## 9779 787441 1
## 9780 787442 1
## 9781 787443 1
## 9782 787444 1
## 9783 787445 1
## 9784 787446 1
## 9785 787447 1
## 9786 787448 1
## 9787 787449 1
## 9788 787450 1
## 9789 787451 1
## 9790 787452 1
## 9791 787453 1
## 9792 787454 1
## 9793 787455 1
## 9794 787456 1
## 9795 787457 1
## 9796 787458 1
## 9797 787459 1
## 9798 787460 1
## 9799 787461 1
## 9800 787462 1
## 9801 787463 1
## 9802 787464 1
## 9803 787465 1
## 9804 787466 1
## 9805 787467 1
## 9806 787468 1
## 9807 787469 1
## 9808 787470 1
## 9809 787471 1
## 9810 787472 1
## 9811 787473 1
## 9812 787474 1
## 9813 787475 1
## 9814 787476 1
## 9815 787477 1
## 9816 787478 1
## 9817 787479 1
## 9818 787480 1
## 9819 787481 1
## 9820 787482 1
## 9821 787483 1
## 9822 787484 1
## 9823 787485 1
## 9824 787486 1
## 9825 787487 1
## 9826 787488 1
## 9827 787489 1
## 9828 787490 1
## 9829 787491 1
## 9830 787492 1
## 9831 787493 1
## 9832 787494 1
## 9833 787495 1
## 9834 787496 1
## 9835 787497 1
## 9836 787498 1
## 9837 787499 1
## 9838 787500 1
## 9839 787501 1
## 9840 787502 1
## 9841 787503 1
## 9842 787504 1
## 9843 787505 1
## 9844 787506 1
## 9845 787507 1
## 9846 787508 1
## 9847 787509 1
## 9848 787510 1
## 9849 787511 1
## 9850 787512 1
## 9851 787513 1
## 9852 787514 1
## 9853 787515 1
## 9854 787516 1
## 9855 787517 1
## 9856 787518 1
## 9857 787519 1
## 9858 787520 1
## 9859 787521 1
## 9860 787522 1
## 9861 787523 1
## 9862 787524 1
## 9863 787525 1
## 9864 787526 1
## 9865 787527 1
## 9866 787528 1
## 9867 787529 1
## 9868 787530 1
## 9869 787531 1
## 9870 787532 1
## 9871 787533 1
## 9872 787534 1
## 9873 787535 1
## 9874 787536 1
## 9875 787537 1
## 9876 787538 1
## 9877 787539 1
## 9878 787540 1
## 9879 787541 1
## 9880 787542 1
## 9881 787543 1
## 9882 787544 1
## 9883 787545 1
## 9884 787546 1
## 9885 787547 1
## 9886 787548 1
## 9887 787549 1
## 9888 787550 1
## 9889 787551 1
## 9890 787552 1
## 9891 787553 1
## 9892 787554 1
## 9893 787555 1
## 9894 787556 1
## 9895 787557 1
## 9896 787558 1
## 9897 787559 1
## 9898 787560 1
## 9899 787562 1
## 9900 787563 1
## 9901 787564 1
## 9902 787565 1
## 9903 787566 1
## 9904 787567 1
## 9905 787568 1
## 9906 787569 1
## 9907 787570 1
## 9908 787571 1
## 9909 787572 1
## 9910 787573 1
## 9911 787574 1
## 9912 787575 1
## 9913 787576 1
## 9914 787577 1
## 9915 787578 1
## 9916 787579 1
## 9917 787580 1
## 9918 787581 1
## 9919 787582 1
## 9920 787583 1
## 9921 787584 1
## 9922 787585 1
## 9923 787586 1
## 9924 787587 1
## 9925 787588 1
## 9926 787589 1
## 9927 787590 1
## 9928 787591 1
## 9929 787592 1
## 9930 787593 1
## 9931 787594 1
## 9932 787595 1
## 9933 787596 1
## 9934 787597 1
## 9935 787598 1
## 9936 787599 1
## 9937 787600 1
## 9938 787601 1
## 9939 787602 1
## 9940 787603 1
## 9941 787604 1
## 9942 787605 1
## 9943 787606 1
## 9944 787607 1
## 9945 787608 1
## 9946 787609 1
## 9947 787610 1
## 9948 787611 1
## 9949 787612 1
## 9950 787613 1
## 9951 787614 1
## 9952 787615 1
## 9953 787616 1
## 9954 787617 1
## 9955 787618 1
## 9956 787619 1
## 9957 787620 1
## 9958 787621 1
## 9959 787622 1
## 9960 787623 1
## 9961 787624 1
## 9962 787625 1
## 9963 787626 1
## 9964 787627 1
## 9965 787628 1
## 9966 787629 1
## 9967 787630 1
## 9968 787631 1
## 9969 787632 1
## 9970 787633 1
## 9971 787634 1
## 9972 787635 1
## 9973 787636 1
## 9974 787637 1
## 9975 787638 1
## 9976 787639 1
## 9977 787640 1
## 9978 787641 1
## 9979 787642 1
## 9980 787643 1
## 9981 787644 1
## 9982 787645 1
## 9983 787646 1
## 9984 787647 1
## 9985 787648 1
## 9986 787649 1
## 9987 787650 1
## 9988 787651 1
## 9989 787652 1
## 9990 787653 1
## 9991 787654 1
## 9992 787655 1
## 9993 787656 1
## 9994 787657 1
## 9995 787658 1
## 9996 787659 1
## 9997 787660 1
## 9998 787661 1
## 9999 787662 1
## 10000 787663 1
## 10001 787664 1
## 10002 787665 1
## 10003 787666 1
## 10004 787667 1
## 10005 787668 1
## 10006 787669 1
## 10007 787670 1
## 10008 787671 1
## 10009 787672 1
## 10010 787673 1
## 10011 787674 1
## 10012 787675 1
## 10013 787676 1
## 10014 787677 1
## 10015 787678 1
## 10016 787679 1
## 10017 787680 1
## 10018 787681 1
## 10019 787682 1
## 10020 787683 1
## 10021 787684 1
## 10022 787685 1
## 10023 787686 1
## 10024 787687 1
## 10025 787688 1
## 10026 787689 1
## 10027 787690 1
## 10028 787691 1
## 10029 787692 1
## 10030 787693 1
## 10031 787694 1
## 10032 787695 1
## 10033 787696 1
## 10034 787697 1
## 10035 787698 1
## 10036 787699 1
## 10037 787700 1
## 10038 787701 1
## 10039 787702 1
## 10040 787703 1
## 10041 787704 1
## 10042 787705 1
## 10043 787706 1
## 10044 787707 1
## 10045 787708 1
## 10046 787710 1
## 10047 787711 1
## 10048 787712 1
## 10049 787713 1
## 10050 787714 1
## 10051 787715 1
## 10052 787716 1
## 10053 787717 1
## 10054 787718 1
## 10055 787719 1
## 10056 787720 1
## 10057 787721 1
## 10058 787722 1
## 10059 787723 1
## 10060 787724 1
## 10061 787725 1
## 10062 787726 1
## 10063 787727 1
## 10064 787728 1
## 10065 787729 1
## 10066 787730 1
## 10067 787731 1
## 10068 787732 1
## 10069 787733 1
## 10070 787734 1
## 10071 787735 1
## 10072 787736 1
## 10073 787737 1
## 10074 787738 1
## 10075 787739 1
## 10076 787740 1
## 10077 787741 1
## 10078 787742 1
## 10079 787743 1
## 10080 787744 1
## 10081 787745 1
## 10082 787746 1
## 10083 787747 1
## 10084 787748 1
## 10085 787749 1
## 10086 787750 1
## 10087 787751 1
## 10088 787752 1
## 10089 787753 1
## 10090 787754 1
## 10091 787755 1
## 10092 787756 1
## 10093 787757 1
## 10094 787758 1
## 10095 787759 1
## 10096 787760 1
## 10097 787761 1
## 10098 787762 1
## 10099 787763 1
## 10100 787764 1
## 10101 787765 1
## 10102 787766 1
## 10103 787767 1
## 10104 787768 1
## 10105 787769 1
## 10106 787770 1
## 10107 787771 1
## 10108 787772 1
## 10109 787773 1
## 10110 787774 1
## 10111 787775 1
## 10112 787776 1
## 10113 787777 1
## 10114 787778 1
## 10115 787779 1
## 10116 787780 1
## 10117 787781 1
## 10118 787782 1
## 10119 787783 1
## 10120 787784 1
## 10121 787785 1
## 10122 787786 1
## 10123 787787 1
## 10124 787788 1
## 10125 787789 1
## 10126 787790 1
## 10127 787791 1
## 10128 787792 1
## 10129 787793 1
## 10130 787794 1
## 10131 787795 1
## 10132 787796 1
## 10133 787797 1
## 10134 787798 1
## 10135 787799 1
## 10136 787800 1
## 10137 787801 1
## 10138 787802 1
## 10139 787803 1
## 10140 787805 1
## 10141 787806 1
## 10142 787807 1
## 10143 787808 1
## 10144 787809 1
## 10145 787810 1
## 10146 787811 1
## 10147 787812 1
## 10148 787813 1
## 10149 787814 1
## 10150 787815 1
## 10151 787816 1
## 10152 787817 1
## 10153 787818 1
## 10154 787819 1
## 10155 787820 1
## 10156 787821 1
## 10157 787822 1
## 10158 787823 1
## 10159 787824 1
## 10160 787825 1
## 10161 787826 1
## 10162 787827 1
## 10163 787828 1
## 10164 787829 1
## 10165 787830 1
## 10166 787831 1
## 10167 787832 1
## 10168 787833 1
## 10169 787834 1
## 10170 787835 1
## 10171 787836 1
## 10172 787837 1
## 10173 787838 1
## 10174 787839 1
## 10175 787840 1
## 10176 787841 1
## 10177 787842 1
## 10178 787843 1
## 10179 787844 1
## 10180 787845 1
## 10181 787847 1
## 10182 787848 1
## 10183 787849 1
## 10184 787850 1
## 10185 787851 1
## 10186 787852 1
## 10187 787853 1
## 10188 787854 1
## 10189 787855 1
## 10190 787856 1
## 10191 787857 1
## 10192 787858 1
## 10193 787859 1
## 10194 787860 1
## 10195 787861 1
## 10196 787862 1
## 10197 787863 1
## 10198 787864 1
## 10199 787865 1
## 10200 787866 1
## 10201 787867 1
## 10202 787868 1
## 10203 787869 1
## 10204 787870 1
## 10205 787871 1
## 10206 787872 1
## 10207 787873 1
## 10208 787874 1
## 10209 787875 1
## 10210 787876 1
## 10211 787877 1
## 10212 787878 1
## 10213 787879 1
## 10214 787880 1
## 10215 787881 1
## 10216 787882 1
## 10217 787883 1
## 10218 787884 1
## 10219 787885 1
## 10220 787886 1
## 10221 787887 1
## 10222 787888 1
## 10223 787889 1
## 10224 787890 1
## 10225 787891 1
## 10226 787892 1
## 10227 787893 1
## 10228 787894 1
## 10229 787895 1
## 10230 787896 1
## 10231 787897 1
## 10232 787898 1
## 10233 787899 1
## 10234 787900 1
## 10235 787901 1
## 10236 787902 1
## 10237 787903 1
## 10238 787904 1
## 10239 787905 1
## 10240 787906 1
## 10241 787907 1
## 10242 787908 1
## 10243 787909 1
## 10244 787910 1
## 10245 787911 1
## 10246 787912 1
## 10247 787913 1
## 10248 787914 1
## 10249 787915 1
## 10250 787916 1
## 10251 787917 1
## 10252 787918 1
## 10253 787919 1
## 10254 787920 1
## 10255 787921 1
## 10256 787922 1
## 10257 787923 1
## 10258 787924 1
## 10259 787925 1
## 10260 787926 1
## 10261 787927 1
## 10262 787928 1
## 10263 787929 1
## 10264 787930 1
## 10265 787931 1
## 10266 787932 1
## 10267 787933 1
## 10268 787934 1
## 10269 787935 1
## 10270 787936 1
## 10271 787937 1
## 10272 787938 1
## 10273 787939 1
## 10274 787940 1
## 10275 787941 1
## 10276 787942 1
## 10277 787943 1
## 10278 787944 1
## 10279 787945 1
## 10280 787946 1
## 10281 787947 1
## 10282 787948 1
## 10283 787949 1
## 10284 787950 1
## 10285 787951 1
## 10286 787952 1
## 10287 787953 1
## 10288 787954 1
## 10289 787955 1
## 10290 787956 1
## 10291 787957 1
## 10292 787958 1
## 10293 787959 1
## 10294 787960 1
## 10295 787961 1
## 10296 787962 1
## 10297 787964 1
## 10298 787965 1
## 10299 787966 1
## 10300 787967 1
## 10301 787968 1
## 10302 787969 1
## 10303 787970 1
## 10304 787971 1
## 10305 787972 1
## 10306 787973 1
## 10307 787974 1
## 10308 787975 1
## 10309 787976 1
## 10310 787977 1
## 10311 787978 1
## 10312 787979 1
## 10313 787980 1
## 10314 787981 1
## 10315 787982 1
## 10316 787983 1
## 10317 787984 1
## 10318 787985 1
## 10319 787986 1
## 10320 787987 1
## 10321 787988 1
## 10322 787989 1
## 10323 787990 1
## 10324 787991 1
## 10325 787992 1
## 10326 787993 1
## 10327 787994 1
## 10328 787995 1
## 10329 787996 1
## 10330 787997 1
## 10331 787998 1
## 10332 787999 1
## 10333 788000 1
## 10334 788001 1
## 10335 788002 1
## 10336 788003 1
## 10337 788004 1
## 10338 788005 1
## 10339 788006 1
## 10340 788007 1
## 10341 788008 1
## 10342 788009 1
## 10343 788010 1
## 10344 788011 1
## 10345 788012 1
## 10346 788013 1
## 10347 788014 1
## 10348 788015 1
## 10349 788016 1
## 10350 788017 1
## 10351 788018 1
## 10352 788019 1
## 10353 788020 1
## 10354 788021 1
## 10355 788022 1
## 10356 788023 1
## 10357 788024 1
## 10358 788025 1
## 10359 788026 1
## 10360 788027 1
## 10361 788028 1
## 10362 788029 1
## 10363 788030 1
## 10364 788031 1
## 10365 788032 1
## 10366 788033 1
## 10367 788034 1
## 10368 788035 1
## 10369 788036 1
## 10370 788037 1
## 10371 788038 1
## 10372 788039 1
## 10373 788041 1
## 10374 788042 1
## 10375 788043 1
## 10376 788044 1
## 10377 788045 1
## 10378 788046 1
## 10379 788047 1
## 10380 788048 1
## 10381 788049 1
## 10382 788050 1
## 10383 788051 1
## 10384 788052 1
## 10385 788053 1
## 10386 788054 1
## 10387 788055 1
## 10388 788056 1
## 10389 788057 1
## 10390 788058 1
## 10391 788059 1
## 10392 788060 1
## 10393 788061 1
## 10394 788062 1
## 10395 788063 1
## 10396 788064 1
## 10397 788065 1
## 10398 788066 1
## 10399 788067 1
## 10400 788068 1
## 10401 788069 1
## 10402 788070 1
## 10403 788071 1
## 10404 788072 1
## 10405 788073 1
## 10406 788074 1
## 10407 788075 1
## 10408 788076 1
## 10409 788077 1
## 10410 788078 1
## 10411 788079 1
## 10412 788080 1
## 10413 788081 1
## 10414 788082 1
## 10415 788083 1
## 10416 788084 1
## 10417 788085 1
## 10418 788086 1
## 10419 788087 1
## 10420 788088 1
## 10421 788089 1
## 10422 788090 1
## 10423 788091 1
## 10424 788092 1
## 10425 788093 1
## 10426 788094 1
## 10427 788095 1
## 10428 788096 1
## 10429 788097 1
## 10430 788098 1
## 10431 788099 1
## 10432 788100 1
## 10433 788101 1
## 10434 788102 1
## 10435 788103 1
## 10436 788104 1
## 10437 788105 1
## 10438 788106 1
## 10439 788107 1
## 10440 788108 1
## 10441 788109 1
## 10442 788110 1
## 10443 788111 1
## 10444 788112 1
## 10445 788114 1
## 10446 788115 1
## 10447 788116 1
## 10448 788117 1
## 10449 788118 1
## 10450 788119 1
## 10451 788120 1
## 10452 788121 1
## 10453 788122 1
## 10454 788123 1
## 10455 788124 1
## 10456 788125 1
## 10457 788126 1
## 10458 788127 1
## 10459 788128 1
## 10460 788129 1
## 10461 788130 1
## 10462 788131 1
## 10463 788132 1
## 10464 788133 1
## 10465 788134 1
## 10466 788135 1
## 10467 788136 1
## 10468 788137 1
## 10469 788138 1
## 10470 788139 1
## 10471 788140 1
## 10472 788141 1
## 10473 788142 1
## 10474 788143 1
## 10475 788144 1
## 10476 788145 1
## 10477 788146 1
## 10478 788147 1
## 10479 788148 1
## 10480 788149 1
## 10481 788150 1
## 10482 788151 1
## 10483 788152 1
## 10484 788153 1
## 10485 788154 1
## 10486 788155 1
## 10487 788156 1
## 10488 788157 1
## 10489 788158 1
## 10490 788159 1
## 10491 788160 1
## 10492 788161 1
## 10493 788162 1
## 10494 788163 1
## 10495 788164 1
## 10496 788165 1
## 10497 788166 1
## 10498 788167 1
## 10499 788168 1
## 10500 788169 1
## 10501 788170 1
## 10502 788171 1
## 10503 788172 1
## 10504 788173 1
## 10505 788174 1
## 10506 788175 1
## 10507 788176 1
## 10508 788177 1
## 10509 788178 1
## 10510 788179 1
## 10511 788180 1
## 10512 788181 1
## 10513 788182 1
## 10514 788183 1
## 10515 788184 1
## 10516 788185 1
## 10517 788186 1
## 10518 788187 1
## 10519 788188 1
## 10520 788189 1
## 10521 788190 1
## 10522 788191 1
## 10523 788192 1
## 10524 788193 1
## 10525 788194 1
## 10526 788195 1
## 10527 788196 1
## 10528 788197 1
## 10529 788198 1
## 10530 788199 1
## 10531 788200 1
## 10532 788201 1
## 10533 788202 1
## 10534 788203 1
## 10535 788205 1
## 10536 788206 1
## 10537 788207 1
## 10538 788208 1
## 10539 788209 1
## 10540 788210 1
## 10541 788211 1
## 10542 788212 1
## 10543 788213 1
## 10544 788214 1
## 10545 788215 1
## 10546 788216 1
## 10547 788217 1
## 10548 788218 1
## 10549 788219 1
## 10550 788220 1
## 10551 788221 1
## 10552 788222 1
## 10553 788223 1
## 10554 788224 1
## 10555 788225 1
## 10556 788226 1
## 10557 788227 1
## 10558 788228 1
## 10559 788229 1
## 10560 788230 1
## 10561 788231 1
## 10562 788232 1
## 10563 788233 1
## 10564 788234 1
## 10565 788235 1
## 10566 788236 1
## 10567 788237 1
## 10568 788238 1
## 10569 788239 1
## 10570 788240 1
## 10571 788241 1
## 10572 788242 1
## 10573 788243 1
## 10574 788244 1
## 10575 788245 1
## 10576 788246 1
## 10577 788247 1
## 10578 788248 1
## 10579 788249 1
## 10580 788250 1
## 10581 788251 1
## 10582 788252 1
## 10583 788253 1
## 10584 788254 1
## 10585 788255 1
## 10586 788256 1
## 10587 788257 1
## 10588 788258 1
## 10589 788259 1
## 10590 788260 1
## 10591 788261 1
## 10592 788262 1
## 10593 788263 1
## 10594 788264 1
## 10595 788265 1
## 10596 788266 1
## 10597 788267 1
## 10598 788269 1
## 10599 788270 1
## 10600 788271 1
## 10601 788272 1
## 10602 788273 1
## 10603 788274 1
## 10604 788275 1
## 10605 788276 1
## 10606 788277 1
## 10607 788278 1
## 10608 788279 1
## 10609 788280 1
## 10610 788281 1
## 10611 788282 1
## 10612 788283 1
## 10613 788284 1
## 10614 788285 1
## 10615 788286 1
## 10616 788287 1
## 10617 788288 1
## 10618 788289 1
## 10619 788290 1
## 10620 788291 1
## 10621 788292 1
## 10622 788293 1
## 10623 788294 1
## 10624 788295 1
## 10625 788296 1
## 10626 788297 1
## 10627 788298 1
## 10628 788299 1
## 10629 788300 1
## 10630 788301 1
## 10631 788302 1
## 10632 788303 1
## 10633 788304 1
## 10634 788305 1
## 10635 788306 1
## 10636 788307 1
## 10637 788308 1
## 10638 788309 1
## 10639 788310 1
## 10640 788311 1
## 10641 788312 1
## 10642 788313 1
## 10643 788314 1
## 10644 788315 1
## 10645 788316 1
## 10646 788317 1
## 10647 788318 1
## 10648 788319 1
## 10649 788320 1
## 10650 788321 1
## 10651 788322 1
## 10652 788323 1
## 10653 788324 1
## 10654 788325 1
## 10655 788326 1
## 10656 788327 1
## 10657 788328 1
## 10658 788329 1
## 10659 788330 1
## 10660 788331 1
## 10661 788332 1
## 10662 788333 1
## 10663 788334 1
## 10664 788335 1
## 10665 788336 1
## 10666 788337 1
## 10667 788338 1
## 10668 788339 1
## 10669 788340 1
## 10670 788341 1
## 10671 788342 1
## 10672 788343 1
## 10673 788344 1
## 10674 788345 1
## 10675 788346 1
## 10676 788347 1
## 10677 788348 1
## 10678 788349 1
## 10679 788350 1
## 10680 788351 1
## 10681 788352 1
## 10682 788353 1
## 10683 788354 1
## 10684 788355 1
## 10685 788356 1
## 10686 788357 1
## 10687 788358 1
## 10688 788359 1
## 10689 788360 1
## 10690 788361 1
## 10691 788362 1
## 10692 788363 1
## 10693 788364 1
## 10694 788365 1
## 10695 788366 1
## 10696 788367 1
## 10697 788368 1
## 10698 788369 1
## 10699 788370 1
## 10700 788371 1
## 10701 788372 1
## 10702 788373 1
## 10703 788374 1
## 10704 788375 1
## 10705 788376 1
## 10706 788377 1
## 10707 788378 1
## 10708 788379 1
## 10709 788380 1
## 10710 788381 1
## 10711 788382 1
## 10712 788383 1
## 10713 788384 1
## 10714 788385 1
## 10715 788386 1
## 10716 788387 1
## 10717 788388 1
## 10718 788389 1
## 10719 788390 1
## 10720 788391 1
## 10721 788392 1
## 10722 788393 1
## 10723 788394 1
## 10724 788395 1
## 10725 788396 1
## 10726 788397 1
## 10727 788398 1
## 10728 788399 1
## 10729 788400 1
## 10730 788401 1
## 10731 788402 1
## 10732 788403 1
## 10733 788404 1
## 10734 788405 1
## 10735 788406 1
## 10736 788407 1
## 10737 788408 1
## 10738 788409 1
## 10739 788410 1
## 10740 788411 1
## 10741 788412 1
## 10742 788413 1
## 10743 788414 1
## 10744 788415 1
## 10745 788416 1
## 10746 788417 1
## 10747 788418 1
## 10748 788419 1
## 10749 788420 1
## 10750 788421 1
## 10751 788422 1
## 10752 788423 1
## 10753 788424 1
## 10754 788425 1
## 10755 788426 1
## 10756 788427 1
## 10757 788428 1
## 10758 788429 1
## 10759 788430 1
## 10760 788431 1
## 10761 788432 1
## 10762 788433 1
## 10763 788434 1
## 10764 788435 1
## 10765 788436 1
## 10766 788437 1
## 10767 788438 1
## 10768 788439 1
## 10769 788440 1
## 10770 788441 1
## 10771 788443 1
## 10772 788444 1
## 10773 788445 1
## 10774 788446 1
## 10775 788447 1
## 10776 788448 1
## 10777 788449 1
## 10778 788450 1
## 10779 788451 1
## 10780 788452 1
## 10781 788453 1
## 10782 788454 1
## 10783 788455 1
## 10784 788456 1
## 10785 788457 1
## 10786 788458 1
## 10787 788459 1
## 10788 788460 1
## 10789 788461 1
## 10790 788462 1
## 10791 788463 1
## 10792 788464 1
## 10793 788465 1
## 10794 788466 1
## 10795 788467 1
## 10796 788468 1
## 10797 788469 1
## 10798 788470 1
## 10799 788471 1
## 10800 788472 1
## 10801 788473 1
## 10802 788474 1
## 10803 788475 1
## 10804 788476 1
## 10805 788477 1
## 10806 788478 1
## 10807 788479 1
## 10808 788480 1
## 10809 788481 1
## 10810 788482 1
## 10811 788483 1
## 10812 788484 1
## 10813 788485 1
## 10814 788486 1
## 10815 788487 1
## 10816 788488 1
## 10817 788489 1
## 10818 788490 1
## 10819 788491 1
## 10820 788492 1
## 10821 788493 1
## 10822 788494 1
## 10823 788495 1
## 10824 788496 1
## 10825 788497 1
## 10826 788498 1
## 10827 788499 1
## 10828 788500 1
## 10829 788501 1
## 10830 788502 1
## 10831 788503 1
## 10832 788504 1
## 10833 788505 1
## 10834 788506 1
## 10835 788507 1
## 10836 788508 1
## 10837 788509 1
## 10838 788510 1
## 10839 788511 1
## 10840 788512 1
## 10841 788513 1
## 10842 788514 1
## 10843 788515 1
## 10844 788516 1
## 10845 788517 1
## 10846 788518 1
## 10847 788519 1
## 10848 788520 1
## 10849 788521 1
## 10850 788522 1
## 10851 788523 1
## 10852 788524 1
## 10853 788525 1
## 10854 788526 1
## 10855 788527 1
## 10856 788528 1
## 10857 788529 1
## 10858 788530 1
## 10859 788531 1
## 10860 788532 1
## 10861 788533 1
## 10862 788534 1
## 10863 788535 1
## 10864 788536 1
## 10865 788537 1
## 10866 788538 1
## 10867 788539 1
## 10868 788540 1
## 10869 788541 1
## 10870 788542 1
## 10871 788543 1
## 10872 788544 1
## 10873 788546 1
## 10874 788547 1
## 10875 788548 1
## 10876 788549 1
## 10877 788550 1
## 10878 788551 1
## 10879 788552 1
## 10880 788553 1
## 10881 788554 1
## 10882 788555 1
## 10883 788556 1
## 10884 788557 1
## 10885 788558 1
## 10886 788559 1
## 10887 788560 1
## 10888 788561 1
## 10889 788562 1
## 10890 788563 1
## 10891 788564 1
## 10892 788565 1
## 10893 788566 1
## 10894 788567 1
## 10895 788568 1
## 10896 788569 1
## 10897 788570 1
## 10898 788571 1
## 10899 788572 1
## 10900 788573 1
## 10901 788574 1
## 10902 788575 1
## 10903 788576 1
## 10904 788577 1
## 10905 788578 1
## 10906 788579 1
## 10907 788580 1
## 10908 788581 1
## 10909 788582 1
## 10910 788583 1
## 10911 788584 1
## 10912 788585 1
## 10913 788586 1
## 10914 788587 1
## 10915 788588 1
## 10916 788589 1
## 10917 788590 1
## 10918 788591 1
## 10919 788592 1
## 10920 788593 1
## 10921 788594 1
## 10922 788595 1
## 10923 788596 1
## 10924 788597 1
## 10925 788598 1
## 10926 788599 1
## 10927 788600 1
## 10928 788601 1
## 10929 788602 1
## 10930 788603 1
## 10931 788604 1
## 10932 788605 1
## 10933 788606 1
## 10934 788607 1
## 10935 788608 1
## 10936 788609 1
## 10937 788610 1
## 10938 788611 1
## 10939 788612 1
## 10940 788613 1
## 10941 788614 1
## 10942 788615 1
## 10943 788616 1
## 10944 788617 1
## 10945 788618 1
## 10946 788619 1
## 10947 788620 1
## 10948 788621 1
## 10949 788622 1
## 10950 788623 1
## 10951 788624 1
## 10952 788625 1
## 10953 788626 1
## 10954 788627 1
## 10955 788628 1
## 10956 788629 1
## 10957 788630 1
## 10958 788631 1
## 10959 788632 1
## 10960 788633 1
## 10961 788634 1
## 10962 788635 1
## 10963 788636 1
## 10964 788637 1
## 10965 788638 1
## 10966 788639 1
## 10967 788640 1
## 10968 788641 1
## 10969 788642 1
## 10970 788643 1
## 10971 788644 1
## 10972 788645 1
## 10973 788646 1
## 10974 788647 1
## 10975 788648 1
## 10976 788649 1
## 10977 788650 1
## 10978 788651 1
## 10979 788652 1
## 10980 788653 1
## 10981 788654 1
## 10982 788655 1
## 10983 788656 1
## 10984 788657 1
## 10985 788658 1
## 10986 788659 1
## 10987 788660 1
## 10988 788661 1
## 10989 788662 1
## 10990 788663 1
## 10991 788664 1
## 10992 788665 1
## 10993 788666 1
## 10994 788667 1
## 10995 788668 1
## 10996 788669 1
## 10997 788670 1
## 10998 788671 1
## 10999 788672 1
## 11000 788673 1
## 11001 788674 1
## 11002 788675 1
## 11003 788676 1
## 11004 788677 1
## 11005 788678 1
## 11006 788679 1
## 11007 788680 1
## 11008 788681 1
## 11009 788682 1
## 11010 788683 1
## 11011 788684 1
## 11012 788685 1
## 11013 788686 1
## 11014 788687 1
## 11015 788688 1
## 11016 788689 1
## 11017 788690 1
## 11018 788691 1
## 11019 788692 1
## 11020 788693 1
## 11021 788694 1
## 11022 788695 1
## 11023 788696 1
## 11024 788697 1
## 11025 788698 1
## 11026 788699 1
## 11027 788700 1
## 11028 788701 1
## 11029 788702 1
## 11030 788703 1
## 11031 788704 1
## 11032 788705 1
## 11033 788706 1
## 11034 788707 1
## 11035 788708 1
## 11036 788709 1
## 11037 788710 1
## 11038 788711 1
## 11039 788712 1
## 11040 788713 1
## 11041 788714 1
## 11042 788715 1
## 11043 788716 1
## 11044 788717 1
## 11045 788718 1
## 11046 788719 1
## 11047 788720 1
## 11048 788721 1
## 11049 788722 1
## 11050 788723 1
## 11051 788724 1
## 11052 788725 1
## 11053 788726 1
## 11054 788727 1
## 11055 788728 1
## 11056 788729 1
## 11057 788730 1
## 11058 788731 1
## 11059 788732 1
## 11060 788733 1
## 11061 788734 1
## 11062 788735 1
## 11063 788736 1
## 11064 788737 1
## 11065 788738 1
## 11066 788739 1
## 11067 788740 1
## 11068 788741 1
## 11069 788742 1
## 11070 788743 1
## 11071 788744 1
## 11072 788745 1
## 11073 788746 1
## 11074 788747 1
## 11075 788748 1
## 11076 788749 1
## 11077 788750 1
## 11078 788751 1
## 11079 788752 1
## 11080 788753 1
## 11081 788754 1
## 11082 788755 1
## 11083 788756 1
## 11084 788757 1
## 11085 788758 1
## 11086 788759 1
## 11087 788760 1
## 11088 788761 1
## 11089 788762 1
## 11090 788763 1
## 11091 788764 1
## 11092 788765 1
## 11093 788766 1
## 11094 788767 1
## 11095 788768 1
## 11096 788769 1
## 11097 788770 1
## 11098 788771 1
## 11099 788772 1
## 11100 788773 1
## 11101 788774 1
## 11102 788775 1
## 11103 788776 1
## 11104 788777 1
## 11105 788778 1
## 11106 788779 1
## 11107 788780 1
## 11108 788781 1
## 11109 788782 1
## 11110 788783 1
## 11111 788784 1
## 11112 788785 1
## 11113 788786 1
## 11114 788787 1
## 11115 788788 1
## 11116 788789 1
## 11117 788790 1
## 11118 788791 1
## 11119 788792 1
## 11120 788793 1
## 11121 788794 1
## 11122 788795 1
## 11123 788796 1
## 11124 788797 1
## 11125 788798 1
## 11126 788799 1
## 11127 788800 1
## 11128 788801 1
## 11129 788803 1
## 11130 788804 1
## 11131 788805 1
## 11132 788806 1
## 11133 788807 1
## 11134 788808 1
## 11135 788809 1
## 11136 788810 1
## 11137 788811 1
## 11138 788812 1
## 11139 788813 1
## 11140 788814 1
## 11141 788815 1
## 11142 788816 1
## 11143 788817 1
## 11144 788818 1
## 11145 788819 1
## 11146 788820 1
## 11147 788821 1
## 11148 788822 1
## 11149 788823 1
## 11150 788824 1
## 11151 788825 1
## 11152 788826 1
## 11153 788827 1
## 11154 788828 1
## 11155 788829 1
## 11156 788830 1
## 11157 788831 1
## 11158 788832 1
## 11159 788833 1
## 11160 788834 1
## 11161 788835 1
## 11162 788836 1
## 11163 788837 1
## 11164 788838 1
## 11165 788839 1
## 11166 788840 1
## 11167 788841 1
## 11168 788842 1
## 11169 788843 1
## 11170 788844 1
## 11171 788845 1
## 11172 788846 1
## 11173 788847 1
## 11174 788848 1
## 11175 788849 1
## 11176 788850 1
## 11177 788851 1
## 11178 788852 1
## 11179 788853 1
## 11180 788854 1
## 11181 788855 1
## 11182 788856 1
## 11183 788857 1
## 11184 788858 1
## 11185 788859 1
## 11186 788860 1
## 11187 788861 1
## 11188 788862 1
## 11189 788863 1
## 11190 788864 1
## 11191 788865 1
## 11192 788866 1
## 11193 788867 1
## 11194 788868 1
## 11195 788869 1
## 11196 788870 1
## 11197 788871 1
## 11198 788872 1
## 11199 788873 1
## 11200 788874 1
## 11201 788875 1
## 11202 788876 1
## 11203 788877 1
## 11204 788878 1
## 11205 788879 1
## 11206 788880 1
## 11207 788881 1
## 11208 788882 1
## 11209 788883 1
## 11210 788884 1
## 11211 788885 1
## 11212 788886 1
## 11213 788887 1
## 11214 788888 1
## 11215 788889 1
## 11216 788890 1
## 11217 788891 1
## 11218 788892 1
## 11219 788893 1
## 11220 788894 1
## 11221 788895 1
## 11222 788896 1
## 11223 788897 1
## 11224 788898 1
## 11225 788899 1
## 11226 788900 1
## 11227 788901 1
## 11228 788902 1
## 11229 788903 1
## 11230 788904 1
## 11231 788905 1
## 11232 788906 1
## 11233 788907 1
## 11234 788908 1
## 11235 788909 1
## 11236 788910 1
## 11237 788911 1
## 11238 788912 1
## 11239 788913 1
## 11240 788914 1
## 11241 788915 1
## 11242 788916 1
## 11243 788917 1
## 11244 788918 1
## 11245 788919 1
## 11246 788920 1
## 11247 788921 1
## 11248 788922 1
## 11249 788923 1
## 11250 788924 1
## 11251 788925 1
## 11252 788926 1
## 11253 788927 1
## 11254 788928 1
## 11255 788929 1
## 11256 788930 1
## 11257 788931 1
## 11258 788932 1
## 11259 788933 1
## 11260 788934 1
## 11261 788935 1
## 11262 788936 1
## 11263 788937 1
## 11264 788938 1
## 11265 788939 1
## 11266 788940 1
## 11267 788941 1
## 11268 788942 1
## 11269 788943 1
## 11270 788944 1
## 11271 788945 1
## 11272 788946 1
## 11273 788947 1
## 11274 788948 1
## 11275 788949 1
## 11276 788950 1
## 11277 788951 1
## 11278 788952 1
## 11279 788953 1
## 11280 788954 1
## 11281 788955 1
## 11282 788956 1
## 11283 788957 1
## 11284 788958 1
## 11285 788959 1
## 11286 788960 1
## 11287 788961 1
## 11288 788962 1
## 11289 788963 1
## 11290 788964 1
## 11291 788965 1
## 11292 788966 1
## 11293 788967 1
## 11294 788968 1
## 11295 788969 1
## 11296 788970 1
## 11297 788971 1
## 11298 788972 1
## 11299 788973 1
## 11300 788974 1
## 11301 788975 1
## 11302 788976 1
## 11303 788977 1
## 11304 788978 1
## 11305 788979 1
## 11306 788980 1
## 11307 788981 1
## 11308 788982 1
## 11309 788983 1
## 11310 788984 1
## 11311 788985 1
## 11312 788986 1
## 11313 788987 1
## 11314 788988 1
## 11315 788989 1
## 11316 788990 1
## 11317 788991 1
## 11318 788992 1
## 11319 788993 1
## 11320 788994 1
## 11321 788995 1
## 11322 788996 1
## 11323 788997 1
## 11324 788998 1
## 11325 788999 1
## 11326 789000 1
## 11327 789001 1
## 11328 789002 1
## 11329 789003 1
## 11330 789004 1
## 11331 789005 1
## 11332 789006 1
## 11333 789007 1
## 11334 789008 1
## 11335 789009 1
## 11336 789010 1
## 11337 789011 1
## 11338 789012 1
## 11339 789013 1
## 11340 789014 1
## 11341 789015 1
## 11342 789016 1
## 11343 789017 1
## 11344 789018 1
## 11345 789019 1
## 11346 789020 1
## 11347 789021 1
## 11348 789022 1
## 11349 789023 1
## 11350 789024 1
## 11351 789025 1
## 11352 789026 1
## 11353 789027 1
## 11354 789028 1
## 11355 789029 1
## 11356 789030 1
## 11357 789031 1
## 11358 789032 1
## 11359 789033 1
## 11360 789034 1
## 11361 789035 1
## 11362 789036 1
## 11363 789037 1
## 11364 789038 1
## 11365 789039 1
## 11366 789040 1
## 11367 789041 1
## 11368 789042 1
## 11369 789043 1
## 11370 789044 1
## 11371 789045 1
## 11372 789046 1
## 11373 789047 1
## 11374 789048 1
## 11375 789049 1
## 11376 789050 1
## 11377 789051 1
## 11378 789052 1
## 11379 789053 1
## 11380 789054 1
## 11381 789055 1
## 11382 789056 1
## 11383 789057 1
## 11384 789058 1
## 11385 789059 1
## 11386 789060 1
## 11387 789061 1
## 11388 789062 1
## 11389 789063 1
## 11390 789064 1
## 11391 789065 1
## 11392 789066 1
## 11393 789067 1
## 11394 789068 1
## 11395 789069 1
## 11396 789070 1
## 11397 789071 1
## 11398 789072 1
## 11399 789073 1
## 11400 789074 1
## 11401 789075 1
## 11402 789076 1
## 11403 789077 1
## 11404 789078 1
## 11405 789079 1
## 11406 789080 1
## 11407 789081 1
## 11408 789082 1
## 11409 789083 1
## 11410 789084 1
## 11411 789085 1
## 11412 789086 1
## 11413 789087 1
## 11414 789088 1
## 11415 789089 1
## 11416 789090 1
## 11417 789091 1
## 11418 789092 1
## 11419 789093 1
## 11420 789094 1
## 11421 789095 1
## 11422 789096 1
## 11423 789097 1
## 11424 789098 1
## 11425 789099 1
## 11426 789100 1
## 11427 789101 1
## 11428 789102 1
## 11429 789103 1
## 11430 789104 1
## 11431 789105 1
## 11432 789106 1
## 11433 789107 1
## 11434 789108 1
## 11435 789109 1
## 11436 789110 1
## 11437 789111 1
## 11438 789112 1
## 11439 789113 1
## 11440 789114 1
## 11441 789115 1
## 11442 789116 1
## 11443 789117 1
## 11444 789118 1
## 11445 789119 1
## 11446 789120 1
## 11447 789121 1
## 11448 789122 1
## 11449 789123 1
## 11450 789124 1
## 11451 789125 1
## 11452 789126 1
## 11453 789127 1
## 11454 789128 1
## 11455 789129 1
## 11456 789130 1
## 11457 789131 1
## 11458 789132 1
## 11459 789133 1
## 11460 789134 1
## 11461 789135 1
## 11462 789136 1
## 11463 789137 1
## 11464 789138 1
## 11465 789139 1
## 11466 789140 1
## 11467 789141 1
## 11468 789142 1
## 11469 789143 1
## 11470 789144 1
## 11471 789145 1
## 11472 789146 1
## 11473 789147 1
## 11474 789148 1
## 11475 789149 1
## 11476 789150 1
## 11477 789151 1
## 11478 789152 1
## 11479 789153 1
## 11480 789154 1
## 11481 789155 1
## 11482 789156 1
## 11483 789157 1
## 11484 789158 1
## 11485 789159 1
## 11486 789160 1
## 11487 789161 1
## 11488 789162 1
## 11489 789163 1
## 11490 789164 1
## 11491 789165 1
## 11492 789166 1
## 11493 789167 1
## 11494 789168 1
## 11495 789169 1
## 11496 789170 1
## 11497 789171 1
## 11498 789172 1
## 11499 789173 1
## 11500 789174 1
## 11501 789175 1
## 11502 789176 1
## 11503 789177 1
## 11504 789178 1
## 11505 789179 1
## 11506 789180 1
## 11507 789181 1
## 11508 789182 1
## 11509 789183 1
## 11510 789184 1
## 11511 789185 1
## 11512 789186 1
## 11513 789187 1
## 11514 789188 1
## 11515 789189 1
## 11516 789190 1
## 11517 789191 1
## 11518 789192 1
## 11519 789193 1
## 11520 789194 1
## 11521 789195 1
## 11522 789196 1
## 11523 789197 1
## 11524 789198 1
## 11525 789199 1
## 11526 789200 1
## 11527 789201 1
## 11528 789202 1
## 11529 789203 1
## 11530 789204 1
## 11531 789205 1
## 11532 789206 1
## 11533 789207 1
## 11534 789208 1
## 11535 789209 1
## 11536 789210 1
## 11537 789211 1
## 11538 789212 1
## 11539 789213 1
## 11540 789214 1
## 11541 789215 1
## 11542 789216 1
## 11543 789217 1
## 11544 789218 1
## 11545 789219 1
## 11546 789220 1
## 11547 789221 1
## 11548 789222 1
## 11549 789223 1
## 11550 789224 1
## 11551 789225 1
## 11552 789226 1
## 11553 789227 1
## 11554 789228 1
## 11555 789229 1
## 11556 789230 1
## 11557 789231 1
## 11558 789232 1
## 11559 789233 1
## 11560 789234 1
## 11561 789235 1
## 11562 789236 1
## 11563 789237 1
## 11564 789238 1
## 11565 789239 1
## 11566 789240 1
## 11567 789241 1
## 11568 789242 1
## 11569 789243 1
## 11570 789244 1
## 11571 789245 1
## 11572 789246 1
## 11573 789247 1
## 11574 789248 1
## 11575 789249 1
## 11576 789250 1
## 11577 789251 1
## 11578 789252 1
## 11579 789253 1
## 11580 789254 1
## 11581 789255 1
## 11582 789256 1
## 11583 789257 1
## 11584 789258 1
## 11585 789259 1
## 11586 789260 1
## 11587 789261 1
## 11588 789262 1
## 11589 789263 1
## 11590 789264 1
## 11591 789265 1
## 11592 789266 1
## 11593 789267 1
## 11594 789268 1
## 11595 789269 1
## 11596 789271 1
## 11597 789272 1
## 11598 789273 1
## 11599 789274 1
## 11600 789275 1
## 11601 789276 1
## 11602 789277 1
## 11603 789278 1
## 11604 789279 1
## 11605 789280 1
## 11606 789281 1
## 11607 789282 1
## 11608 789283 1
## 11609 789284 1
## 11610 789285 1
## 11611 789286 1
## 11612 789287 1
## 11613 789288 1
## 11614 789289 1
## 11615 789290 1
## 11616 789291 1
## 11617 789292 1
## 11618 789293 1
## 11619 789294 1
## 11620 789295 1
## 11621 789296 1
## 11622 789297 1
## 11623 789298 1
## 11624 789299 1
## 11625 789300 1
## 11626 789301 1
## 11627 789302 1
## 11628 789303 1
## 11629 789304 1
## 11630 789305 1
## 11631 789306 1
## 11632 789307 1
## 11633 789308 1
## 11634 789309 1
## 11635 789310 1
## 11636 789311 1
## 11637 789312 1
## 11638 789313 1
## 11639 789314 1
## 11640 789315 1
## 11641 789316 1
## 11642 789317 1
## 11643 789318 1
## 11644 789319 1
## 11645 789320 1
## 11646 789321 1
## 11647 789322 1
## 11648 789323 1
## 11649 789324 1
## 11650 789325 1
## 11651 789326 1
## 11652 789327 1
## 11653 789328 1
## 11654 789329 1
## 11655 789330 1
## 11656 789331 1
## 11657 789332 1
## 11658 789333 1
## 11659 789334 1
## 11660 789335 1
## 11661 789336 1
## 11662 789337 1
## 11663 789338 1
## 11664 789339 1
## 11665 789340 1
## 11666 789341 1
## 11667 789342 1
## 11668 789343 1
## 11669 789344 1
## 11670 789345 1
## 11671 789346 1
## 11672 789347 1
## 11673 789348 1
## 11674 789349 1
## 11675 789350 1
## 11676 789351 1
## 11677 789352 1
## 11678 789353 1
## 11679 789354 1
## 11680 789355 1
## 11681 789356 1
## 11682 789357 1
## 11683 789358 1
## 11684 789359 1
## 11685 789360 1
## 11686 789361 1
## 11687 789362 1
## 11688 789363 1
## 11689 789364 1
## 11690 789365 1
## 11691 789366 1
## 11692 789367 1
## 11693 789368 1
## 11694 789369 1
## 11695 789370 1
## 11696 789371 1
## 11697 789372 1
## 11698 789373 1
## 11699 789374 1
## 11700 789375 1
## 11701 789376 1
## 11702 789377 1
## 11703 789378 1
## 11704 789379 1
## 11705 789380 1
## 11706 789381 1
## 11707 789382 1
## 11708 789383 1
## 11709 789384 1
## 11710 789385 1
## 11711 789386 1
## 11712 789387 1
## 11713 789388 1
## 11714 789389 1
## 11715 789390 1
## 11716 789391 1
## 11717 789392 1
## 11718 789393 1
## 11719 789394 1
## 11720 789395 1
## 11721 789396 1
## 11722 789397 1
## 11723 789398 1
## 11724 789399 1
## 11725 789400 1
## 11726 789401 1
## 11727 789402 1
## 11728 789403 1
## 11729 789404 1
## 11730 789405 1
## 11731 789406 1
## 11732 789407 1
## 11733 789408 1
## 11734 789409 1
## 11735 789410 1
## 11736 789411 1
## 11737 789412 1
## 11738 789413 1
## 11739 789414 1
## 11740 789415 1
## 11741 789416 1
## 11742 789417 1
## 11743 789418 1
## 11744 789419 1
## 11745 789420 1
## 11746 789421 1
## 11747 789422 1
## 11748 789423 1
## 11749 789424 1
## 11750 789425 1
## 11751 789426 1
## 11752 789427 1
## 11753 789428 1
## 11754 789429 1
## 11755 789430 1
## 11756 789431 1
## 11757 789432 1
## 11758 789433 1
## 11759 789434 1
## 11760 789435 1
## 11761 789436 1
## 11762 789437 1
## 11763 789438 1
## 11764 789439 1
## 11765 789440 1
## 11766 789441 1
## 11767 789442 1
## 11768 789443 1
## 11769 789444 1
## 11770 789445 1
## 11771 789446 1
## 11772 789447 1
## 11773 789448 1
## 11774 789449 1
## 11775 789450 1
## 11776 789451 1
## 11777 789452 1
## 11778 789453 1
## 11779 789454 1
## 11780 789455 1
## 11781 789456 1
## 11782 789457 1
## 11783 789458 1
## 11784 789459 1
## 11785 789460 1
## 11786 789461 1
## 11787 789462 1
## 11788 789463 1
## 11789 789464 1
## 11790 789465 1
## 11791 789466 1
## 11792 789467 1
## 11793 789468 1
## 11794 789469 1
## 11795 789470 1
## 11796 789471 1
## 11797 789472 1
## 11798 789473 1
## 11799 789474 1
## 11800 789475 1
## 11801 789476 1
## 11802 789477 1
## 11803 789478 1
## 11804 789479 1
## 11805 789480 1
## 11806 789481 1
## 11807 789482 1
## 11808 789483 1
## 11809 789484 1
## 11810 789485 1
## 11811 789486 1
## 11812 789487 1
## 11813 789488 1
## 11814 789489 1
## 11815 789490 1
## 11816 789491 1
## 11817 789492 1
## 11818 789493 1
## 11819 789494 1
## 11820 789495 1
## 11821 789496 1
## 11822 789497 1
## 11823 789498 1
## 11824 789499 1
## 11825 789500 1
## 11826 789501 1
## 11827 789502 1
## 11828 789503 1
## 11829 789504 1
## 11830 789505 1
## 11831 789506 1
## 11832 789507 1
## 11833 789508 1
## 11834 789509 1
## 11835 789510 1
## 11836 789511 1
## 11837 789512 1
## 11838 789513 1
## 11839 789514 1
## 11840 789515 1
## 11841 789516 1
## 11842 789517 1
## 11843 789518 1
## 11844 789519 1
## 11845 789520 1
## 11846 789521 1
## 11847 789523 1
## 11848 789524 1
## 11849 789525 1
## 11850 789526 1
## 11851 789527 1
## 11852 789528 1
## 11853 789529 1
## 11854 789530 1
## 11855 789531 1
## 11856 789532 1
## 11857 789533 1
## 11858 789534 1
## 11859 789535 1
## 11860 789536 1
## 11861 789537 1
## 11862 789538 1
## 11863 789539 1
## 11864 789540 1
## 11865 789541 1
## 11866 789542 1
## 11867 789543 1
## 11868 789544 1
## 11869 789545 1
## 11870 789546 1
## 11871 789547 1
## 11872 789548 1
## 11873 789549 1
## 11874 789550 1
## 11875 789551 1
## 11876 789552 1
## 11877 789553 1
## 11878 789554 1
## 11879 789555 1
## 11880 789556 1
## 11881 789557 1
## 11882 789558 1
## 11883 789559 1
## 11884 789560 1
## 11885 789561 1
## 11886 789562 1
## 11887 789563 1
## 11888 789564 1
## 11889 789565 1
## 11890 789566 1
## 11891 789567 1
## 11892 789568 1
## 11893 789569 1
## 11894 789570 1
## 11895 789571 1
## 11896 789572 1
## 11897 789573 1
## 11898 789574 1
## 11899 789575 1
## 11900 789576 1
## 11901 789577 1
## 11902 789578 1
## 11903 789579 1
## 11904 789580 1
## 11905 789581 1
## 11906 789582 1
## 11907 789583 1
## 11908 789584 1
## 11909 789585 1
## 11910 789586 1
## 11911 789587 1
## 11912 789588 1
## 11913 789589 1
## 11914 789590 1
## 11915 789591 1
## 11916 789592 1
## 11917 789593 1
## 11918 789594 1
## 11919 789595 1
## 11920 789596 1
## 11921 789597 1
## 11922 789598 1
## 11923 789599 1
## 11924 789600 1
## 11925 789601 1
## 11926 789602 1
## 11927 789603 1
## 11928 789604 1
## 11929 789605 1
## 11930 789606 1
## 11931 789607 1
## 11932 789608 1
## 11933 789609 1
## 11934 789610 1
## 11935 789611 1
## 11936 789612 1
## 11937 789613 1
## 11938 789615 1
## 11939 789616 1
## 11940 789617 1
## 11941 789618 1
## 11942 789619 1
## 11943 789620 1
## 11944 789621 1
## 11945 789622 1
## 11946 789623 1
## 11947 789624 1
## 11948 789625 1
## 11949 789626 1
## 11950 789627 1
## 11951 789628 1
## 11952 789629 1
## 11953 789630 1
## 11954 789631 1
## 11955 789632 1
## 11956 789633 1
## 11957 789634 1
## 11958 789635 1
## 11959 789636 1
## 11960 789637 1
## 11961 789638 1
## 11962 789639 1
## 11963 789640 1
## 11964 789641 1
## 11965 789642 1
## 11966 789643 1
## 11967 789644 1
## 11968 789645 1
## 11969 789646 1
## 11970 789647 1
## 11971 789648 1
## 11972 789649 1
## 11973 789650 1
## 11974 789651 1
## 11975 789652 1
## 11976 789653 1
## 11977 789654 1
## 11978 789655 1
## 11979 789656 1
## 11980 789657 1
## 11981 789658 1
## 11982 789659 1
## 11983 789660 1
## 11984 789661 1
## 11985 789662 1
## 11986 789663 1
## 11987 789664 1
## 11988 789665 1
## 11989 789666 1
## 11990 789667 1
## 11991 789668 1
## 11992 789669 1
## 11993 789670 1
## 11994 789671 1
## 11995 789672 1
## 11996 789673 1
## 11997 789674 1
## 11998 789675 1
## 11999 789676 1
## 12000 789677 1
## 12001 789678 1
## 12002 789679 1
## 12003 789680 1
## 12004 789681 1
## 12005 789682 1
## 12006 789683 1
## 12007 789684 1
## 12008 789685 1
## 12009 789686 1
## 12010 789687 1
## 12011 789688 1
## 12012 789689 1
## 12013 789690 1
## 12014 789691 1
## 12015 789692 1
## 12016 789693 1
## 12017 789694 1
## 12018 789695 1
## 12019 789696 1
## 12020 789697 1
## 12021 789698 1
## 12022 789699 1
## 12023 789700 1
## 12024 789701 1
## 12025 789702 1
## 12026 789703 1
## 12027 789704 1
## 12028 789705 1
## 12029 789706 1
## 12030 789707 1
## 12031 789708 1
## 12032 789709 1
## 12033 789710 1
## 12034 789711 1
## 12035 789712 1
## 12036 789713 1
## 12037 789714 1
## 12038 789715 1
## 12039 789716 1
## 12040 789717 1
## 12041 789718 1
## 12042 789719 1
## 12043 789720 1
## 12044 789721 1
## 12045 789722 1
## 12046 789723 1
## 12047 789724 1
## 12048 789725 1
## 12049 789726 1
## 12050 789727 1
## 12051 789728 1
## 12052 789729 1
## 12053 789730 1
## 12054 789731 1
## 12055 789732 1
## 12056 789733 1
## 12057 789734 1
## 12058 789735 1
## 12059 789736 1
## 12060 789737 1
## 12061 789738 1
## 12062 789739 1
## 12063 789740 1
## 12064 789741 1
## 12065 789742 1
## 12066 789743 1
## 12067 789744 1
## 12068 789745 1
## 12069 789746 1
## 12070 789747 1
## 12071 789748 1
## 12072 789749 1
## 12073 789750 1
## 12074 789751 1
## 12075 789752 1
## 12076 789753 1
## 12077 789754 1
## 12078 789755 1
## 12079 789756 1
## 12080 789757 1
## 12081 789758 1
## 12082 789759 1
## 12083 789760 1
## 12084 789761 1
## 12085 789762 1
## 12086 789763 1
## 12087 789764 1
## 12088 789765 1
## 12089 789766 1
## 12090 789767 1
## 12091 789768 1
## 12092 789769 1
## 12093 789770 1
## 12094 789771 1
## 12095 789772 1
## 12096 789773 1
## 12097 789774 1
## 12098 789775 1
## 12099 789776 1
## 12100 789777 1
## 12101 789778 1
## 12102 789779 1
## 12103 789780 1
## 12104 789781 1
## 12105 789782 1
## 12106 789783 1
## 12107 789784 1
## 12108 789785 1
## 12109 789786 1
## 12110 789787 1
## 12111 789788 1
## 12112 789789 1
## 12113 789790 1
## 12114 789791 1
## 12115 789792 1
## 12116 789793 1
## 12117 789794 1
## 12118 789795 1
## 12119 789796 1
## 12120 789797 1
## 12121 789798 1
## 12122 789799 1
## 12123 789800 1
## 12124 789801 1
## 12125 789802 1
## 12126 789803 1
## 12127 789804 1
## 12128 789805 1
## 12129 789806 1
## 12130 789807 1
## 12131 789808 1
## 12132 789809 1
## 12133 789810 1
## 12134 789811 1
## 12135 789812 1
## 12136 789813 1
## 12137 789814 1
## 12138 789815 1
## 12139 789816 1
## 12140 789817 1
## 12141 789818 1
## 12142 789819 1
## 12143 789820 1
## 12144 789821 1
## 12145 789822 1
## 12146 789823 1
## 12147 789824 1
## 12148 789825 1
## 12149 789826 1
## 12150 789827 1
## 12151 789828 1
## 12152 789829 1
## 12153 789830 1
## 12154 789831 1
## 12155 789832 1
## 12156 789833 1
## 12157 789834 1
## 12158 789835 1
## 12159 789836 1
## 12160 789837 1
## 12161 789838 1
## 12162 789839 1
## 12163 789840 1
## 12164 789841 1
## 12165 789842 1
## 12166 789843 1
## 12167 789844 1
## 12168 789845 1
## 12169 789846 1
## 12170 789847 1
## 12171 789848 1
## 12172 789849 1
## 12173 789850 1
## 12174 789851 1
## 12175 789852 1
## 12176 789853 1
## 12177 789854 1
## 12178 789855 1
## 12179 789856 1
## 12180 789857 1
## 12181 789858 1
## 12182 789859 1
## 12183 789860 1
## 12184 789861 1
## 12185 789862 1
## 12186 789863 1
## 12187 789864 1
## 12188 789865 1
## 12189 789866 1
## 12190 789867 1
## 12191 789868 1
## 12192 789869 1
## 12193 789870 1
## 12194 789871 1
## 12195 789872 1
## 12196 789873 1
## 12197 789874 1
## 12198 789875 1
## 12199 789876 1
## 12200 789877 1
## 12201 789878 1
## 12202 789879 1
## 12203 789880 1
## 12204 789881 1
## 12205 789882 1
## 12206 789883 1
## 12207 789884 1
## 12208 789885 1
## 12209 789886 1
## 12210 789887 1
## 12211 789888 1
## 12212 789889 1
## 12213 789890 1
## 12214 789891 1
## 12215 789892 1
## 12216 789893 1
## 12217 789894 1
## 12218 789895 1
## 12219 789896 1
## 12220 789897 1
## 12221 789898 1
## 12222 789899 1
## 12223 789900 1
## 12224 789901 1
## 12225 789902 1
## 12226 789903 1
## 12227 789904 1
## 12228 789905 1
## 12229 789907 1
## 12230 789908 1
## 12231 789909 1
## 12232 789910 1
## 12233 789911 1
## 12234 789912 1
## 12235 789913 1
## 12236 789914 1
## 12237 789915 1
## 12238 789916 1
## 12239 789917 1
## 12240 789918 1
## 12241 789919 1
## 12242 789920 1
## 12243 789921 1
## 12244 789922 1
## 12245 789923 1
## 12246 789924 1
## 12247 789925 1
## 12248 789926 1
## 12249 789927 1
## 12250 789928 1
## 12251 789929 1
## 12252 789930 1
## 12253 789931 1
## 12254 789932 1
## 12255 789933 1
## 12256 789934 1
## 12257 789935 1
## 12258 789936 1
## 12259 789937 1
## 12260 789938 1
## 12261 789939 1
## 12262 789940 1
## 12263 789941 1
## 12264 789942 1
## 12265 789943 1
## 12266 789944 1
## 12267 789945 1
## 12268 789946 1
## 12269 789947 1
## 12270 789948 1
## 12271 789949 1
## 12272 789950 1
## 12273 789951 1
## 12274 789952 1
## 12275 789953 1
## 12276 789954 1
## 12277 789955 1
## 12278 789956 1
## 12279 789957 1
## 12280 789958 1
## 12281 789959 1
## 12282 789960 1
## 12283 789961 1
## 12284 789962 1
## 12285 789963 1
## 12286 789964 1
## 12287 789965 1
## 12288 789966 1
## 12289 789967 1
## 12290 789968 1
## 12291 789969 1
## 12292 789970 1
## 12293 789971 1
## 12294 789972 1
## 12295 789973 1
## 12296 789974 1
## 12297 789975 1
## 12298 789976 1
## 12299 789977 1
## 12300 789978 1
## 12301 789979 1
## 12302 789980 1
## 12303 789981 1
## 12304 789982 1
## 12305 789983 1
## 12306 789984 1
## 12307 789985 1
## 12308 789986 1
## 12309 789987 1
## 12310 789988 1
## 12311 789989 1
## 12312 789990 1
## 12313 789991 1
## 12314 789992 1
## 12315 789993 1
## 12316 789994 1
## 12317 789995 1
## 12318 789996 1
## 12319 789997 1
## 12320 789998 1
## 12321 789999 1
## 12322 790000 1
## 12323 790001 1
## 12324 790002 1
## 12325 790003 1
## 12326 790004 1
## 12327 790005 1
## 12328 790006 1
## 12329 790007 1
## 12330 790008 1
## 12331 790009 1
## 12332 790010 1
## 12333 790011 1
## 12334 790012 1
## 12335 790013 1
## 12336 790014 1
## 12337 790015 1
## 12338 790016 1
## 12339 790017 1
## 12340 790018 1
## 12341 790019 1
## 12342 790020 1
## 12343 790021 1
## 12344 790022 1
## 12345 790023 1
## 12346 790024 1
## 12347 790025 1
## 12348 790026 1
## 12349 790027 1
## 12350 790028 1
## 12351 790029 1
## 12352 790030 1
## 12353 790031 1
## 12354 790032 1
## 12355 790033 1
## 12356 790034 1
## 12357 790035 1
## 12358 790036 1
## 12359 790037 1
## 12360 790038 1
## 12361 790039 1
## 12362 790040 1
## 12363 790041 1
## 12364 790042 1
## 12365 790043 1
## 12366 790044 1
## 12367 790046 1
## 12368 790047 1
## 12369 790048 1
## 12370 790049 1
## 12371 790050 1
## 12372 790051 1
## 12373 790052 1
## 12374 790053 1
## 12375 790054 1
## 12376 790055 1
## 12377 790056 1
## 12378 790057 1
## 12379 790058 1
## 12380 790059 1
## 12381 790060 1
## 12382 790061 1
## 12383 790062 1
## 12384 790063 1
## 12385 790064 1
## 12386 790065 1
## 12387 790066 1
## 12388 790067 1
## 12389 790068 1
## 12390 790069 1
## 12391 790070 1
## 12392 790071 1
## 12393 790072 1
## 12394 790073 1
## 12395 790074 1
## 12396 790075 1
## 12397 790076 1
## 12398 790077 1
## 12399 790078 1
## 12400 790079 1
## 12401 790080 1
## 12402 790081 1
## 12403 790082 1
## 12404 790083 1
## 12405 790084 1
## 12406 790085 1
## 12407 790086 1
## 12408 790087 1
## 12409 790088 1
## 12410 790089 1
## 12411 790090 1
## 12412 790091 1
## 12413 790092 1
## 12414 790093 1
## 12415 790094 1
## 12416 790095 1
## 12417 790096 1
## 12418 790097 1
## 12419 790098 1
## 12420 790099 1
## 12421 790101 1
## 12422 790102 1
## 12423 790103 1
## 12424 790104 1
## 12425 790105 1
## 12426 790106 1
## 12427 790107 1
## 12428 790108 1
## 12429 790109 1
## 12430 790110 1
## 12431 790111 1
## 12432 790112 1
## 12433 790113 1
## 12434 790114 1
## 12435 790115 1
## 12436 790116 1
## 12437 790117 1
## 12438 790118 1
## 12439 790119 1
## 12440 790120 1
## 12441 790121 1
## 12442 790122 1
## 12443 790123 1
## 12444 790124 1
## 12445 790125 1
## 12446 790126 1
## 12447 790127 1
## 12448 790128 1
## 12449 790129 1
## 12450 790130 1
## 12451 790131 1
## 12452 790132 1
## 12453 790133 1
## 12454 790134 1
## 12455 790135 1
## 12456 790136 1
## 12457 790137 1
## 12458 790138 1
## 12459 790139 1
## 12460 790140 1
## 12461 790141 1
## 12462 790142 1
## 12463 790143 1
## 12464 790144 1
## 12465 790145 1
## 12466 790146 1
## 12467 790147 1
## 12468 790148 1
## 12469 790149 1
## 12470 790150 1
## 12471 790151 1
## 12472 790152 1
## 12473 790153 1
## 12474 790154 1
## 12475 790155 1
## 12476 790156 1
## 12477 790157 1
## 12478 790158 1
## 12479 790159 1
## 12480 790160 1
## 12481 790161 1
## 12482 790162 1
## 12483 790163 1
## 12484 790164 1
## 12485 790165 1
## 12486 790166 1
## 12487 790167 1
## 12488 790168 1
## 12489 790169 1
## 12490 790170 1
## 12491 790171 1
## 12492 790172 1
## 12493 790173 1
## 12494 790174 1
## 12495 790175 1
## 12496 790176 1
## 12497 790177 1
## 12498 790178 1
## 12499 790179 1
## 12500 790180 1
## 12501 790181 1
## 12502 790182 1
## 12503 790183 1
## 12504 790184 1
## 12505 790185 1
## 12506 790186 1
## 12507 790187 1
## 12508 790188 1
## 12509 790189 1
## 12510 790190 1
## 12511 790191 1
## 12512 790192 1
## 12513 790193 1
## 12514 790194 1
## 12515 790195 1
## 12516 790196 1
## 12517 790197 1
## 12518 790198 1
## 12519 790199 1
## 12520 790200 1
## 12521 790201 1
## 12522 790202 1
## 12523 790203 1
## 12524 790204 1
## 12525 790205 1
## 12526 790206 1
## 12527 790207 1
## 12528 790208 1
## 12529 790209 1
## 12530 790210 1
## 12531 790211 1
## 12532 790212 1
## 12533 790213 1
## 12534 790214 1
## 12535 790215 1
## 12536 790216 1
## 12537 790217 1
## 12538 790218 1
## 12539 790219 1
## 12540 790220 1
## 12541 790221 1
## 12542 790222 1
## 12543 790223 1
## 12544 790224 1
## 12545 790225 1
## 12546 790226 1
## 12547 790227 1
## 12548 790228 1
## 12549 790229 1
## 12550 790230 1
## 12551 790231 1
## 12552 790232 1
## 12553 790233 1
## 12554 790234 1
## 12555 790235 1
## 12556 790236 1
## 12557 790237 1
## 12558 790238 1
## 12559 790239 1
## 12560 790240 1
## 12561 790241 1
## 12562 790242 1
## 12563 790243 1
## 12564 790244 1
## 12565 790245 1
## 12566 790247 1
## 12567 790248 1
## 12568 790249 1
## 12569 790250 1
## 12570 790251 1
## 12571 790252 1
## 12572 790253 1
## 12573 790254 1
## 12574 790255 1
## 12575 790256 1
## 12576 790257 1
## 12577 790258 1
## 12578 790259 1
## 12579 790260 1
## 12580 790261 1
## 12581 790262 1
## 12582 790263 1
## 12583 790264 1
## 12584 790265 1
## 12585 790266 1
## 12586 790267 1
## 12587 790268 1
## 12588 790269 1
## 12589 790270 1
## 12590 790271 1
## 12591 790272 1
## 12592 790273 1
## 12593 790274 1
## 12594 790275 1
## 12595 790276 1
## 12596 790277 1
## 12597 790278 1
## 12598 790279 1
## 12599 790280 1
## 12600 790281 1
## 12601 790282 1
## 12602 790283 1
## 12603 790284 1
## 12604 790285 1
## 12605 790286 1
## 12606 790287 1
## 12607 790288 1
## 12608 790289 1
## 12609 790290 1
## 12610 790291 1
## 12611 790292 1
## 12612 790293 1
## 12613 790294 1
## 12614 790295 1
## 12615 790296 1
## 12616 790297 1
## 12617 790298 1
## 12618 790299 1
## 12619 790300 1
## 12620 790301 1
## 12621 790302 1
## 12622 790303 1
## 12623 790304 1
## 12624 790305 1
## 12625 790306 1
## 12626 790307 1
## 12627 790308 1
## 12628 790309 1
## 12629 790310 1
## 12630 790311 1
## 12631 790312 1
## 12632 790313 1
## 12633 790314 1
## 12634 790315 1
## 12635 790316 1
## 12636 790317 1
## 12637 790318 1
## 12638 790319 1
## 12639 790320 1
## 12640 790321 1
## 12641 790322 1
## 12642 790323 1
## 12643 790324 1
## 12644 790325 1
## 12645 790326 1
## 12646 790327 1
## 12647 790328 1
## 12648 790329 1
## 12649 790330 1
## 12650 790331 1
## 12651 790332 1
## 12652 790333 1
## 12653 790334 1
## 12654 790335 1
## 12655 790336 1
## 12656 790337 1
## 12657 790338 1
## 12658 790339 1
## 12659 790340 1
## 12660 790341 1
## 12661 790342 1
## 12662 790343 1
## 12663 790344 1
## 12664 790345 1
## 12665 790346 1
## 12666 790347 1
## 12667 790348 1
## 12668 790349 1
## 12669 790350 1
## 12670 790351 1
## 12671 790352 1
## 12672 790353 1
## 12673 790354 1
## 12674 790355 1
## 12675 790356 1
## 12676 790357 1
## 12677 790358 1
## 12678 790359 1
## 12679 790360 1
## 12680 790361 1
## 12681 790362 1
## 12682 790363 1
## 12683 790364 1
## 12684 790365 1
## 12685 790366 1
## 12686 790367 1
## 12687 790368 1
## 12688 790369 1
## 12689 790370 1
## 12690 790371 1
## 12691 790372 1
## 12692 790373 1
## 12693 790374 1
## 12694 790375 1
## 12695 790376 1
## 12696 790377 1
## 12697 790378 1
## 12698 790379 1
## 12699 790380 1
## 12700 790381 1
## 12701 790382 1
## 12702 790383 1
## 12703 790384 1
## 12704 790385 1
## 12705 790386 1
## 12706 790387 1
## 12707 790388 1
## 12708 790389 1
## 12709 790390 1
## 12710 790391 1
## 12711 790392 1
## 12712 790393 1
## 12713 790394 1
## 12714 790395 1
## 12715 790396 1
## 12716 790397 1
## 12717 790398 1
## 12718 790399 1
## 12719 790400 1
## 12720 790402 1
## 12721 790403 1
## 12722 790404 1
## 12723 790405 1
## 12724 790406 1
## 12725 790407 1
## 12726 790408 1
## 12727 790409 1
## 12728 790410 1
## 12729 790411 1
## 12730 790412 1
## 12731 790413 1
## 12732 790414 1
## 12733 790415 1
## 12734 790416 1
## 12735 790417 1
## 12736 790418 1
## 12737 790419 1
## 12738 790420 1
## 12739 790421 1
## 12740 790422 1
## 12741 790423 1
## 12742 790424 1
## 12743 790425 1
## 12744 790426 1
## 12745 790427 1
## 12746 790428 1
## 12747 790429 1
## 12748 790430 1
## 12749 790431 1
## 12750 790432 1
## 12751 790433 1
## 12752 790434 1
## 12753 790435 1
## 12754 790436 1
## 12755 790437 1
## 12756 790438 1
## 12757 790439 1
## 12758 790440 1
## 12759 790441 1
## 12760 790442 1
## 12761 790443 1
## 12762 790444 1
## 12763 790445 1
## 12764 790446 1
## 12765 790447 1
## 12766 790448 1
## 12767 790449 1
## 12768 790450 1
## 12769 790451 1
## 12770 790452 1
## 12771 790453 1
## 12772 790454 1
## 12773 790455 1
## 12774 790456 1
## 12775 790457 1
## 12776 790458 1
## 12777 790460 1
## 12778 790461 1
## 12779 790462 1
## 12780 790463 1
## 12781 790464 1
## 12782 790465 1
## 12783 790466 1
## 12784 790467 1
## 12785 790468 1
## 12786 790469 1
## 12787 790470 1
## 12788 790471 1
## 12789 790472 1
## 12790 790473 1
## 12791 790474 1
## 12792 790475 1
## 12793 790476 1
## 12794 790477 1
## 12795 790478 1
## 12796 790479 1
## 12797 790480 1
## 12798 790481 1
## 12799 790482 1
## 12800 790483 1
## 12801 790484 1
## 12802 790485 1
## 12803 790486 1
## 12804 790487 1
## 12805 790488 1
## 12806 790489 1
## 12807 790490 1
## 12808 790491 1
## 12809 790492 1
## 12810 790493 1
## 12811 790494 1
## 12812 790495 1
## 12813 790496 1
## 12814 790497 1
## 12815 790498 1
## 12816 790499 1
## 12817 790500 1
## 12818 790501 1
## 12819 790502 1
## 12820 790503 1
## 12821 790504 1
## 12822 790505 1
## 12823 790506 1
## 12824 790507 1
## 12825 790508 1
## 12826 790509 1
## 12827 790510 1
## 12828 790511 1
## 12829 790512 1
## 12830 790513 1
## 12831 790514 1
## 12832 790515 1
## 12833 790516 1
## 12834 790517 1
## 12835 790518 1
## 12836 790519 1
## 12837 790520 1
## 12838 790521 1
## 12839 790522 1
## 12840 790523 1
## 12841 790524 1
## 12842 790525 1
## 12843 790526 1
## 12844 790527 1
## 12845 790528 1
## 12846 790529 1
## 12847 790530 1
## 12848 790531 1
## 12849 790532 1
## 12850 790533 1
## 12851 790534 1
## 12852 790535 1
## 12853 790536 1
## 12854 790537 1
## 12855 790538 1
## 12856 790539 1
## 12857 790540 1
## 12858 790541 1
## 12859 790542 1
## 12860 790543 1
## 12861 790544 1
## 12862 790545 1
## 12863 790546 1
## 12864 790547 1
## 12865 790548 1
## 12866 790549 1
## 12867 790550 1
## 12868 790551 1
## 12869 790552 1
## 12870 790553 1
## 12871 790554 1
## 12872 790555 1
## 12873 790556 1
## 12874 790557 1
## 12875 790558 1
## 12876 790559 1
## 12877 790560 1
## 12878 790561 1
## 12879 790562 1
## 12880 790563 1
## 12881 790564 1
## 12882 790565 1
## 12883 790566 1
## 12884 790567 1
## 12885 790568 1
## 12886 790569 1
## 12887 790570 1
## 12888 790571 1
## 12889 790572 1
## 12890 790573 1
## 12891 790574 1
## 12892 790575 1
## 12893 790576 1
## 12894 790577 1
## 12895 790578 1
## 12896 790579 1
## 12897 790580 1
## 12898 790581 1
## 12899 790582 1
## 12900 790583 1
## 12901 790584 1
## 12902 790585 1
## 12903 790586 1
## 12904 790587 1
## 12905 790588 1
## 12906 790589 1
## 12907 790590 1
## 12908 790591 1
## 12909 790592 1
## 12910 790593 1
## 12911 790594 1
## 12912 790595 1
## 12913 790596 1
## 12914 790597 1
## 12915 790598 1
## 12916 790599 1
## 12917 790600 1
## 12918 790601 1
## 12919 790602 1
## 12920 790603 1
## 12921 790604 1
## 12922 790605 1
## 12923 790606 1
## 12924 790607 1
## 12925 790608 1
## 12926 790609 1
## 12927 790610 1
## 12928 790611 1
## 12929 790612 1
## 12930 790613 1
## 12931 790614 1
## 12932 790615 1
## 12933 790616 1
## 12934 790617 1
## 12935 790618 1
## 12936 790619 1
## 12937 790620 1
## 12938 790621 1
## 12939 790622 1
## 12940 790623 1
## 12941 790624 1
## 12942 790625 1
## 12943 790626 1
## 12944 790627 1
## 12945 790628 1
## 12946 790629 1
## 12947 790630 1
## 12948 790631 1
## 12949 790632 1
## 12950 790633 1
## 12951 790634 1
## 12952 790635 1
## 12953 790636 1
## 12954 790637 1
## 12955 790638 1
## 12956 790639 1
## 12957 790640 1
## 12958 790641 1
## 12959 790642 1
## 12960 790643 1
## 12961 790644 1
## 12962 790645 1
## 12963 790646 1
## 12964 790647 1
## 12965 790648 1
## 12966 790649 1
## 12967 790650 1
## 12968 790651 1
## 12969 790652 1
## 12970 790653 1
## 12971 790654 1
## 12972 790655 1
## 12973 790656 1
## 12974 790657 1
## 12975 790658 1
## 12976 790659 1
## 12977 790660 1
## 12978 790661 1
## 12979 790662 1
## 12980 790663 1
## 12981 790664 1
## 12982 790665 1
## 12983 790666 1
## 12984 790667 1
## 12985 790668 1
## 12986 790669 1
## 12987 790670 1
## 12988 790671 1
## 12989 790672 1
## 12990 790673 1
## 12991 790674 1
## 12992 790675 1
## 12993 790676 1
## 12994 790677 1
## 12995 790678 1
## 12996 790679 1
## 12997 790680 1
## 12998 790681 1
## 12999 790682 1
## 13000 790683 1
## 13001 790684 1
## 13002 790685 1
## 13003 790686 1
## 13004 790687 1
## 13005 790688 1
## 13006 790689 1
## 13007 790690 1
## 13008 790691 1
## 13009 790692 1
## 13010 790693 1
## 13011 790694 1
## 13012 790695 1
## 13013 790696 1
## 13014 790697 1
## 13015 790698 1
## 13016 790699 1
## 13017 790700 1
## 13018 790701 1
## 13019 790702 1
## 13020 790703 1
## 13021 790704 1
## 13022 790705 1
## 13023 790706 1
## 13024 790707 1
## 13025 790708 1
## 13026 790709 1
## 13027 790710 1
## 13028 790711 1
## 13029 790712 1
## 13030 790713 1
## 13031 790714 1
## 13032 790715 1
## 13033 790716 1
## 13034 790717 1
## 13035 790718 1
## 13036 790719 1
## 13037 790720 1
## 13038 790721 1
## 13039 790722 1
## 13040 790723 1
## 13041 790724 1
## 13042 790725 1
## 13043 790726 1
## 13044 790727 1
## 13045 790728 1
## 13046 790729 1
## 13047 790730 1
## 13048 790731 1
## 13049 790732 1
## 13050 790733 1
## 13051 790734 1
## 13052 790735 1
## 13053 790736 1
## 13054 790737 1
## 13055 790738 1
## 13056 790739 1
## 13057 790740 1
## 13058 790741 1
## 13059 790742 1
## 13060 790743 1
## 13061 790744 1
## 13062 790745 1
## 13063 790746 1
## 13064 790747 1
## 13065 790748 1
## 13066 790749 1
## 13067 790750 1
## 13068 790751 1
## 13069 790752 1
## 13070 790753 1
## 13071 790754 1
## 13072 790755 1
## 13073 790756 1
## 13074 790757 1
## 13075 790758 1
## 13076 790759 1
## 13077 790760 1
## 13078 790761 1
## 13079 790762 1
## 13080 790763 1
## 13081 790764 1
## 13082 790765 1
## 13083 790766 1
## 13084 790767 1
## 13085 790768 1
## 13086 790769 1
## 13087 790770 1
## 13088 790771 1
## 13089 790772 1
## 13090 790773 1
## 13091 790774 1
## 13092 790775 1
## 13093 790776 1
## 13094 790777 1
## 13095 790778 1
## 13096 790779 1
## 13097 790780 1
## 13098 790781 1
## 13099 790782 1
## 13100 790783 1
## 13101 790784 1
## 13102 790785 1
## 13103 790786 1
## 13104 790787 1
## 13105 790788 1
## 13106 790789 1
## 13107 790790 1
## 13108 790791 1
## 13109 790792 1
## 13110 790793 1
## 13111 790794 1
## 13112 790795 1
## 13113 790796 1
## 13114 790797 1
## 13115 790798 1
## 13116 790799 1
## 13117 790800 1
## 13118 790801 1
## 13119 790802 1
## 13120 790803 1
## 13121 790804 1
## 13122 790805 1
## 13123 790806 1
## 13124 790807 1
## 13125 790808 1
## 13126 790809 1
## 13127 790810 1
## 13128 790811 1
## 13129 790812 1
## 13130 790813 1
## 13131 790814 1
## 13132 790815 1
## 13133 790816 1
## 13134 790817 1
## 13135 790818 1
## 13136 790819 1
## 13137 790820 1
## 13138 790821 1
## 13139 790822 1
## 13140 790823 1
## 13141 790824 1
## 13142 790825 1
## 13143 790826 1
## 13144 790827 1
## 13145 790828 1
## 13146 790829 1
## 13147 790830 1
## 13148 790831 1
## 13149 790832 1
## 13150 790833 1
## 13151 790834 1
## 13152 790835 1
## 13153 790836 1
## 13154 790837 1
## 13155 790838 1
## 13156 790839 1
## 13157 790840 1
## 13158 790841 1
## 13159 790842 1
## 13160 790843 1
## 13161 790844 1
## 13162 790845 1
## 13163 790846 1
## 13164 790847 1
## 13165 790848 1
## 13166 790849 1
## 13167 790850 1
## 13168 790851 1
## 13169 790852 1
## 13170 790853 1
## 13171 790854 1
## 13172 790855 1
## 13173 790856 1
## 13174 790857 1
## 13175 790858 1
## 13176 790859 1
## 13177 790860 1
## 13178 790861 1
## 13179 790862 1
## 13180 790863 1
## 13181 790864 1
## 13182 790865 1
## 13183 790866 1
## 13184 790867 1
## 13185 790868 1
## 13186 790869 1
## 13187 790870 1
## 13188 790871 1
## 13189 790872 1
## 13190 790873 1
## 13191 790874 1
## 13192 790875 1
## 13193 790876 1
## 13194 790877 1
## 13195 790878 1
## 13196 790879 1
## 13197 790880 1
## 13198 790881 1
## 13199 790882 1
## 13200 790883 1
## 13201 790884 1
## 13202 790885 1
## 13203 790886 1
## 13204 790887 1
## 13205 790888 1
## 13206 790889 1
## 13207 790890 1
## 13208 790891 1
## 13209 790892 1
## 13210 790893 1
## 13211 790894 1
## 13212 790895 1
## 13213 790896 1
## 13214 790897 1
## 13215 790898 1
## 13216 790899 1
## 13217 790900 1
## 13218 790901 1
## 13219 790902 1
## 13220 790903 1
## 13221 790904 1
## 13222 790905 1
## 13223 790906 1
## 13224 790907 1
## 13225 790908 1
## 13226 790909 1
## 13227 790910 1
## 13228 790911 1
## 13229 790912 1
## 13230 790913 1
## 13231 790914 1
## 13232 790915 1
## 13233 790916 1
## 13234 790917 1
## 13235 790918 1
## 13236 790919 1
## 13237 790920 1
## 13238 790921 1
## 13239 790922 1
## 13240 790923 1
## 13241 790924 1
## 13242 790925 1
## 13243 790926 1
## 13244 790927 1
## 13245 790928 1
## 13246 790929 1
## 13247 790930 1
## 13248 790931 1
## 13249 790932 1
## 13250 790933 1
## 13251 790934 1
## 13252 790935 1
## 13253 790936 1
## 13254 790937 1
## 13255 790938 1
## 13256 790939 1
## 13257 790940 1
## 13258 790941 1
## 13259 790942 1
## 13260 790943 1
## 13261 790944 1
## 13262 790945 1
## 13263 790946 1
## 13264 790947 1
## 13265 790948 1
## 13266 790949 1
## 13267 790950 1
## 13268 790951 1
## 13269 790952 1
## 13270 790953 1
## 13271 790954 1
## 13272 790955 1
## 13273 790956 1
## 13274 790957 1
## 13275 790958 1
## 13276 790959 1
## 13277 790960 1
## 13278 790961 1
## 13279 790962 1
## 13280 790963 1
## 13281 790964 1
## 13282 790965 1
## 13283 790966 1
## 13284 790967 1
## 13285 790968 1
## 13286 790969 1
## 13287 790970 1
## 13288 790971 1
## 13289 790972 1
## 13290 790973 1
## 13291 790974 1
## 13292 790975 1
## 13293 790976 1
## 13294 790977 1
## 13295 790978 1
## 13296 790979 1
## 13297 790980 1
## 13298 790981 1
## 13299 790982 1
## 13300 790983 1
## 13301 790984 1
## 13302 790985 1
## 13303 790986 1
## 13304 790987 1
## 13305 790988 1
## 13306 790989 1
## 13307 790990 1
## 13308 790991 1
## 13309 790992 1
## 13310 790993 1
## 13311 790994 1
## 13312 790995 1
## 13313 790996 1
## 13314 790997 1
## 13315 790998 1
## 13316 790999 1
## 13317 791000 1
## 13318 791001 1
## 13319 791002 1
## 13320 791003 1
## 13321 791004 1
## 13322 791005 1
## 13323 791006 1
## 13324 791007 1
## 13325 791008 1
## 13326 791009 1
## 13327 791010 1
## 13328 791011 1
## 13329 791012 1
## 13330 791013 1
## 13331 791014 1
## 13332 791015 1
## 13333 791016 1
## 13334 791017 1
## 13335 791018 1
## 13336 791019 1
## 13337 791020 1
## 13338 791021 1
## 13339 791022 1
## 13340 791023 1
## 13341 791024 1
## 13342 791025 1
## 13343 791026 1
## 13344 791027 1
## 13345 791028 1
## 13346 791029 1
## 13347 791030 1
## 13348 791031 1
## 13349 791032 1
## 13350 791033 1
## 13351 791034 1
## 13352 791035 1
## 13353 791036 1
## 13354 791037 1
## 13355 791038 1
## 13356 791039 1
## 13357 791040 1
## 13358 791041 1
## 13359 791042 1
## 13360 791043 1
## 13361 791044 1
## 13362 791045 1
## 13363 791046 1
## 13364 791047 1
## 13365 791048 1
## 13366 791049 1
## 13367 791050 1
## 13368 791051 1
## 13369 791052 1
## 13370 791053 1
## 13371 791054 1
## 13372 791055 1
## 13373 791056 1
## 13374 791057 1
## 13375 791058 1
## 13376 791059 1
## 13377 791060 1
## 13378 791061 1
## 13379 791062 1
## 13380 791063 1
## 13381 791064 1
## 13382 791065 1
## 13383 791066 1
## 13384 791067 1
## 13385 791068 1
## 13386 791069 1
## 13387 791070 1
## 13388 791071 1
## 13389 791072 1
## 13390 791073 1
## 13391 791074 1
## 13392 791075 1
## 13393 791076 1
## 13394 791077 1
## 13395 791078 1
## 13396 791079 1
## 13397 791080 1
## 13398 791081 1
## 13399 791082 1
## 13400 791083 1
## 13401 791084 1
## 13402 791085 1
## 13403 791086 1
## 13404 791087 1
## 13405 791088 1
## 13406 791089 1
## 13407 791090 1
## 13408 791091 1
## 13409 791092 1
## 13410 791093 1
## 13411 791094 1
## 13412 791095 1
## 13413 791096 1
## 13414 791097 1
## 13415 791098 1
## 13416 791099 1
## 13417 791100 1
## 13418 791101 1
## 13419 791102 1
## 13420 791103 1
## 13421 791104 1
## 13422 791105 1
## 13423 791106 1
## 13424 791107 1
## 13425 791108 1
## 13426 791109 1
## 13427 791110 1
## 13428 791111 1
## 13429 791112 1
## 13430 791113 1
## 13431 791114 1
## 13432 791115 1
## 13433 791116 1
## 13434 791117 1
## 13435 791118 1
## 13436 791119 1
## 13437 791120 1
## 13438 791121 1
## 13439 791122 1
## 13440 791123 1
## 13441 791124 1
## 13442 791125 1
## 13443 791126 1
## 13444 791127 1
## 13445 791128 1
## 13446 791129 1
## 13447 791130 1
## 13448 791131 1
## 13449 791132 1
## 13450 791133 1
## 13451 791134 1
## 13452 791135 1
## 13453 791136 1
## 13454 791137 1
## 13455 791138 1
## 13456 791139 1
## 13457 791140 1
## 13458 791141 1
## 13459 791142 1
## 13460 791143 1
## 13461 791144 1
## 13462 791145 1
## 13463 791146 1
## 13464 791147 1
## 13465 791148 1
## 13466 791149 1
## 13467 791150 1
## 13468 791151 1
## 13469 791152 1
## 13470 791153 1
## 13471 791154 1
## 13472 791155 1
## 13473 791156 1
## 13474 791157 1
## 13475 791158 1
## 13476 791159 1
## 13477 791160 1
## 13478 791162 1
## 13479 791163 1
## 13480 791164 1
## 13481 791165 1
## 13482 791166 1
## 13483 791167 1
## 13484 791168 1
## 13485 791169 1
## 13486 791170 1
## 13487 791171 1
## 13488 791172 1
## 13489 791173 1
## 13490 791174 1
## 13491 791175 1
## 13492 791176 1
## 13493 791177 1
## 13494 791178 1
## 13495 791179 1
## 13496 791180 1
## 13497 791181 1
## 13498 791182 1
## 13499 791183 1
## 13500 791184 1
## 13501 791185 1
## 13502 791186 1
## 13503 791187 1
## 13504 791188 1
## 13505 791189 1
## 13506 791190 1
## 13507 791191 1
## 13508 791192 1
## 13509 791193 1
## 13510 791194 1
## 13511 791195 1
## 13512 791196 1
## 13513 791197 1
## 13514 791198 1
## 13515 791199 1
## 13516 791200 1
## 13517 791201 1
## 13518 791202 1
## 13519 791203 1
## 13520 791204 1
## 13521 791205 1
## 13522 791206 1
## 13523 791207 1
## 13524 791208 1
## 13525 791209 1
## 13526 791210 1
## 13527 791211 1
## 13528 791212 1
## 13529 791213 1
## 13530 791214 1
## 13531 791215 1
## 13532 791216 1
## 13533 791217 1
## 13534 791218 1
## 13535 791219 1
## 13536 791220 1
## 13537 791221 1
## 13538 791222 1
## 13539 791223 1
## 13540 791224 1
## 13541 791225 1
## 13542 791226 1
## 13543 791227 1
## 13544 791228 1
## 13545 791229 1
## 13546 791230 1
## 13547 791231 1
## 13548 791232 1
## 13549 791233 1
## 13550 791234 1
## 13551 791235 1
## 13552 791236 1
## 13553 791237 1
## 13554 791238 1
## 13555 791239 1
## 13556 791240 1
## 13557 791241 1
## 13558 791242 1
## 13559 791243 1
## 13560 791244 1
## 13561 791245 1
## 13562 791246 1
## 13563 791247 1
## 13564 791248 1
## 13565 791249 1
## 13566 791250 1
## 13567 791251 1
## 13568 791252 1
## 13569 791253 1
## 13570 791254 1
## 13571 791255 1
## 13572 791256 1
## 13573 791257 1
## 13574 791258 1
## 13575 791259 1
## 13576 791260 1
## 13577 791261 1
## 13578 791262 1
## 13579 791263 1
## 13580 791264 1
## 13581 791265 1
## 13582 791266 1
## 13583 791267 1
## 13584 791268 1
## 13585 791269 1
## 13586 791270 1
## 13587 791271 1
## 13588 791272 1
## 13589 791273 1
## 13590 791274 1
## 13591 791275 1
## 13592 791276 1
## 13593 791277 1
## 13594 791278 1
## 13595 791279 1
## 13596 791280 1
## 13597 791281 1
## 13598 791282 1
## 13599 791283 1
## 13600 791284 1
## 13601 791285 1
## 13602 791286 1
## 13603 791287 1
## 13604 791288 1
## 13605 791289 1
## 13606 791290 1
## 13607 791291 1
## 13608 791292 1
## 13609 791293 1
## 13610 791294 1
## 13611 791295 1
## 13612 791296 1
## 13613 791297 1
## 13614 791298 1
## 13615 791299 1
## 13616 791300 1
## 13617 791301 1
## 13618 791302 1
## 13619 791303 1
## 13620 791304 1
## 13621 791305 1
## 13622 791306 1
## 13623 791307 1
## 13624 791308 1
## 13625 791309 1
## 13626 791310 1
## 13627 791311 1
## 13628 791312 1
## 13629 791313 1
## 13630 791314 1
## 13631 791315 1
## 13632 791316 1
## 13633 791317 1
## 13634 791318 1
## 13635 791319 1
## 13636 791320 1
## 13637 791321 1
## 13638 791322 1
## 13639 791323 1
## 13640 791324 1
## 13641 791325 1
## 13642 791326 1
## 13643 791327 1
## 13644 791328 1
## 13645 791329 1
## 13646 791330 1
## 13647 791331 1
## 13648 791332 1
## 13649 791333 1
## 13650 791334 1
## 13651 791335 1
## 13652 791336 1
## 13653 791337 1
## 13654 791338 1
## 13655 791339 1
## 13656 791340 1
## 13657 791341 1
## 13658 791342 1
## 13659 791343 1
## 13660 791344 1
## 13661 791345 1
## 13662 791346 1
## 13663 791347 1
## 13664 791348 1
## 13665 791349 1
## 13666 791350 1
## 13667 791351 1
## 13668 791352 1
## 13669 791353 1
## 13670 791354 1
## 13671 791355 1
## 13672 791356 1
## 13673 791357 1
## 13674 791358 1
## 13675 791359 1
## 13676 791360 1
## 13677 791361 1
## 13678 791362 1
## 13679 791363 1
## 13680 791364 1
## 13681 791365 1
## 13682 791366 1
## 13683 791367 1
## 13684 791368 1
## 13685 791369 1
## 13686 791370 1
## 13687 791371 1
## 13688 791372 1
## 13689 791373 1
## 13690 791374 1
## 13691 791375 1
## 13692 791376 1
## 13693 791377 1
## 13694 791378 1
## 13695 791379 1
## 13696 791380 1
## 13697 791381 1
## 13698 791382 1
## 13699 791383 1
## 13700 791384 1
## 13701 791385 1
## 13702 791386 1
## 13703 791387 1
## 13704 791388 1
## 13705 791389 1
## 13706 791390 1
## 13707 791391 1
## 13708 791393 1
## 13709 791394 1
## 13710 791395 1
## 13711 791396 1
## 13712 791397 1
## 13713 791398 1
## 13714 791399 1
## 13715 791400 1
## 13716 791401 1
## 13717 791402 1
## 13718 791403 1
## 13719 791404 1
## 13720 791405 1
## 13721 791406 1
## 13722 791407 1
## 13723 791408 1
## 13724 791409 1
## 13725 791410 1
## 13726 791411 1
## 13727 791412 1
## 13728 791413 1
## 13729 791414 1
## 13730 791415 1
## 13731 791416 1
## 13732 791417 1
## 13733 791418 1
## 13734 791419 1
## 13735 791420 1
## 13736 791421 1
## 13737 791422 1
## 13738 791423 1
## 13739 791424 1
## 13740 791425 1
## 13741 791426 1
## 13742 791427 1
## 13743 791428 1
## 13744 791429 1
## 13745 791430 1
## 13746 791431 1
## 13747 791432 1
## 13748 791433 1
## 13749 791434 1
## 13750 791435 1
## 13751 791436 1
## 13752 791437 1
## 13753 791438 1
## 13754 791439 1
## 13755 791440 1
## 13756 791441 1
## 13757 791442 1
## 13758 791443 1
## 13759 791444 1
## 13760 791445 1
## 13761 791446 1
## 13762 791447 1
## 13763 791448 1
## 13764 791449 1
## 13765 791450 1
## 13766 791451 1
## 13767 791452 1
## 13768 791453 1
## 13769 791454 1
## 13770 791455 1
## 13771 791456 1
## 13772 791457 1
## 13773 791458 1
## 13774 791459 1
## 13775 791460 1
## 13776 791461 1
## 13777 791462 1
## 13778 791463 1
## 13779 791464 1
## 13780 791465 1
## 13781 791466 1
## 13782 791467 1
## 13783 791468 1
## 13784 791469 1
## 13785 791470 1
## 13786 791471 1
## 13787 791472 1
## 13788 791473 1
## 13789 791474 1
## 13790 791475 1
## 13791 791476 1
## 13792 791477 1
## 13793 791478 1
## 13794 791479 1
## 13795 791480 1
## 13796 791481 1
## 13797 791482 1
## 13798 791483 1
## 13799 791484 1
## 13800 791485 1
## 13801 791486 1
## 13802 791487 1
## 13803 791488 1
## 13804 791489 1
## 13805 791490 1
## 13806 791491 1
## 13807 791492 1
## 13808 791493 1
## 13809 791494 1
## 13810 791495 1
## 13811 791496 1
## 13812 791497 1
## 13813 791498 1
## 13814 791499 1
## 13815 791500 1
## 13816 791501 1
## 13817 791502 1
## 13818 791503 1
## 13819 791504 1
## 13820 791505 1
## 13821 791506 1
## 13822 791507 1
## 13823 791508 1
## 13824 791509 1
## 13825 791510 1
## 13826 791511 1
## 13827 791512 1
## 13828 791513 1
## 13829 791514 1
## 13830 791515 1
## 13831 791516 1
## 13832 791517 1
## 13833 791518 1
## 13834 791519 1
## 13835 791520 1
## 13836 791521 1
## 13837 791522 1
## 13838 791523 1
## 13839 791524 1
## 13840 791525 1
## 13841 791526 1
## 13842 791527 1
## 13843 791528 1
## 13844 791529 1
## 13845 791530 1
## 13846 791531 1
## 13847 791532 1
## 13848 791533 1
## 13849 791534 1
## 13850 791535 1
## 13851 791536 1
## 13852 791537 1
## 13853 791538 1
## 13854 791539 1
## 13855 791540 1
## 13856 791541 1
## 13857 791542 1
## 13858 791543 1
## 13859 791544 1
## 13860 791545 1
## 13861 791546 1
## 13862 791547 1
## 13863 791548 1
## 13864 791549 1
## 13865 791550 1
## 13866 791551 1
## 13867 791552 1
## 13868 791553 1
## 13869 791554 1
## 13870 791555 1
## 13871 791556 1
## 13872 791557 1
## 13873 791558 1
## 13874 791559 1
## 13875 791560 1
## 13876 791561 1
## 13877 791562 1
## 13878 791563 1
## 13879 791564 1
## 13880 791565 1
## 13881 791566 1
## 13882 791567 1
## 13883 791568 1
## 13884 791569 1
## 13885 791570 1
## 13886 791571 1
## 13887 791572 1
## 13888 791573 1
## 13889 791574 1
## 13890 791575 1
## 13891 791576 1
## 13892 791577 1
## 13893 791578 1
## 13894 791579 1
## 13895 791580 1
## 13896 791581 1
## 13897 791582 1
## 13898 791583 1
## 13899 791584 1
## 13900 791585 1
## 13901 791586 1
## 13902 791587 1
## 13903 791588 1
## 13904 791589 1
## 13905 791590 1
## 13906 791591 1
## 13907 791592 1
## 13908 791593 1
## 13909 791594 1
## 13910 791595 1
## 13911 791596 1
## 13912 791597 1
## 13913 791598 1
## 13914 791599 1
## 13915 791600 1
## 13916 791601 1
## 13917 791602 1
## 13918 791603 1
## 13919 791604 1
## 13920 791605 1
## 13921 791606 1
## 13922 791607 1
## 13923 791608 1
## 13924 791609 1
## 13925 791610 1
## 13926 791611 1
## 13927 791612 1
## 13928 791613 1
## 13929 791614 1
## 13930 791615 1
## 13931 791616 1
## 13932 791617 1
## 13933 791618 1
## 13934 791619 1
## 13935 791620 1
## 13936 791621 1
## 13937 791622 1
## 13938 791623 1
## 13939 791624 1
## 13940 791625 1
## 13941 791626 1
## 13942 791627 1
## 13943 791628 1
## 13944 791629 1
## 13945 791630 1
## 13946 791631 1
## 13947 791632 1
## 13948 791633 1
## 13949 791634 1
## 13950 791635 1
## 13951 791636 1
## 13952 791637 1
## 13953 791638 1
## 13954 791639 1
## 13955 791640 1
## 13956 791641 1
## 13957 791642 1
## 13958 791643 1
## 13959 791644 1
## 13960 791645 1
## 13961 791646 1
## 13962 791647 1
## 13963 791648 1
## 13964 791649 1
## 13965 791650 1
## 13966 791651 1
## 13967 791652 1
## 13968 791653 1
## 13969 791654 1
## 13970 791655 1
## 13971 791656 1
## 13972 791657 1
## 13973 791658 1
## 13974 791659 1
## 13975 791660 1
## 13976 791661 1
## 13977 791662 1
## 13978 791663 1
## 13979 791664 1
## 13980 791665 1
## 13981 791666 1
## 13982 791667 1
## 13983 791668 1
## 13984 791669 1
## 13985 791670 1
## 13986 791671 1
## 13987 791672 1
## 13988 791673 1
## 13989 791674 1
## 13990 791675 1
## 13991 791676 1
## 13992 791677 1
## 13993 791678 1
## 13994 791679 1
## 13995 791680 1
## 13996 791681 1
## 13997 791682 1
## 13998 791683 1
## 13999 791684 1
## 14000 791685 1
## 14001 791686 1
## 14002 791687 1
## 14003 791688 1
## 14004 791689 1
## 14005 791690 1
## 14006 791691 1
## 14007 791692 1
## 14008 791693 1
## 14009 791694 1
## 14010 791695 1
## 14011 791696 1
## 14012 791697 1
## 14013 791698 1
## 14014 791699 1
## 14015 791700 1
## 14016 791701 1
## 14017 791702 1
## 14018 791703 1
## 14019 791704 1
## 14020 791705 1
## 14021 791706 1
## 14022 791707 1
## 14023 791708 1
## 14024 791709 1
## 14025 791710 1
## 14026 791711 1
## 14027 791712 1
## 14028 791713 1
## 14029 791714 1
## 14030 791715 1
## 14031 791716 1
## 14032 791717 1
## 14033 791718 1
## 14034 791719 1
## 14035 791720 1
## 14036 791722 1
## 14037 791723 1
## 14038 791724 1
## 14039 791725 1
## 14040 791726 1
## 14041 791727 1
## 14042 791728 1
## 14043 791729 1
## 14044 791730 1
## 14045 791731 1
## 14046 791732 1
## 14047 791733 1
## 14048 791734 1
## 14049 791735 1
## 14050 791736 1
## 14051 791737 1
## 14052 791738 1
## 14053 791739 1
## 14054 791740 1
## 14055 791741 1
## 14056 791742 1
## 14057 791743 1
## 14058 791744 1
## 14059 791745 1
## 14060 791746 1
## 14061 791747 1
## 14062 791748 1
## 14063 791749 1
## 14064 791750 1
## 14065 791751 1
## 14066 791752 1
## 14067 791753 1
## 14068 791754 1
## 14069 791755 1
## 14070 791756 1
## 14071 791757 1
## 14072 791758 1
## 14073 791759 1
## 14074 791760 1
## 14075 791761 1
## 14076 791762 1
## 14077 791763 1
## 14078 791764 1
## 14079 791765 1
## 14080 791766 1
## 14081 791767 1
## 14082 791768 1
## 14083 791769 1
## 14084 791770 1
## 14085 791771 1
## 14086 791773 1
## 14087 791774 1
## 14088 791775 1
## 14089 791776 1
## 14090 791777 1
## 14091 791778 1
## 14092 791779 1
## 14093 791780 1
## 14094 791781 1
## 14095 791782 1
## 14096 791783 1
## 14097 791784 1
## 14098 791785 1
## 14099 791786 1
## 14100 791787 1
## 14101 791788 1
## 14102 791789 1
## 14103 791790 1
## 14104 791791 1
## 14105 791792 1
## 14106 791793 1
## 14107 791794 1
## 14108 791795 1
## 14109 791796 1
## 14110 791797 1
## 14111 791798 1
## 14112 791799 1
## 14113 791800 1
## 14114 791801 1
## 14115 791802 1
## 14116 791803 1
## 14117 791804 1
## 14118 791805 1
## 14119 791806 1
## 14120 791807 1
## 14121 791808 1
## 14122 791809 1
## 14123 791810 1
## 14124 791811 1
## 14125 791812 1
## 14126 791813 1
## 14127 791814 1
## 14128 791815 1
## 14129 791816 1
## 14130 791817 1
## 14131 791818 1
## 14132 791819 1
## 14133 791820 1
## 14134 791821 1
## 14135 791822 1
## 14136 791823 1
## 14137 791824 1
## 14138 791825 1
## 14139 791826 1
## 14140 791827 1
## 14141 791828 1
## 14142 791829 1
## 14143 791830 1
## 14144 791831 1
## 14145 791832 1
## 14146 791833 1
## 14147 791834 1
## 14148 791835 1
## 14149 791836 1
## 14150 791837 1
## 14151 791838 1
## 14152 791839 1
## 14153 791840 1
## 14154 791841 1
## 14155 791842 1
## 14156 791843 1
## 14157 791844 1
## 14158 791845 1
## 14159 791846 1
## 14160 791847 1
## 14161 791848 1
## 14162 791849 1
## 14163 791850 1
## 14164 791851 1
## 14165 791852 1
## 14166 791853 1
## 14167 791854 1
## 14168 791855 1
## 14169 791856 1
## 14170 791857 1
## 14171 791858 1
## 14172 791859 1
## 14173 791860 1
## 14174 791861 1
## 14175 791862 1
## 14176 791863 1
## 14177 791864 1
## 14178 791865 1
## 14179 791866 1
## 14180 791867 1
## 14181 791868 1
## 14182 791869 1
## 14183 791870 1
## 14184 791871 1
## 14185 791872 1
## 14186 791873 1
## 14187 791874 1
## 14188 791875 1
## 14189 791876 1
## 14190 791877 1
## 14191 791878 1
## 14192 791879 1
## 14193 791880 1
## 14194 791881 1
## 14195 791882 1
## 14196 791883 1
## 14197 791884 1
## 14198 791885 1
## 14199 791886 1
## 14200 791887 1
## 14201 791888 1
## 14202 791889 1
## 14203 791890 1
## 14204 791891 1
## 14205 791892 1
## 14206 791893 1
## 14207 791894 1
## 14208 791895 1
## 14209 791896 1
## 14210 791897 1
## 14211 791898 1
## 14212 791899 1
## 14213 791900 1
## 14214 791901 1
## 14215 791902 1
## 14216 791903 1
## 14217 791904 1
## 14218 791905 1
## 14219 791906 1
## 14220 791907 1
## 14221 791908 1
## 14222 791909 1
## 14223 791910 1
## 14224 791911 1
## 14225 791912 1
## 14226 791913 1
## 14227 791914 1
## 14228 791915 1
## 14229 791916 1
## 14230 791917 1
## 14231 791918 1
## 14232 791919 1
## 14233 791920 1
## 14234 791921 1
## 14235 791922 1
## 14236 791923 1
## 14237 791924 1
## 14238 791925 1
## 14239 791926 1
## 14240 791927 1
## 14241 791928 1
## 14242 791929 1
## 14243 791930 1
## 14244 791931 1
## 14245 791932 1
## 14246 791933 1
## 14247 791934 1
## 14248 791935 1
## 14249 791936 1
## 14250 791937 1
## 14251 791938 1
## 14252 791939 1
## 14253 791940 1
## 14254 791941 1
## 14255 791942 1
## 14256 791943 1
## 14257 791944 1
## 14258 791945 1
## 14259 791946 1
## 14260 791947 1
## 14261 791948 1
## 14262 791949 1
## 14263 791950 1
## 14264 791951 1
## 14265 791952 1
## 14266 791953 1
## 14267 791954 1
## 14268 791955 1
## 14269 791956 1
## 14270 791957 1
## 14271 791958 1
## 14272 791959 1
## 14273 791960 1
## 14274 791961 1
## 14275 791962 1
## 14276 791963 1
## 14277 791964 1
## 14278 791965 1
## 14279 791966 1
## 14280 791967 1
## 14281 791968 1
## 14282 791969 1
## 14283 791970 1
## 14284 791971 1
## 14285 791972 1
## 14286 791973 1
## 14287 791974 1
## 14288 791975 1
## 14289 791976 1
## 14290 791977 1
## 14291 791978 1
## 14292 791979 1
## 14293 791980 1
## 14294 791981 1
## 14295 791982 1
## 14296 791983 1
## 14297 791984 1
## 14298 791985 1
## 14299 791986 1
## 14300 791987 1
## 14301 791988 1
## 14302 791989 1
## 14303 791990 1
## 14304 791991 1
## 14305 791992 1
## 14306 791993 1
## 14307 791994 1
## 14308 791995 1
## 14309 791996 1
## 14310 791997 1
## 14311 791998 1
## 14312 791999 1
## 14313 792000 1
## 14314 792001 1
## 14315 792002 1
## 14316 792003 1
## 14317 792004 1
## 14318 792005 1
## 14319 792006 1
## 14320 792007 1
## 14321 792008 1
## 14322 792009 1
## 14323 792010 1
## 14324 792011 1
## 14325 792012 1
## 14326 792013 1
## 14327 792014 1
## 14328 792015 1
## 14329 792016 1
## 14330 792017 1
## 14331 792018 1
## 14332 792019 1
## 14333 792020 1
## 14334 792021 1
## 14335 792022 1
## 14336 792023 1
## 14337 792024 1
## 14338 792025 1
## 14339 792026 1
## 14340 792027 1
## 14341 792028 1
## 14342 792029 1
## 14343 792030 1
## 14344 792031 1
## 14345 792032 1
## 14346 792033 1
## 14347 792034 1
## 14348 792035 1
## 14349 792036 1
## 14350 792037 1
## 14351 792038 1
## 14352 792039 1
## 14353 792040 1
## 14354 792041 1
## 14355 792042 1
## 14356 792043 1
## 14357 792044 1
## 14358 792045 1
## 14359 792046 1
## 14360 792047 1
## 14361 792048 1
## 14362 792049 1
## 14363 792050 1
## 14364 792051 1
## 14365 792052 1
## 14366 792053 1
## 14367 792054 1
## 14368 792055 1
## 14369 792056 1
## 14370 792057 1
## 14371 792058 1
## 14372 792059 1
## 14373 792060 1
## 14374 792061 1
## 14375 792062 1
## 14376 792063 1
## 14377 792064 1
## 14378 792065 1
## 14379 792066 1
## 14380 792067 1
## 14381 792068 1
## 14382 792069 1
## 14383 792070 1
## 14384 792071 1
## 14385 792072 1
## 14386 792073 1
## 14387 792074 1
## 14388 792075 1
## 14389 792076 1
## 14390 792077 1
## 14391 792078 1
## 14392 792079 1
## 14393 792080 1
## 14394 792081 1
## 14395 792082 1
## 14396 792083 1
## 14397 792085 1
## 14398 792086 1
## 14399 792087 1
## 14400 792088 1
## 14401 792089 1
## 14402 792090 1
## 14403 792091 1
## 14404 792092 1
## 14405 792093 1
## 14406 792094 1
## 14407 792095 1
## 14408 792096 1
## 14409 792097 1
## 14410 792098 1
## 14411 792099 1
## 14412 792100 1
## 14413 792101 1
## 14414 792102 1
## 14415 792103 1
## 14416 792104 1
## 14417 792105 1
## 14418 792106 1
## 14419 792107 1
## 14420 792108 1
## 14421 792109 1
## 14422 792110 1
## 14423 792111 1
## 14424 792112 1
## 14425 792113 1
## 14426 792114 1
## 14427 792115 1
## 14428 792116 1
## 14429 792117 1
## 14430 792118 1
## 14431 792119 1
## 14432 792120 1
## 14433 792121 1
## 14434 792122 1
## 14435 792123 1
## 14436 792124 1
## 14437 792125 1
## 14438 792126 1
## 14439 792127 1
## 14440 792128 1
## 14441 792129 1
## 14442 792130 1
## 14443 792131 1
## 14444 792132 1
## 14445 792133 1
## 14446 792134 1
## 14447 792135 1
## 14448 792136 1
## 14449 792137 1
## 14450 792138 1
## 14451 792139 1
## 14452 792140 1
## 14453 792141 1
## 14454 792142 1
## 14455 792143 1
## 14456 792145 1
## 14457 792146 1
## 14458 792147 1
## 14459 792148 1
## 14460 792149 1
## 14461 792150 1
## 14462 792151 1
## 14463 792152 1
## 14464 792153 1
## 14465 792154 1
## 14466 792155 1
## 14467 792156 1
## 14468 792157 1
## 14469 792158 1
## 14470 792159 1
## 14471 792160 1
## 14472 792161 1
## 14473 792162 1
## 14474 792163 1
## 14475 792164 1
## 14476 792165 1
## 14477 792166 1
## 14478 792167 1
## 14479 792168 1
## 14480 792169 1
## 14481 792170 1
## 14482 792171 1
## 14483 792172 1
## 14484 792173 1
## 14485 792174 1
## 14486 792175 1
## 14487 792176 1
## 14488 792177 1
## 14489 792178 1
## 14490 792179 1
## 14491 792180 1
## 14492 792181 1
## 14493 792182 1
## 14494 792183 1
## 14495 792184 1
## 14496 792185 1
## 14497 792186 1
## 14498 792187 1
## 14499 792188 1
## 14500 792189 1
## 14501 792190 1
## 14502 792191 1
## 14503 792192 1
## 14504 792193 1
## 14505 792194 1
## 14506 792195 1
## 14507 792196 1
## 14508 792197 1
## 14509 792198 1
## 14510 792199 1
## 14511 792200 1
## 14512 792201 1
## 14513 792202 1
## 14514 792203 1
## 14515 792204 1
## 14516 792205 1
## 14517 792206 1
## 14518 792207 1
## 14519 792208 1
## 14520 792209 1
## 14521 792210 1
## 14522 792211 1
## 14523 792212 1
## 14524 792213 1
## 14525 792214 1
## 14526 792215 1
## 14527 792216 1
## 14528 792217 1
## 14529 792218 1
## 14530 792219 1
## 14531 792220 1
## 14532 792221 1
## 14533 792222 1
## 14534 792223 1
## 14535 792224 1
## 14536 792225 1
## 14537 792226 1
## 14538 792227 1
## 14539 792228 1
## 14540 792229 1
## 14541 792230 1
## 14542 792231 1
## 14543 792232 1
## 14544 792233 1
## 14545 792234 1
## 14546 792235 1
## 14547 792236 1
## 14548 792237 1
## 14549 792238 1
## 14550 792239 1
## 14551 792240 1
## 14552 792241 1
## 14553 792242 1
## 14554 792243 1
## 14555 792244 1
## 14556 792245 1
## 14557 792246 1
## 14558 792247 1
## 14559 792248 1
## 14560 792249 1
## 14561 792250 1
## 14562 792251 1
## 14563 792252 1
## 14564 792253 1
## 14565 792254 1
## 14566 792255 1
## 14567 792256 1
## 14568 792257 1
## 14569 792258 1
## 14570 792259 1
## 14571 792260 1
## 14572 792261 1
## 14573 792262 1
## 14574 792263 1
## 14575 792264 1
## 14576 792265 1
## 14577 792266 1
## 14578 792267 1
## 14579 792268 1
## 14580 792269 1
## 14581 792270 1
## 14582 792271 1
## 14583 792272 1
## 14584 792274 1
## 14585 792275 1
## 14586 792276 1
## 14587 792277 1
## 14588 792278 1
## 14589 792279 1
## 14590 792280 1
## 14591 792281 1
## 14592 792282 1
## 14593 792283 1
## 14594 792284 1
## 14595 792285 1
## 14596 792286 1
## 14597 792287 1
## 14598 792288 1
## 14599 792289 1
## 14600 792290 1
## 14601 792291 1
## 14602 792292 1
## 14603 792293 1
## 14604 792294 1
## 14605 792295 1
## 14606 792296 1
## 14607 792297 1
## 14608 792298 1
## 14609 792299 1
## 14610 792300 1
## 14611 792301 1
## 14612 792302 1
## 14613 792303 1
## 14614 792304 1
## 14615 792305 1
## 14616 792306 1
## 14617 792307 1
## 14618 792308 1
## 14619 792309 1
## 14620 792310 1
## 14621 792311 1
## 14622 792312 1
## 14623 792313 1
## 14624 792314 1
## 14625 792315 1
## 14626 792316 1
## 14627 792317 1
## 14628 792318 1
## 14629 792319 1
## 14630 792320 1
## 14631 792322 1
## 14632 792323 1
## 14633 792324 1
## 14634 792325 1
## 14635 792326 1
## 14636 792327 1
## 14637 792328 1
## 14638 792329 1
## 14639 792330 1
## 14640 792331 1
## 14641 792332 1
## 14642 792333 1
## 14643 792334 1
## 14644 792335 1
## 14645 792336 1
## 14646 792337 1
## 14647 792338 1
## 14648 792339 1
## 14649 792340 1
## 14650 792341 1
## 14651 792342 1
## 14652 792343 1
## 14653 792344 1
## 14654 792345 1
## 14655 792346 1
## 14656 792347 1
## 14657 792348 1
## 14658 792349 1
## 14659 792350 1
## 14660 792351 1
## 14661 792352 1
## 14662 792353 1
## 14663 792354 1
## 14664 792355 1
## 14665 792356 1
## 14666 792357 1
## 14667 792358 1
## 14668 792359 1
## 14669 792360 1
## 14670 792361 1
## 14671 792362 1
## 14672 792363 1
## 14673 792364 1
## 14674 792365 1
## 14675 792366 1
## 14676 792367 1
## 14677 792368 1
## 14678 792369 1
## 14679 792370 1
## 14680 792371 1
## 14681 792372 1
## 14682 792373 1
## 14683 792374 1
## 14684 792375 1
## 14685 792376 1
## 14686 792377 1
## 14687 792378 1
## 14688 792379 1
## 14689 792380 1
## 14690 792381 1
## 14691 792382 1
## 14692 792383 1
## 14693 792384 1
## 14694 792385 1
## 14695 792386 1
## 14696 792387 1
## 14697 792388 1
## 14698 792389 1
## 14699 792390 1
## 14700 792391 1
## 14701 792392 1
## 14702 792393 1
## 14703 792394 1
## 14704 792395 1
## 14705 792396 1
## 14706 792397 1
## 14707 792398 1
## 14708 792400 1
## 14709 792401 1
## 14710 792402 1
## 14711 792403 1
## 14712 792404 1
## 14713 792405 1
## 14714 792406 1
## 14715 792407 1
## 14716 792408 1
## 14717 792409 1
## 14718 792410 1
## 14719 792411 1
## 14720 792412 1
## 14721 792413 1
## 14722 792414 1
## 14723 792415 1
## 14724 792416 1
## 14725 792417 1
## 14726 792418 1
## 14727 792419 1
## 14728 792420 1
## 14729 792421 1
## 14730 792422 1
## 14731 792423 1
## 14732 792424 1
## 14733 792425 1
## 14734 792426 1
## 14735 792427 1
## 14736 792428 1
## 14737 792429 1
## 14738 792430 1
## 14739 792431 1
## 14740 792432 1
## 14741 792433 1
## 14742 792434 1
## 14743 792435 1
## 14744 792436 1
## 14745 792437 1
## 14746 792438 1
## 14747 792439 1
## 14748 792440 1
## 14749 792441 1
## 14750 792442 1
## 14751 792443 1
## 14752 792444 1
## 14753 792445 1
## 14754 792446 1
## 14755 792447 1
## 14756 792448 1
## 14757 792449 1
## 14758 792450 1
## 14759 792451 1
## 14760 792452 1
## 14761 792453 1
## 14762 792454 1
## 14763 792455 1
## 14764 792456 1
## 14765 792457 1
## 14766 792458 1
## 14767 792459 1
## 14768 792460 1
## 14769 792461 1
## 14770 792462 1
## 14771 792463 1
## 14772 792464 1
## 14773 792465 1
## 14774 792466 1
## 14775 792467 1
## 14776 792468 1
## 14777 792469 1
## 14778 792470 1
## 14779 792471 1
## 14780 792472 1
## 14781 792473 1
## 14782 792474 1
## 14783 792475 1
## 14784 792476 1
## 14785 792477 1
## 14786 792478 1
## 14787 792479 1
## 14788 792480 1
## 14789 792481 1
## 14790 792482 1
## 14791 792483 1
## 14792 792484 1
## 14793 792485 1
## 14794 792486 1
## 14795 792487 1
## 14796 792488 1
## 14797 792489 1
## 14798 792490 1
## 14799 792491 1
## 14800 792492 1
## 14801 792493 1
## 14802 792494 1
## 14803 792495 1
## 14804 792496 1
## 14805 792497 1
## 14806 792498 1
## 14807 792499 1
## 14808 792500 1
## 14809 792501 1
## 14810 792502 1
## 14811 792503 1
## 14812 792504 1
## 14813 792505 1
## 14814 792506 1
## 14815 792507 1
## 14816 792508 1
## 14817 792510 1
## 14818 792511 1
## 14819 792512 1
## 14820 792513 1
## 14821 792514 1
## 14822 792515 1
## 14823 792516 1
## 14824 792517 1
## 14825 792518 1
## 14826 792519 1
## 14827 792520 1
## 14828 792521 1
## 14829 792522 1
## 14830 792523 1
## 14831 792524 1
## 14832 792525 1
## 14833 792526 1
## 14834 792527 1
## 14835 792528 1
## 14836 792529 1
## 14837 792530 1
## 14838 792531 1
## 14839 792532 1
## 14840 792533 1
## 14841 792534 1
## 14842 792535 1
## 14843 792536 1
## 14844 792537 1
## 14845 792538 1
## 14846 792539 1
## 14847 792540 1
## 14848 792541 1
## 14849 792542 1
## 14850 792543 1
## 14851 792544 1
## 14852 792545 1
## 14853 792546 1
## 14854 792547 1
## 14855 792548 1
## 14856 792549 1
## 14857 792550 1
## 14858 792551 1
## 14859 792552 1
## 14860 792553 1
## 14861 792554 1
## 14862 792555 1
## 14863 792556 1
## 14864 792557 1
## 14865 792558 1
## 14866 792559 1
## 14867 792560 1
## 14868 792561 1
## 14869 792562 1
## 14870 792563 1
## 14871 792564 1
## 14872 792565 1
## 14873 792566 1
## 14874 792567 1
## 14875 792568 1
## 14876 792569 1
## 14877 792570 1
## 14878 792571 1
## 14879 792572 1
## 14880 792573 1
## 14881 792574 1
## 14882 792575 1
## 14883 792576 1
## 14884 792577 1
## 14885 792578 1
## 14886 792579 1
## 14887 792580 1
## 14888 792581 1
## 14889 792582 1
## 14890 792583 1
## 14891 792584 1
## 14892 792585 1
## 14893 792586 1
## 14894 792587 1
## 14895 792588 1
## 14896 792589 1
## 14897 792590 1
## 14898 792591 1
## 14899 792592 1
## 14900 792593 1
## 14901 792594 1
## 14902 792595 1
## 14903 792596 1
## 14904 792597 1
## 14905 792598 1
## 14906 792599 1
## 14907 792600 1
## 14908 792601 1
## 14909 792602 1
## 14910 792603 1
## 14911 792604 1
## 14912 792605 1
## 14913 792606 1
## 14914 792607 1
## 14915 792608 1
## 14916 792609 1
## 14917 792610 1
## 14918 792611 1
## 14919 792612 1
## 14920 792613 1
## 14921 792614 1
## 14922 792615 1
## 14923 792616 1
## 14924 792617 1
## 14925 792618 1
## 14926 792620 1
## 14927 792621 1
## 14928 792622 1
## 14929 792623 1
## 14930 792624 1
## 14931 792625 1
## 14932 792626 1
## 14933 792628 1
## 14934 792629 1
## 14935 792630 1
## 14936 792631 1
## 14937 792632 1
## 14938 792633 1
## 14939 792634 1
## 14940 792635 1
## 14941 792636 1
## 14942 792637 1
## 14943 792638 1
## 14944 792639 1
## 14945 792640 1
## 14946 792641 1
## 14947 792642 1
## 14948 792643 1
## 14949 792644 1
## 14950 792645 1
## 14951 792646 1
## 14952 792648 1
## 14953 792649 1
## 14954 792650 1
## 14955 792651 1
## 14956 792652 1
## 14957 792653 1
## 14958 792654 1
## 14959 792655 1
## 14960 792656 1
## 14961 792657 1
## 14962 792658 1
## 14963 792659 1
## 14964 792660 1
## 14965 792661 1
## 14966 792662 1
## 14967 792663 1
## 14968 792664 1
## 14969 792665 1
## 14970 792666 1
## 14971 792667 1
## 14972 792668 1
## 14973 792669 1
## 14974 792670 1
## 14975 792671 1
## 14976 792672 1
## 14977 792673 1
## 14978 792674 1
## 14979 792675 1
## 14980 792676 1
## 14981 792677 1
## 14982 792678 1
## 14983 792679 1
## 14984 792680 1
## 14985 792681 1
## 14986 792682 1
## 14987 792683 1
## 14988 792684 1
## 14989 792685 1
## 14990 792686 1
## 14991 792687 1
## 14992 792688 1
## 14993 792689 1
## 14994 792690 1
## 14995 792691 1
## 14996 792692 1
## 14997 792693 1
## 14998 792694 1
## 14999 792695 1
## 15000 792696 1
## 15001 792697 1
## 15002 792698 1
## 15003 792699 1
## 15004 792700 1
## 15005 792701 1
## 15006 792702 1
## 15007 792703 1
## 15008 792704 1
## 15009 792705 1
## 15010 792706 1
## 15011 792707 1
## 15012 792708 1
## 15013 792709 1
## 15014 792710 1
## 15015 792711 1
## 15016 792712 1
## 15017 792713 1
## 15018 792714 1
## 15019 792715 1
## 15020 792716 1
## 15021 792717 1
## 15022 792718 1
## 15023 792719 1
## 15024 792720 1
## 15025 792721 1
## 15026 792722 1
## 15027 792723 1
## 15028 792724 1
## 15029 792725 1
## 15030 792726 1
## 15031 792727 1
## 15032 792728 1
## 15033 792729 1
## 15034 792730 1
## 15035 792731 1
## 15036 792732 1
## 15037 792733 1
## 15038 792734 1
## 15039 792736 1
## 15040 792737 1
## 15041 792738 1
## 15042 792739 1
## 15043 792740 1
## 15044 792741 1
## 15045 792742 1
## 15046 792743 1
## 15047 792744 1
## 15048 792745 1
## 15049 792746 1
## 15050 792747 1
## 15051 792748 1
## 15052 792749 1
## 15053 792750 1
## 15054 792751 1
## 15055 792752 1
## 15056 792753 1
## 15057 792754 1
## 15058 792755 1
## 15059 792756 1
## 15060 792757 1
## 15061 792758 1
## 15062 792759 1
## 15063 792760 1
## 15064 792761 1
## 15065 792762 1
## 15066 792763 1
## 15067 792764 1
## 15068 792765 1
## 15069 792766 1
## 15070 792767 1
## 15071 792768 1
## 15072 792769 1
## 15073 792770 1
## 15074 792771 1
## 15075 792772 1
## 15076 792773 1
## 15077 792774 1
## 15078 792775 1
## 15079 792776 1
## 15080 792777 1
## 15081 792778 1
## 15082 792779 1
## 15083 792780 1
## 15084 792781 1
## 15085 792782 1
## 15086 792783 1
## 15087 792784 1
## 15088 792785 1
## 15089 792786 1
## 15090 792787 1
## 15091 792788 1
## 15092 792789 1
## 15093 792790 1
## 15094 792791 1
## 15095 792792 1
## 15096 792793 1
## 15097 792794 1
## 15098 792795 1
## 15099 792796 1
## 15100 792797 1
## 15101 792798 1
## 15102 792799 1
## 15103 792800 1
## 15104 792801 1
## 15105 792802 1
## 15106 792803 1
## 15107 792804 1
## 15108 792805 1
## 15109 792806 1
## 15110 792807 1
## 15111 792808 1
## 15112 792809 1
## 15113 792810 1
## 15114 792811 1
## 15115 792812 1
## 15116 792813 1
## 15117 792814 1
## 15118 792815 1
## 15119 792816 1
## 15120 792817 1
## 15121 792818 1
## 15122 792819 1
## 15123 792820 1
## 15124 792821 1
## 15125 792822 1
## 15126 792823 1
## 15127 792824 1
## 15128 792825 1
## 15129 792826 1
## 15130 792827 1
## 15131 792828 1
## 15132 792829 1
## 15133 792830 1
## 15134 792831 1
## 15135 792832 1
## 15136 792833 1
## 15137 792834 1
## 15138 792835 1
## 15139 792836 1
## 15140 792837 1
## 15141 792838 1
## 15142 792839 1
## 15143 792840 1
## 15144 792841 1
## 15145 792842 1
## 15146 792843 1
## 15147 792844 1
## 15148 792845 1
## 15149 792846 1
## 15150 792847 1
## 15151 792848 1
## 15152 792849 1
## 15153 792850 1
## 15154 792851 1
## 15155 792852 1
## 15156 792853 1
## 15157 792854 1
## 15158 792855 1
## 15159 792856 1
## 15160 792857 1
## 15161 792858 1
## 15162 792859 1
## 15163 792860 1
## 15164 792861 1
## 15165 792862 1
## 15166 792863 1
## 15167 792864 1
## 15168 792865 1
## 15169 792866 1
## 15170 792867 1
## 15171 792868 1
## 15172 792869 1
## 15173 792870 1
## 15174 792871 1
## 15175 792872 1
## 15176 792873 1
## 15177 792874 1
## 15178 792875 1
## 15179 792876 1
## 15180 792877 1
## 15181 792878 1
## 15182 792879 1
## 15183 792880 1
## 15184 792881 1
## 15185 792882 1
## 15186 792883 1
## 15187 792884 1
## 15188 792885 1
## 15189 792886 1
## 15190 792887 1
## 15191 792888 1
## 15192 792889 1
## 15193 792890 1
## 15194 792891 1
## 15195 792892 1
## 15196 792893 1
## 15197 792894 1
## 15198 792895 1
## 15199 792896 1
## 15200 792897 1
## 15201 792898 1
## 15202 792899 1
## 15203 792900 1
## 15204 792901 1
## 15205 792902 1
## 15206 792903 1
## 15207 792904 1
## 15208 792905 1
## 15209 792906 1
## 15210 792907 1
## 15211 792908 1
## 15212 792909 1
## 15213 792910 1
## 15214 792911 1
## 15215 792912 1
## 15216 792913 1
## 15217 792914 1
## 15218 792915 1
## 15219 792916 1
## 15220 792917 1
## 15221 792918 1
## 15222 792919 1
## 15223 792920 1
## 15224 792921 1
## 15225 792922 1
## 15226 792923 1
## 15227 792924 1
## 15228 792925 1
## 15229 792926 1
## 15230 792927 1
## 15231 792928 1
## 15232 792929 1
## 15233 792930 1
## 15234 792931 1
## 15235 792932 1
## 15236 792933 1
## 15237 792934 1
## 15238 792935 1
## 15239 792936 1
## 15240 792937 1
## 15241 792938 1
## 15242 792939 1
## 15243 792940 1
## 15244 792941 1
## 15245 792942 1
## 15246 792943 1
## 15247 792944 1
## 15248 792945 1
## 15249 792946 1
## 15250 792947 1
## 15251 792948 1
## 15252 792949 1
## 15253 792950 1
## 15254 792951 1
## 15255 792952 1
## 15256 792953 1
## 15257 792954 1
## 15258 792955 1
## 15259 792956 1
## 15260 792957 1
## 15261 792958 1
## 15262 792959 1
## 15263 792960 1
## 15264 792961 1
## 15265 792962 1
## 15266 792963 1
## 15267 792964 1
## 15268 792965 1
## 15269 792966 1
## 15270 792967 1
## 15271 792968 1
## 15272 792969 1
## 15273 792970 1
## 15274 792971 1
## 15275 792972 1
## 15276 792973 1
## 15277 792974 1
## 15278 792975 1
## 15279 792976 1
## 15280 792977 1
## 15281 792978 1
## 15282 792979 1
## 15283 792980 1
## 15284 792981 1
## 15285 792982 1
## 15286 792983 1
## 15287 792984 1
## 15288 792985 1
## 15289 792986 1
## 15290 792988 1
## 15291 792989 1
## 15292 792990 1
## 15293 792991 1
## 15294 792992 1
## 15295 792993 1
## 15296 792994 1
## 15297 792995 1
## 15298 792996 1
## 15299 792998 1
## 15300 792999 1
## 15301 793000 1
## 15302 793001 1
## 15303 793002 1
## 15304 793003 1
## 15305 793004 1
## 15306 793005 1
## 15307 793006 1
## 15308 793007 1
## 15309 793008 1
## 15310 793009 1
## 15311 793010 1
## 15312 793011 1
## 15313 793012 1
## 15314 793013 1
## 15315 793014 1
## 15316 793015 1
## 15317 793016 1
## 15318 793017 1
## 15319 793018 1
## 15320 793019 1
## 15321 793020 1
## 15322 793021 1
## 15323 793022 1
## 15324 793023 1
## 15325 793024 1
## 15326 793025 1
## 15327 793026 1
## 15328 793027 1
## 15329 793028 1
## 15330 793029 1
## 15331 793030 1
## 15332 793031 1
## 15333 793032 1
## 15334 793033 1
## 15335 793034 1
## 15336 793035 1
## 15337 793036 1
## 15338 793037 1
## 15339 793038 1
## 15340 793039 1
## 15341 793040 1
## 15342 793041 1
## 15343 793042 1
## 15344 793043 1
## 15345 793044 1
## 15346 793045 1
## 15347 793046 1
## 15348 793047 1
## 15349 793048 1
## 15350 793049 1
## 15351 793050 1
## 15352 793051 1
## 15353 793052 1
## 15354 793053 1
## 15355 793054 1
## 15356 793055 1
## 15357 793056 1
## 15358 793057 1
## 15359 793058 1
## 15360 793059 1
## 15361 793060 1
## 15362 793061 1
## 15363 793062 1
## 15364 793063 1
## 15365 793064 1
## 15366 793065 1
## 15367 793066 1
## 15368 793067 1
## 15369 793068 1
## 15370 793069 1
## 15371 793070 1
## 15372 793071 1
## 15373 793072 1
## 15374 793073 1
## 15375 793074 1
## 15376 793075 1
## 15377 793076 1
## 15378 793077 1
## 15379 793078 1
## 15380 793079 1
## 15381 793080 1
## 15382 793081 1
## 15383 793082 1
## 15384 793083 1
## 15385 793084 1
## 15386 793085 1
## 15387 793086 1
## 15388 793087 1
## 15389 793088 1
## 15390 793089 1
## 15391 793090 1
## 15392 793091 1
## 15393 793092 1
## 15394 793093 1
## 15395 793094 1
## 15396 793095 1
## 15397 793096 1
## 15398 793097 1
## 15399 793098 1
## 15400 793099 1
## 15401 793100 1
## 15402 793101 1
## 15403 793102 1
## 15404 793103 1
## 15405 793104 1
## 15406 793105 1
## 15407 793106 1
## 15408 793107 1
## 15409 793108 1
## 15410 793109 1
## 15411 793110 1
## 15412 793111 1
## 15413 793112 1
## 15414 793113 1
## 15415 793114 1
## 15416 793115 1
## 15417 793116 1
## 15418 793117 1
## 15419 793118 1
## 15420 793119 1
## 15421 793120 1
## 15422 793121 1
## 15423 793122 1
## 15424 793123 1
## 15425 793124 1
## 15426 793125 1
## 15427 793126 1
## 15428 793127 1
## 15429 793128 1
## 15430 793129 1
## 15431 793130 1
## 15432 793131 1
## 15433 793132 1
## 15434 793133 1
## 15435 793134 1
## 15436 793135 1
## 15437 793136 1
## 15438 793137 1
## 15439 793138 1
## 15440 793139 1
## 15441 793140 1
## 15442 793141 1
## 15443 793142 1
## 15444 793143 1
## 15445 793144 1
## 15446 793145 1
## 15447 793146 1
## 15448 793147 1
## 15449 793148 1
## 15450 793149 1
## 15451 793150 1
## 15452 793151 1
## 15453 793152 1
## 15454 793153 1
## 15455 793154 1
## 15456 793155 1
## 15457 793156 1
## 15458 793157 1
## 15459 793158 1
## 15460 793159 1
## 15461 793160 1
## 15462 793161 1
## 15463 793162 1
## 15464 793163 1
## 15465 793165 1
## 15466 793166 1
## 15467 793167 1
## 15468 793168 1
## 15469 793169 1
## 15470 793170 1
## 15471 793171 1
## 15472 793172 1
## 15473 793173 1
## 15474 793174 1
## 15475 793175 1
## 15476 793176 1
## 15477 793177 1
## 15478 793178 1
## 15479 793179 1
## 15480 793180 1
## 15481 793181 1
## 15482 793182 1
## 15483 793183 1
## 15484 793184 1
## 15485 793185 1
## 15486 793186 1
## 15487 793187 1
## 15488 793188 1
## 15489 793189 1
## 15490 793190 1
## 15491 793191 1
## 15492 793192 1
## 15493 793193 1
## 15494 793194 1
## 15495 793195 1
## 15496 793196 1
## 15497 793197 1
## 15498 793198 1
## 15499 793199 1
## 15500 793200 1
## 15501 793201 1
## 15502 793202 1
## 15503 793203 1
## 15504 793204 1
## 15505 793205 1
## 15506 793206 1
## 15507 793207 1
## 15508 793208 1
## 15509 793209 1
## 15510 793210 1
## 15511 793211 1
## 15512 793212 1
## 15513 793213 1
## 15514 793214 1
## 15515 793215 1
## 15516 793216 1
## 15517 793217 1
## 15518 793218 1
## 15519 793219 1
## 15520 793220 1
## 15521 793221 1
## 15522 793222 1
## 15523 793223 1
## 15524 793224 1
## 15525 793225 1
## 15526 793226 1
## 15527 793227 1
## 15528 793228 1
## 15529 793229 1
## 15530 793230 1
## 15531 793231 1
## 15532 793232 1
## 15533 793233 1
## 15534 793234 1
## 15535 793235 1
## 15536 793236 1
## 15537 793237 1
## 15538 793238 1
## 15539 793240 1
## 15540 793241 1
## 15541 793242 1
## 15542 793243 1
## 15543 793244 1
## 15544 793246 1
## 15545 793247 1
## 15546 793248 1
## 15547 793249 1
## 15548 793250 1
## 15549 793251 1
## 15550 793252 1
## 15551 793253 1
## 15552 793254 1
## 15553 793255 1
## 15554 793256 1
## 15555 793257 1
## 15556 793258 1
## 15557 793259 1
## 15558 793260 1
## 15559 793261 1
## 15560 793262 1
## 15561 793263 1
## 15562 793264 1
## 15563 793265 1
## 15564 793266 1
## 15565 793267 1
## 15566 793268 1
## 15567 793269 1
## 15568 793270 1
## 15569 793271 1
## 15570 793272 1
## 15571 793273 1
## 15572 793274 1
## 15573 793275 1
## 15574 793276 1
## 15575 793277 1
## 15576 793278 1
## 15577 793279 1
## 15578 793280 1
## 15579 793281 1
## 15580 793282 1
## 15581 793283 1
## 15582 793284 1
## 15583 793285 1
## 15584 793286 1
## 15585 793287 1
## 15586 793288 1
## 15587 793289 1
## 15588 793290 1
## 15589 793291 1
## 15590 793292 1
## 15591 793293 1
## 15592 793294 1
## 15593 793295 1
## 15594 793296 1
## 15595 793297 1
## 15596 793298 1
## 15597 793299 1
## 15598 793300 1
## 15599 793301 1
## 15600 793302 1
## 15601 793303 1
## 15602 793304 1
## 15603 793305 1
## 15604 793306 1
## 15605 793307 1
## 15606 793308 1
## 15607 793309 1
## 15608 793310 1
## 15609 793311 1
## 15610 793312 1
## 15611 793313 1
## 15612 793314 1
## 15613 793315 1
## 15614 793316 1
## 15615 793317 1
## 15616 793318 1
## 15617 793319 1
## 15618 793320 1
## 15619 793321 1
## 15620 793322 1
## 15621 793323 1
## 15622 793324 1
## 15623 793325 1
## 15624 793326 1
## 15625 793327 1
## 15626 793328 1
## 15627 793329 1
## 15628 793330 1
## 15629 793331 1
## 15630 793332 1
## 15631 793333 1
## 15632 793334 1
## 15633 793335 1
## 15634 793336 1
## 15635 793337 1
## 15636 793338 1
## 15637 793339 1
## 15638 793340 1
## 15639 793342 1
## 15640 793343 1
## 15641 793344 1
## 15642 793345 1
## 15643 793346 1
## 15644 793347 1
## 15645 793348 1
## 15646 793349 1
## 15647 793350 1
## 15648 793351 1
## 15649 793352 1
## 15650 793353 1
## 15651 793354 1
## 15652 793355 1
## 15653 793356 1
## 15654 793357 1
## 15655 793358 1
## 15656 793359 1
## 15657 793360 1
## 15658 793361 1
## 15659 793362 1
## 15660 793363 1
## 15661 793364 1
## 15662 793365 1
## 15663 793366 1
## 15664 793367 1
## 15665 793368 1
## 15666 793369 1
## 15667 793370 1
## 15668 793371 1
## 15669 793372 1
## 15670 793373 1
## 15671 793374 1
## 15672 793375 1
## 15673 793376 1
## 15674 793377 1
## 15675 793378 1
## 15676 793379 1
## 15677 793380 1
## 15678 793381 1
## 15679 793382 1
## 15680 793383 1
## 15681 793384 1
## 15682 793385 1
## 15683 793386 1
## 15684 793387 1
## 15685 793388 1
## 15686 793389 1
## 15687 793390 1
## 15688 793391 1
## 15689 793392 1
## 15690 793393 1
## 15691 793394 1
## 15692 793395 1
## 15693 793396 1
## 15694 793397 1
## 15695 793398 1
## 15696 793399 1
## 15697 793400 1
## 15698 793401 1
## 15699 793402 1
## 15700 793403 1
## 15701 793404 1
## 15702 793405 1
## 15703 793406 1
## 15704 793407 1
## 15705 793408 1
## 15706 793409 1
## 15707 793410 1
## 15708 793411 1
## 15709 793412 1
## 15710 793413 1
## 15711 793414 1
## 15712 793415 1
## 15713 793416 1
## 15714 793417 1
## 15715 793418 1
## 15716 793419 1
## 15717 793420 1
## 15718 793421 1
## 15719 793422 1
## 15720 793423 1
## 15721 793424 1
## 15722 793425 1
## 15723 793426 1
## 15724 793427 1
## 15725 793428 1
## 15726 793429 1
## 15727 793430 1
## 15728 793431 1
## 15729 793432 1
## 15730 793433 1
## 15731 793434 1
## 15732 793435 1
## 15733 793436 1
## 15734 793437 1
## 15735 793438 1
## 15736 793439 1
## 15737 793440 1
## 15738 793441 1
## 15739 793442 1
## 15740 793443 1
## 15741 793444 1
## 15742 793445 1
## 15743 793446 1
## 15744 793447 1
## 15745 793448 1
## 15746 793449 1
## 15747 793450 1
## 15748 793451 1
## 15749 793452 1
## 15750 793453 1
## 15751 793454 1
## 15752 793455 1
## 15753 793456 1
## 15754 793457 1
## 15755 793458 1
## 15756 793459 1
## 15757 793460 1
## 15758 793461 1
## 15759 793462 1
## 15760 793463 1
## 15761 793464 1
## 15762 793465 1
## 15763 793466 1
## 15764 793467 1
## 15765 793468 1
## 15766 793469 1
## 15767 793470 1
## 15768 793471 1
## 15769 793472 1
## 15770 793473 1
## 15771 793475 1
## 15772 793476 1
## 15773 793477 1
## 15774 793478 1
## 15775 793479 1
## 15776 793480 1
## 15777 793481 1
## 15778 793482 1
## 15779 793483 1
## 15780 793484 1
## 15781 793485 1
## 15782 793486 1
## 15783 793487 1
## 15784 793488 1
## 15785 793489 1
## 15786 793490 1
## 15787 793491 1
## 15788 793492 1
## 15789 793493 1
## 15790 793494 1
## 15791 793495 1
## 15792 793496 1
## 15793 793497 1
## 15794 793498 1
## 15795 793499 1
## 15796 793500 1
## 15797 793501 1
## 15798 793502 1
## 15799 793503 1
## 15800 793504 1
## 15801 793505 1
## 15802 793506 1
## 15803 793507 1
## 15804 793508 1
## 15805 793509 1
## 15806 793510 1
## 15807 793511 1
## 15808 793512 1
## 15809 793513 1
## 15810 793514 1
## 15811 793515 1
## 15812 793516 1
## 15813 793517 1
## 15814 793518 1
## 15815 793519 1
## 15816 793520 1
## 15817 793521 1
## 15818 793522 1
## 15819 793523 1
## 15820 793524 1
## 15821 793525 1
## 15822 793526 1
## 15823 793527 1
## 15824 793528 1
## 15825 793529 1
## 15826 793530 1
## 15827 793531 1
## 15828 793532 1
## 15829 793533 1
## 15830 793534 1
## 15831 793535 1
## 15832 793536 1
## 15833 793537 1
## 15834 793538 1
## 15835 793539 1
## 15836 793540 1
## 15837 793541 1
## 15838 793542 1
## 15839 793543 1
## 15840 793544 1
## 15841 793545 1
## 15842 793546 1
## 15843 793547 1
## 15844 793548 1
## 15845 793549 1
## 15846 793550 1
## 15847 793551 1
## 15848 793552 1
## 15849 793553 1
## 15850 793554 1
## 15851 793555 1
## 15852 793556 1
## 15853 793557 1
## 15854 793558 1
## 15855 793559 1
## 15856 793560 1
## 15857 793561 1
## 15858 793562 1
## 15859 793563 1
## 15860 793564 1
## 15861 793565 1
## 15862 793566 1
## 15863 793567 1
## 15864 793568 1
## 15865 793569 1
## 15866 793570 1
## 15867 793571 1
## 15868 793572 1
## 15869 793573 1
## 15870 793574 1
## 15871 793575 1
## 15872 793576 1
## 15873 793577 1
## 15874 793578 1
## 15875 793579 1
## 15876 793580 1
## 15877 793581 1
## 15878 793582 1
## 15879 793583 1
## 15880 793584 1
## 15881 793585 1
## 15882 793586 1
## 15883 793587 1
## 15884 793588 1
## 15885 793589 1
## 15886 793590 1
## 15887 793591 1
## 15888 793592 1
## 15889 793593 1
## 15890 793594 1
## 15891 793595 1
## 15892 793596 1
## 15893 793597 1
## 15894 793598 1
## 15895 793599 1
## 15896 793600 1
## 15897 793601 1
## 15898 793602 1
## 15899 793603 1
## 15900 793604 1
## 15901 793605 1
## 15902 793606 1
## 15903 793607 1
## 15904 793608 1
## 15905 793609 1
## 15906 793610 1
## 15907 793611 1
## 15908 793612 1
## 15909 793613 1
## 15910 793614 1
## 15911 793615 1
## 15912 793616 1
## 15913 793617 1
## 15914 793618 1
## 15915 793619 1
## 15916 793620 1
## 15917 793621 1
## 15918 793622 1
## 15919 793623 1
## 15920 793624 1
## 15921 793625 1
## 15922 793626 1
## 15923 793627 1
## 15924 793628 1
## 15925 793629 1
## 15926 793630 1
## 15927 793631 1
## 15928 793632 1
## 15929 793633 1
## 15930 793634 1
## 15931 793635 1
## 15932 793636 1
## 15933 793637 1
## 15934 793638 1
## 15935 793639 1
## 15936 793640 1
## 15937 793641 1
## 15938 793642 1
## 15939 793643 1
## 15940 793644 1
## 15941 793645 1
## 15942 793646 1
## 15943 793647 1
## 15944 793648 1
## 15945 793649 1
## 15946 793650 1
## 15947 793651 1
## 15948 793652 1
## 15949 793653 1
## 15950 793654 1
## 15951 793655 1
## 15952 793656 1
## 15953 793657 1
## 15954 793658 1
## 15955 793659 1
## 15956 793660 1
## 15957 793661 1
## 15958 793662 1
## 15959 793663 1
## 15960 793664 1
## 15961 793665 1
## 15962 793666 1
## 15963 793667 1
## 15964 793668 1
## 15965 793669 1
## 15966 793670 1
## 15967 793671 1
## 15968 793672 1
## 15969 793673 1
## 15970 793674 1
## 15971 793675 1
## 15972 793676 1
## 15973 793677 1
## 15974 793678 1
## 15975 793679 1
## 15976 793680 1
## 15977 793681 1
## 15978 793682 1
## 15979 793683 1
## 15980 793684 1
## 15981 793685 1
## 15982 793686 1
## 15983 793687 1
## 15984 793688 1
## 15985 793689 1
## 15986 793690 1
## 15987 793691 1
## 15988 793692 1
## 15989 793693 1
## 15990 793694 1
## 15991 793695 1
## 15992 793696 1
## 15993 793697 1
## 15994 793698 1
## 15995 793699 1
## 15996 793700 1
## 15997 793701 1
## 15998 793702 1
## 15999 793703 1
## 16000 793704 1
## 16001 793705 1
## 16002 793706 1
## 16003 793707 1
## 16004 793708 1
## 16005 793709 1
## 16006 793710 1
## 16007 793711 1
## 16008 793712 1
## 16009 793713 1
## 16010 793714 1
## 16011 793715 1
## 16012 793716 1
## 16013 793717 1
## 16014 793718 1
## 16015 793719 1
## 16016 793720 1
## 16017 793721 1
## 16018 793722 1
## 16019 793723 1
## 16020 793724 1
## 16021 793725 1
## 16022 793726 1
## 16023 793727 1
## 16024 793728 1
## 16025 793729 1
## 16026 793730 1
## 16027 793731 1
## 16028 793732 1
## 16029 793733 1
## 16030 793734 1
## 16031 793735 1
## 16032 793736 1
## 16033 793737 1
## 16034 793738 1
## 16035 793739 1
## 16036 793740 1
## 16037 793741 1
## 16038 793742 1
## 16039 793743 1
## 16040 793744 1
## 16041 793745 1
## 16042 793746 1
## 16043 793747 1
## 16044 793748 1
## 16045 793749 1
## 16046 793750 1
## 16047 793751 1
## 16048 793752 1
## 16049 793753 1
## 16050 793754 1
## 16051 793755 1
## 16052 793756 1
## 16053 793757 1
## 16054 793758 1
## 16055 793759 1
## 16056 793760 1
## 16057 793761 1
## 16058 793762 1
## 16059 793763 1
## 16060 793764 1
## 16061 793766 1
## 16062 793767 1
## 16063 793768 1
## 16064 793769 1
## 16065 793770 1
## 16066 793771 1
## 16067 793772 1
## 16068 793773 1
## 16069 793774 1
## 16070 793775 1
## 16071 793776 1
## 16072 793777 1
## 16073 793778 1
## 16074 793779 1
## 16075 793780 1
## 16076 793781 1
## 16077 793782 1
## 16078 793783 1
## 16079 793784 1
## 16080 793785 1
## 16081 793786 1
## 16082 793787 1
## 16083 793788 1
## 16084 793789 1
## 16085 793790 1
## 16086 793791 1
## 16087 793792 1
## 16088 793793 1
## 16089 793794 1
## 16090 793795 1
## 16091 793796 1
## 16092 793797 1
## 16093 793798 1
## 16094 793799 1
## 16095 793800 1
## 16096 793801 1
## 16097 793802 1
## 16098 793803 1
## 16099 793804 1
## 16100 793805 1
## 16101 793806 1
## 16102 793807 1
## 16103 793808 1
## 16104 793809 1
## 16105 793810 1
## 16106 793811 1
## 16107 793812 1
## 16108 793813 1
## 16109 793814 1
## 16110 793816 1
## 16111 793817 1
## 16112 793818 1
## 16113 793819 1
## 16114 793820 1
## 16115 793821 1
## 16116 793822 1
## 16117 793823 1
## 16118 793824 1
## 16119 793826 1
## 16120 793827 1
## 16121 793828 1
## 16122 793829 1
## 16123 793830 1
## 16124 793831 1
## 16125 793832 1
## 16126 793833 1
## 16127 793834 1
## 16128 793835 1
## 16129 793836 1
## 16130 793837 1
## 16131 793838 1
## 16132 793839 1
## 16133 793840 1
## 16134 793841 1
## 16135 793842 1
## 16136 793843 1
## 16137 793844 1
## 16138 793845 1
## 16139 793846 1
## 16140 793847 1
## 16141 793848 1
## 16142 793849 1
## 16143 793850 1
## 16144 793851 1
## 16145 793852 1
## 16146 793853 1
## 16147 793854 1
## 16148 793855 1
## 16149 793856 1
## 16150 793857 1
## 16151 793858 1
## 16152 793859 1
## 16153 793860 1
## 16154 793861 1
## 16155 793862 1
## 16156 793863 1
## 16157 793864 1
## 16158 793865 1
## 16159 793866 1
## 16160 793867 1
## 16161 793868 1
## 16162 793869 1
## 16163 793870 1
## 16164 793871 1
## 16165 793872 1
## 16166 793873 1
## 16167 793874 1
## 16168 793875 1
## 16169 793876 1
## 16170 793877 1
## 16171 793878 1
## 16172 793879 1
## 16173 793880 1
## 16174 793881 1
## 16175 793882 1
## 16176 793883 1
## 16177 793884 1
## 16178 793885 1
## 16179 793886 1
## 16180 793887 1
## 16181 793888 1
## 16182 793889 1
## 16183 793890 1
## 16184 793891 1
## 16185 793892 1
## 16186 793893 1
## 16187 793894 1
## 16188 793895 1
## 16189 793896 1
## 16190 793897 1
## 16191 793898 1
## 16192 793899 1
## 16193 793900 1
## 16194 793901 1
## 16195 793902 1
## 16196 793903 1
## 16197 793904 1
## 16198 793905 1
## 16199 793906 1
## 16200 793907 1
## 16201 793908 1
## 16202 793909 1
## 16203 793910 1
## 16204 793911 1
## 16205 793912 1
## 16206 793913 1
## 16207 793914 1
## 16208 793915 1
## 16209 793916 1
## 16210 793917 1
## 16211 793918 1
## 16212 793919 1
## 16213 793920 1
## 16214 793921 1
## 16215 793922 1
## 16216 793923 1
## 16217 793924 1
## 16218 793925 1
## 16219 793926 1
## 16220 793927 1
## 16221 793928 1
## 16222 793929 1
## 16223 793930 1
## 16224 793931 1
## 16225 793932 1
## 16226 793933 1
## 16227 793934 1
## 16228 793935 1
## 16229 793936 1
## 16230 793937 1
## 16231 793938 1
## 16232 793939 1
## 16233 793940 1
## 16234 793941 1
## 16235 793942 1
## 16236 793943 1
## 16237 793944 1
## 16238 793945 1
## 16239 793946 1
## 16240 793947 1
## 16241 793948 1
## 16242 793949 1
## 16243 793950 1
## 16244 793951 1
## 16245 793952 1
## 16246 793953 1
## 16247 793954 1
## 16248 793955 1
## 16249 793956 1
## 16250 793957 1
## 16251 793958 1
## 16252 793959 1
## 16253 793960 1
## 16254 793961 1
## 16255 793962 1
## 16256 793963 1
## 16257 793964 1
## 16258 793965 1
## 16259 793966 1
## 16260 793967 1
## 16261 793968 1
## 16262 793969 1
## 16263 793970 1
## 16264 793971 1
## 16265 793972 1
## 16266 793973 1
## 16267 793974 1
## 16268 793975 1
## 16269 793976 1
## 16270 793977 1
## 16271 793978 1
## 16272 793979 1
## 16273 793980 1
## 16274 793981 1
## 16275 793982 1
## 16276 793983 1
## 16277 793984 1
## 16278 793985 1
## 16279 793986 1
## 16280 793987 1
## 16281 793988 1
## 16282 793989 1
## 16283 793990 1
## 16284 793991 1
## 16285 793992 1
## 16286 793993 1
## 16287 793994 1
## 16288 793995 1
## 16289 793996 1
## 16290 793997 1
## 16291 793998 1
## 16292 793999 1
## 16293 794000 1
## 16294 794001 1
## 16295 794002 1
## 16296 794003 1
## 16297 794004 1
## 16298 794005 1
## 16299 794006 1
## 16300 794007 1
## 16301 794008 1
## 16302 794009 1
## 16303 794010 1
## 16304 794011 1
## 16305 794012 1
## 16306 794013 1
## 16307 794014 1
## 16308 794015 1
## 16309 794016 1
## 16310 794017 1
## 16311 794018 1
## 16312 794019 1
## 16313 794020 1
## 16314 794021 1
## 16315 794022 1
## 16316 794023 1
## 16317 794024 1
## 16318 794025 1
## 16319 794026 1
## 16320 794027 1
## 16321 794028 1
## 16322 794029 1
## 16323 794030 1
## 16324 794031 1
## 16325 794032 1
## 16326 794033 1
## 16327 794034 1
## 16328 794035 1
## 16329 794036 1
## 16330 794037 1
## 16331 794038 1
## 16332 794039 1
## 16333 794040 1
## 16334 794041 1
## 16335 794042 1
## 16336 794043 1
## 16337 794044 1
## 16338 794045 1
## 16339 794046 1
## 16340 794047 1
## 16341 794048 1
## 16342 794049 1
## 16343 794050 1
## 16344 794051 1
## 16345 794052 1
## 16346 794053 1
## 16347 794054 1
## 16348 794055 1
## 16349 794056 1
## 16350 794057 1
## 16351 794058 1
## 16352 794059 1
## 16353 794061 1
## 16354 794062 1
## 16355 794063 1
## 16356 794064 1
## 16357 794065 1
## 16358 794066 1
## 16359 794067 1
## 16360 794068 1
## 16361 794069 1
## 16362 794070 1
## 16363 794071 1
## 16364 794072 1
## 16365 794073 1
## 16366 794074 1
## 16367 794075 1
## 16368 794076 1
## 16369 794077 1
## 16370 794078 1
## 16371 794079 1
## 16372 794080 1
## 16373 794081 1
## 16374 794082 1
## 16375 794083 1
## 16376 794084 1
## 16377 794085 1
## 16378 794086 1
## 16379 794087 1
## 16380 794088 1
## 16381 794089 1
## 16382 794090 1
## 16383 794091 1
## 16384 794092 1
## 16385 794093 1
## 16386 794094 1
## 16387 794095 1
## 16388 794096 1
## 16389 794097 1
## 16390 794098 1
## 16391 794099 1
## 16392 794100 1
## 16393 794101 1
## 16394 794102 1
## 16395 794103 1
## 16396 794104 1
## 16397 794105 1
## 16398 794106 1
## 16399 794107 1
## 16400 794108 1
## 16401 794109 1
## 16402 794110 1
## 16403 794111 1
## 16404 794112 1
## 16405 794113 1
## 16406 794114 1
## 16407 794115 1
## 16408 794116 1
## 16409 794117 1
## 16410 794118 1
## 16411 794119 1
## 16412 794120 1
## 16413 794121 1
## 16414 794122 1
## 16415 794123 1
## 16416 794124 1
## 16417 794125 1
## 16418 794126 1
## 16419 794127 1
## 16420 794128 1
## 16421 794129 1
## 16422 794130 1
## 16423 794131 1
## 16424 794132 1
## 16425 794133 1
## 16426 794134 1
## 16427 794135 1
## 16428 794136 1
## 16429 794137 1
## 16430 794138 1
## 16431 794139 1
## 16432 794140 1
## 16433 794141 1
## 16434 794142 1
## 16435 794143 1
## 16436 794144 1
## 16437 794145 1
## 16438 794146 1
## 16439 794147 1
## 16440 794148 1
## 16441 794149 1
## 16442 794150 1
## 16443 794151 1
## 16444 794152 1
## 16445 794153 1
## 16446 794154 1
## 16447 794155 1
## 16448 794156 1
## 16449 794157 1
## 16450 794158 1
## 16451 794159 1
## 16452 794160 1
## 16453 794161 1
## 16454 794162 1
## 16455 794163 1
## 16456 794164 1
## 16457 794165 1
## 16458 794166 1
## 16459 794167 1
## 16460 794168 1
## 16461 794169 1
## 16462 794170 1
## 16463 794171 1
## 16464 794172 1
## 16465 794173 1
## 16466 794174 1
## 16467 794175 1
## 16468 794176 1
## 16469 794177 1
## 16470 794178 1
## 16471 794179 1
## 16472 794180 1
## 16473 794181 1
## 16474 794182 1
## 16475 794183 1
## 16476 794184 1
## 16477 794185 1
## 16478 794186 1
## 16479 794187 1
## 16480 794188 1
## 16481 794189 1
## 16482 794190 1
## 16483 794191 1
## 16484 794192 1
## 16485 794193 1
## 16486 794194 1
## 16487 794195 1
## 16488 794196 1
## 16489 794197 1
## 16490 794198 1
## 16491 794199 1
## 16492 794200 1
## 16493 794201 1
## 16494 794202 1
## 16495 794203 1
## 16496 794204 1
## 16497 794205 1
## 16498 794206 1
## 16499 794207 1
## 16500 794208 1
## 16501 794209 1
## 16502 794210 1
## 16503 794211 1
## 16504 794212 1
## 16505 794213 1
## 16506 794214 1
## 16507 794215 1
## 16508 794216 1
## 16509 794217 1
## 16510 794218 1
## 16511 794219 1
## 16512 794220 1
## 16513 794221 1
## 16514 794222 1
## 16515 794223 1
## 16516 794224 1
## 16517 794225 1
## 16518 794226 1
## 16519 794227 1
## 16520 794228 1
## 16521 794229 1
## 16522 794230 1
## 16523 794231 1
## 16524 794232 1
## 16525 794233 1
## 16526 794234 1
## 16527 794235 1
## 16528 794236 1
## 16529 794237 1
## 16530 794238 1
## 16531 794239 1
## 16532 794240 1
## 16533 794241 1
## 16534 794242 1
## 16535 794243 1
## 16536 794244 1
## 16537 794245 1
## 16538 794247 1
## 16539 794248 1
## 16540 794249 1
## 16541 794251 1
## 16542 794252 1
## 16543 794253 1
## 16544 794254 1
## 16545 794255 1
## 16546 794256 1
## 16547 794257 1
## 16548 794258 1
## 16549 794259 1
## 16550 794260 1
## 16551 794261 1
## 16552 794262 1
## 16553 794263 1
## 16554 794264 1
## 16555 794265 1
## 16556 794266 1
## 16557 794267 1
## 16558 794268 1
## 16559 794269 1
## 16560 794270 1
## 16561 794271 1
## 16562 794272 1
## 16563 794273 1
## 16564 794274 1
## 16565 794275 1
## 16566 794276 1
## 16567 794277 1
## 16568 794278 1
## 16569 794279 1
## 16570 794280 1
## 16571 794281 1
## 16572 794282 1
## 16573 794283 1
## 16574 794284 1
## 16575 794285 1
## 16576 794286 1
## 16577 794287 1
## 16578 794288 1
## 16579 794289 1
## 16580 794290 1
## 16581 794291 1
## 16582 794292 1
## 16583 794293 1
## 16584 794294 1
## 16585 794295 1
## 16586 794296 1
## 16587 794297 1
## 16588 794298 1
## 16589 794299 1
## 16590 794300 1
## 16591 794301 1
## 16592 794302 1
## 16593 794303 1
## 16594 794304 1
## 16595 794305 1
## 16596 794306 1
## 16597 794307 1
## 16598 794308 1
## 16599 794309 1
## 16600 794310 1
## 16601 794311 1
## 16602 794312 1
## 16603 794313 1
## 16604 794314 1
## 16605 794315 1
## 16606 794316 1
## 16607 794317 1
## 16608 794318 1
## 16609 794319 1
## 16610 794320 1
## 16611 794321 1
## 16612 794322 1
## 16613 794323 1
## 16614 794324 1
## 16615 794325 1
## 16616 794326 1
## 16617 794327 1
## 16618 794328 1
## 16619 794329 1
## 16620 794330 1
## 16621 794331 1
## 16622 794332 1
## 16623 794333 1
## 16624 794334 1
## 16625 794335 1
## 16626 794336 1
## 16627 794337 1
## 16628 794338 1
## 16629 794339 1
## 16630 794340 1
## 16631 794341 1
## 16632 794342 1
## 16633 794343 1
## 16634 794344 1
## 16635 794345 1
## 16636 794346 1
## 16637 794347 1
## 16638 794348 1
## 16639 794349 1
## 16640 794350 1
## 16641 794351 1
## 16642 794352 1
## 16643 794353 1
## 16644 794354 1
## 16645 794355 1
## 16646 794356 1
## 16647 794357 1
## 16648 794358 1
## 16649 794359 1
## 16650 794360 1
## 16651 794361 1
## 16652 794362 1
## 16653 794363 1
## 16654 794364 1
## 16655 794365 1
## 16656 794366 1
## 16657 794367 1
## 16658 794368 1
## 16659 794369 1
## 16660 794370 1
## 16661 794371 1
## 16662 794372 1
## 16663 794373 1
## 16664 794374 1
## 16665 794375 1
## 16666 794376 1
## 16667 794377 1
## 16668 794378 1
## 16669 794379 1
## 16670 794380 1
## 16671 794381 1
## 16672 794382 1
## 16673 794383 1
## 16674 794384 1
## 16675 794385 1
## 16676 794386 1
## 16677 794387 1
## 16678 794388 1
## 16679 794389 1
## 16680 794390 1
## 16681 794391 1
## 16682 794392 1
## 16683 794393 1
## 16684 794394 1
## 16685 794395 1
## 16686 794396 1
## 16687 794397 1
## 16688 794398 1
## 16689 794399 1
## 16690 794400 1
## 16691 794401 1
## 16692 794402 1
## 16693 794403 1
## 16694 794404 1
## 16695 794405 1
## 16696 794406 1
## 16697 794407 1
## 16698 794408 1
## 16699 794409 1
## 16700 794410 1
## 16701 794411 1
## 16702 794412 1
## 16703 794413 1
## 16704 794414 1
## 16705 794415 1
## 16706 794416 1
## 16707 794417 1
## 16708 794418 1
## 16709 794419 1
## 16710 794420 1
## 16711 794421 1
## 16712 794422 1
## 16713 794423 1
## 16714 794424 1
## 16715 794425 1
## 16716 794426 1
## 16717 794427 1
## 16718 794428 1
## 16719 794429 1
## 16720 794430 1
## 16721 794431 1
## 16722 794432 1
## 16723 794433 1
## 16724 794434 1
## 16725 794435 1
## 16726 794436 1
## 16727 794437 1
## 16728 794438 1
## 16729 794439 1
## 16730 794440 1
## 16731 794441 1
## 16732 794442 1
## 16733 794443 1
## 16734 794444 1
## 16735 794445 1
## 16736 794446 1
## 16737 794447 1
## 16738 794448 1
## 16739 794449 1
## 16740 794450 1
## 16741 794451 1
## 16742 794452 1
## 16743 794453 1
## 16744 794454 1
## 16745 794455 1
## 16746 794456 1
## 16747 794457 1
## 16748 794458 1
## 16749 794459 1
## 16750 794460 1
## 16751 794461 1
## 16752 794462 1
## 16753 794463 1
## 16754 794464 1
## 16755 794465 1
## 16756 794466 1
## 16757 794467 1
## 16758 794468 1
## 16759 794469 1
## 16760 794470 1
## 16761 794471 1
## 16762 794472 1
## 16763 794473 1
## 16764 794474 1
## 16765 794475 1
## 16766 794476 1
## 16767 794477 1
## 16768 794478 1
## 16769 794479 1
## 16770 794480 1
## 16771 794481 1
## 16772 794482 1
## 16773 794483 1
## 16774 794484 1
## 16775 794485 1
## 16776 794486 1
## 16777 794487 1
## 16778 794488 1
## 16779 794489 1
## 16780 794490 1
## 16781 794491 1
## 16782 794492 1
## 16783 794493 1
## 16784 794494 1
## 16785 794495 1
## 16786 794496 1
## 16787 794497 1
## 16788 794498 1
## 16789 794499 1
## 16790 794500 1
## 16791 794501 1
## 16792 794502 1
## 16793 794503 1
## 16794 794504 1
## 16795 794505 1
## 16796 794506 1
## 16797 794507 1
## 16798 794508 1
## 16799 794509 1
## 16800 794510 1
## 16801 794511 1
## 16802 794512 1
## 16803 794513 1
## 16804 794514 1
## 16805 794515 1
## 16806 794516 1
## 16807 794517 1
## 16808 794518 1
## 16809 794519 1
## 16810 794520 1
## 16811 794521 1
## 16812 794522 1
## 16813 794523 1
## 16814 794524 1
## 16815 794525 1
## 16816 794526 1
## 16817 794527 1
## 16818 794528 1
## 16819 794529 1
## 16820 794530 1
## 16821 794531 1
## 16822 794532 1
## 16823 794533 1
## 16824 794534 1
## 16825 794535 1
## 16826 794536 1
## 16827 794537 1
## 16828 794538 1
## 16829 794539 1
## 16830 794540 1
## 16831 794541 1
## 16832 794542 1
## 16833 794543 1
## 16834 794544 1
## 16835 794545 1
## 16836 794546 1
## 16837 794547 1
## 16838 794548 1
## 16839 794549 1
## 16840 794550 1
## 16841 794551 1
## 16842 794552 1
## 16843 794553 1
## 16844 794554 1
## 16845 794555 1
## 16846 794556 1
## 16847 794557 1
## 16848 794558 1
## 16849 794559 1
## 16850 794560 1
## 16851 794561 1
## 16852 794562 1
## 16853 794563 1
## 16854 794564 1
## 16855 794565 1
## 16856 794566 1
## 16857 794567 1
## 16858 794568 1
## 16859 794569 1
## 16860 794570 1
## 16861 794571 1
## 16862 794572 1
## 16863 794573 1
## 16864 794574 1
## 16865 794575 1
## 16866 794576 1
## 16867 794577 1
## 16868 794578 1
## 16869 794579 1
## 16870 794580 1
## 16871 794581 1
## 16872 794582 1
## 16873 794583 1
## 16874 794584 1
## 16875 794585 1
## 16876 794586 1
## 16877 794587 1
## 16878 794588 1
## 16879 794589 1
## 16880 794590 1
## 16881 794591 1
## 16882 794592 1
## 16883 794593 1
## 16884 794594 1
## 16885 794595 1
## 16886 794596 1
## 16887 794597 1
## 16888 794598 1
## 16889 794599 1
## 16890 794600 1
## 16891 794601 1
## 16892 794602 1
## 16893 794603 1
## 16894 794604 1
## 16895 794605 1
## 16896 794606 1
## 16897 794607 1
## 16898 794608 1
## 16899 794609 1
## 16900 794610 1
## 16901 794611 1
## 16902 794612 1
## 16903 794613 1
## 16904 794614 1
## 16905 794615 1
## 16906 794616 1
## 16907 794617 1
## 16908 794618 1
## 16909 794619 1
## 16910 794620 1
## 16911 794621 1
## 16912 794622 1
## 16913 794623 1
## 16914 794624 1
## 16915 794625 1
## 16916 794626 1
## 16917 794627 1
## 16918 794628 1
## 16919 794629 1
## 16920 794631 1
## 16921 794632 1
## 16922 794633 1
## 16923 794634 1
## 16924 794635 1
## 16925 794636 1
## 16926 794637 1
## 16927 794638 1
## 16928 794639 1
## 16929 794640 1
## 16930 794641 1
## 16931 794642 1
## 16932 794643 1
## 16933 794644 1
## 16934 794645 1
## 16935 794646 1
## 16936 794647 1
## 16937 794648 1
## 16938 794649 1
## 16939 794650 1
## 16940 794651 1
## 16941 794652 1
## 16942 794653 1
## 16943 794654 1
## 16944 794655 1
## 16945 794656 1
## 16946 794657 1
## 16947 794658 1
## 16948 794659 1
## 16949 794660 1
## 16950 794661 1
## 16951 794662 1
## 16952 794663 1
## 16953 794664 1
## 16954 794665 1
## 16955 794666 1
## 16956 794667 1
## 16957 794668 1
## 16958 794669 1
## 16959 794670 1
## 16960 794671 1
## 16961 794672 1
## 16962 794673 1
## 16963 794674 1
## 16964 794675 1
## 16965 794676 1
## 16966 794677 1
## 16967 794678 1
## 16968 794679 1
## 16969 794680 1
## 16970 794681 1
## 16971 794682 1
## 16972 794683 1
## 16973 794684 1
## 16974 794685 1
## 16975 794686 1
## 16976 794687 1
## 16977 794688 1
## 16978 794689 1
## 16979 794690 1
## 16980 794691 1
## 16981 794692 1
## 16982 794693 1
## 16983 794694 1
## 16984 794695 1
## 16985 794696 1
## 16986 794697 1
## 16987 794698 1
## 16988 794699 1
## 16989 794700 1
## 16990 794701 1
## 16991 794702 1
## 16992 794703 1
## 16993 794704 1
## 16994 794705 1
## 16995 794706 1
## 16996 794707 1
## 16997 794710 1
## 16998 794711 1
## 16999 794712 1
## 17000 794713 1
## 17001 794714 1
## 17002 794715 1
## 17003 794716 1
## 17004 794717 1
## 17005 794718 1
## 17006 794719 1
## 17007 794720 1
## 17008 794721 1
## 17009 794722 1
## 17010 794723 1
## 17011 794724 1
## 17012 794725 1
## 17013 794726 1
## 17014 794727 1
## 17015 794728 1
## 17016 794729 1
## 17017 794730 1
## 17018 794731 1
## 17019 794732 1
## 17020 794733 1
## 17021 794734 1
## 17022 794735 1
## 17023 794736 1
## 17024 794737 1
## 17025 794738 1
## 17026 794739 1
## 17027 794740 1
## 17028 794741 1
## 17029 794742 1
## 17030 794743 1
## 17031 794744 1
## 17032 794745 1
## 17033 794746 1
## 17034 794747 1
## 17035 794748 1
## 17036 794749 1
## 17037 794750 1
## 17038 794751 1
## 17039 794752 1
## 17040 794753 1
## 17041 794754 1
## 17042 794755 1
## 17043 794756 1
## 17044 794757 1
## 17045 794758 1
## 17046 794759 1
## 17047 794760 1
## 17048 794761 1
## 17049 794762 1
## 17050 794763 1
## 17051 794764 1
## 17052 794765 1
## 17053 794766 1
## 17054 794767 1
## 17055 794768 1
## 17056 794769 1
## 17057 794770 1
## 17058 794771 1
## 17059 794772 1
## 17060 794773 1
## 17061 794774 1
## 17062 794775 1
## 17063 794776 1
## 17064 794777 1
## 17065 794778 1
## 17066 794779 1
## 17067 794780 1
## 17068 794781 1
## 17069 794782 1
## 17070 794783 1
## 17071 794784 1
## 17072 794785 1
## 17073 794786 1
## 17074 794787 1
## 17075 794788 1
## 17076 794789 1
## 17077 794790 1
## 17078 794791 1
## 17079 794792 1
## 17080 794793 1
## 17081 794794 1
## 17082 794795 1
## 17083 794797 1
## 17084 794798 1
## 17085 794799 1
## 17086 794800 1
## 17087 794801 1
## 17088 794802 1
## 17089 794803 1
## 17090 794804 1
## 17091 794805 1
## 17092 794806 1
## 17093 794807 1
## 17094 794808 1
## 17095 794809 1
## 17096 794810 1
## 17097 794811 1
## 17098 794812 1
## 17099 794813 1
## 17100 794814 1
## 17101 794815 1
## 17102 794816 1
## 17103 794817 1
## 17104 794818 1
## 17105 794819 1
## 17106 794820 1
## 17107 794821 1
## 17108 794822 1
## 17109 794823 1
## 17110 794824 1
## 17111 794825 1
## 17112 794826 1
## 17113 794827 1
## 17114 794828 1
## 17115 794829 1
## 17116 794830 1
## 17117 794831 1
## 17118 794832 1
## 17119 794833 1
## 17120 794834 1
## 17121 794835 1
## 17122 794836 1
## 17123 794837 1
## 17124 794838 1
## 17125 794839 1
## 17126 794840 1
## 17127 794841 1
## 17128 794842 1
## 17129 794843 1
## 17130 794844 1
## 17131 794845 1
## 17132 794846 1
## 17133 794847 1
## 17134 794848 1
## 17135 794849 1
## 17136 794850 1
## 17137 794851 1
## 17138 794852 1
## 17139 794853 1
## 17140 794854 1
## 17141 794855 1
## 17142 794856 1
## 17143 794857 1
## 17144 794858 1
## 17145 794859 1
## 17146 794860 1
## 17147 794861 1
## 17148 794862 1
## 17149 794863 1
## 17150 794864 1
## 17151 794865 1
## 17152 794866 1
## 17153 794867 1
## 17154 794868 1
## 17155 794869 1
## 17156 794870 1
## 17157 794871 1
## 17158 794872 1
## 17159 794873 1
## 17160 794874 1
## 17161 794875 1
## 17162 794876 1
## 17163 794877 1
## 17164 794878 1
## 17165 794879 1
## 17166 794880 1
## 17167 794881 1
## 17168 794882 1
## 17169 794883 1
## 17170 794884 1
## 17171 794885 1
## 17172 794886 1
## 17173 794887 1
## 17174 794888 1
## 17175 794889 1
## 17176 794890 1
## 17177 794891 1
## 17178 794892 1
## 17179 794893 1
## 17180 794894 1
## 17181 794895 1
## 17182 794896 1
## 17183 794897 1
## 17184 794898 1
## 17185 794899 1
## 17186 794900 1
## 17187 794901 1
## 17188 794902 1
## 17189 794903 1
## 17190 794904 1
## 17191 794905 1
## 17192 794906 1
## 17193 794907 1
## 17194 794908 1
## 17195 794909 1
## 17196 794910 1
## 17197 794911 1
## 17198 794912 1
## 17199 794913 1
## 17200 794914 1
## 17201 794915 1
## 17202 794916 1
## 17203 794917 1
## 17204 794918 1
## 17205 794919 1
## 17206 794920 1
## 17207 794921 1
## 17208 794922 1
## 17209 794923 1
## 17210 794924 1
## 17211 794925 1
## 17212 794926 1
## 17213 794927 1
## 17214 794928 1
## 17215 794929 1
## 17216 794930 1
## 17217 794931 1
## 17218 794932 1
## 17219 794933 1
## 17220 794934 1
## 17221 794935 1
## 17222 794936 1
## 17223 794937 1
## 17224 794938 1
## 17225 794939 1
## 17226 794940 1
## 17227 794941 1
## 17228 794942 1
## 17229 794943 1
## 17230 794944 1
## 17231 794945 1
## 17232 794946 1
## 17233 794947 1
## 17234 794948 1
## 17235 794949 1
## 17236 794950 1
## 17237 794951 1
## 17238 794952 1
## 17239 794953 1
## 17240 794954 1
## 17241 794955 1
## 17242 794956 1
## 17243 794957 1
## 17244 794958 1
## 17245 794959 1
## 17246 794960 1
## 17247 794961 1
## 17248 794963 1
## 17249 794964 1
## 17250 794965 1
## 17251 794966 1
## 17252 794967 1
## 17253 794968 1
## 17254 794969 1
## 17255 794970 1
## 17256 794971 1
## 17257 794972 1
## 17258 794973 1
## 17259 794974 1
## 17260 794975 1
## 17261 794976 1
## 17262 794977 1
## 17263 794978 1
## 17264 794979 1
## 17265 794980 1
## 17266 794981 1
## 17267 794982 1
## 17268 794983 1
## 17269 794984 1
## 17270 794985 1
## 17271 794986 1
## 17272 794987 1
## 17273 794988 1
## 17274 794989 1
## 17275 794990 1
## 17276 794991 1
## 17277 794992 1
## 17278 794993 1
## 17279 794994 1
## 17280 794995 1
## 17281 794996 1
## 17282 794997 1
## 17283 794998 1
## 17284 794999 1
## 17285 795000 1
## 17286 795001 1
## 17287 795002 1
## 17288 795003 1
## 17289 795004 1
## 17290 795005 1
## 17291 795006 1
## 17292 795007 1
## 17293 795008 1
## 17294 795009 1
## 17295 795010 1
## 17296 795011 1
## 17297 795012 1
## 17298 795013 1
## 17299 795015 1
## 17300 795016 1
## 17301 795017 1
## 17302 795018 1
## 17303 795019 1
## 17304 795020 1
## 17305 795021 1
## 17306 795022 1
## 17307 795023 1
## 17308 795024 1
## 17309 795026 1
## 17310 795027 1
## 17311 795028 1
## 17312 795029 1
## 17313 795030 1
## 17314 795031 1
## 17315 795032 1
## 17316 795033 1
## 17317 795034 1
## 17318 795035 1
## 17319 795036 1
## 17320 795037 1
## 17321 795038 1
## 17322 795039 1
## 17323 795040 1
## 17324 795041 1
## 17325 795042 1
## 17326 795043 1
## 17327 795044 1
## 17328 795045 1
## 17329 795046 1
## 17330 795047 1
## 17331 795048 1
## 17332 795049 1
## 17333 795050 1
## 17334 795051 1
## 17335 795052 1
## 17336 795053 1
## 17337 795054 1
## 17338 795055 1
## 17339 795056 1
## 17340 795057 1
## 17341 795058 1
## 17342 795059 1
## 17343 795060 1
## 17344 795061 1
## 17345 795062 1
## 17346 795063 1
## 17347 795064 1
## 17348 795065 1
## 17349 795066 1
## 17350 795067 1
## 17351 795068 1
## 17352 795069 1
## 17353 795070 1
## 17354 795071 1
## 17355 795072 1
## 17356 795073 1
## 17357 795074 1
## 17358 795075 1
## 17359 795076 1
## 17360 795077 1
## 17361 795078 1
## 17362 795079 1
## 17363 795080 1
## 17364 795081 1
## 17365 795082 1
## 17366 795083 1
## 17367 795084 1
## 17368 795085 1
## 17369 795086 1
## 17370 795087 1
## 17371 795088 1
## 17372 795089 1
## 17373 795090 1
## 17374 795091 1
## 17375 795092 1
## 17376 795093 1
## 17377 795094 1
## 17378 795095 1
## 17379 795096 1
## 17380 795097 1
## 17381 795098 1
## 17382 795099 1
## 17383 795100 1
## 17384 795101 1
## 17385 795102 1
## 17386 795103 1
## 17387 795104 1
## 17388 795105 1
## 17389 795106 1
## 17390 795107 1
## 17391 795108 1
## 17392 795109 1
## 17393 795110 1
## 17394 795111 1
## 17395 795112 1
## 17396 795113 1
## 17397 795114 1
## 17398 795115 1
## 17399 795116 1
## 17400 795117 1
## 17401 795118 1
## 17402 795119 1
## 17403 795120 1
## 17404 795121 1
## 17405 795122 1
## 17406 795123 1
## 17407 795124 1
## 17408 795125 1
## 17409 795126 1
## 17410 795127 1
## 17411 795128 1
## 17412 795129 1
## 17413 795130 1
## 17414 795131 1
## 17415 795132 1
## 17416 795133 1
## 17417 795134 1
## 17418 795135 1
## 17419 795136 1
## 17420 795137 1
## 17421 795138 1
## 17422 795139 1
## 17423 795140 1
## 17424 795141 1
## 17425 795142 1
## 17426 795143 1
## 17427 795144 1
## 17428 795145 1
## 17429 795146 1
## 17430 795147 1
## 17431 795148 1
## 17432 795149 1
## 17433 795150 1
## 17434 795151 1
## 17435 795152 1
## 17436 795153 1
## 17437 795154 1
## 17438 795155 1
## 17439 795156 1
## 17440 795157 1
## 17441 795158 1
## 17442 795159 1
## 17443 795160 1
## 17444 795161 1
## 17445 795162 1
## 17446 795163 1
## 17447 795164 1
## 17448 795165 1
## 17449 795166 1
## 17450 795167 1
## 17451 795168 1
## 17452 795169 1
## 17453 795170 1
## 17454 795171 1
## 17455 795172 1
## 17456 795173 1
## 17457 795174 1
## 17458 795175 1
## 17459 795176 1
## 17460 795177 1
## 17461 795178 1
## 17462 795179 1
## 17463 795180 1
## 17464 795181 1
## 17465 795182 1
## 17466 795183 1
## 17467 795184 1
## 17468 795185 1
## 17469 795186 1
## 17470 795187 1
## 17471 795188 1
## 17472 795189 1
## 17473 795190 1
## 17474 795191 1
## 17475 795192 1
## 17476 795193 1
## 17477 795194 1
## 17478 795195 1
## 17479 795196 1
## 17480 795197 1
## 17481 795198 1
## 17482 795199 1
## 17483 795200 1
## 17484 795201 1
## 17485 795202 1
## 17486 795203 1
## 17487 795204 1
## 17488 795205 1
## 17489 795206 1
## 17490 795207 1
## 17491 795208 1
## 17492 795209 1
## 17493 795210 1
## 17494 795211 1
## 17495 795212 1
## 17496 795213 1
## 17497 795214 1
## 17498 795215 1
## 17499 795216 1
## 17500 795217 1
## 17501 795218 1
## 17502 795219 1
## 17503 795220 1
## 17504 795221 1
## 17505 795222 1
## 17506 795223 1
## 17507 795224 1
## 17508 795225 1
## 17509 795226 1
## 17510 795227 1
## 17511 795228 1
## 17512 795229 1
## 17513 795230 1
## 17514 795231 1
## 17515 795232 1
## 17516 795233 1
## 17517 795234 1
## 17518 795235 1
## 17519 795236 1
## 17520 795237 1
## 17521 795238 1
## 17522 795239 1
## 17523 795240 1
## 17524 795241 1
## 17525 795242 1
## 17526 795243 1
## 17527 795244 1
## 17528 795245 1
## 17529 795246 1
## 17530 795247 1
## 17531 795248 1
## 17532 795250 1
## 17533 795251 1
## 17534 795252 1
## 17535 795253 1
## 17536 795254 1
## 17537 795255 1
## 17538 795256 1
## 17539 795257 1
## 17540 795258 1
## 17541 795259 1
## 17542 795260 1
## 17543 795261 1
## 17544 795262 1
## 17545 795263 1
## 17546 795264 1
## 17547 795265 1
## 17548 795266 1
## 17549 795267 1
## 17550 795268 1
## 17551 795269 1
## 17552 795270 1
## 17553 795271 1
## 17554 795272 1
## 17555 795273 1
## 17556 795274 1
## 17557 795275 1
## 17558 795276 1
## 17559 795277 1
## 17560 795278 1
## 17561 795279 1
## 17562 795280 1
## 17563 795281 1
## 17564 795282 1
## 17565 795283 1
## 17566 795284 1
## 17567 795285 1
## 17568 795286 1
## 17569 795287 1
## 17570 795288 1
## 17571 795289 1
## 17572 795290 1
## 17573 795291 1
## 17574 795292 1
## 17575 795293 1
## 17576 795294 1
## 17577 795295 1
## 17578 795296 1
## 17579 795297 1
## 17580 795299 1
## 17581 795300 1
## 17582 795301 1
## 17583 795302 1
## 17584 795303 1
## 17585 795304 1
## 17586 795305 1
## 17587 795306 1
## 17588 795307 1
## 17589 795308 1
## 17590 795309 1
## 17591 795310 1
## 17592 795311 1
## 17593 795312 1
## 17594 795313 1
## 17595 795314 1
## 17596 795315 1
## 17597 795316 1
## 17598 795317 1
## 17599 795318 1
## 17600 795319 1
## 17601 795320 1
## 17602 795321 1
## 17603 795322 1
## 17604 795323 1
## 17605 795324 1
## 17606 795325 1
## 17607 795326 1
## 17608 795327 1
## 17609 795328 1
## 17610 795329 1
## 17611 795330 1
## 17612 795331 1
## 17613 795332 1
## 17614 795333 1
## 17615 795334 1
## 17616 795335 1
## 17617 795336 1
## 17618 795337 1
## 17619 795338 1
## 17620 795339 1
## 17621 795340 1
## 17622 795341 1
## 17623 795342 1
## 17624 795343 1
## 17625 795344 1
## 17626 795345 1
## 17627 795346 1
## 17628 795347 1
## 17629 795348 1
## 17630 795349 1
## 17631 795350 1
## 17632 795351 1
## 17633 795352 1
## 17634 795353 1
## 17635 795354 1
## 17636 795355 1
## 17637 795356 1
## 17638 795357 1
## 17639 795358 1
## 17640 795359 1
## 17641 795360 1
## 17642 795361 1
## 17643 795362 1
## 17644 795363 1
## 17645 795364 1
## 17646 795365 1
## 17647 795366 1
## 17648 795367 1
## 17649 795368 1
## 17650 795369 1
## 17651 795370 1
## 17652 795371 1
## 17653 795372 1
## 17654 795373 1
## 17655 795374 1
## 17656 795375 1
## 17657 795376 1
## 17658 795377 1
## 17659 795378 1
## 17660 795379 1
## 17661 795380 1
## 17662 795381 1
## 17663 795382 1
## 17664 795383 1
## 17665 795384 1
## 17666 795385 1
## 17667 795386 1
## 17668 795387 1
## 17669 795388 1
## 17670 795389 1
## 17671 795390 1
## 17672 795391 1
## 17673 795392 1
## 17674 795393 1
## 17675 795394 1
## 17676 795395 1
## 17677 795396 1
## 17678 795397 1
## 17679 795398 1
## 17680 795399 1
## 17681 795400 1
## 17682 795401 1
## 17683 795402 1
## 17684 795403 1
## 17685 795404 1
## 17686 795405 1
## 17687 795406 1
## 17688 795407 1
## 17689 795408 1
## 17690 795409 1
## 17691 795410 1
## 17692 795411 1
## 17693 795412 1
## 17694 795413 1
## 17695 795414 1
## 17696 795415 1
## 17697 795416 1
## 17698 795417 1
## 17699 795418 1
## 17700 795419 1
## 17701 795420 1
## 17702 795421 1
## 17703 795422 1
## 17704 795423 1
## 17705 795424 1
## 17706 795425 1
## 17707 795426 1
## 17708 795427 1
## 17709 795428 1
## 17710 795429 1
## 17711 795430 1
## 17712 795431 1
## 17713 795432 1
## 17714 795433 1
## 17715 795434 1
## 17716 795435 1
## 17717 795436 1
## 17718 795437 1
## 17719 795438 1
## 17720 795439 1
## 17721 795440 1
## 17722 795441 1
## 17723 795442 1
## 17724 795443 1
## 17725 795444 1
## 17726 795445 1
## 17727 795446 1
## 17728 795447 1
## 17729 795448 1
## 17730 795449 1
## 17731 795450 1
## 17732 795451 1
## 17733 795452 1
## 17734 795453 1
## 17735 795454 1
## 17736 795455 1
## 17737 795456 1
## 17738 795457 1
## 17739 795458 1
## 17740 795459 1
## 17741 795460 1
## 17742 795461 1
## 17743 795462 1
## 17744 795463 1
## 17745 795464 1
## 17746 795465 1
## 17747 795466 1
## 17748 795467 1
## 17749 795468 1
## 17750 795469 1
## 17751 795470 1
## 17752 795471 1
## 17753 795472 1
## 17754 795473 1
## 17755 795474 1
## 17756 795475 1
## 17757 795476 1
## 17758 795477 1
## 17759 795478 1
## 17760 795479 1
## 17761 795480 1
## 17762 795481 1
## 17763 795482 1
## 17764 795483 1
## 17765 795484 1
## 17766 795485 1
## 17767 795486 1
## 17768 795487 1
## 17769 795488 1
## 17770 795489 1
## 17771 795490 1
## 17772 795491 1
## 17773 795492 1
## 17774 795493 1
## 17775 795494 1
## 17776 795495 1
## 17777 795496 1
## 17778 795497 1
## 17779 795498 1
## 17780 795499 1
## 17781 795500 1
## 17782 795501 1
## 17783 795502 1
## 17784 795503 1
## 17785 795504 1
## 17786 795505 1
## 17787 795506 1
## 17788 795507 1
## 17789 795508 1
## 17790 795509 1
## 17791 795510 1
## 17792 795511 1
## 17793 795512 1
## 17794 795513 1
## 17795 795514 1
## 17796 795515 1
## 17797 795516 1
## 17798 795517 1
## 17799 795518 1
## 17800 795519 1
## 17801 795520 1
## 17802 795521 1
## 17803 795522 1
## 17804 795523 1
## 17805 795524 1
## 17806 795525 1
## 17807 795526 1
## 17808 795527 1
## 17809 795528 1
## 17810 795529 1
## 17811 795530 1
## 17812 795531 1
## 17813 795532 1
## 17814 795533 1
## 17815 795534 1
## 17816 795535 1
## 17817 795536 1
## 17818 795537 1
## 17819 795538 1
## 17820 795539 1
## 17821 795540 1
## 17822 795541 1
## 17823 795542 1
## 17824 795543 1
## 17825 795544 1
## 17826 795545 1
## 17827 795546 1
## 17828 795547 1
## 17829 795548 1
## 17830 795549 1
## 17831 795550 1
## 17832 795551 1
## 17833 795552 1
## 17834 795553 1
## 17835 795554 1
## 17836 795555 1
## 17837 795556 1
## 17838 795557 1
## 17839 795558 1
## 17840 795559 1
## 17841 795560 1
## 17842 795561 1
## 17843 795562 1
## 17844 795563 1
## 17845 795564 1
## 17846 795565 1
## 17847 795566 1
## 17848 795567 1
## 17849 795568 1
## 17850 795569 1
## 17851 795570 1
## 17852 795571 1
## 17853 795572 1
## 17854 795573 1
## 17855 795574 1
## 17856 795575 1
## 17857 795576 1
## 17858 795577 1
## 17859 795578 1
## 17860 795579 1
## 17861 795580 1
## 17862 795581 1
## 17863 795582 1
## 17864 795583 1
## 17865 795584 1
## 17866 795585 1
## 17867 795586 1
## 17868 795587 1
## 17869 795588 1
## 17870 795589 1
## 17871 795590 1
## 17872 795591 1
## 17873 795592 1
## 17874 795593 1
## 17875 795594 1
## 17876 795595 1
## 17877 795596 1
## 17878 795597 1
## 17879 795598 1
## 17880 795599 1
## 17881 795600 1
## 17882 795602 1
## 17883 795603 1
## 17884 795604 1
## 17885 795605 1
## 17886 795606 1
## 17887 795607 1
## 17888 795608 1
## 17889 795609 1
## 17890 795610 1
## 17891 795611 1
## 17892 795612 1
## 17893 795613 1
## 17894 795614 1
## 17895 795615 1
## 17896 795616 1
## 17897 795617 1
## 17898 795618 1
## 17899 795619 1
## 17900 795620 1
## 17901 795621 1
## 17902 795622 1
## 17903 795623 1
## 17904 795624 1
## 17905 795625 1
## 17906 795626 1
## 17907 795627 1
## 17908 795628 1
## 17909 795629 1
## 17910 795630 1
## 17911 795631 1
## 17912 795632 1
## 17913 795633 1
## 17914 795634 1
## 17915 795635 1
## 17916 795636 1
## 17917 795637 1
## 17918 795638 1
## 17919 795639 1
## 17920 795640 1
## 17921 795641 1
## 17922 795642 1
## 17923 795643 1
## 17924 795644 1
## 17925 795645 1
## 17926 795646 1
## 17927 795647 1
## 17928 795648 1
## 17929 795649 1
## 17930 795650 1
## 17931 795651 1
## 17932 795652 1
## 17933 795653 1
## 17934 795654 1
## 17935 795655 1
## 17936 795656 1
## 17937 795657 1
## 17938 795658 1
## 17939 795659 1
## 17940 795660 1
## 17941 795661 1
## 17942 795662 1
## 17943 795663 1
## 17944 795664 1
## 17945 795665 1
## 17946 795666 1
## 17947 795667 1
## 17948 795668 1
## 17949 795669 1
## 17950 795670 1
## 17951 795671 1
## 17952 795672 1
## 17953 795673 1
## 17954 795674 1
## 17955 795675 1
## 17956 795676 1
## 17957 795677 1
## 17958 795678 1
## 17959 795679 1
## 17960 795680 1
## 17961 795681 1
## 17962 795682 1
## 17963 795683 1
## 17964 795684 1
## 17965 795685 1
## 17966 795686 1
## 17967 795687 1
## 17968 795688 1
## 17969 795689 1
## 17970 795690 1
## 17971 795691 1
## 17972 795692 1
## 17973 795693 1
## 17974 795694 1
## 17975 795695 1
## 17976 795696 1
## 17977 795697 1
## 17978 795698 1
## 17979 795699 1
## 17980 795700 1
## 17981 795701 1
## 17982 795702 1
## 17983 795703 1
## 17984 795704 1
## 17985 795705 1
## 17986 795706 1
## 17987 795707 1
## 17988 795708 1
## 17989 795709 1
## 17990 795710 1
## 17991 795711 1
## 17992 795712 1
## 17993 795713 1
## 17994 795714 1
## 17995 795715 1
## 17996 795716 1
## 17997 795717 1
## 17998 795718 1
## 17999 795719 1
## 18000 795720 1
## 18001 795721 1
## 18002 795722 1
## 18003 795723 1
## 18004 795724 1
## 18005 795725 1
## 18006 795726 1
## 18007 795727 1
## 18008 795728 1
## 18009 795729 1
## 18010 795730 1
## 18011 795731 1
## 18012 795732 1
## 18013 795733 1
## 18014 795734 1
## 18015 795735 1
## 18016 795736 1
## 18017 795737 1
## 18018 795738 1
## 18019 795739 1
## 18020 795740 1
## 18021 795741 1
## 18022 795742 1
## 18023 795743 1
## 18024 795744 1
## 18025 795745 1
## 18026 795746 1
## 18027 795747 1
## 18028 795748 1
## 18029 795749 1
## 18030 795750 1
## 18031 795751 1
## 18032 795752 1
## 18033 795753 1
## 18034 795754 1
## 18035 795755 1
## 18036 795756 1
## 18037 795757 1
## 18038 795758 1
## 18039 795759 1
## 18040 795760 1
## 18041 795761 1
## 18042 795762 1
## 18043 795763 1
## 18044 795764 1
## 18045 795765 1
## 18046 795766 1
## 18047 795767 1
## 18048 795768 1
## 18049 795769 1
## 18050 795770 1
## 18051 795771 1
## 18052 795772 1
## 18053 795773 1
## 18054 795774 1
## 18055 795775 1
## 18056 795776 1
## 18057 795777 1
## 18058 795778 1
## 18059 795779 1
## 18060 795780 1
## 18061 795781 1
## 18062 795782 1
## 18063 795783 1
## 18064 795784 1
## 18065 795785 1
## 18066 795786 1
## 18067 795787 1
## 18068 795788 1
## 18069 795789 1
## 18070 795790 1
## 18071 795791 1
## 18072 795792 1
## 18073 795793 1
## 18074 795794 1
## 18075 795795 1
## 18076 795796 1
## 18077 795797 1
## 18078 795798 1
## 18079 795799 1
## 18080 795800 1
## 18081 795801 1
## 18082 795802 1
## 18083 795803 1
## 18084 795804 1
## 18085 795805 1
## 18086 795806 1
## 18087 795807 1
## 18088 795808 1
## 18089 795809 1
## 18090 795810 1
## 18091 795811 1
## 18092 795812 1
## 18093 795813 1
## 18094 795814 1
## 18095 795815 1
## 18096 795816 1
## 18097 795817 1
## 18098 795818 1
## 18099 795819 1
## 18100 795820 1
## 18101 795821 1
## 18102 795822 1
## 18103 795823 1
## 18104 795824 1
## 18105 795825 1
## 18106 795826 1
## 18107 795827 1
## 18108 795828 1
## 18109 795829 1
## 18110 795830 1
## 18111 795831 1
## 18112 795832 1
## 18113 795833 1
## 18114 795834 1
## 18115 795835 1
## 18116 795836 1
## 18117 795837 1
## 18118 795838 1
## 18119 795839 1
## 18120 795840 1
## 18121 795841 1
## 18122 795842 1
## 18123 795843 1
## 18124 795844 1
## 18125 795845 1
## 18126 795846 1
## 18127 795847 1
## 18128 795848 1
## 18129 795849 1
## 18130 795850 1
## 18131 795851 1
## 18132 795852 1
## 18133 795853 1
## 18134 795854 1
## 18135 795855 1
## 18136 795856 1
## 18137 795857 1
## 18138 795858 1
## 18139 795859 1
## 18140 795860 1
## 18141 795861 1
## 18142 795862 1
## 18143 795863 1
## 18144 795864 1
## 18145 795865 1
## 18146 795867 1
## 18147 795868 1
## 18148 795869 1
## 18149 795870 1
## 18150 795871 1
## 18151 795872 1
## 18152 795873 1
## 18153 795874 1
## 18154 795875 1
## 18155 795876 1
## 18156 795877 1
## 18157 795878 1
## 18158 795879 1
## 18159 795880 1
## 18160 795881 1
## 18161 795882 1
## 18162 795883 1
## 18163 795884 1
## 18164 795885 1
## 18165 795886 1
## 18166 795887 1
## 18167 795888 1
## 18168 795889 1
## 18169 795890 1
## 18170 795891 1
## 18171 795892 1
## 18172 795893 1
## 18173 795894 1
## 18174 795895 1
## 18175 795896 1
## 18176 795897 1
## 18177 795898 1
## 18178 795899 1
## 18179 795900 1
## 18180 795901 1
## 18181 795902 1
## 18182 795903 1
## 18183 795904 1
## 18184 795905 1
## 18185 795906 1
## 18186 795907 1
## 18187 795908 1
## 18188 795909 1
## 18189 795910 1
## 18190 795911 1
## 18191 795912 1
## 18192 795913 1
## 18193 795914 1
## 18194 795915 1
## 18195 795916 1
## 18196 795917 1
## 18197 795918 1
## 18198 795919 1
## 18199 795920 1
## 18200 795921 1
## 18201 795922 1
## 18202 795923 1
## 18203 795924 1
## 18204 795925 1
## 18205 795926 1
## 18206 795927 1
## 18207 795928 1
## 18208 795929 1
## 18209 795930 1
## 18210 795931 1
## 18211 795932 1
## 18212 795933 1
## 18213 795934 1
## 18214 795935 1
## 18215 795936 1
## 18216 795937 1
## 18217 795938 1
## 18218 795939 1
## 18219 795940 1
## 18220 795941 1
## 18221 795942 1
## 18222 795943 1
## 18223 795944 1
## 18224 795945 1
## 18225 795946 1
## 18226 795947 1
## 18227 795948 1
## 18228 795949 1
## 18229 795950 1
## 18230 795951 1
## 18231 795952 1
## 18232 795953 1
## 18233 795954 1
## 18234 795955 1
## 18235 795956 1
## 18236 795957 1
## 18237 795958 1
## 18238 795959 1
## 18239 795960 1
## 18240 795962 1
## 18241 795963 1
## 18242 795964 1
## 18243 795965 1
## 18244 795966 1
## 18245 795967 1
## 18246 795968 1
## 18247 795969 1
## 18248 795970 1
## 18249 795971 1
## 18250 795972 1
## 18251 795973 1
## 18252 795974 1
## 18253 795975 1
## 18254 795976 1
## 18255 795977 1
## 18256 795978 1
## 18257 795979 1
## 18258 795980 1
## 18259 795981 1
## 18260 795982 1
## 18261 795983 1
## 18262 795984 1
## 18263 795985 1
## 18264 795986 1
## 18265 795987 1
## 18266 795988 1
## 18267 795989 1
## 18268 795990 1
## 18269 795991 1
## 18270 795992 1
## 18271 795993 1
## 18272 795994 1
## 18273 795995 1
## 18274 795996 1
## 18275 795997 1
## 18276 795998 1
## 18277 795999 1
## 18278 796000 1
## 18279 796001 1
## 18280 796002 1
## 18281 796003 1
## 18282 796004 1
## 18283 796005 1
## 18284 796006 1
## 18285 796007 1
## 18286 796008 1
## 18287 796009 1
## 18288 796010 1
## 18289 796011 1
## 18290 796012 1
## 18291 796013 1
## 18292 796014 1
## 18293 796015 1
## 18294 796016 1
## 18295 796017 1
## 18296 796018 1
## 18297 796019 1
## 18298 796020 1
## 18299 796021 1
## 18300 796022 1
## 18301 796023 1
## 18302 796024 1
## 18303 796025 1
## 18304 796026 1
## 18305 796027 1
## 18306 796028 1
## 18307 796029 1
## 18308 796030 1
## 18309 796031 1
## 18310 796032 1
## 18311 796033 1
## 18312 796034 1
## 18313 796035 1
## 18314 796036 1
## 18315 796037 1
## 18316 796038 1
## 18317 796039 1
## 18318 796040 1
## 18319 796041 1
## 18320 796042 1
## 18321 796043 1
## 18322 796044 1
## 18323 796045 1
## 18324 796046 1
## 18325 796047 1
## 18326 796048 1
## 18327 796049 1
## 18328 796050 1
## 18329 796051 1
## 18330 796052 1
## 18331 796053 1
## 18332 796054 1
## 18333 796055 1
## 18334 796056 1
## 18335 796057 1
## 18336 796058 1
## 18337 796059 1
## 18338 796060 1
## 18339 796061 1
## 18340 796062 1
## 18341 796063 1
## 18342 796064 1
## 18343 796065 1
## 18344 796066 1
## 18345 796067 1
## 18346 796068 1
## 18347 796069 1
## 18348 796070 1
## 18349 796071 1
## 18350 796072 1
## 18351 796073 1
## 18352 796074 1
## 18353 796075 1
## 18354 796076 1
## 18355 796077 1
## 18356 796078 1
## 18357 796079 1
## 18358 796080 1
## 18359 796081 1
## 18360 796082 1
## 18361 796083 1
## 18362 796084 1
## 18363 796085 1
## 18364 796086 1
## 18365 796087 1
## 18366 796088 1
## 18367 796089 1
## 18368 796090 1
## 18369 796091 1
## 18370 796092 1
## 18371 796093 1
## 18372 796094 1
## 18373 796095 1
## 18374 796096 1
## 18375 796097 1
## 18376 796098 1
## 18377 796099 1
## 18378 796100 1
## 18379 796101 1
## 18380 796102 1
## 18381 796103 1
## 18382 796104 1
## 18383 796105 1
## 18384 796106 1
## 18385 796107 1
## 18386 796108 1
## 18387 796109 1
## 18388 796110 1
## 18389 796111 1
## 18390 796112 1
## 18391 796113 1
## 18392 796114 1
## 18393 796115 1
## 18394 796116 1
## 18395 796117 1
## 18396 796118 1
## 18397 796119 1
## 18398 796120 1
## 18399 796121 1
## 18400 796122 1
## 18401 796123 1
## 18402 796124 1
## 18403 796125 1
## 18404 796126 1
## 18405 796127 1
## 18406 796128 1
## 18407 796129 1
## 18408 796130 1
## 18409 796131 1
## 18410 796132 1
## 18411 796133 1
## 18412 796134 1
## 18413 796135 1
## 18414 796136 1
## 18415 796137 1
## 18416 796138 1
## 18417 796139 1
## 18418 796140 1
## 18419 796141 1
## 18420 796142 1
## 18421 796143 1
## 18422 796144 1
## 18423 796145 1
## 18424 796146 1
## 18425 796147 1
## 18426 796148 1
## 18427 796149 1
## 18428 796150 1
## 18429 796151 1
## 18430 796152 1
## 18431 796153 1
## 18432 796154 1
## 18433 796155 1
## 18434 796156 1
## 18435 796157 1
## 18436 796158 1
## 18437 796159 1
## 18438 796160 1
## 18439 796161 1
## 18440 796162 1
## 18441 796163 1
## 18442 796164 1
## 18443 796165 1
## 18444 796166 1
## 18445 796167 1
## 18446 796168 1
## 18447 796169 1
## 18448 796170 1
## 18449 796171 1
## 18450 796172 1
## 18451 796173 1
## 18452 796174 1
## 18453 796175 1
## 18454 796176 1
## 18455 796177 1
## 18456 796178 1
## 18457 796179 1
## 18458 796180 1
## 18459 796181 1
## 18460 796182 1
## 18461 796183 1
## 18462 796184 1
## 18463 796185 1
## 18464 796186 1
## 18465 796187 1
## 18466 796188 1
## 18467 796189 1
## 18468 796190 1
## 18469 796191 1
## 18470 796192 1
## 18471 796193 1
## 18472 796194 1
## 18473 796195 1
## 18474 796196 1
## 18475 796197 1
## 18476 796198 1
## 18477 796199 1
## 18478 796200 1
## 18479 796201 1
## 18480 796202 1
## 18481 796203 1
## 18482 796204 1
## 18483 796205 1
## 18484 796206 1
## 18485 796207 1
## 18486 796208 1
## 18487 796209 1
## 18488 796210 1
## 18489 796211 1
## 18490 796212 1
## 18491 796213 1
## 18492 796214 1
## 18493 796215 1
## 18494 796216 1
## 18495 796217 1
## 18496 796218 1
## 18497 796219 1
## 18498 796220 1
## 18499 796221 1
## 18500 796222 1
## 18501 796223 1
## 18502 796224 1
## 18503 796225 1
## 18504 796226 1
## 18505 796227 1
## 18506 796228 1
## 18507 796229 1
## 18508 796230 1
## 18509 796231 1
## 18510 796232 1
## 18511 796233 1
## 18512 796234 1
## 18513 796235 1
## 18514 796236 1
## 18515 796237 1
## 18516 796238 1
## 18517 796239 1
## 18518 796240 1
## 18519 796241 1
## 18520 796242 1
## 18521 796243 1
## 18522 796244 1
## 18523 796245 1
## 18524 796246 1
## 18525 796247 1
## 18526 796248 1
## 18527 796249 1
## 18528 796250 1
## 18529 796251 1
## 18530 796252 1
## 18531 796253 1
## 18532 796254 1
## 18533 796255 1
## 18534 796256 1
## 18535 796257 1
## 18536 796258 1
## 18537 796259 1
## 18538 796260 1
## 18539 796261 1
## 18540 796262 1
## 18541 796263 1
## 18542 796264 1
## 18543 796265 1
## 18544 796266 1
## 18545 796267 1
## 18546 796268 1
## 18547 796269 1
## 18548 796270 1
## 18549 796271 1
## 18550 796272 1
## 18551 796273 1
## 18552 796274 1
## 18553 796275 1
## 18554 796276 1
## 18555 796277 1
## 18556 796278 1
## 18557 796279 1
## 18558 796280 1
## 18559 796281 1
## 18560 796282 1
## 18561 796283 1
## 18562 796284 1
## 18563 796285 1
## 18564 796286 1
## 18565 796287 1
## 18566 796288 1
## 18567 796289 1
## 18568 796290 1
## 18569 796291 1
## 18570 796292 1
## 18571 796293 1
## 18572 796294 1
## 18573 796295 1
## 18574 796296 1
## 18575 796297 1
## 18576 796298 1
## 18577 796299 1
## 18578 796300 1
## 18579 796301 1
## 18580 796302 1
## 18581 796303 1
## 18582 796304 1
## 18583 796305 1
## 18584 796306 1
## 18585 796307 1
## 18586 796308 1
## 18587 796309 1
## 18588 796310 1
## 18589 796311 1
## 18590 796312 1
## 18591 796313 1
## 18592 796314 1
## 18593 796315 1
## 18594 796316 1
## 18595 796317 1
## 18596 796318 1
## 18597 796319 1
## 18598 796320 1
## 18599 796321 1
## 18600 796322 1
## 18601 796323 1
## 18602 796324 1
## 18603 796325 1
## 18604 796327 1
## 18605 796328 1
## 18606 796329 1
## 18607 796330 1
## 18608 796331 1
## 18609 796332 1
## 18610 796333 1
## 18611 796334 1
## 18612 796335 1
## 18613 796336 1
## 18614 796337 1
## 18615 796338 1
## 18616 796339 1
## 18617 796340 1
## 18618 796341 1
## 18619 796342 1
## 18620 796343 1
## 18621 796344 1
## 18622 796345 1
## 18623 796346 1
## 18624 796347 1
## 18625 796348 1
## 18626 796349 1
## 18627 796350 1
## 18628 796351 1
## 18629 796352 1
## 18630 796353 1
## 18631 796354 1
## 18632 796355 1
## 18633 796356 1
## 18634 796357 1
## 18635 796358 1
## 18636 796359 1
## 18637 796360 1
## 18638 796361 1
## 18639 796362 1
## 18640 796363 1
## 18641 796364 1
## 18642 796365 1
## 18643 796366 1
## 18644 796367 1
## 18645 796368 1
## 18646 796369 1
## 18647 796370 1
## 18648 796371 1
## 18649 796372 1
## 18650 796373 1
## 18651 796374 1
## 18652 796375 1
## 18653 796376 1
## 18654 796377 1
## 18655 796378 1
## 18656 796379 1
## 18657 796380 1
## 18658 796381 1
## 18659 796382 1
## 18660 796383 1
## 18661 796384 1
## 18662 796385 1
## 18663 796386 1
## 18664 796387 1
## 18665 796388 1
## 18666 796389 1
## 18667 796390 1
## 18668 796391 1
## 18669 796392 1
## 18670 796393 1
## 18671 796394 1
## 18672 796395 1
## 18673 796396 1
## 18674 796397 1
## 18675 796398 1
## 18676 796399 1
## 18677 796400 1
## 18678 796401 1
## 18679 796402 1
## 18680 796403 1
## 18681 796404 1
## 18682 796405 1
## 18683 796406 1
## 18684 796407 1
## 18685 796408 1
## 18686 796409 1
## 18687 796411 1
## 18688 796412 1
## 18689 796413 1
## 18690 796414 1
## 18691 796415 1
## 18692 796416 1
## 18693 796417 1
## 18694 796418 1
## 18695 796419 1
## 18696 796420 1
## 18697 796421 1
## 18698 796422 1
## 18699 796423 1
## 18700 796424 1
## 18701 796425 1
## 18702 796426 1
## 18703 796427 1
## 18704 796428 1
## 18705 796429 1
## 18706 796430 1
## 18707 796431 1
## 18708 796432 1
## 18709 796433 1
## 18710 796434 1
## 18711 796435 1
## 18712 796436 1
## 18713 796437 1
## 18714 796438 1
## 18715 796439 1
## 18716 796440 1
## 18717 796441 1
## 18718 796442 1
## 18719 796443 1
## 18720 796444 1
## 18721 796445 1
## 18722 796446 1
## 18723 796447 1
## 18724 796448 1
## 18725 796449 1
## 18726 796450 1
## 18727 796451 1
## 18728 796452 1
## 18729 796453 1
## 18730 796454 1
## 18731 796455 1
## 18732 796456 1
## 18733 796457 1
## 18734 796458 1
## 18735 796459 1
## 18736 796460 1
## 18737 796461 1
## 18738 796462 1
## 18739 796463 1
## 18740 796464 1
## 18741 796465 1
## 18742 796466 1
## 18743 796467 1
## 18744 796468 1
## 18745 796469 1
## 18746 796470 1
## 18747 796471 1
## 18748 796472 1
## 18749 796473 1
## 18750 796474 1
## 18751 796475 1
## 18752 796476 1
## 18753 796477 1
## 18754 796478 1
## 18755 796479 1
## 18756 796480 1
## 18757 796481 1
## 18758 796482 1
## 18759 796483 1
## 18760 796484 1
## 18761 796485 1
## 18762 796486 1
## 18763 796487 1
## 18764 796488 1
## 18765 796489 1
## 18766 796490 1
## 18767 796491 1
## 18768 796492 1
## 18769 796493 1
## 18770 796494 1
## 18771 796495 1
## 18772 796496 1
## 18773 796497 1
## 18774 796498 1
## 18775 796499 1
## 18776 796500 1
## 18777 796501 1
## 18778 796502 1
## 18779 796503 1
## 18780 796504 1
## 18781 796505 1
## 18782 796506 1
## 18783 796507 1
## 18784 796508 1
## 18785 796509 1
## 18786 796510 1
## 18787 796511 1
## 18788 796512 1
## 18789 796513 1
## 18790 796514 1
## 18791 796515 1
## 18792 796516 1
## 18793 796517 1
## 18794 796518 1
## 18795 796519 1
## 18796 796520 1
## 18797 796521 1
## 18798 796522 1
## 18799 796523 1
## 18800 796524 1
## 18801 796525 1
## 18802 796526 1
## 18803 796527 1
## 18804 796528 1
## 18805 796529 1
## 18806 796530 1
## 18807 796531 1
## 18808 796532 1
## 18809 796533 1
## 18810 796534 1
## 18811 796535 1
## 18812 796536 1
## 18813 796537 1
## 18814 796538 1
## 18815 796539 1
## 18816 796540 1
## 18817 796541 1
## 18818 796542 1
## 18819 796543 1
## 18820 796544 1
## 18821 796545 1
## 18822 796546 1
## 18823 796547 1
## 18824 796548 1
## 18825 796549 1
## 18826 796550 1
## 18827 796551 1
## 18828 796552 1
## 18829 796553 1
## 18830 796554 1
## 18831 796555 1
## 18832 796556 1
## 18833 796557 1
## 18834 796558 1
## 18835 796559 1
## 18836 796560 1
## 18837 796561 1
## 18838 796562 1
## 18839 796563 1
## 18840 796564 1
## 18841 796565 1
## 18842 796566 1
## 18843 796567 1
## 18844 796568 1
## 18845 796569 1
## 18846 796570 1
## 18847 796571 1
## 18848 796572 1
## 18849 796573 1
## 18850 796574 1
## 18851 796575 1
## 18852 796576 1
## 18853 796577 1
## 18854 796578 1
## 18855 796579 1
## 18856 796580 1
## 18857 796581 1
## 18858 796582 1
## 18859 796583 1
## 18860 796584 1
## 18861 796585 1
## 18862 796586 1
## 18863 796587 1
## 18864 796588 1
## 18865 796589 1
## 18866 796590 1
## 18867 796591 1
## 18868 796592 1
## 18869 796593 1
## 18870 796594 1
## 18871 796595 1
## 18872 796596 1
## 18873 796597 1
## 18874 796598 1
## 18875 796599 1
## 18876 796600 1
## 18877 796601 1
## 18878 796602 1
## 18879 796603 1
## 18880 796604 1
## 18881 796605 1
## 18882 796606 1
## 18883 796607 1
## 18884 796608 1
## 18885 796609 1
## 18886 796610 1
## 18887 796611 1
## 18888 796612 1
## 18889 796613 1
## 18890 796614 1
## 18891 796615 1
## 18892 796616 1
## 18893 796617 1
## 18894 796618 1
## 18895 796619 1
## 18896 796620 1
## 18897 796621 1
## 18898 796622 1
## 18899 796623 1
## 18900 796624 1
## 18901 796625 1
## 18902 796626 1
## 18903 796627 1
## 18904 796628 1
## 18905 796629 1
## 18906 796630 1
## 18907 796631 1
## 18908 796632 1
## 18909 796633 1
## 18910 796634 1
## 18911 796635 1
## 18912 796636 1
## 18913 796637 1
## 18914 796638 1
## 18915 796639 1
## 18916 796640 1
## 18917 796641 1
## 18918 796642 1
## 18919 796643 1
## 18920 796644 1
## 18921 796645 1
## 18922 796646 1
## 18923 796647 1
## 18924 796648 1
## 18925 796649 1
## 18926 796650 1
## 18927 796651 1
## 18928 796652 1
## 18929 796653 1
## 18930 796654 1
## 18931 796655 1
## 18932 796656 1
## 18933 796657 1
## 18934 796658 1
## 18935 796659 1
## 18936 796660 1
## 18937 796661 1
## 18938 796662 1
## 18939 796663 1
## 18940 796664 1
## 18941 796665 1
## 18942 796666 1
## 18943 796667 1
## 18944 796668 1
## 18945 796669 1
## 18946 796670 1
## 18947 796671 1
## 18948 796672 1
## 18949 796673 1
## 18950 796674 1
## 18951 796675 1
## 18952 796676 1
## 18953 796677 1
## 18954 796678 1
## 18955 796679 1
## 18956 796680 1
## 18957 796681 1
## 18958 796682 1
## 18959 796683 1
## 18960 796684 1
## 18961 796685 1
## 18962 796686 1
## 18963 796687 1
## 18964 796688 1
## 18965 796689 1
## 18966 796690 1
## 18967 796691 1
## 18968 796692 1
## 18969 796693 1
## 18970 796694 1
## 18971 796695 1
## 18972 796696 1
## 18973 796697 1
## 18974 796698 1
## 18975 796699 1
## 18976 796700 1
## 18977 796701 1
## 18978 796702 1
## 18979 796703 1
## 18980 796704 1
## 18981 796705 1
## 18982 796706 1
## 18983 796708 1
## 18984 796709 1
## 18985 796710 1
## 18986 796711 1
## 18987 796712 1
## 18988 796713 1
## 18989 796714 1
## 18990 796715 1
## 18991 796716 1
## 18992 796717 1
## 18993 796718 1
## 18994 796719 1
## 18995 796721 1
## 18996 796722 1
## 18997 796723 1
## 18998 796724 1
## 18999 796725 1
## 19000 796726 1
## 19001 796727 1
## 19002 796728 1
## 19003 796729 1
## 19004 796730 1
## 19005 796731 1
## 19006 796732 1
## 19007 796733 1
## 19008 796734 1
## 19009 796735 1
## 19010 796736 1
## 19011 796737 1
## 19012 796738 1
## 19013 796739 1
## 19014 796740 1
## 19015 796741 1
## 19016 796742 1
## 19017 796743 1
## 19018 796744 1
## 19019 796745 1
## 19020 796746 1
## 19021 796747 1
## 19022 796748 1
## 19023 796749 1
## 19024 796750 1
## 19025 796751 1
## 19026 796752 1
## 19027 796753 1
## 19028 796754 1
## 19029 796755 1
## 19030 796756 1
## 19031 796757 1
## 19032 796758 1
## 19033 796759 1
## 19034 796760 1
## 19035 796761 1
## 19036 796762 1
## 19037 796763 1
## 19038 796764 1
## 19039 796765 1
## 19040 796766 1
## 19041 796767 1
## 19042 796768 1
## 19043 796769 1
## 19044 796770 1
## 19045 796771 1
## 19046 796772 1
## 19047 796773 1
## 19048 796774 1
## 19049 796775 1
## 19050 796776 1
## 19051 796777 1
## 19052 796778 1
## 19053 796779 1
## 19054 796780 1
## 19055 796781 1
## 19056 796782 1
## 19057 796783 1
## 19058 796784 1
## 19059 796785 1
## 19060 796786 1
## 19061 796787 1
## 19062 796788 1
## 19063 796789 1
## 19064 796790 1
## 19065 796791 1
## 19066 796792 1
## 19067 796793 1
## 19068 796794 1
## 19069 796795 1
## 19070 796796 1
## 19071 796797 1
## 19072 796798 1
## 19073 796799 1
## 19074 796800 1
## 19075 796801 1
## 19076 796802 1
## 19077 796803 1
## 19078 796804 1
## 19079 796805 1
## 19080 796806 1
## 19081 796807 1
## 19082 796808 1
## 19083 796809 1
## 19084 796810 1
## 19085 796811 1
## 19086 796812 1
## 19087 796813 1
## 19088 796814 1
## 19089 796815 1
## 19090 796816 1
## 19091 796817 1
## 19092 796818 1
## 19093 796819 1
## 19094 796820 1
## 19095 796821 1
## 19096 796822 1
## 19097 796823 1
## 19098 796824 1
## 19099 796825 1
## 19100 796826 1
## 19101 796827 1
## 19102 796828 1
## 19103 796829 1
## 19104 796830 1
## 19105 796831 1
## 19106 796832 1
## 19107 796833 1
## 19108 796834 1
## 19109 796835 1
## 19110 796836 1
## 19111 796837 1
## 19112 796838 1
## 19113 796839 1
## 19114 796840 1
## 19115 796841 1
## 19116 796842 1
## 19117 796843 1
## 19118 796844 1
## 19119 796845 1
## 19120 796846 1
## 19121 796847 1
## 19122 796848 1
## 19123 796849 1
## 19124 796850 1
## 19125 796851 1
## 19126 796852 1
## 19127 796853 1
## 19128 796854 1
## 19129 796855 1
## 19130 796856 1
## 19131 796857 1
## 19132 796858 1
## 19133 796859 1
## 19134 796860 1
## 19135 796861 1
## 19136 796862 1
## 19137 796863 1
## 19138 796864 1
## 19139 796865 1
## 19140 796866 1
## 19141 796867 1
## 19142 796868 1
## 19143 796869 1
## 19144 796870 1
## 19145 796871 1
## 19146 796872 1
## 19147 796873 1
## 19148 796874 1
## 19149 796875 1
## 19150 796876 1
## 19151 796877 1
## 19152 796878 1
## 19153 796879 1
## 19154 796880 1
## 19155 796881 1
## 19156 796882 1
## 19157 796883 1
## 19158 796884 1
## 19159 796885 1
## 19160 796886 1
## 19161 796887 1
## 19162 796888 1
## 19163 796889 1
## 19164 796890 1
## 19165 796891 1
## 19166 796892 1
## 19167 796893 1
## 19168 796894 1
## 19169 796895 1
## 19170 796896 1
## 19171 796897 1
## 19172 796898 1
## 19173 796899 1
## 19174 796900 1
## 19175 796901 1
## 19176 796902 1
## 19177 796903 1
## 19178 796904 1
## 19179 796905 1
## 19180 796906 1
## 19181 796907 1
## 19182 796908 1
## 19183 796909 1
## 19184 796910 1
## 19185 796911 1
## 19186 796912 1
## 19187 796913 1
## 19188 796914 1
## 19189 796915 1
## 19190 796916 1
## 19191 796917 1
## 19192 796918 1
## 19193 796919 1
## 19194 796920 1
## 19195 796921 1
## 19196 796922 1
## 19197 796923 1
## 19198 796924 1
## 19199 796925 1
## 19200 796926 1
## 19201 796927 1
## 19202 796928 1
## 19203 796929 1
## 19204 796930 1
## 19205 796931 1
## 19206 796932 1
## 19207 796933 1
## 19208 796934 1
## 19209 796935 1
## 19210 796936 1
## 19211 796937 1
## 19212 796938 1
## 19213 796939 1
## 19214 796940 1
## 19215 796941 1
## 19216 796942 1
## 19217 796943 1
## 19218 796944 1
## 19219 796945 1
## 19220 796946 1
## 19221 796947 1
## 19222 796948 1
## 19223 796949 1
## 19224 796950 1
## 19225 796951 1
## 19226 796952 1
## 19227 796953 1
## 19228 796954 1
## 19229 796955 1
## 19230 796956 1
## 19231 796957 1
## 19232 796958 1
## 19233 796959 1
## 19234 796960 1
## 19235 796961 1
## 19236 796962 1
## 19237 796963 1
## 19238 796964 1
## 19239 796965 1
## 19240 796966 1
## 19241 796967 1
## 19242 796968 1
## 19243 796969 1
## 19244 796970 1
## 19245 796971 1
## 19246 796972 1
## 19247 796973 1
## 19248 796974 1
## 19249 796975 1
## 19250 796976 1
## 19251 796977 1
## 19252 796978 1
## 19253 796979 1
## 19254 796980 1
## 19255 796981 1
## 19256 796982 1
## 19257 796983 1
## 19258 796984 1
## 19259 796985 1
## 19260 796986 1
## 19261 796987 1
## 19262 796988 1
## 19263 796989 1
## 19264 796990 1
## 19265 796991 1
## 19266 796992 1
## 19267 796994 1
## 19268 796995 1
## 19269 796996 1
## 19270 796997 1
## 19271 796998 1
## 19272 796999 1
## 19273 797000 1
## 19274 797001 1
## 19275 797002 1
## 19276 797003 1
## 19277 797004 1
## 19278 797005 1
## 19279 797006 1
## 19280 797007 1
## 19281 797008 1
## 19282 797009 1
## 19283 797010 1
## 19284 797011 1
## 19285 797012 1
## 19286 797013 1
## 19287 797014 1
## 19288 797015 1
## 19289 797016 1
## 19290 797017 1
## 19291 797018 1
## 19292 797019 1
## 19293 797020 1
## 19294 797021 1
## 19295 797022 1
## 19296 797023 1
## 19297 797024 1
## 19298 797025 1
## 19299 797026 1
## 19300 797027 1
## 19301 797028 1
## 19302 797029 1
## 19303 797030 1
## 19304 797031 1
## 19305 797032 1
## 19306 797033 1
## 19307 797034 1
## 19308 797035 1
## 19309 797036 1
## 19310 797037 1
## 19311 797038 1
## 19312 797039 1
## 19313 797040 1
## 19314 797041 1
## 19315 797042 1
## 19316 797043 1
## 19317 797044 1
## 19318 797045 1
## 19319 797046 1
## 19320 797047 1
## 19321 797048 1
## 19322 797049 1
## 19323 797050 1
## 19324 797051 1
## 19325 797052 1
## 19326 797053 1
## 19327 797054 1
## 19328 797055 1
## 19329 797056 1
## 19330 797057 1
## 19331 797058 1
## 19332 797059 1
## 19333 797060 1
## 19334 797061 1
## 19335 797062 1
## 19336 797063 1
## 19337 797064 1
## 19338 797065 1
## 19339 797066 1
## 19340 797067 1
## 19341 797068 1
## 19342 797069 1
## 19343 797070 1
## 19344 797071 1
## 19345 797072 1
## 19346 797073 1
## 19347 797074 1
## 19348 797075 1
## 19349 797076 1
## 19350 797077 1
## 19351 797078 1
## 19352 797079 1
## 19353 797080 1
## 19354 797081 1
## 19355 797082 1
## 19356 797083 1
## 19357 797084 1
## 19358 797085 1
## 19359 797086 1
## 19360 797087 1
## 19361 797088 1
## 19362 797089 1
## 19363 797090 1
## 19364 797091 1
## 19365 797092 1
## 19366 797093 1
## 19367 797094 1
## 19368 797095 1
## 19369 797096 1
## 19370 797097 1
## 19371 797098 1
## 19372 797099 1
## 19373 797100 1
## 19374 797101 1
## 19375 797102 1
## 19376 797103 1
## 19377 797104 1
## 19378 797105 1
## 19379 797106 1
## 19380 797107 1
## 19381 797108 1
## 19382 797109 1
## 19383 797110 1
## 19384 797111 1
## 19385 797112 1
## 19386 797113 1
## 19387 797114 1
## 19388 797115 1
## 19389 797116 1
## 19390 797117 1
## 19391 797118 1
## 19392 797119 1
## 19393 797120 1
## 19394 797121 1
## 19395 797122 1
## 19396 797123 1
## 19397 797124 1
## 19398 797125 1
## 19399 797126 1
## 19400 797127 1
## 19401 797128 1
## 19402 797129 1
## 19403 797130 1
## 19404 797131 1
## 19405 797132 1
## 19406 797133 1
## 19407 797134 1
## 19408 797135 1
## 19409 797136 1
## 19410 797137 1
## 19411 797138 1
## 19412 797139 1
## 19413 797140 1
## 19414 797141 1
## 19415 797142 1
## 19416 797143 1
## 19417 797144 1
## 19418 797145 1
## 19419 797146 1
## 19420 797147 1
## 19421 797148 1
## 19422 797149 1
## 19423 797150 1
## 19424 797151 1
## 19425 797152 1
## 19426 797153 1
## 19427 797154 1
## 19428 797155 1
## 19429 797156 1
## 19430 797157 1
## 19431 797158 1
## 19432 797159 1
## 19433 797160 1
## 19434 797161 1
## 19435 797162 1
## 19436 797163 1
## 19437 797164 1
## 19438 797165 1
## 19439 797166 1
## 19440 797167 1
## 19441 797168 1
## 19442 797169 1
## 19443 797170 1
## 19444 797171 1
## 19445 797172 1
## 19446 797173 1
## 19447 797174 1
## 19448 797175 1
## 19449 797176 1
## 19450 797177 1
## 19451 797178 1
## 19452 797179 1
## 19453 797180 1
## 19454 797181 1
## 19455 797182 1
## 19456 797183 1
## 19457 797184 1
## 19458 797185 1
## 19459 797186 1
## 19460 797187 1
## 19461 797188 1
## 19462 797189 1
## 19463 797190 1
## 19464 797191 1
## 19465 797192 1
## 19466 797193 1
## 19467 797194 1
## 19468 797195 1
## 19469 797196 1
## 19470 797197 1
## 19471 797198 1
## 19472 797199 1
## 19473 797200 1
## 19474 797201 1
## 19475 797202 1
## 19476 797203 1
## 19477 797204 1
## 19478 797205 1
## 19479 797206 1
## 19480 797207 1
## 19481 797208 1
## 19482 797209 1
## 19483 797210 1
## 19484 797211 1
## 19485 797212 1
## 19486 797213 1
## 19487 797214 1
## 19488 797215 1
## 19489 797216 1
## 19490 797217 1
## 19491 797218 1
## 19492 797219 1
## 19493 797220 1
## 19494 797221 1
## 19495 797222 1
## 19496 797223 1
## 19497 797224 1
## 19498 797225 1
## 19499 797226 1
## 19500 797227 1
## 19501 797228 1
## 19502 797229 1
## 19503 797230 1
## 19504 797231 1
## 19505 797232 1
## 19506 797233 1
## 19507 797234 1
## 19508 797235 1
## 19509 797236 1
## 19510 797237 1
## 19511 797238 1
## 19512 797239 1
## 19513 797240 1
## 19514 797241 1
## 19515 797242 1
## 19516 797243 1
## 19517 797244 1
## 19518 797245 1
## 19519 797246 1
## 19520 797247 1
## 19521 797248 1
## 19522 797249 1
## 19523 797250 1
## 19524 797251 1
## 19525 797252 1
## 19526 797253 1
## 19527 797254 1
## 19528 797255 1
## 19529 797256 1
## 19530 797257 1
## 19531 797258 1
## 19532 797259 1
## 19533 797260 1
## 19534 797261 1
## 19535 797262 1
## 19536 797263 1
## 19537 797264 1
## 19538 797265 1
## 19539 797266 1
## 19540 797267 1
## 19541 797268 1
## 19542 797269 1
## 19543 797270 1
## 19544 797271 1
## 19545 797272 1
## 19546 797273 1
## 19547 797274 1
## 19548 797275 1
## 19549 797276 1
## 19550 797277 1
## 19551 797278 1
## 19552 797279 1
## 19553 797280 1
## 19554 797281 1
## 19555 797282 1
## 19556 797283 1
## 19557 797284 1
## 19558 797285 1
## 19559 797286 1
## 19560 797287 1
## 19561 797288 1
## 19562 797289 1
## 19563 797290 1
## 19564 797291 1
## 19565 797292 1
## 19566 797293 1
## 19567 797294 1
## 19568 797295 1
## 19569 797296 1
## 19570 797297 1
## 19571 797298 1
## 19572 797300 1
## 19573 797301 1
## 19574 797302 1
## 19575 797303 1
## 19576 797304 1
## 19577 797305 1
## 19578 797306 1
## 19579 797307 1
## 19580 797308 1
## 19581 797309 1
## 19582 797310 1
## 19583 797311 1
## 19584 797312 1
## 19585 797313 1
## 19586 797314 1
## 19587 797315 1
## 19588 797316 1
## 19589 797317 1
## 19590 797318 1
## 19591 797319 1
## 19592 797320 1
## 19593 797321 1
## 19594 797322 1
## 19595 797323 1
## 19596 797324 1
## 19597 797325 1
## 19598 797326 1
## 19599 797327 1
## 19600 797328 1
## 19601 797329 1
## 19602 797330 1
## 19603 797331 1
## 19604 797332 1
## 19605 797333 1
## 19606 797334 1
## 19607 797335 1
## 19608 797336 1
## 19609 797337 1
## 19610 797338 1
## 19611 797339 1
## 19612 797340 1
## 19613 797341 1
## 19614 797342 1
## 19615 797343 1
## 19616 797344 1
## 19617 797345 1
## 19618 797346 1
## 19619 797347 1
## 19620 797348 1
## 19621 797349 1
## 19622 797350 1
## 19623 797351 1
## 19624 797352 1
## 19625 797353 1
## 19626 797354 1
## 19627 797355 1
## 19628 797356 1
## 19629 797357 1
## 19630 797358 1
## 19631 797359 1
## 19632 797360 1
## 19633 797361 1
## 19634 797362 1
## 19635 797363 1
## 19636 797364 1
## 19637 797365 1
## 19638 797366 1
## 19639 797367 1
## 19640 797368 1
## 19641 797369 1
## 19642 797370 1
## 19643 797371 1
## 19644 797372 1
## 19645 797373 1
## 19646 797374 1
## 19647 797375 1
## 19648 797376 1
## 19649 797377 1
## 19650 797378 1
## 19651 797379 1
## 19652 797380 1
## 19653 797381 1
## 19654 797382 1
## 19655 797383 1
## 19656 797384 1
## 19657 797385 1
## 19658 797386 1
## 19659 797387 1
## 19660 797388 1
## 19661 797389 1
## 19662 797390 1
## 19663 797391 1
## 19664 797392 1
## 19665 797393 1
## 19666 797394 1
## 19667 797395 1
## 19668 797396 1
## 19669 797397 1
## 19670 797398 1
## 19671 797399 1
## 19672 797400 1
## 19673 797401 1
## 19674 797402 1
## 19675 797403 1
## 19676 797404 1
## 19677 797405 1
## 19678 797406 1
## 19679 797407 1
## 19680 797408 1
## 19681 797409 1
## 19682 797410 1
## 19683 797411 1
## 19684 797412 1
## 19685 797413 1
## 19686 797414 1
## 19687 797415 1
## 19688 797416 1
## 19689 797417 1
## 19690 797418 1
## 19691 797419 1
## 19692 797420 1
## 19693 797421 1
## 19694 797422 1
## 19695 797423 1
## 19696 797424 1
## 19697 797425 1
## 19698 797426 1
## 19699 797427 1
## 19700 797428 1
## 19701 797429 1
## 19702 797430 1
## 19703 797431 1
## 19704 797432 1
## 19705 797433 1
## 19706 797434 1
## 19707 797435 1
## 19708 797436 1
## 19709 797437 1
## 19710 797438 1
## 19711 797439 1
## 19712 797440 1
## 19713 797441 1
## 19714 797442 1
## 19715 797443 1
## 19716 797444 1
## 19717 797445 1
## 19718 797446 1
## 19719 797447 1
## 19720 797448 1
## 19721 797449 1
## 19722 797450 1
## 19723 797451 1
## 19724 797452 1
## 19725 797453 1
## 19726 797454 1
## 19727 797455 1
## 19728 797456 1
## 19729 797457 1
## 19730 797458 1
## 19731 797459 1
## 19732 797460 1
## 19733 797461 1
## 19734 797462 1
## 19735 797463 1
## 19736 797464 1
## 19737 797465 1
## 19738 797466 1
## 19739 797467 1
## 19740 797468 1
## 19741 797469 1
## 19742 797470 1
## 19743 797471 1
## 19744 797472 1
## 19745 797473 1
## 19746 797474 1
## 19747 797475 1
## 19748 797476 1
## 19749 797477 1
## 19750 797478 1
## 19751 797479 1
## 19752 797480 1
## 19753 797481 1
## 19754 797482 1
## 19755 797483 1
## 19756 797484 1
## 19757 797485 1
## 19758 797486 1
## 19759 797487 1
## 19760 797488 1
## 19761 797489 1
## 19762 797490 1
## 19763 797491 1
## 19764 797493 1
## 19765 797494 1
## 19766 797495 1
## 19767 797496 1
## 19768 797497 1
## 19769 797498 1
## 19770 797499 1
## 19771 797500 1
## 19772 797501 1
## 19773 797502 1
## 19774 797503 1
## 19775 797504 1
## 19776 797505 1
## 19777 797506 1
## 19778 797507 1
## 19779 797508 1
## 19780 797509 1
## 19781 797510 1
## 19782 797511 1
## 19783 797512 1
## 19784 797513 1
## 19785 797514 1
## 19786 797515 1
## 19787 797516 1
## 19788 797517 1
## 19789 797518 1
## 19790 797519 1
## 19791 797520 1
## 19792 797521 1
## 19793 797522 1
## 19794 797523 1
## 19795 797524 1
## 19796 797525 1
## 19797 797526 1
## 19798 797527 1
## 19799 797528 1
## 19800 797529 1
## 19801 797530 1
## 19802 797531 1
## 19803 797532 1
## 19804 797533 1
## 19805 797534 1
## 19806 797535 1
## 19807 797536 1
## 19808 797537 1
## 19809 797538 1
## 19810 797539 1
## 19811 797540 1
## 19812 797541 1
## 19813 797542 1
## 19814 797543 1
## 19815 797544 1
## 19816 797545 1
## 19817 797546 1
## 19818 797547 1
## 19819 797548 1
## 19820 797549 1
## 19821 797550 1
## 19822 797551 1
## 19823 797552 1
## 19824 797553 1
## 19825 797554 1
## 19826 797555 1
## 19827 797556 1
## 19828 797557 1
## 19829 797558 1
## 19830 797559 1
## 19831 797560 1
## 19832 797561 1
## 19833 797562 1
## 19834 797563 1
## 19835 797564 1
## 19836 797565 1
## 19837 797566 1
## 19838 797567 1
## 19839 797568 1
## 19840 797569 1
## 19841 797570 1
## 19842 797571 1
## 19843 797572 1
## 19844 797573 1
## 19845 797574 1
## 19846 797575 1
## 19847 797576 1
## 19848 797577 1
## 19849 797578 1
## 19850 797579 1
## 19851 797580 1
## 19852 797582 1
## 19853 797583 1
## 19854 797584 1
## 19855 797585 1
## 19856 797586 1
## 19857 797587 1
## 19858 797588 1
## 19859 797589 1
## 19860 797590 1
## 19861 797591 1
## 19862 797592 1
## 19863 797593 1
## 19864 797594 1
## 19865 797595 1
## 19866 797596 1
## 19867 797597 1
## 19868 797598 1
## 19869 797599 1
## 19870 797600 1
## 19871 797601 1
## 19872 797602 1
## 19873 797603 1
## 19874 797604 1
## 19875 797605 1
## 19876 797606 1
## 19877 797607 1
## 19878 797608 1
## 19879 797609 1
## 19880 797610 1
## 19881 797611 1
## 19882 797612 1
## 19883 797613 1
## 19884 797614 1
## 19885 797615 1
## 19886 797616 1
## 19887 797617 1
## 19888 797618 1
## 19889 797619 1
## 19890 797620 1
## 19891 797621 1
## 19892 797622 1
## 19893 797623 1
## 19894 797624 1
## 19895 797625 1
## 19896 797626 1
## 19897 797627 1
## 19898 797628 1
## 19899 797629 1
## 19900 797630 1
## 19901 797631 1
## 19902 797632 1
## 19903 797633 1
## 19904 797634 1
## 19905 797635 1
## 19906 797636 1
## 19907 797637 1
## 19908 797638 1
## 19909 797639 1
## 19910 797640 1
## 19911 797641 1
## 19912 797642 1
## 19913 797643 1
## 19914 797644 1
## 19915 797645 1
## 19916 797646 1
## 19917 797647 1
## 19918 797648 1
## 19919 797649 1
## 19920 797650 1
## 19921 797651 1
## 19922 797652 1
## 19923 797653 1
## 19924 797654 1
## 19925 797655 1
## 19926 797656 1
## 19927 797657 1
## 19928 797658 1
## 19929 797659 1
## 19930 797660 1
## 19931 797661 1
## 19932 797662 1
## 19933 797663 1
## 19934 797664 1
## 19935 797665 1
## 19936 797666 1
## 19937 797667 1
## 19938 797668 1
## 19939 797669 1
## 19940 797670 1
## 19941 797671 1
## 19942 797672 1
## 19943 797673 1
## 19944 797674 1
## 19945 797675 1
## 19946 797676 1
## 19947 797677 1
## 19948 797678 1
## 19949 797679 1
## 19950 797680 1
## 19951 797681 1
## 19952 797682 1
## 19953 797683 1
## 19954 797684 1
## 19955 797685 1
## 19956 797686 1
## 19957 797687 1
## 19958 797688 1
## 19959 797689 1
## 19960 797690 1
## 19961 797691 1
## 19962 797692 1
## 19963 797693 1
## 19964 797694 1
## 19965 797695 1
## 19966 797696 1
## 19967 797697 1
## 19968 797698 1
## 19969 797699 1
## 19970 797700 1
## 19971 797701 1
## 19972 797702 1
## 19973 797703 1
## 19974 797704 1
## 19975 797705 1
## 19976 797706 1
## 19977 797707 1
## 19978 797708 1
## 19979 797709 1
## 19980 797710 1
## 19981 797711 1
## 19982 797712 1
## 19983 797713 1
## 19984 797714 1
## 19985 797715 1
## 19986 797716 1
## 19987 797717 1
## 19988 797718 1
## 19989 797719 1
## 19990 797720 1
## 19991 797721 1
## 19992 797722 1
## 19993 797723 1
## 19994 797724 1
## 19995 797725 1
## 19996 797726 1
## 19997 797727 1
## 19998 797728 1
## 19999 797729 1
## 20000 797730 1
## 20001 797731 1
## 20002 797732 1
## 20003 797733 1
## 20004 797734 1
## 20005 797736 1
## 20006 797737 1
## 20007 797738 1
## 20008 797739 1
## 20009 797740 1
## 20010 797741 1
## 20011 797742 1
## 20012 797743 1
## 20013 797744 1
## 20014 797745 1
## 20015 797746 1
## 20016 797747 1
## 20017 797748 1
## 20018 797749 1
## 20019 797750 1
## 20020 797751 1
## 20021 797752 1
## 20022 797753 1
## 20023 797754 1
## 20024 797755 1
## 20025 797756 1
## 20026 797757 1
## 20027 797758 1
## 20028 797759 1
## 20029 797760 1
## 20030 797761 1
## 20031 797762 1
## 20032 797763 1
## 20033 797764 1
## 20034 797765 1
## 20035 797766 1
## 20036 797767 1
## 20037 797768 1
## 20038 797769 1
## 20039 797770 1
## 20040 797771 1
## 20041 797772 1
## 20042 797773 1
## 20043 797774 1
## 20044 797775 1
## 20045 797776 1
## 20046 797777 1
## 20047 797778 1
## 20048 797779 1
## 20049 797780 1
## 20050 797781 1
## 20051 797782 1
## 20052 797783 1
## 20053 797784 1
## 20054 797785 1
## 20055 797786 1
## 20056 797787 1
## 20057 797788 1
## 20058 797789 1
## 20059 797790 1
## 20060 797791 1
## 20061 797792 1
## 20062 797793 1
## 20063 797794 1
## 20064 797795 1
## 20065 797796 1
## 20066 797797 1
## 20067 797798 1
## 20068 797799 1
## 20069 797800 1
## 20070 797801 1
## 20071 797802 1
## 20072 797803 1
## 20073 797804 1
## 20074 797805 1
## 20075 797806 1
## 20076 797807 1
## 20077 797808 1
## 20078 797809 1
## 20079 797810 1
## 20080 797811 1
## 20081 797812 1
## 20082 797813 1
## 20083 797814 1
## 20084 797815 1
## 20085 797816 1
## 20086 797817 1
## 20087 797818 1
## 20088 797819 1
## 20089 797820 1
## 20090 797821 1
## 20091 797822 1
## 20092 797823 1
## 20093 797824 1
## 20094 797825 1
## 20095 797826 1
## 20096 797827 1
## 20097 797828 1
## 20098 797829 1
## 20099 797830 1
## 20100 797831 1
## 20101 797832 1
## 20102 797833 1
## 20103 797834 1
## 20104 797835 1
## 20105 797836 1
## 20106 797837 1
## 20107 797838 1
## 20108 797839 1
## 20109 797840 1
## 20110 797841 1
## 20111 797842 1
## 20112 797843 1
## 20113 797844 1
## 20114 797845 1
## 20115 797846 1
## 20116 797847 1
## 20117 797848 1
## 20118 797849 1
## 20119 797850 1
## 20120 797851 1
## 20121 797852 1
## 20122 797853 1
## 20123 797854 1
## 20124 797855 1
## 20125 797856 1
## 20126 797857 1
## 20127 797858 1
## 20128 797859 1
## 20129 797860 1
## 20130 797861 1
## 20131 797862 1
## 20132 797863 1
## 20133 797864 1
## 20134 797865 1
## 20135 797866 1
## 20136 797867 1
## 20137 797868 1
## 20138 797869 1
## 20139 797870 1
## 20140 797871 1
## 20141 797872 1
## 20142 797873 1
## 20143 797874 1
## 20144 797875 1
## 20145 797876 1
## 20146 797877 1
## 20147 797878 1
## 20148 797879 1
## 20149 797880 1
## 20150 797881 1
## 20151 797882 1
## 20152 797883 1
## 20153 797884 1
## 20154 797885 1
## 20155 797886 1
## 20156 797887 1
## 20157 797888 1
## 20158 797889 1
## 20159 797890 1
## 20160 797891 1
## 20161 797892 1
## 20162 797893 1
## 20163 797894 1
## 20164 797895 1
## 20165 797896 1
## 20166 797897 1
## 20167 797898 1
## 20168 797899 1
## 20169 797900 1
## 20170 797901 1
## 20171 797902 1
## 20172 797903 1
## 20173 797904 1
## 20174 797905 1
## 20175 797906 1
## 20176 797907 1
## 20177 797908 1
## 20178 797909 1
## 20179 797910 1
## 20180 797911 1
## 20181 797912 1
## 20182 797913 1
## 20183 797914 1
## 20184 797915 1
## 20185 797916 1
## 20186 797917 1
## 20187 797918 1
## 20188 797919 1
## 20189 797920 1
## 20190 797921 1
## 20191 797922 1
## 20192 797923 1
## 20193 797924 1
## 20194 797925 1
## 20195 797926 1
## 20196 797927 1
## 20197 797928 1
## 20198 797929 1
## 20199 797930 1
## 20200 797931 1
## 20201 797932 1
## 20202 797933 1
## 20203 797934 1
## 20204 797935 1
## 20205 797936 1
## 20206 797937 1
## 20207 797938 1
## 20208 797939 1
## 20209 797940 1
## 20210 797941 1
## 20211 797942 1
## 20212 797943 1
## 20213 797944 1
## 20214 797945 1
## 20215 797946 1
## 20216 797947 1
## 20217 797948 1
## 20218 797949 1
## 20219 797950 1
## 20220 797951 1
## 20221 797952 1
## 20222 797953 1
## 20223 797954 1
## 20224 797955 1
## 20225 797956 1
## 20226 797957 1
## 20227 797958 1
## 20228 797959 1
## 20229 797960 1
## 20230 797961 1
## 20231 797962 1
## 20232 797963 1
## 20233 797964 1
## 20234 797965 1
## 20235 797966 1
## 20236 797967 1
## 20237 797968 1
## 20238 797969 1
## 20239 797970 1
## 20240 797971 1
## 20241 797972 1
## 20242 797973 1
## 20243 797974 1
## 20244 797975 1
## 20245 797976 1
## 20246 797977 1
## 20247 797978 1
## 20248 797979 1
## 20249 797980 1
## 20250 797981 1
## 20251 797982 1
## 20252 797983 1
## 20253 797984 1
## 20254 797985 1
## 20255 797986 1
## 20256 797987 1
## 20257 797988 1
## 20258 797989 1
## 20259 797990 1
## 20260 797991 1
## 20261 797992 1
## 20262 797993 1
## 20263 797995 1
## 20264 797996 1
## 20265 797997 1
## 20266 797998 1
## 20267 797999 1
## 20268 798000 1
## 20269 798001 1
## 20270 798002 1
## 20271 798003 1
## 20272 798004 1
## 20273 798005 1
## 20274 798006 1
## 20275 798007 1
## 20276 798008 1
## 20277 798009 1
## 20278 798010 1
## 20279 798011 1
## 20280 798012 1
## 20281 798013 1
## 20282 798014 1
## 20283 798015 1
## 20284 798016 1
## 20285 798017 1
## 20286 798018 1
## 20287 798019 1
## 20288 798020 1
## 20289 798021 1
## 20290 798022 1
## 20291 798023 1
## 20292 798024 1
## 20293 798025 1
## 20294 798026 1
## 20295 798027 1
## 20296 798028 1
## 20297 798029 1
## 20298 798030 1
## 20299 798031 1
## 20300 798032 1
## 20301 798033 1
## 20302 798034 1
## 20303 798035 1
## 20304 798036 1
## 20305 798037 1
## 20306 798038 1
## 20307 798039 1
## 20308 798040 1
## 20309 798041 1
## 20310 798042 1
## 20311 798043 1
## 20312 798044 1
## 20313 798045 1
## 20314 798046 1
## 20315 798047 1
## 20316 798048 1
## 20317 798049 1
## 20318 798050 1
## 20319 798051 1
## 20320 798052 1
## 20321 798053 1
## 20322 798054 1
## 20323 798055 1
## 20324 798056 1
## 20325 798057 1
## 20326 798058 1
## 20327 798059 1
## 20328 798060 1
## 20329 798061 1
## 20330 798062 1
## 20331 798063 1
## 20332 798064 1
## 20333 798065 1
## 20334 798066 1
## 20335 798067 1
## 20336 798068 1
## 20337 798069 1
## 20338 798070 1
## 20339 798071 1
## 20340 798072 1
## 20341 798073 1
## 20342 798074 1
## 20343 798075 1
## 20344 798076 1
## 20345 798077 1
## 20346 798078 1
## 20347 798079 1
## 20348 798080 1
## 20349 798081 1
## 20350 798082 1
## 20351 798083 1
## 20352 798084 1
## 20353 798085 1
## 20354 798086 1
## 20355 798087 1
## 20356 798088 1
## 20357 798089 1
## 20358 798090 1
## 20359 798091 1
## 20360 798092 1
## 20361 798093 1
## 20362 798094 1
## 20363 798095 1
## 20364 798096 1
## 20365 798097 1
## 20366 798098 1
## 20367 798099 1
## 20368 798100 1
## 20369 798101 1
## 20370 798102 1
## 20371 798103 1
## 20372 798104 1
## 20373 798105 1
## 20374 798106 1
## 20375 798107 1
## 20376 798108 1
## 20377 798109 1
## 20378 798110 1
## 20379 798111 1
## 20380 798112 1
## 20381 798113 1
## 20382 798114 1
## 20383 798115 1
## 20384 798116 1
## 20385 798117 1
## 20386 798118 1
## 20387 798119 1
## 20388 798120 1
## 20389 798121 1
## 20390 798122 1
## 20391 798123 1
## 20392 798124 1
## 20393 798125 1
## 20394 798126 1
## 20395 798127 1
## 20396 798128 1
## 20397 798129 1
## 20398 798130 1
## 20399 798131 1
## 20400 798132 1
## 20401 798133 1
## 20402 798134 1
## 20403 798135 1
## 20404 798136 1
## 20405 798137 1
## 20406 798138 1
## 20407 798139 1
## 20408 798140 1
## 20409 798141 1
## 20410 798142 1
## 20411 798143 1
## 20412 798144 1
## 20413 798145 1
## 20414 798146 1
## 20415 798147 1
## 20416 798148 1
## 20417 798149 1
## 20418 798150 1
## 20419 798151 1
## 20420 798153 1
## 20421 798154 1
## 20422 798155 1
## 20423 798156 1
## 20424 798157 1
## 20425 798158 1
## 20426 798159 1
## 20427 798160 1
## 20428 798161 1
## 20429 798162 1
## 20430 798163 1
## 20431 798164 1
## 20432 798165 1
## 20433 798166 1
## 20434 798167 1
## 20435 798168 1
## 20436 798169 1
## 20437 798170 1
## 20438 798171 1
## 20439 798172 1
## 20440 798173 1
## 20441 798174 1
## 20442 798175 1
## 20443 798176 1
## 20444 798177 1
## 20445 798178 1
## 20446 798179 1
## 20447 798180 1
## 20448 798181 1
## 20449 798182 1
## 20450 798183 1
## 20451 798184 1
## 20452 798185 1
## 20453 798186 1
## 20454 798187 1
## 20455 798188 1
## 20456 798189 1
## 20457 798190 1
## 20458 798191 1
## 20459 798192 1
## 20460 798193 1
## 20461 798194 1
## 20462 798195 1
## 20463 798196 1
## 20464 798197 1
## 20465 798198 1
## 20466 798199 1
## 20467 798200 1
## 20468 798201 1
## 20469 798202 1
## 20470 798203 1
## 20471 798204 1
## 20472 798205 1
## 20473 798206 1
## 20474 798207 1
## 20475 798208 1
## 20476 798209 1
## 20477 798210 1
## 20478 798211 1
## 20479 798212 1
## 20480 798213 1
## 20481 798214 1
## 20482 798215 1
## 20483 798216 1
## 20484 798217 1
## 20485 798218 1
## 20486 798219 1
## 20487 798220 1
## 20488 798221 1
## 20489 798222 1
## 20490 798223 1
## 20491 798224 1
## 20492 798225 1
## 20493 798226 1
## 20494 798227 1
## 20495 798228 1
## 20496 798229 1
## 20497 798230 1
## 20498 798231 1
## 20499 798232 1
## 20500 798233 1
## 20501 798234 1
## 20502 798235 1
## 20503 798236 1
## 20504 798237 1
## 20505 798238 1
## 20506 798239 1
## 20507 798240 1
## 20508 798241 1
## 20509 798242 1
## 20510 798243 1
## 20511 798244 1
## 20512 798245 1
## 20513 798246 1
## 20514 798247 1
## 20515 798248 1
## 20516 798249 1
## 20517 798250 1
## 20518 798251 1
## 20519 798252 1
## 20520 798253 1
## 20521 798254 1
## 20522 798255 1
## 20523 798256 1
## 20524 798257 1
## 20525 798258 1
## 20526 798259 1
## 20527 798260 1
## 20528 798261 1
## 20529 798262 1
## 20530 798263 1
## 20531 798264 1
## 20532 798266 1
## 20533 798267 1
## 20534 798268 1
## 20535 798269 1
## 20536 798270 1
## 20537 798271 1
## 20538 798272 1
## 20539 798273 1
## 20540 798274 1
## 20541 798275 1
## 20542 798276 1
## 20543 798277 1
## 20544 798278 1
## 20545 798279 1
## 20546 798280 1
## 20547 798281 1
## 20548 798282 1
## 20549 798283 1
## 20550 798284 1
## 20551 798285 1
## 20552 798286 1
## 20553 798287 1
## 20554 798288 1
## 20555 798289 1
## 20556 798290 1
## 20557 798291 1
## 20558 798292 1
## 20559 798293 1
## 20560 798294 1
## 20561 798295 1
## 20562 798296 1
## 20563 798297 1
## 20564 798298 1
## 20565 798299 1
## 20566 798300 1
## 20567 798301 1
## 20568 798302 1
## 20569 798303 1
## 20570 798304 1
## 20571 798305 1
## 20572 798306 1
## 20573 798307 1
## 20574 798308 1
## 20575 798309 1
## 20576 798310 1
## 20577 798311 1
## 20578 798312 1
## 20579 798313 1
## 20580 798314 1
## 20581 798315 1
## 20582 798316 1
## 20583 798317 1
## 20584 798318 1
## 20585 798319 1
## 20586 798320 1
## 20587 798321 1
## 20588 798322 1
## 20589 798323 1
## 20590 798324 1
## 20591 798325 1
## 20592 798326 1
## 20593 798327 1
## 20594 798328 1
## 20595 798329 1
## 20596 798330 1
## 20597 798331 1
## 20598 798333 1
## 20599 798334 1
## 20600 798335 1
## 20601 798336 1
## 20602 798337 1
## 20603 798338 1
## 20604 798339 1
## 20605 798340 1
## 20606 798341 1
## 20607 798342 1
## 20608 798343 1
## 20609 798344 1
## 20610 798345 1
## 20611 798346 1
## 20612 798347 1
## 20613 798348 1
## 20614 798349 1
## 20615 798350 1
## 20616 798351 1
## 20617 798352 1
## 20618 798353 1
## 20619 798354 1
## 20620 798355 1
## 20621 798356 1
## 20622 798357 1
## 20623 798358 1
## 20624 798359 1
## 20625 798360 1
## 20626 798361 1
## 20627 798362 1
## 20628 798363 1
## 20629 798364 1
## 20630 798365 1
## 20631 798366 1
## 20632 798367 1
## 20633 798368 1
## 20634 798369 1
## 20635 798370 1
## 20636 798371 1
## 20637 798372 1
## 20638 798373 1
## 20639 798374 1
## 20640 798375 1
## 20641 798376 1
## 20642 798377 1
## 20643 798378 1
## 20644 798379 1
## 20645 798380 1
## 20646 798381 1
## 20647 798382 1
## 20648 798383 1
## 20649 798384 1
## 20650 798385 1
## 20651 798386 1
## 20652 798387 1
## 20653 798388 1
## 20654 798389 1
## 20655 798390 1
## 20656 798391 1
## 20657 798392 1
## 20658 798393 1
## 20659 798394 1
## 20660 798395 1
## 20661 798396 1
## 20662 798397 1
## 20663 798398 1
## 20664 798399 1
## 20665 798400 1
## 20666 798401 1
## 20667 798402 1
## 20668 798403 1
## 20669 798404 1
## 20670 798405 1
## 20671 798406 1
## 20672 798407 1
## 20673 798408 1
## 20674 798409 1
## 20675 798410 1
## 20676 798411 1
## 20677 798412 1
## 20678 798413 1
## 20679 798414 1
## 20680 798415 1
## 20681 798416 1
## 20682 798417 1
## 20683 798418 1
## 20684 798419 1
## 20685 798420 1
## 20686 798421 1
## 20687 798422 1
## 20688 798423 1
## 20689 798424 1
## 20690 798425 1
## 20691 798426 1
## 20692 798427 1
## 20693 798428 1
## 20694 798429 1
## 20695 798430 1
## 20696 798431 1
## 20697 798432 1
## 20698 798433 1
## 20699 798434 1
## 20700 798435 1
## 20701 798436 1
## 20702 798437 1
## 20703 798438 1
## 20704 798439 1
## 20705 798440 1
## 20706 798441 1
## 20707 798442 1
## 20708 798443 1
## 20709 798444 1
## 20710 798445 1
## 20711 798446 1
## 20712 798447 1
## 20713 798448 1
## 20714 798449 1
## 20715 798450 1
## 20716 798451 1
## 20717 798452 1
## 20718 798453 1
## 20719 798454 1
## 20720 798455 1
## 20721 798456 1
## 20722 798457 1
## 20723 798458 1
## 20724 798459 1
## 20725 798460 1
## 20726 798461 1
## 20727 798462 1
## 20728 798463 1
## 20729 798464 1
## 20730 798465 1
## 20731 798466 1
## 20732 798467 1
## 20733 798468 1
## 20734 798469 1
## 20735 798470 1
## 20736 798471 1
## 20737 798472 1
## 20738 798473 1
## 20739 798474 1
## 20740 798475 1
## 20741 798476 1
## 20742 798477 1
## 20743 798478 1
## 20744 798479 1
## 20745 798480 1
## 20746 798481 1
## 20747 798482 1
## 20748 798483 1
## 20749 798484 1
## 20750 798485 1
## 20751 798486 1
## 20752 798487 1
## 20753 798488 1
## 20754 798489 1
## 20755 798490 1
## 20756 798491 1
## 20757 798492 1
## 20758 798493 1
## 20759 798494 1
## 20760 798495 1
## 20761 798496 1
## 20762 798498 1
## 20763 798499 1
## 20764 798500 1
## 20765 798501 1
## 20766 798502 1
## 20767 798503 1
## 20768 798504 1
## 20769 798505 1
## 20770 798506 1
## 20771 798507 1
## 20772 798508 1
## 20773 798509 1
## 20774 798510 1
## 20775 798511 1
## 20776 798512 1
## 20777 798513 1
## 20778 798514 1
## 20779 798515 1
## 20780 798516 1
## 20781 798517 1
## 20782 798518 1
## 20783 798519 1
## 20784 798520 1
## 20785 798521 1
## 20786 798522 1
## 20787 798523 1
## 20788 798524 1
## 20789 798525 1
## 20790 798526 1
## 20791 798527 1
## 20792 798528 1
## 20793 798529 1
## 20794 798530 1
## 20795 798531 1
## 20796 798532 1
## 20797 798533 1
## 20798 798534 1
## 20799 798535 1
## 20800 798536 1
## 20801 798537 1
## 20802 798538 1
## 20803 798539 1
## 20804 798540 1
## 20805 798541 1
## 20806 798542 1
## 20807 798543 1
## 20808 798544 1
## 20809 798545 1
## 20810 798546 1
## 20811 798547 1
## 20812 798548 1
## 20813 798549 1
## 20814 798550 1
## 20815 798551 1
## 20816 798552 1
## 20817 798553 1
## 20818 798554 1
## 20819 798555 1
## 20820 798556 1
## 20821 798557 1
## 20822 798558 1
## 20823 798559 1
## 20824 798560 1
## 20825 798561 1
## 20826 798562 1
## 20827 798563 1
## 20828 798564 1
## 20829 798565 1
## 20830 798566 1
## 20831 798567 1
## 20832 798568 1
## 20833 798569 1
## 20834 798570 1
## 20835 798571 1
## 20836 798572 1
## 20837 798573 1
## 20838 798574 1
## 20839 798575 1
## 20840 798576 1
## 20841 798577 1
## 20842 798578 1
## 20843 798579 1
## 20844 798580 1
## 20845 798581 1
## 20846 798582 1
## 20847 798583 1
## 20848 798584 1
## 20849 798585 1
## 20850 798586 1
## 20851 798587 1
## 20852 798588 1
## 20853 798589 1
## 20854 798590 1
## 20855 798591 1
## 20856 798592 1
## 20857 798593 1
## 20858 798594 1
## 20859 798595 1
## 20860 798596 1
## 20861 798597 1
## 20862 798598 1
## 20863 798599 1
## 20864 798600 1
## 20865 798601 1
## 20866 798602 1
## 20867 798603 1
## 20868 798604 1
## 20869 798605 1
## 20870 798606 1
## 20871 798607 1
## 20872 798608 1
## 20873 798609 1
## 20874 798610 1
## 20875 798611 1
## 20876 798612 1
## 20877 798613 1
## 20878 798614 1
## 20879 798615 1
## 20880 798616 1
## 20881 798617 1
## 20882 798618 1
## 20883 798619 1
## 20884 798620 1
## 20885 798621 1
## 20886 798622 1
## 20887 798623 1
## 20888 798624 1
## 20889 798625 1
## 20890 798626 1
## 20891 798627 1
## 20892 798628 1
## 20893 798629 1
## 20894 798630 1
## 20895 798631 1
## 20896 798632 1
## 20897 798633 1
## 20898 798634 1
## 20899 798635 1
## 20900 798636 1
## 20901 798637 1
## 20902 798638 1
## 20903 798639 1
## 20904 798640 1
## 20905 798641 1
## 20906 798642 1
## 20907 798643 1
## 20908 798644 1
## 20909 798645 1
## 20910 798646 1
## 20911 798648 1
## 20912 798649 1
## 20913 798650 1
## 20914 798651 1
## 20915 798652 1
## 20916 798653 1
## 20917 798654 1
## 20918 798655 1
## 20919 798656 1
## 20920 798657 1
## 20921 798658 1
## 20922 798659 1
## 20923 798660 1
## 20924 798661 1
## 20925 798662 1
## 20926 798663 1
## 20927 798664 1
## 20928 798665 1
## 20929 798666 1
## 20930 798667 1
## 20931 798668 1
## 20932 798669 1
## 20933 798670 1
## 20934 798671 1
## 20935 798672 1
## 20936 798673 1
## 20937 798674 1
## 20938 798675 1
## 20939 798676 1
## 20940 798677 1
## 20941 798678 1
## 20942 798679 1
## 20943 798680 1
## 20944 798681 1
## 20945 798682 1
## 20946 798683 1
## 20947 798684 1
## 20948 798685 1
## 20949 798686 1
## 20950 798687 1
## 20951 798688 1
## 20952 798689 1
## 20953 798690 1
## 20954 798691 1
## 20955 798692 1
## 20956 798693 1
## 20957 798694 1
## 20958 798695 1
## 20959 798696 1
## 20960 798697 1
## 20961 798698 1
## 20962 798699 1
## 20963 798700 1
## 20964 798701 1
## 20965 798702 1
## 20966 798703 1
## 20967 798704 1
## 20968 798705 1
## 20969 798706 1
## 20970 798707 1
## 20971 798708 1
## 20972 798709 1
## 20973 798710 1
## 20974 798711 1
## 20975 798712 1
## 20976 798713 1
## 20977 798714 1
## 20978 798715 1
## 20979 798716 1
## 20980 798717 1
## 20981 798718 1
## 20982 798719 1
## 20983 798720 1
## 20984 798721 1
## 20985 798722 1
## 20986 798723 1
## 20987 798724 1
## 20988 798725 1
## 20989 798726 1
## 20990 798727 1
## 20991 798728 1
## 20992 798729 1
## 20993 798730 1
## 20994 798731 1
## 20995 798732 1
## 20996 798733 1
## 20997 798734 1
## 20998 798735 1
## 20999 798736 1
## 21000 798737 1
## 21001 798738 1
## 21002 798739 1
## 21003 798740 1
## 21004 798741 1
## 21005 798742 1
## 21006 798743 1
## 21007 798744 1
## 21008 798745 1
## 21009 798746 1
## 21010 798747 1
## 21011 798748 1
## 21012 798749 1
## 21013 798750 1
## 21014 798751 1
## 21015 798752 1
## 21016 798753 1
## 21017 798754 1
## 21018 798755 1
## 21019 798756 1
## 21020 798757 1
## 21021 798758 1
## 21022 798759 1
## 21023 798760 1
## 21024 798761 1
## 21025 798762 1
## 21026 798763 1
## 21027 798764 1
## 21028 798765 1
## 21029 798766 1
## 21030 798767 1
## 21031 798768 1
## 21032 798769 1
## 21033 798770 1
## 21034 798771 1
## 21035 798772 1
## 21036 798773 1
## 21037 798774 1
## 21038 798775 1
## 21039 798776 1
## 21040 798777 1
## 21041 798778 1
## 21042 798779 1
## 21043 798780 1
## 21044 798781 1
## 21045 798782 1
## 21046 798783 1
## 21047 798784 1
## 21048 798785 1
## 21049 798786 1
## 21050 798787 1
## 21051 798788 1
## 21052 798789 1
## 21053 798790 1
## 21054 798791 1
## 21055 798792 1
## 21056 798793 1
## 21057 798794 1
## 21058 798795 1
## 21059 798796 1
## 21060 798797 1
## 21061 798798 1
## 21062 798799 1
## 21063 798800 1
## 21064 798801 1
## 21065 798802 1
## 21066 798803 1
## 21067 798804 1
## 21068 798805 1
## 21069 798806 1
## 21070 798807 1
## 21071 798808 1
## 21072 798809 1
## 21073 798810 1
## 21074 798811 1
## 21075 798812 1
## 21076 798813 1
## 21077 798814 1
## 21078 798815 1
## 21079 798816 1
## 21080 798817 1
## 21081 798818 1
## 21082 798819 1
## 21083 798820 1
## 21084 798821 1
## 21085 798822 1
## 21086 798823 1
## 21087 798824 1
## 21088 798825 1
## 21089 798827 1
## 21090 798828 1
## 21091 798829 1
## 21092 798830 1
## 21093 798831 1
## 21094 798832 1
## 21095 798833 1
## 21096 798834 1
## 21097 798835 1
## 21098 798836 1
## 21099 798837 1
## 21100 798838 1
## 21101 798839 1
## 21102 798840 1
## 21103 798841 1
## 21104 798842 1
## 21105 798843 1
## 21106 798844 1
## 21107 798845 1
## 21108 798846 1
## 21109 798847 1
## 21110 798848 1
## 21111 798849 1
## 21112 798850 1
## 21113 798851 1
## 21114 798852 1
## 21115 798853 1
## 21116 798854 1
## 21117 798855 1
## 21118 798856 1
## 21119 798857 1
## 21120 798858 1
## 21121 798859 1
## 21122 798860 1
## 21123 798861 1
## 21124 798862 1
## 21125 798863 1
## 21126 798864 1
## 21127 798865 1
## 21128 798866 1
## 21129 798867 1
## 21130 798868 1
## 21131 798869 1
## 21132 798870 1
## 21133 798871 1
## 21134 798872 1
## 21135 798873 1
## 21136 798874 1
## 21137 798875 1
## 21138 798876 1
## 21139 798877 1
## 21140 798878 1
## 21141 798879 1
## 21142 798880 1
## 21143 798881 1
## 21144 798882 1
## 21145 798883 1
## 21146 798884 1
## 21147 798885 1
## 21148 798886 1
## 21149 798887 1
## 21150 798888 1
## 21151 798889 1
## 21152 798890 1
## 21153 798891 1
## 21154 798892 1
## 21155 798893 1
## 21156 798894 1
## 21157 798895 1
## 21158 798896 1
## 21159 798897 1
## 21160 798898 1
## 21161 798899 1
## 21162 798900 1
## 21163 798901 1
## 21164 798902 1
## 21165 798903 1
## 21166 798904 1
## 21167 798905 1
## 21168 798906 1
## 21169 798907 1
## 21170 798908 1
## 21171 798909 1
## 21172 798910 1
## 21173 798911 1
## 21174 798912 1
## 21175 798913 1
## 21176 798914 1
## 21177 798915 1
## 21178 798916 1
## 21179 798917 1
## 21180 798918 1
## 21181 798919 1
## 21182 798920 1
## 21183 798921 1
## 21184 798922 1
## 21185 798923 1
## 21186 798924 1
## 21187 798925 1
## 21188 798926 1
## 21189 798928 1
## 21190 798929 1
## 21191 798930 1
## 21192 798931 1
## 21193 798932 1
## 21194 798933 1
## 21195 798934 1
## 21196 798935 1
## 21197 798936 1
## 21198 798937 1
## 21199 798938 1
## 21200 798939 1
## 21201 798940 1
## 21202 798941 1
## 21203 798942 1
## 21204 798943 1
## 21205 798944 1
## 21206 798945 1
## 21207 798946 1
## 21208 798947 1
## 21209 798948 1
## 21210 798949 1
## 21211 798950 1
## 21212 798951 1
## 21213 798952 1
## 21214 798953 1
## 21215 798954 1
## 21216 798955 1
## 21217 798956 1
## 21218 798957 1
## 21219 798958 1
## 21220 798959 1
## 21221 798960 1
## 21222 798961 1
## 21223 798962 1
## 21224 798963 1
## 21225 798964 1
## 21226 798965 1
## 21227 798966 1
## 21228 798967 1
## 21229 798968 1
## 21230 798969 1
## 21231 798970 1
## 21232 798971 1
## 21233 798972 1
## 21234 798973 1
## 21235 798974 1
## 21236 798975 1
## 21237 798976 1
## 21238 798977 1
## 21239 798978 1
## 21240 798979 1
## 21241 798980 1
## 21242 798981 1
## 21243 798982 1
## 21244 798983 1
## 21245 798984 1
## 21246 798985 1
## 21247 798986 1
## 21248 798987 1
## 21249 798988 1
## 21250 798989 1
## 21251 798990 1
## 21252 798991 1
## 21253 798992 1
## 21254 798993 1
## 21255 798994 1
## 21256 798995 1
## 21257 798996 1
## 21258 798997 1
## 21259 798998 1
## 21260 798999 1
## 21261 799000 1
## 21262 799001 1
## 21263 799002 1
## 21264 799003 1
## 21265 799004 1
## 21266 799005 1
## 21267 799006 1
## 21268 799007 1
## 21269 799008 1
## 21270 799009 1
## 21271 799010 1
## 21272 799011 1
## 21273 799012 1
## 21274 799013 1
## 21275 799014 1
## 21276 799015 1
## 21277 799016 1
## 21278 799017 1
## 21279 799018 1
## 21280 799019 1
## 21281 799020 1
## 21282 799021 1
## 21283 799022 1
## 21284 799023 1
## 21285 799024 1
## 21286 799025 1
## 21287 799026 1
## 21288 799027 1
## 21289 799028 1
## 21290 799029 1
## 21291 799030 1
## 21292 799031 1
## 21293 799032 1
## 21294 799033 1
## 21295 799034 1
## 21296 799035 1
## 21297 799036 1
## 21298 799037 1
## 21299 799038 1
## 21300 799039 1
## 21301 799040 1
## 21302 799041 1
## 21303 799042 1
## 21304 799043 1
## 21305 799044 1
## 21306 799045 1
## 21307 799046 1
## 21308 799047 1
## 21309 799048 1
## 21310 799049 1
## 21311 799050 1
## 21312 799051 1
## 21313 799052 1
## 21314 799053 1
## 21315 799054 1
## 21316 799055 1
## 21317 799056 1
## 21318 799057 1
## 21319 799058 1
## 21320 799059 1
## 21321 799060 1
## 21322 799061 1
## 21323 799062 1
## 21324 799063 1
## 21325 799064 1
## 21326 799065 1
## 21327 799066 1
## 21328 799067 1
## 21329 799068 1
## 21330 799069 1
## 21331 799070 1
## 21332 799071 1
## 21333 799072 1
## 21334 799073 1
## 21335 799074 1
## 21336 799075 1
## 21337 799076 1
## 21338 799077 1
## 21339 799078 1
## 21340 799079 1
## 21341 799080 1
## 21342 799081 1
## 21343 799082 1
## 21344 799083 1
## 21345 799084 1
## 21346 799085 1
## 21347 799086 1
## 21348 799087 1
## 21349 799088 1
## 21350 799089 1
## 21351 799090 1
## 21352 799091 1
## 21353 799092 1
## 21354 799093 1
## 21355 799094 1
## 21356 799095 1
## 21357 799096 1
## 21358 799097 1
## 21359 799098 1
## 21360 799099 1
## 21361 799100 1
## 21362 799101 1
## 21363 799102 1
## 21364 799103 1
## 21365 799104 1
## 21366 799105 1
## 21367 799106 1
## 21368 799107 1
## 21369 799108 1
## 21370 799109 1
## 21371 799110 1
## 21372 799111 1
## 21373 799112 1
## 21374 799113 1
## 21375 799114 1
## 21376 799115 1
## 21377 799116 1
## 21378 799117 1
## 21379 799118 1
## 21380 799119 1
## 21381 799120 1
## 21382 799121 1
## 21383 799122 1
## 21384 799123 1
## 21385 799124 1
## 21386 799125 1
## 21387 799126 1
## 21388 799127 1
## 21389 799128 1
## 21390 799129 1
## 21391 799130 1
## 21392 799131 1
## 21393 799132 1
## 21394 799133 1
## 21395 799134 1
## 21396 799135 1
## 21397 799136 1
## 21398 799137 1
## 21399 799138 1
## 21400 799139 1
## 21401 799140 1
## 21402 799141 1
## 21403 799142 1
## 21404 799143 1
## 21405 799144 1
## 21406 799145 1
## 21407 799146 1
## 21408 799147 1
## 21409 799148 1
## 21410 799149 1
## 21411 799150 1
## 21412 799151 1
## 21413 799152 1
## 21414 799153 1
## 21415 799154 1
## 21416 799155 1
## 21417 799156 1
## 21418 799157 1
## 21419 799158 1
## 21420 799159 1
## 21421 799160 1
## 21422 799161 1
## 21423 799162 1
## 21424 799163 1
## 21425 799164 1
## 21426 799165 1
## 21427 799166 1
## 21428 799167 1
## 21429 799168 1
## 21430 799169 1
## 21431 799171 1
## 21432 799172 1
## 21433 799173 1
## 21434 799174 1
## 21435 799175 1
## 21436 799176 1
## 21437 799177 1
## 21438 799178 1
## 21439 799179 1
## 21440 799180 1
## 21441 799182 1
## 21442 799183 1
## 21443 799184 1
## 21444 799185 1
## 21445 799186 1
## 21446 799187 1
## 21447 799188 1
## 21448 799189 1
## 21449 799190 1
## 21450 799191 1
## 21451 799192 1
## 21452 799193 1
## 21453 799194 1
## 21454 799195 1
## 21455 799196 1
## 21456 799197 1
## 21457 799198 1
## 21458 799199 1
## 21459 799200 1
## 21460 799201 1
## 21461 799202 1
## 21462 799203 1
## 21463 799204 1
## 21464 799206 1
## 21465 799207 1
## 21466 799208 1
## 21467 799209 1
## 21468 799210 1
## 21469 799211 1
## 21470 799212 1
## 21471 799213 1
## 21472 799214 1
## 21473 799215 1
## 21474 799216 1
## 21475 799217 1
## 21476 799218 1
## 21477 799219 1
## 21478 799220 1
## 21479 799221 1
## 21480 799222 1
## 21481 799223 1
## 21482 799224 1
## 21483 799225 1
## 21484 799226 1
## 21485 799227 1
## 21486 799228 1
## 21487 799229 1
## 21488 799230 1
## 21489 799231 1
## 21490 799232 1
## 21491 799233 1
## 21492 799234 1
## 21493 799235 1
## 21494 799236 1
## 21495 799237 1
## 21496 799238 1
## 21497 799239 1
## 21498 799240 1
## 21499 799241 1
## 21500 799242 1
## 21501 799243 1
## 21502 799244 1
## 21503 799245 1
## 21504 799246 1
## 21505 799247 1
## 21506 799248 1
## 21507 799249 1
## 21508 799250 1
## 21509 799251 1
## 21510 799252 1
## 21511 799253 1
## 21512 799254 1
## 21513 799255 1
## 21514 799256 1
## 21515 799257 1
## 21516 799258 1
## 21517 799259 1
## 21518 799260 1
## 21519 799261 1
## 21520 799262 1
## 21521 799263 1
## 21522 799264 1
## 21523 799265 1
## 21524 799266 1
## 21525 799267 1
## 21526 799268 1
## 21527 799269 1
## 21528 799270 1
## 21529 799271 1
## 21530 799272 1
## 21531 799273 1
## 21532 799274 1
## 21533 799275 1
## 21534 799276 1
## 21535 799277 1
## 21536 799278 1
## 21537 799279 1
## 21538 799280 1
## 21539 799281 1
## 21540 799282 1
## 21541 799283 1
## 21542 799284 1
## 21543 799285 1
## 21544 799286 1
## 21545 799287 1
## 21546 799288 1
## 21547 799289 1
## 21548 799290 1
## 21549 799291 1
## 21550 799292 1
## 21551 799293 1
## 21552 799294 1
## 21553 799295 1
## 21554 799296 1
## 21555 799297 1
## 21556 799298 1
## 21557 799299 1
## 21558 799300 1
## 21559 799301 1
## 21560 799302 1
## 21561 799303 1
## 21562 799304 1
## 21563 799305 1
## 21564 799306 1
## 21565 799307 1
## 21566 799308 1
## 21567 799309 1
## 21568 799310 1
## 21569 799311 1
## 21570 799312 1
## 21571 799313 1
## 21572 799314 1
## 21573 799315 1
## 21574 799316 1
## 21575 799317 1
## 21576 799318 1
## 21577 799319 1
## 21578 799320 1
## 21579 799321 1
## 21580 799322 1
## 21581 799323 1
## 21582 799324 1
## 21583 799325 1
## 21584 799326 1
## 21585 799327 1
## 21586 799328 1
## 21587 799329 1
## 21588 799330 1
## 21589 799331 1
## 21590 799332 1
## 21591 799333 1
## 21592 799334 1
## 21593 799335 1
## 21594 799336 1
## 21595 799337 1
## 21596 799338 1
## 21597 799339 1
## 21598 799340 1
## 21599 799341 1
## 21600 799342 1
## 21601 799343 1
## 21602 799344 1
## 21603 799345 1
## 21604 799346 1
## 21605 799347 1
## 21606 799348 1
## 21607 799349 1
## 21608 799350 1
## 21609 799351 1
## 21610 799352 1
## 21611 799353 1
## 21612 799354 1
## 21613 799355 1
## 21614 799356 1
## 21615 799357 1
## 21616 799358 1
## 21617 799359 1
## 21618 799360 1
## 21619 799361 1
## 21620 799362 1
## 21621 799363 1
## 21622 799364 1
## 21623 799365 1
## 21624 799366 1
## 21625 799367 1
## 21626 799368 1
## 21627 799369 1
## 21628 799370 1
## 21629 799371 1
## 21630 799372 1
## 21631 799373 1
## 21632 799374 1
## 21633 799375 1
## 21634 799376 1
## 21635 799377 1
## 21636 799378 1
## 21637 799379 1
## 21638 799380 1
## 21639 799381 1
## 21640 799382 1
## 21641 799383 1
## 21642 799384 1
## 21643 799385 1
## 21644 799386 1
## 21645 799387 1
## 21646 799388 1
## 21647 799389 1
## 21648 799390 1
## 21649 799391 1
## 21650 799392 1
## 21651 799393 1
## 21652 799394 1
## 21653 799395 1
## 21654 799396 1
## 21655 799397 1
## 21656 799398 1
## 21657 799399 1
## 21658 799400 1
## 21659 799401 1
## 21660 799402 1
## 21661 799403 1
## 21662 799404 1
## 21663 799405 1
## 21664 799406 1
## 21665 799407 1
## 21666 799408 1
## 21667 799409 1
## 21668 799410 1
## 21669 799411 1
## 21670 799412 1
## 21671 799413 1
## 21672 799414 1
## 21673 799415 1
## 21674 799416 1
## 21675 799417 1
## 21676 799418 1
## 21677 799419 1
## 21678 799420 1
## 21679 799421 1
## 21680 799422 1
## 21681 799423 1
## 21682 799424 1
## 21683 799425 1
## 21684 799426 1
## 21685 799427 1
## 21686 799428 1
## 21687 799429 1
## 21688 799430 1
## 21689 799431 1
## 21690 799432 1
## 21691 799433 1
## 21692 799434 1
## 21693 799435 1
## 21694 799436 1
## 21695 799437 1
## 21696 799438 1
## 21697 799439 1
## 21698 799440 1
## 21699 799441 1
## 21700 799442 1
## 21701 799443 1
## 21702 799444 1
## 21703 799445 1
## 21704 799446 1
## 21705 799447 1
## 21706 799448 1
## 21707 799449 1
## 21708 799450 1
## 21709 799451 1
## 21710 799452 1
## 21711 799453 1
## 21712 799454 1
## 21713 799455 1
## 21714 799456 1
## 21715 799457 1
## 21716 799458 1
## 21717 799459 1
## 21718 799460 1
## 21719 799461 1
## 21720 799462 1
## 21721 799463 1
## 21722 799464 1
## 21723 799465 1
## 21724 799466 1
## 21725 799467 1
## 21726 799468 1
## 21727 799469 1
## 21728 799470 1
## 21729 799472 1
## 21730 799473 1
## 21731 799474 1
## 21732 799475 1
## 21733 799476 1
## 21734 799477 1
## 21735 799478 1
## 21736 799479 1
## 21737 799480 1
## 21738 799481 1
## 21739 799482 1
## 21740 799483 1
## 21741 799484 1
## 21742 799485 1
## 21743 799486 1
## 21744 799487 1
## 21745 799488 1
## 21746 799489 1
## 21747 799490 1
## 21748 799491 1
## 21749 799492 1
## 21750 799493 1
## 21751 799494 1
## 21752 799495 1
## 21753 799496 1
## 21754 799497 1
## 21755 799498 1
## 21756 799499 1
## 21757 799500 1
## 21758 799501 1
## 21759 799502 1
## 21760 799503 1
## 21761 799504 1
## 21762 799505 1
## 21763 799506 1
## 21764 799507 1
## 21765 799508 1
## 21766 799509 1
## 21767 799510 1
## 21768 799511 1
## 21769 799512 1
## 21770 799513 1
## 21771 799514 1
## 21772 799515 1
## 21773 799516 1
## 21774 799517 1
## 21775 799518 1
## 21776 799519 1
## 21777 799520 1
## 21778 799521 1
## 21779 799522 1
## 21780 799523 1
## 21781 799524 1
## 21782 799525 1
## 21783 799526 1
## 21784 799527 1
## 21785 799528 1
## 21786 799529 1
## 21787 799530 1
## 21788 799531 1
## 21789 799532 1
## 21790 799533 1
## 21791 799534 1
## 21792 799535 1
## 21793 799536 1
## 21794 799537 1
## 21795 799538 1
## 21796 799539 1
## 21797 799540 1
## 21798 799541 1
## 21799 799542 1
## 21800 799543 1
## 21801 799544 1
## 21802 799545 1
## 21803 799546 1
## 21804 799547 1
## 21805 799548 1
## 21806 799549 1
## 21807 799550 1
## 21808 799551 1
## 21809 799552 1
## 21810 799553 1
## 21811 799554 1
## 21812 799555 1
## 21813 799556 1
## 21814 799557 1
## 21815 799558 1
## 21816 799559 1
## 21817 799560 1
## 21818 799561 1
## 21819 799562 1
## 21820 799563 1
## 21821 799564 1
## 21822 799565 1
## 21823 799566 1
## 21824 799567 1
## 21825 799568 1
## 21826 799569 1
## 21827 799570 1
## 21828 799571 1
## 21829 799572 1
## 21830 799573 1
## 21831 799574 1
## 21832 799575 1
## 21833 799576 1
## 21834 799577 1
## 21835 799578 1
## 21836 799579 1
## 21837 799580 1
## 21838 799581 1
## 21839 799582 1
## 21840 799583 1
## 21841 799584 1
## 21842 799585 1
## 21843 799586 1
## 21844 799587 1
## 21845 799588 1
## 21846 799589 1
## 21847 799590 1
## 21848 799591 1
## 21849 799592 1
## 21850 799593 1
## 21851 799594 1
## 21852 799595 1
## 21853 799596 1
## 21854 799597 1
## 21855 799598 1
## 21856 799599 1
## 21857 799600 1
## 21858 799601 1
## 21859 799602 1
## 21860 799603 1
## 21861 799604 1
## 21862 799605 1
## 21863 799606 1
## 21864 799607 1
## 21865 799608 1
## 21866 799609 1
## 21867 799610 1
## 21868 799611 1
## 21869 799612 1
## 21870 799613 1
## 21871 799614 1
## 21872 799615 1
## 21873 799616 1
## 21874 799617 1
## 21875 799618 1
## 21876 799619 1
## 21877 799620 1
## 21878 799621 1
## 21879 799622 1
## 21880 799623 1
## 21881 799624 1
## 21882 799625 1
## 21883 799626 1
## 21884 799627 1
## 21885 799628 1
## 21886 799629 1
## 21887 799630 1
## 21888 799631 1
## 21889 799632 1
## 21890 799633 1
## 21891 799634 1
## 21892 799635 1
## 21893 799636 1
## 21894 799637 1
## 21895 799638 1
## 21896 799639 1
## 21897 799640 1
## 21898 799641 1
## 21899 799642 1
## 21900 799643 1
## 21901 799644 1
## 21902 799645 1
## 21903 799646 1
## 21904 799647 1
## 21905 799648 1
## 21906 799649 1
## 21907 799650 1
## 21908 799651 1
## 21909 799653 1
## 21910 799654 1
## 21911 799655 1
## 21912 799656 1
## 21913 799657 1
## 21914 799658 1
## 21915 799659 1
## 21916 799660 1
## 21917 799661 1
## 21918 799662 1
## 21919 799663 1
## 21920 799664 1
## 21921 799665 1
## 21922 799666 1
## 21923 799667 1
## 21924 799668 1
## 21925 799669 1
## 21926 799670 1
## 21927 799671 1
## 21928 799672 1
## 21929 799673 1
## 21930 799674 1
## 21931 799675 1
## 21932 799676 1
## 21933 799677 1
## 21934 799678 1
## 21935 799679 1
## 21936 799680 1
## 21937 799681 1
## 21938 799682 1
## 21939 799683 1
## 21940 799684 1
## 21941 799685 1
## 21942 799686 1
## 21943 799687 1
## 21944 799688 1
## 21945 799689 1
## 21946 799690 1
## 21947 799691 1
## 21948 799692 1
## 21949 799693 1
## 21950 799694 1
## 21951 799695 1
## 21952 799696 1
## 21953 799697 1
## 21954 799698 1
## 21955 799699 1
## 21956 799700 1
## 21957 799701 1
## 21958 799702 1
## 21959 799703 1
## 21960 799704 1
## 21961 799705 1
## 21962 799706 1
## 21963 799707 1
## 21964 799708 1
## 21965 799709 1
## 21966 799710 1
## 21967 799711 1
## 21968 799712 1
## 21969 799713 1
## 21970 799714 1
## 21971 799715 1
## 21972 799716 1
## 21973 799717 1
## 21974 799718 1
## 21975 799719 1
## 21976 799720 1
## 21977 799721 1
## 21978 799722 1
## 21979 799723 1
## 21980 799724 1
## 21981 799725 1
## 21982 799726 1
## 21983 799727 1
## 21984 799728 1
## 21985 799729 1
## 21986 799730 1
## 21987 799731 1
## 21988 799732 1
## 21989 799733 1
## 21990 799734 1
## 21991 799735 1
## 21992 799736 1
## 21993 799737 1
## 21994 799738 1
## 21995 799739 1
## 21996 799740 1
## 21997 799741 1
## 21998 799742 1
## 21999 799743 1
## 22000 799744 1
## 22001 799745 1
## 22002 799746 1
## 22003 799747 1
## 22004 799748 1
## 22005 799749 1
## 22006 799750 1
## 22007 799751 1
## 22008 799752 1
## 22009 799753 1
## 22010 799754 1
## 22011 799755 1
## 22012 799756 1
## 22013 799757 1
## 22014 799758 1
## 22015 799759 1
## 22016 799760 1
## 22017 799761 1
## 22018 799762 1
## 22019 799763 1
## 22020 799764 1
## 22021 799766 1
## 22022 799767 1
## 22023 799768 1
## 22024 799769 1
## 22025 799770 1
## 22026 799771 1
## 22027 799772 1
## 22028 799773 1
## 22029 799774 1
## 22030 799775 1
## 22031 799776 1
## 22032 799777 1
## 22033 799778 1
## 22034 799779 1
## 22035 799780 1
## 22036 799782 1
## 22037 799783 1
## 22038 799784 1
## 22039 799785 1
## 22040 799786 1
## 22041 799787 1
## 22042 799788 1
## 22043 799789 1
## 22044 799790 1
## 22045 799791 1
## 22046 799792 1
## 22047 799793 1
## 22048 799794 1
## 22049 799795 1
## 22050 799796 1
## 22051 799797 1
## 22052 799798 1
## 22053 799799 1
## 22054 799800 1
## 22055 799801 1
## 22056 799802 1
## 22057 799803 1
## 22058 799804 1
## 22059 799805 1
## 22060 799806 1
## 22061 799807 1
## 22062 799808 1
## 22063 799809 1
## 22064 799810 1
## 22065 799811 1
## 22066 799812 1
## 22067 799813 1
## 22068 799814 1
## 22069 799815 1
## 22070 799816 1
## 22071 799817 1
## 22072 799818 1
## 22073 799819 1
## 22074 799820 1
## 22075 799821 1
## 22076 799822 1
## 22077 799823 1
## 22078 799824 1
## 22079 799825 1
## 22080 799826 1
## 22081 799827 1
## 22082 799828 1
## 22083 799829 1
## 22084 799830 1
## 22085 799831 1
## 22086 799832 1
## 22087 799833 1
## 22088 799834 1
## 22089 799835 1
## 22090 799836 1
## 22091 799837 1
## 22092 799838 1
## 22093 799839 1
## 22094 799840 1
## 22095 799841 1
## 22096 799842 1
## 22097 799843 1
## 22098 799844 1
## 22099 799845 1
## 22100 799846 1
## 22101 799847 1
## 22102 799848 1
## 22103 799849 1
## 22104 799850 1
## 22105 799851 1
## 22106 799852 1
## 22107 799853 1
## 22108 799854 1
## 22109 799855 1
## 22110 799856 1
## 22111 799857 1
## 22112 799858 1
## 22113 799859 1
## 22114 799860 1
## 22115 799861 1
## 22116 799862 1
## 22117 799863 1
## 22118 799864 1
## 22119 799865 1
## 22120 799866 1
## 22121 799867 1
## 22122 799868 1
## 22123 799869 1
## 22124 799870 1
## 22125 799871 1
## 22126 799872 1
## 22127 799873 1
## 22128 799874 1
## 22129 799875 1
## 22130 799876 1
## 22131 799877 1
## 22132 799878 1
## 22133 799879 1
## 22134 799880 1
## 22135 799881 1
## 22136 799882 1
## 22137 799883 1
## 22138 799884 1
## 22139 799885 1
## 22140 799886 1
## 22141 799887 1
## 22142 799888 1
## 22143 799889 1
## 22144 799890 1
## 22145 799891 1
## 22146 799892 1
## 22147 799893 1
## 22148 799894 1
## 22149 799895 1
## 22150 799896 1
## 22151 799897 1
## 22152 799898 1
## 22153 799899 1
## 22154 799900 1
## 22155 799901 1
## 22156 799902 1
## 22157 799903 1
## 22158 799904 1
## 22159 799905 1
## 22160 799906 1
## 22161 799907 1
## 22162 799908 1
## 22163 799909 1
## 22164 799910 1
## 22165 799911 1
## 22166 799912 1
## 22167 799913 1
## 22168 799914 1
## 22169 799915 1
## 22170 799916 1
## 22171 799917 1
## 22172 799918 1
## 22173 799919 1
## 22174 799920 1
## 22175 799921 1
## 22176 799922 1
## 22177 799923 1
## 22178 799924 1
## 22179 799925 1
## 22180 799926 1
## 22181 799927 1
## 22182 799928 1
## 22183 799929 1
## 22184 799930 1
## 22185 799931 1
## 22186 799932 1
## 22187 799933 1
## 22188 799934 1
## 22189 799935 1
## 22190 799936 1
## 22191 799937 1
## 22192 799938 1
## 22193 799939 1
## 22194 799940 1
## 22195 799941 1
## 22196 799942 1
## 22197 799943 1
## 22198 799944 1
## 22199 799945 1
## 22200 799946 1
## 22201 799947 1
## 22202 799948 1
## 22203 799949 1
## 22204 799950 1
## 22205 799951 1
## 22206 799952 1
## 22207 799953 1
## 22208 799954 1
## 22209 799955 1
## 22210 799956 1
## 22211 799957 1
## 22212 799958 1
## 22213 799959 1
## 22214 799960 1
## 22215 799961 1
## 22216 799962 1
## 22217 799963 1
## 22218 799964 1
## 22219 799965 1
## 22220 799966 1
## 22221 799967 1
## 22222 799968 1
## 22223 799969 1
## 22224 799970 1
## 22225 799971 1
## 22226 799972 1
## 22227 799973 1
## 22228 799974 1
## 22229 799975 1
## 22230 799976 1
## 22231 799977 1
## 22232 799978 1
## 22233 799979 1
## 22234 799980 1
## 22235 799981 1
## 22236 799982 1
## 22237 799983 1
## 22238 799984 1
## 22239 799985 1
## 22240 799986 1
## 22241 799987 1
## 22242 799988 1
## 22243 799989 1
## 22244 799990 1
## 22245 799991 1
## 22246 799992 1
## 22247 799993 1
## 22248 799994 1
## 22249 799995 1
## 22250 799996 1
## 22251 799997 1
## 22252 799998 1
## 22253 799999 1
## 22254 800000 1
## 22255 800001 1
## 22256 800002 1
## 22257 800003 1
## 22258 800004 1
## 22259 800005 1
## 22260 800006 1
## 22261 800007 1
## 22262 800008 1
## 22263 800009 1
## 22264 800010 1
## 22265 800011 1
## 22266 800012 1
## 22267 800013 1
## 22268 800014 1
## 22269 800015 1
## 22270 800016 1
## 22271 800017 1
## 22272 800018 1
## 22273 800019 1
## 22274 800020 1
## 22275 800021 1
## 22276 800022 1
## 22277 800023 1
## 22278 800024 1
## 22279 800025 1
## 22280 800026 1
## 22281 800027 1
## 22282 800028 1
## 22283 800029 1
## 22284 800030 1
## 22285 800031 1
## 22286 800032 1
## 22287 800033 1
## 22288 800034 1
## 22289 800035 1
## 22290 800036 1
## 22291 800037 1
## 22292 800038 1
## 22293 800039 1
## 22294 800040 1
## 22295 800041 1
## 22296 800042 1
## 22297 800043 1
## 22298 800044 1
## 22299 800045 1
## 22300 800046 1
## 22301 800047 1
## 22302 800048 1
## 22303 800049 1
## 22304 800050 1
## 22305 800051 1
## 22306 800052 1
## 22307 800053 1
## 22308 800054 1
## 22309 800055 1
## 22310 800056 1
## 22311 800057 1
## 22312 800058 1
## 22313 800059 1
## 22314 800060 1
## 22315 800061 1
## 22316 800062 1
## 22317 800063 1
## 22318 800064 1
## 22319 800065 1
## 22320 800066 1
## 22321 800067 1
## 22322 800068 1
## 22323 800069 1
## 22324 800070 1
## 22325 800071 1
## 22326 800072 1
## 22327 800073 1
## 22328 800074 1
## 22329 800075 1
## 22330 800076 1
## 22331 800077 1
## 22332 800078 1
## 22333 800079 1
## 22334 800080 1
## 22335 800081 1
## 22336 800082 1
## 22337 800083 1
## 22338 800084 1
## 22339 800085 1
## 22340 800086 1
## 22341 800087 1
## 22342 800088 1
## 22343 800089 1
## 22344 800090 1
## 22345 800091 1
## 22346 800092 1
## 22347 800093 1
## 22348 800094 1
## 22349 800095 1
## 22350 800096 1
## 22351 800097 1
## 22352 800098 1
## 22353 800099 1
## 22354 800100 1
## 22355 800101 1
## 22356 800102 1
## 22357 800103 1
## 22358 800104 1
## 22359 800105 1
## 22360 800106 1
## 22361 800107 1
## 22362 800108 1
## 22363 800109 1
## 22364 800110 1
## 22365 800111 1
## 22366 800112 1
## 22367 800113 1
## 22368 800114 1
## 22369 800115 1
## 22370 800116 1
## 22371 800117 1
## 22372 800118 1
## 22373 800119 1
## 22374 800120 1
## 22375 800121 1
## 22376 800122 1
## 22377 800123 1
## 22378 800124 1
## 22379 800125 1
## 22380 800126 1
## 22381 800127 1
## 22382 800128 1
## 22383 800129 1
## 22384 800130 1
## 22385 800131 1
## 22386 800132 1
## 22387 800133 1
## 22388 800134 1
## 22389 800135 1
## 22390 800136 1
## 22391 800137 1
## 22392 800138 1
## 22393 800139 1
## 22394 800140 1
## 22395 800141 1
## 22396 800142 1
## 22397 800143 1
## 22398 800144 1
## 22399 800145 1
## 22400 800146 1
## 22401 800147 1
## 22402 800148 1
## 22403 800149 1
## 22404 800150 1
## 22405 800151 1
## 22406 800152 1
## 22407 800153 1
## 22408 800154 1
## 22409 800155 1
## 22410 800156 1
## 22411 800157 1
## 22412 800158 1
## 22413 800159 1
## 22414 800160 1
## 22415 800161 1
## 22416 800162 1
## 22417 800163 1
## 22418 800164 1
## 22419 800166 1
## 22420 800167 1
## 22421 800168 1
## 22422 800169 1
## 22423 800170 1
## 22424 800171 1
## 22425 800172 1
## 22426 800173 1
## 22427 800174 1
## 22428 800175 1
## 22429 800176 1
## 22430 800177 1
## 22431 800178 1
## 22432 800179 1
## 22433 800180 1
## 22434 800181 1
## 22435 800182 1
## 22436 800183 1
## 22437 800184 1
## 22438 800185 1
## 22439 800186 1
## 22440 800187 1
## 22441 800188 1
## 22442 800189 1
## 22443 800191 1
## 22444 800192 1
## 22445 800193 1
## 22446 800194 1
## 22447 800195 1
## 22448 800196 1
## 22449 800197 1
## 22450 800198 1
## 22451 800199 1
## 22452 800200 1
## 22453 800201 1
## 22454 800202 1
## 22455 800203 1
## 22456 800204 1
## 22457 800205 1
## 22458 800206 1
## 22459 800207 1
## 22460 800208 1
## 22461 800209 1
## 22462 800210 1
## 22463 800211 1
## 22464 800212 1
## 22465 800213 1
## 22466 800214 1
## 22467 800215 1
## 22468 800216 1
## 22469 800217 1
## 22470 800218 1
## 22471 800219 1
## 22472 800220 1
## 22473 800221 1
## 22474 800222 1
## 22475 800223 1
## 22476 800224 1
## 22477 800225 1
## 22478 800226 1
## 22479 800227 1
## 22480 800228 1
## 22481 800229 1
## 22482 800230 1
## 22483 800231 1
## 22484 800232 1
## 22485 800233 1
## 22486 800234 1
## 22487 800235 1
## 22488 800236 1
## 22489 800237 1
## 22490 800238 1
## 22491 800239 1
## 22492 800240 1
## 22493 800241 1
## 22494 800242 1
## 22495 800243 1
## 22496 800244 1
## 22497 800245 1
## 22498 800246 1
## 22499 800247 1
## 22500 800249 1
## 22501 800250 1
## 22502 800251 1
## 22503 800252 1
## 22504 800253 1
## 22505 800254 1
## 22506 800255 1
## 22507 800256 1
## 22508 800257 1
## 22509 800258 1
## 22510 800259 1
## 22511 800260 1
## 22512 800261 1
## 22513 800262 1
## 22514 800263 1
## 22515 800264 1
## 22516 800265 1
## 22517 800266 1
## 22518 800267 1
## 22519 800268 1
## 22520 800269 1
## 22521 800270 1
## 22522 800271 1
## 22523 800272 1
## 22524 800273 1
## 22525 800274 1
## 22526 800275 1
## 22527 800276 1
## 22528 800277 1
## 22529 800278 1
## 22530 800279 1
## 22531 800280 1
## 22532 800281 1
## 22533 800282 1
## 22534 800283 1
## 22535 800284 1
## 22536 800285 1
## 22537 800286 1
## 22538 800287 1
## 22539 800288 1
## 22540 800289 1
## 22541 800290 1
## 22542 800291 1
## 22543 800292 1
## 22544 800293 1
## 22545 800294 1
## 22546 800295 1
## 22547 800296 1
## 22548 800297 1
## 22549 800298 1
## 22550 800299 1
## 22551 800300 1
## 22552 800301 1
## 22553 800302 1
## 22554 800303 1
## 22555 800304 1
## 22556 800305 1
## 22557 800306 1
## 22558 800307 1
## 22559 800308 1
## 22560 800309 1
## 22561 800310 1
## 22562 800311 1
## 22563 800312 1
## 22564 800313 1
## 22565 800314 1
## 22566 800315 1
## 22567 800316 1
## 22568 800317 1
## 22569 800318 1
## 22570 800319 1
## 22571 800320 1
## 22572 800321 1
## 22573 800322 1
## 22574 800323 1
## 22575 800324 1
## 22576 800325 1
## 22577 800326 1
## 22578 800327 1
## 22579 800328 1
## 22580 800329 1
## 22581 800330 1
## 22582 800332 1
## 22583 800333 1
## 22584 800334 1
## 22585 800335 1
## 22586 800336 1
## 22587 800337 1
## 22588 800338 1
## 22589 800339 1
## 22590 800340 1
## 22591 800341 1
## 22592 800342 1
## 22593 800343 1
## 22594 800344 1
## 22595 800345 1
## 22596 800346 1
## 22597 800347 1
## 22598 800348 1
## 22599 800349 1
## 22600 800350 1
## 22601 800351 1
## 22602 800352 1
## 22603 800353 1
## 22604 800354 1
## 22605 800355 1
## 22606 800356 1
## 22607 800357 1
## 22608 800358 1
## 22609 800359 1
## 22610 800360 1
## 22611 800361 1
## 22612 800362 1
## 22613 800363 1
## 22614 800364 1
## 22615 800365 1
## 22616 800366 1
## 22617 800367 1
## 22618 800368 1
## 22619 800369 1
## 22620 800370 1
## 22621 800371 1
## 22622 800372 1
## 22623 800373 1
## 22624 800374 1
## 22625 800375 1
## 22626 800376 1
## 22627 800377 1
## 22628 800378 1
## 22629 800379 1
## 22630 800380 1
## 22631 800381 1
## 22632 800382 1
## 22633 800383 1
## 22634 800384 1
## 22635 800385 1
## 22636 800386 1
## 22637 800387 1
## 22638 800388 1
## 22639 800389 1
## 22640 800390 1
## 22641 800391 1
## 22642 800392 1
## 22643 800393 1
## 22644 800394 1
## 22645 800395 1
## 22646 800396 1
## 22647 800397 1
## 22648 800398 1
## 22649 800399 1
## 22650 800400 1
## 22651 800401 1
## 22652 800402 1
## 22653 800403 1
## 22654 800404 1
## 22655 800405 1
## 22656 800406 1
## 22657 800407 1
## 22658 800408 1
## 22659 800409 1
## 22660 800410 1
## 22661 800411 1
## 22662 800412 1
## 22663 800413 1
## 22664 800414 1
## 22665 800415 1
## 22666 800416 1
## 22667 800417 1
## 22668 800418 1
## 22669 800419 1
## 22670 800420 1
## 22671 800421 1
## 22672 800422 1
## 22673 800423 1
## 22674 800424 1
## 22675 800425 1
## 22676 800426 1
## 22677 800427 1
## 22678 800428 1
## 22679 800429 1
## 22680 800430 1
## 22681 800431 1
## 22682 800432 1
## 22683 800433 1
## 22684 800434 1
## 22685 800435 1
## 22686 800436 1
## 22687 800437 1
## 22688 800438 1
## 22689 800439 1
## 22690 800440 1
## 22691 800441 1
## 22692 800442 1
## 22693 800443 1
## 22694 800444 1
## 22695 800445 1
## 22696 800446 1
## 22697 800447 1
## 22698 800448 1
## 22699 800449 1
## 22700 800450 1
## 22701 800451 1
## 22702 800452 1
## 22703 800453 1
## 22704 800454 1
## 22705 800455 1
## 22706 800456 1
## 22707 800457 1
## 22708 800459 1
## 22709 800460 1
## 22710 800461 1
## 22711 800462 1
## 22712 800463 1
## 22713 800464 1
## 22714 800465 1
## 22715 800466 1
## 22716 800467 1
## 22717 800468 1
## 22718 800469 1
## 22719 800470 1
## 22720 800471 1
## 22721 800473 1
## 22722 800474 1
## 22723 800475 1
## 22724 800476 1
## 22725 800477 1
## 22726 800478 1
## 22727 800479 1
## 22728 800480 1
## 22729 800481 1
## 22730 800482 1
## 22731 800483 1
## 22732 800484 1
## 22733 800485 1
## 22734 800486 1
## 22735 800487 1
## 22736 800488 1
## 22737 800489 1
## 22738 800490 1
## 22739 800491 1
## 22740 800492 1
## 22741 800493 1
## 22742 800494 1
## 22743 800495 1
## 22744 800496 1
## 22745 800497 1
## 22746 800498 1
## 22747 800499 1
## 22748 800500 1
## 22749 800501 1
## 22750 800502 1
## 22751 800503 1
## 22752 800504 1
## 22753 800505 1
## 22754 800506 1
## 22755 800507 1
## 22756 800508 1
## 22757 800509 1
## 22758 800510 1
## 22759 800511 1
## 22760 800512 1
## 22761 800513 1
## 22762 800514 1
## 22763 800515 1
## 22764 800516 1
## 22765 800517 1
## 22766 800519 1
## 22767 800520 1
## 22768 800521 1
## 22769 800522 1
## 22770 800523 1
## 22771 800524 1
## 22772 800525 1
## 22773 800526 1
## 22774 800527 1
## 22775 800528 1
## 22776 800529 1
## 22777 800530 1
## 22778 800531 1
## 22779 800532 1
## 22780 800533 1
## 22781 800534 1
## 22782 800535 1
## 22783 800536 1
## 22784 800537 1
## 22785 800538 1
## 22786 800539 1
## 22787 800540 1
## 22788 800541 1
## 22789 800542 1
## 22790 800543 1
## 22791 800544 1
## 22792 800545 1
## 22793 800546 1
## 22794 800547 1
## 22795 800548 1
## 22796 800549 1
## 22797 800550 1
## 22798 800551 1
## 22799 800552 1
## 22800 800553 1
## 22801 800554 1
## 22802 800555 1
## 22803 800556 1
## 22804 800557 1
## 22805 800558 1
## 22806 800559 1
## 22807 800560 1
## 22808 800561 1
## 22809 800562 1
## 22810 800563 1
## 22811 800564 1
## 22812 800565 1
## 22813 800566 1
## 22814 800567 1
## 22815 800568 1
## 22816 800569 1
## 22817 800570 1
## 22818 800571 1
## 22819 800572 1
## 22820 800573 1
## 22821 800574 1
## 22822 800575 1
## 22823 800576 1
## 22824 800577 1
## 22825 800578 1
## 22826 800579 1
## 22827 800580 1
## 22828 800581 1
## 22829 800582 1
## 22830 800583 1
## 22831 800584 1
## 22832 800585 1
## 22833 800586 1
## 22834 800587 1
## 22835 800588 1
## 22836 800589 1
## 22837 800590 1
## 22838 800591 1
## 22839 800592 1
## 22840 800593 1
## 22841 800594 1
## 22842 800595 1
## 22843 800596 1
## 22844 800597 1
## 22845 800598 1
## 22846 800599 1
## 22847 800600 1
## 22848 800601 1
## 22849 800602 1
## 22850 800603 1
## 22851 800604 1
## 22852 800605 1
## 22853 800606 1
## 22854 800607 1
## 22855 800608 1
## 22856 800609 1
## 22857 800610 1
## 22858 800611 1
## 22859 800612 1
## 22860 800613 1
## 22861 800614 1
## 22862 800615 1
## 22863 800616 1
## 22864 800617 1
## 22865 800618 1
## 22866 800619 1
## 22867 800620 1
## 22868 800621 1
## 22869 800622 1
## 22870 800623 1
## 22871 800624 1
## 22872 800625 1
## 22873 800626 1
## 22874 800627 1
## 22875 800628 1
## 22876 800629 1
## 22877 800630 1
## 22878 800631 1
## 22879 800632 1
## 22880 800633 1
## 22881 800634 1
## 22882 800635 1
## 22883 800636 1
## 22884 800637 1
## 22885 800638 1
## 22886 800639 1
## 22887 800640 1
## 22888 800641 1
## 22889 800642 1
## 22890 800643 1
## 22891 800644 1
## 22892 800645 1
## 22893 800646 1
## 22894 800647 1
## 22895 800648 1
## 22896 800649 1
## 22897 800650 1
## 22898 800651 1
## 22899 800652 1
## 22900 800653 1
## 22901 800654 1
## 22902 800655 1
## 22903 800656 1
## 22904 800657 1
## 22905 800658 1
## 22906 800659 1
## 22907 800660 1
## 22908 800661 1
## 22909 800662 1
## 22910 800663 1
## 22911 800664 1
## 22912 800665 1
## 22913 800666 1
## 22914 800667 1
## 22915 800668 1
## 22916 800669 1
## 22917 800670 1
## 22918 800671 1
## 22919 800672 1
## 22920 800673 1
## 22921 800674 1
## 22922 800675 1
## 22923 800676 1
## 22924 800677 1
## 22925 800678 1
## 22926 800679 1
## 22927 800680 1
## 22928 800681 1
## 22929 800682 1
## 22930 800683 1
## 22931 800684 1
## 22932 800685 1
## 22933 800686 1
## 22934 800687 1
## 22935 800688 1
## 22936 800689 1
## 22937 800690 1
## 22938 800691 1
## 22939 800692 1
## 22940 800693 1
## 22941 800694 1
## 22942 800695 1
## 22943 800696 1
## 22944 800697 1
## 22945 800698 1
## 22946 800699 1
## 22947 800700 1
## 22948 800701 1
## 22949 800702 1
## 22950 800703 1
## 22951 800704 1
## 22952 800705 1
## 22953 800706 1
## 22954 800707 1
## 22955 800708 1
## 22956 800709 1
## 22957 800710 1
## 22958 800711 1
## 22959 800712 1
## 22960 800713 1
## 22961 800714 1
## 22962 800715 1
## 22963 800716 1
## 22964 800717 1
## 22965 800718 1
## 22966 800719 1
## 22967 800720 1
## 22968 800721 1
## 22969 800722 1
## 22970 800723 1
## 22971 800724 1
## 22972 800725 1
## 22973 800726 1
## 22974 800727 1
## 22975 800728 1
## 22976 800729 1
## 22977 800730 1
## 22978 800731 1
## 22979 800732 1
## 22980 800733 1
## 22981 800734 1
## 22982 800735 1
## 22983 800736 1
## 22984 800737 1
## 22985 800738 1
## 22986 800739 1
## 22987 800740 1
## 22988 800741 1
## 22989 800742 1
## 22990 800743 1
## 22991 800744 1
## 22992 800745 1
## 22993 800746 1
## 22994 800747 1
## 22995 800748 1
## 22996 800749 1
## 22997 800750 1
## 22998 800751 1
## 22999 800752 1
## 23000 800753 1
## 23001 800754 1
## 23002 800755 1
## 23003 800756 1
## 23004 800757 1
## 23005 800758 1
## 23006 800759 1
## 23007 800760 1
## 23008 800761 1
## 23009 800762 1
## 23010 800763 1
## 23011 800764 1
## 23012 800765 1
## 23013 800766 1
## 23014 800767 1
## 23015 800768 1
## 23016 800769 1
## 23017 800770 1
## 23018 800771 1
## 23019 800772 1
## 23020 800773 1
## 23021 800774 1
## 23022 800775 1
## 23023 800776 1
## 23024 800777 1
## 23025 800778 1
## 23026 800779 1
## 23027 800780 1
## 23028 800781 1
## 23029 800782 1
## 23030 800783 1
## 23031 800784 1
## 23032 800785 1
## 23033 800786 1
## 23034 800787 1
## 23035 800788 1
## 23036 800789 1
## 23037 800790 1
## 23038 800791 1
## 23039 800792 1
## 23040 800793 1
## 23041 800794 1
## 23042 800795 1
## 23043 800796 1
## 23044 800797 1
## 23045 800798 1
## 23046 800799 1
## 23047 800800 1
## 23048 800801 1
## 23049 800802 1
## 23050 800803 1
## 23051 800804 1
## 23052 800805 1
## 23053 800806 1
## 23054 800807 1
## 23055 800808 1
## 23056 800809 1
## 23057 800810 1
## 23058 800811 1
## 23059 800813 1
## 23060 800814 1
## 23061 800815 1
## 23062 800816 1
## 23063 800817 1
## 23064 800818 1
## 23065 800819 1
## 23066 800820 1
## 23067 800821 1
## 23068 800822 1
## 23069 800823 1
## 23070 800824 1
## 23071 800825 1
## 23072 800826 1
## 23073 800827 1
## 23074 800828 1
## 23075 800829 1
## 23076 800830 1
## 23077 800831 1
## 23078 800832 1
## 23079 800833 1
## 23080 800834 1
## 23081 800835 1
## 23082 800836 1
## 23083 800837 1
## 23084 800838 1
## 23085 800839 1
## 23086 800840 1
## 23087 800841 1
## 23088 800842 1
## 23089 800843 1
## 23090 800844 1
## 23091 800845 1
## 23092 800846 1
## 23093 800847 1
## 23094 800848 1
## 23095 800849 1
## 23096 800850 1
## 23097 800851 1
## 23098 800852 1
## 23099 800853 1
## 23100 800854 1
## 23101 800855 1
## 23102 800856 1
## 23103 800857 1
## 23104 800858 1
## 23105 800859 1
## 23106 800860 1
## 23107 800861 1
## 23108 800862 1
## 23109 800863 1
## 23110 800864 1
## 23111 800865 1
## 23112 800866 1
## 23113 800867 1
## 23114 800868 1
## 23115 800869 1
## 23116 800870 1
## 23117 800871 1
## 23118 800872 1
## 23119 800873 1
## 23120 800874 1
## 23121 800875 1
## 23122 800876 1
## 23123 800877 1
## 23124 800878 1
## 23125 800879 1
## 23126 800880 1
## 23127 800881 1
## 23128 800882 1
## 23129 800883 1
## 23130 800884 1
## 23131 800885 1
## 23132 800886 1
## 23133 800887 1
## 23134 800888 1
## 23135 800889 1
## 23136 800890 1
## 23137 800891 1
## 23138 800892 1
## 23139 800893 1
## 23140 800894 1
## 23141 800895 1
## 23142 800896 1
## 23143 800897 1
## 23144 800898 1
## 23145 800899 1
## 23146 800900 1
## 23147 800901 1
## 23148 800902 1
## 23149 800903 1
## 23150 800904 1
## 23151 800905 1
## 23152 800906 1
## 23153 800907 1
## 23154 800908 1
## 23155 800909 1
## 23156 800910 1
## 23157 800911 1
## 23158 800912 1
## 23159 800913 1
## 23160 800914 1
## 23161 800915 1
## 23162 800916 1
## 23163 800917 1
## 23164 800918 1
## 23165 800919 1
## 23166 800920 1
## 23167 800921 1
## 23168 800922 1
## 23169 800923 1
## 23170 800924 1
## 23171 800925 1
## 23172 800926 1
## 23173 800927 1
## 23174 800928 1
## 23175 800929 1
## 23176 800930 1
## 23177 800931 1
## 23178 800932 1
## 23179 800933 1
## 23180 800934 1
## 23181 800935 1
## 23182 800936 1
## 23183 800937 1
## 23184 800938 1
## 23185 800939 1
## 23186 800940 1
## 23187 800941 1
## 23188 800942 1
## 23189 800943 1
## 23190 800944 1
## 23191 800945 1
## 23192 800946 1
## 23193 800947 1
## 23194 800948 1
## 23195 800949 1
## 23196 800950 1
## 23197 800951 1
## 23198 800952 1
## 23199 800953 1
## 23200 800954 1
## 23201 800955 1
## 23202 800956 1
## 23203 800957 1
## 23204 800958 1
## 23205 800959 1
## 23206 800960 1
## 23207 800961 1
## 23208 800962 1
## 23209 800963 1
## 23210 800964 1
## 23211 800965 1
## 23212 800966 1
## 23213 800967 1
## 23214 800968 1
## 23215 800969 1
## 23216 800970 1
## 23217 800971 1
## 23218 800972 1
## 23219 800973 1
## 23220 800974 1
## 23221 800975 1
## 23222 800976 1
## 23223 800977 1
## 23224 800978 1
## 23225 800979 1
## 23226 800980 1
## 23227 800981 1
## 23228 800982 1
## 23229 800983 1
## 23230 800984 1
## 23231 800985 1
## 23232 800986 1
## 23233 800987 1
## 23234 800988 1
## 23235 800989 1
## 23236 800990 1
## 23237 800991 1
## 23238 800992 1
## 23239 800993 1
## 23240 800994 1
## 23241 800995 1
## 23242 800996 1
## 23243 800997 1
## 23244 800998 1
## 23245 800999 1
## 23246 801000 1
## 23247 801001 1
## 23248 801002 1
## 23249 801003 1
## 23250 801004 1
## 23251 801005 1
## 23252 801006 1
## 23253 801007 1
## 23254 801008 1
## 23255 801009 1
## 23256 801010 1
## 23257 801013 1
## 23258 801014 1
## 23259 801015 1
## 23260 801016 1
## 23261 801017 1
## 23262 801018 1
## 23263 801019 1
## 23264 801020 1
## 23265 801021 1
## 23266 801022 1
## 23267 801023 1
## 23268 801024 1
## 23269 801025 1
## 23270 801026 1
## 23271 801027 1
## 23272 801028 1
## 23273 801029 1
## 23274 801030 1
## 23275 801031 1
## 23276 801032 1
## 23277 801033 1
## 23278 801034 1
## 23279 801035 1
## 23280 801036 1
## 23281 801037 1
## 23282 801038 1
## 23283 801039 1
## 23284 801040 1
## 23285 801041 1
## 23286 801042 1
## 23287 801043 1
## 23288 801044 1
## 23289 801045 1
## 23290 801046 1
## 23291 801047 1
## 23292 801048 1
## 23293 801049 1
## 23294 801050 1
## 23295 801051 1
## 23296 801052 1
## 23297 801053 1
## 23298 801054 1
## 23299 801055 1
## 23300 801056 1
## 23301 801057 1
## 23302 801058 1
## 23303 801059 1
## 23304 801060 1
## 23305 801061 1
## 23306 801062 1
## 23307 801063 1
## 23308 801064 1
## 23309 801065 1
## 23310 801066 1
## 23311 801067 1
## 23312 801068 1
## 23313 801069 1
## 23314 801070 1
## 23315 801071 1
## 23316 801072 1
## 23317 801073 1
## 23318 801074 1
## 23319 801075 1
## 23320 801076 1
## 23321 801077 1
## 23322 801078 1
## 23323 801079 1
## 23324 801080 1
## 23325 801081 1
## 23326 801082 1
## 23327 801083 1
## 23328 801084 1
## 23329 801085 1
## 23330 801086 1
## 23331 801087 1
## 23332 801088 1
## 23333 801089 1
## 23334 801090 1
## 23335 801091 1
## 23336 801092 1
## 23337 801093 1
## 23338 801094 1
## 23339 801095 1
## 23340 801096 1
## 23341 801097 1
## 23342 801098 1
## 23343 801099 1
## 23344 801100 1
## 23345 801101 1
## 23346 801102 1
## 23347 801103 1
## 23348 801104 1
## 23349 801105 1
## 23350 801106 1
## 23351 801107 1
## 23352 801108 1
## 23353 801109 1
## 23354 801110 1
## 23355 801111 1
## 23356 801112 1
## 23357 801113 1
## 23358 801114 1
## 23359 801115 1
## 23360 801116 1
## 23361 801117 1
## 23362 801118 1
## 23363 801119 1
## 23364 801120 1
## 23365 801121 1
## 23366 801122 1
## 23367 801123 1
## 23368 801124 1
## 23369 801125 1
## 23370 801126 1
## 23371 801127 1
## 23372 801128 1
## 23373 801129 1
## 23374 801130 1
## 23375 801131 1
## 23376 801132 1
## 23377 801133 1
## 23378 801134 1
## 23379 801135 1
## 23380 801136 1
## 23381 801137 1
## 23382 801138 1
## 23383 801139 1
## 23384 801140 1
## 23385 801141 1
## 23386 801142 1
## 23387 801143 1
## 23388 801144 1
## 23389 801145 1
## 23390 801146 1
## 23391 801147 1
## 23392 801148 1
## 23393 801149 1
## 23394 801150 1
## 23395 801151 1
## 23396 801152 1
## 23397 801154 1
## 23398 801155 1
## 23399 801156 1
## 23400 801157 1
## 23401 801158 1
## 23402 801159 1
## 23403 801160 1
## 23404 801161 1
## 23405 801162 1
## 23406 801163 1
## 23407 801164 1
## 23408 801165 1
## 23409 801166 1
## 23410 801167 1
## 23411 801168 1
## 23412 801169 1
## 23413 801170 1
## 23414 801171 1
## 23415 801172 1
## 23416 801173 1
## 23417 801174 1
## 23418 801175 1
## 23419 801176 1
## 23420 801177 1
## 23421 801178 1
## 23422 801179 1
## 23423 801180 1
## 23424 801181 1
## 23425 801182 1
## 23426 801183 1
## 23427 801184 1
## 23428 801185 1
## 23429 801186 1
## 23430 801188 1
## 23431 801189 1
## 23432 801190 1
## 23433 801191 1
## 23434 801192 1
## 23435 801193 1
## 23436 801194 1
## 23437 801195 1
## 23438 801196 1
## 23439 801197 1
## 23440 801198 1
## 23441 801199 1
## 23442 801200 1
## 23443 801201 1
## 23444 801202 1
## 23445 801203 1
## 23446 801204 1
## 23447 801205 1
## 23448 801206 1
## 23449 801207 1
## 23450 801208 1
## 23451 801209 1
## 23452 801210 1
## 23453 801211 1
## 23454 801212 1
## 23455 801213 1
## 23456 801214 1
## 23457 801215 1
## 23458 801216 1
## 23459 801217 1
## 23460 801218 1
## 23461 801219 1
## 23462 801220 1
## 23463 801221 1
## 23464 801222 1
## 23465 801223 1
## 23466 801224 1
## 23467 801225 1
## 23468 801226 1
## 23469 801227 1
## 23470 801228 1
## 23471 801229 1
## 23472 801230 1
## 23473 801231 1
## 23474 801232 1
## 23475 801233 1
## 23476 801234 1
## 23477 801235 1
## 23478 801236 1
## 23479 801237 1
## 23480 801238 1
## 23481 801239 1
## 23482 801240 1
## 23483 801241 1
## 23484 801242 1
## 23485 801243 1
## 23486 801244 1
## 23487 801245 1
## 23488 801246 1
## 23489 801247 1
## 23490 801248 1
## 23491 801249 1
## 23492 801250 1
## 23493 801251 1
## 23494 801252 1
## 23495 801253 1
## 23496 801254 1
## 23497 801255 1
## 23498 801256 1
## 23499 801257 1
## 23500 801258 1
## 23501 801259 1
## 23502 801260 1
## 23503 801261 1
## 23504 801262 1
## 23505 801263 1
## 23506 801264 1
## 23507 801265 1
## 23508 801266 1
## 23509 801267 1
## 23510 801268 1
## 23511 801269 1
## 23512 801270 1
## 23513 801271 1
## 23514 801272 1
## 23515 801273 1
## 23516 801274 1
## 23517 801275 1
## 23518 801276 1
## 23519 801277 1
## 23520 801278 1
## 23521 801279 1
## 23522 801280 1
## 23523 801281 1
## 23524 801282 1
## 23525 801283 1
## 23526 801284 1
## 23527 801285 1
## 23528 801286 1
## 23529 801287 1
## 23530 801288 1
## 23531 801289 1
## 23532 801290 1
## 23533 801291 1
## 23534 801292 1
## 23535 801293 1
## 23536 801294 1
## 23537 801295 1
## 23538 801296 1
## 23539 801297 1
## 23540 801298 1
## 23541 801299 1
## 23542 801300 1
## 23543 801301 1
## 23544 801302 1
## 23545 801303 1
## 23546 801304 1
## 23547 801305 1
## 23548 801306 1
## 23549 801307 1
## 23550 801308 1
## 23551 801309 1
## 23552 801310 1
## 23553 801311 1
## 23554 801312 1
## 23555 801313 1
## 23556 801314 1
## 23557 801315 1
## 23558 801316 1
## 23559 801317 1
## 23560 801318 1
## 23561 801319 1
## 23562 801320 1
## 23563 801321 1
## 23564 801322 1
## 23565 801323 1
## 23566 801324 1
## 23567 801325 1
## 23568 801326 1
## 23569 801327 1
## 23570 801328 1
## 23571 801329 1
## 23572 801330 1
## 23573 801331 1
## 23574 801332 1
## 23575 801333 1
## 23576 801334 1
## 23577 801335 1
## 23578 801336 1
## 23579 801337 1
## 23580 801338 1
## 23581 801339 1
## 23582 801340 1
## 23583 801341 1
## 23584 801342 1
## 23585 801343 1
## 23586 801344 1
## 23587 801345 1
## 23588 801346 1
## 23589 801347 1
## 23590 801348 1
## 23591 801349 1
## 23592 801350 1
## 23593 801351 1
## 23594 801352 1
## 23595 801353 1
## 23596 801354 1
## 23597 801355 1
## 23598 801356 1
## 23599 801357 1
## 23600 801358 1
## 23601 801359 1
## 23602 801360 1
## 23603 801361 1
## 23604 801362 1
## 23605 801363 1
## 23606 801364 1
## 23607 801365 1
## 23608 801366 1
## 23609 801367 1
## 23610 801368 1
## 23611 801369 1
## 23612 801370 1
## 23613 801371 1
## 23614 801372 1
## 23615 801373 1
## 23616 801374 1
## 23617 801375 1
## 23618 801376 1
## 23619 801377 1
## 23620 801378 1
## 23621 801379 1
## 23622 801380 1
## 23623 801381 1
## 23624 801382 1
## 23625 801383 1
## 23626 801384 1
## 23627 801385 1
## 23628 801386 1
## 23629 801387 1
## 23630 801388 1
## 23631 801389 1
## 23632 801390 1
## 23633 801391 1
## 23634 801392 1
## 23635 801393 1
## 23636 801394 1
## 23637 801395 1
## 23638 801396 1
## 23639 801397 1
## 23640 801398 1
## 23641 801399 1
## 23642 801400 1
## 23643 801401 1
## 23644 801402 1
## 23645 801403 1
## 23646 801404 1
## 23647 801405 1
## 23648 801406 1
## 23649 801407 1
## 23650 801408 1
## 23651 801409 1
## 23652 801410 1
## 23653 801411 1
## 23654 801412 1
## 23655 801413 1
## 23656 801414 1
## 23657 801415 1
## 23658 801416 1
## 23659 801417 1
## 23660 801418 1
## 23661 801419 1
## 23662 801420 1
## 23663 801421 1
## 23664 801422 1
## 23665 801423 1
## 23666 801424 1
## 23667 801425 1
## 23668 801426 1
## 23669 801427 1
## 23670 801428 1
## 23671 801429 1
## 23672 801430 1
## 23673 801431 1
## 23674 801432 1
## 23675 801433 1
## 23676 801434 1
## 23677 801435 1
## 23678 801436 1
## 23679 801437 1
## 23680 801438 1
## 23681 801439 1
## 23682 801440 1
## 23683 801441 1
## 23684 801442 1
## 23685 801443 1
## 23686 801444 1
## 23687 801445 1
## 23688 801446 1
## 23689 801447 1
## 23690 801448 1
## 23691 801449 1
## 23692 801450 1
## 23693 801451 1
## 23694 801452 1
## 23695 801453 1
## 23696 801454 1
## 23697 801455 1
## 23698 801456 1
## 23699 801457 1
## 23700 801458 1
## 23701 801459 1
## 23702 801460 1
## 23703 801461 1
## 23704 801462 1
## 23705 801463 1
## 23706 801464 1
## 23707 801465 1
## 23708 801466 1
## 23709 801467 1
## 23710 801468 1
## 23711 801469 1
## 23712 801470 1
## 23713 801471 1
## 23714 801472 1
## 23715 801473 1
## 23716 801474 1
## 23717 801475 1
## 23718 801476 1
## 23719 801477 1
## 23720 801478 1
## 23721 801479 1
## 23722 801480 1
## 23723 801481 1
## 23724 801482 1
## 23725 801483 1
## 23726 801484 1
## 23727 801485 1
## 23728 801486 1
## 23729 801487 1
## 23730 801488 1
## 23731 801489 1
## 23732 801490 1
## 23733 801491 1
## 23734 801492 1
## 23735 801493 1
## 23736 801494 1
## 23737 801495 1
## 23738 801496 1
## 23739 801497 1
## 23740 801498 1
## 23741 801499 1
## 23742 801500 1
## 23743 801501 1
## 23744 801502 1
## 23745 801503 1
## 23746 801504 1
## 23747 801505 1
## 23748 801506 1
## 23749 801507 1
## 23750 801508 1
## 23751 801509 1
## 23752 801510 1
## 23753 801511 1
## 23754 801512 1
## 23755 801513 1
## 23756 801514 1
## 23757 801515 1
## 23758 801516 1
## 23759 801517 1
## 23760 801518 1
## 23761 801519 1
## 23762 801520 1
## 23763 801521 1
## 23764 801522 1
## 23765 801523 1
## 23766 801524 1
## 23767 801525 1
## 23768 801526 1
## 23769 801527 1
## 23770 801528 1
## 23771 801529 1
## 23772 801530 1
## 23773 801531 1
## 23774 801532 1
## 23775 801533 1
## 23776 801534 1
## 23777 801535 1
## 23778 801536 1
## 23779 801537 1
## 23780 801538 1
## 23781 801539 1
## 23782 801540 1
## 23783 801541 1
## 23784 801542 1
## 23785 801543 1
## 23786 801544 1
## 23787 801545 1
## 23788 801546 1
## 23789 801547 1
## 23790 801548 1
## 23791 801549 1
## 23792 801550 1
## 23793 801551 1
## 23794 801552 1
## 23795 801553 1
## 23796 801554 1
## 23797 801555 1
## 23798 801556 1
## 23799 801557 1
## 23800 801558 1
## 23801 801559 1
## 23802 801561 1
## 23803 801562 1
## 23804 801563 1
## 23805 801564 1
## 23806 801565 1
## 23807 801566 1
## 23808 801567 1
## 23809 801568 1
## 23810 801569 1
## 23811 801570 1
## 23812 801571 1
## 23813 801572 1
## 23814 801573 1
## 23815 801574 1
## 23816 801575 1
## 23817 801576 1
## 23818 801577 1
## 23819 801578 1
## 23820 801579 1
## 23821 801580 1
## 23822 801581 1
## 23823 801582 1
## 23824 801583 1
## 23825 801584 1
## 23826 801585 1
## 23827 801586 1
## 23828 801587 1
## 23829 801588 1
## 23830 801589 1
## 23831 801590 1
## 23832 801591 1
## 23833 801592 1
## 23834 801593 1
## 23835 801594 1
## 23836 801595 1
## 23837 801596 1
## 23838 801597 1
## 23839 801598 1
## 23840 801599 1
## 23841 801600 1
## 23842 801601 1
## 23843 801602 1
## 23844 801603 1
## 23845 801604 1
## 23846 801605 1
## 23847 801606 1
## 23848 801607 1
## 23849 801608 1
## 23850 801609 1
## 23851 801610 1
## 23852 801611 1
## 23853 801612 1
## 23854 801613 1
## 23855 801614 1
## 23856 801615 1
## 23857 801616 1
## 23858 801617 1
## 23859 801618 1
## 23860 801619 1
## 23861 801620 1
## 23862 801621 1
## 23863 801622 1
## 23864 801623 1
## 23865 801624 1
## 23866 801625 1
## 23867 801626 1
## 23868 801627 1
## 23869 801628 1
## 23870 801629 1
## 23871 801630 1
## 23872 801631 1
## 23873 801632 1
## 23874 801633 1
## 23875 801634 1
## 23876 801635 1
## 23877 801636 1
## 23878 801637 1
## 23879 801638 1
## 23880 801639 1
## 23881 801640 1
## 23882 801641 1
## 23883 801642 1
## 23884 801643 1
## 23885 801644 1
## 23886 801645 1
## 23887 801646 1
## 23888 801647 1
## 23889 801648 1
## 23890 801649 1
## 23891 801650 1
## 23892 801651 1
## 23893 801652 1
## 23894 801653 1
## 23895 801655 1
## 23896 801656 1
## 23897 801657 1
## 23898 801658 1
## 23899 801659 1
## 23900 801660 1
## 23901 801661 1
## 23902 801662 1
## 23903 801663 1
## 23904 801664 1
## 23905 801665 1
## 23906 801666 1
## 23907 801667 1
## 23908 801668 1
## 23909 801669 1
## 23910 801670 1
## 23911 801671 1
## 23912 801672 1
## 23913 801673 1
## 23914 801674 1
## 23915 801675 1
## 23916 801676 1
## 23917 801677 1
## 23918 801678 1
## 23919 801679 1
## 23920 801680 1
## 23921 801681 1
## 23922 801682 1
## 23923 801683 1
## 23924 801684 1
## 23925 801685 1
## 23926 801686 1
## 23927 801687 1
## 23928 801688 1
## 23929 801689 1
## 23930 801690 1
## 23931 801691 1
## 23932 801692 1
## 23933 801693 1
## 23934 801694 1
## 23935 801695 1
## 23936 801696 1
## 23937 801697 1
## 23938 801698 1
## 23939 801699 1
## 23940 801700 1
## 23941 801701 1
## 23942 801702 1
## 23943 801703 1
## 23944 801704 1
## 23945 801705 1
## 23946 801706 1
## 23947 801707 1
## 23948 801708 1
## 23949 801709 1
## 23950 801710 1
## 23951 801711 1
## 23952 801712 1
## 23953 801713 1
## 23954 801714 1
## 23955 801715 1
## 23956 801716 1
## 23957 801717 1
## 23958 801718 1
## 23959 801719 1
## 23960 801720 1
## 23961 801721 1
## 23962 801722 1
## 23963 801723 1
## 23964 801724 1
## 23965 801725 1
## 23966 801726 1
## 23967 801727 1
## 23968 801728 1
## 23969 801729 1
## 23970 801730 1
## 23971 801731 1
## 23972 801732 1
## 23973 801733 1
## 23974 801734 1
## 23975 801735 1
## 23976 801736 1
## 23977 801737 1
## 23978 801738 1
## 23979 801739 1
## 23980 801740 1
## 23981 801741 1
## 23982 801742 1
## 23983 801743 1
## 23984 801744 1
## 23985 801745 1
## 23986 801746 1
## 23987 801747 1
## 23988 801748 1
## 23989 801749 1
## 23990 801750 1
## 23991 801751 1
## 23992 801752 1
## 23993 801753 1
## 23994 801754 1
## 23995 801755 1
## 23996 801756 1
## 23997 801757 1
## 23998 801758 1
## 23999 801759 1
## 24000 801760 1
## 24001 801761 1
## 24002 801762 1
## 24003 801763 1
## 24004 801764 1
## 24005 801765 1
## 24006 801766 1
## 24007 801767 1
## 24008 801768 1
## 24009 801770 1
## 24010 801771 1
## 24011 801772 1
## 24012 801773 1
## 24013 801774 1
## 24014 801775 1
## 24015 801776 1
## 24016 801777 1
## 24017 801778 1
## 24018 801779 1
## 24019 801780 1
## 24020 801781 1
## 24021 801782 1
## 24022 801783 1
## 24023 801784 1
## 24024 801785 1
## 24025 801786 1
## 24026 801787 1
## 24027 801788 1
## 24028 801789 1
## 24029 801790 1
## 24030 801791 1
## 24031 801792 1
## 24032 801793 1
## 24033 801794 1
## 24034 801795 1
## 24035 801796 1
## 24036 801797 1
## 24037 801798 1
## 24038 801799 1
## 24039 801800 1
## 24040 801801 1
## 24041 801802 1
## 24042 801803 1
## 24043 801804 1
## 24044 801805 1
## 24045 801806 1
## 24046 801807 1
## 24047 801808 1
## 24048 801809 1
## 24049 801810 1
## 24050 801811 1
## 24051 801812 1
## 24052 801813 1
## 24053 801814 1
## 24054 801815 1
## 24055 801816 1
## 24056 801817 1
## 24057 801818 1
## 24058 801819 1
## 24059 801820 1
## 24060 801821 1
## 24061 801822 1
## 24062 801823 1
## 24063 801824 1
## 24064 801825 1
## 24065 801826 1
## 24066 801827 1
## 24067 801828 1
## 24068 801829 1
## 24069 801830 1
## 24070 801831 1
## 24071 801832 1
## 24072 801833 1
## 24073 801834 1
## 24074 801835 1
## 24075 801836 1
## 24076 801837 1
## 24077 801838 1
## 24078 801839 1
## 24079 801840 1
## 24080 801841 1
## 24081 801842 1
## 24082 801843 1
## 24083 801844 1
## 24084 801845 1
## 24085 801846 1
## 24086 801847 1
## 24087 801848 1
## 24088 801849 1
## 24089 801850 1
## 24090 801851 1
## 24091 801852 1
## 24092 801853 1
## 24093 801854 1
## 24094 801855 1
## 24095 801856 1
## 24096 801857 1
## 24097 801858 1
## 24098 801859 1
## 24099 801860 1
## 24100 801861 1
## 24101 801862 1
## 24102 801863 1
## 24103 801864 1
## 24104 801865 1
## 24105 801866 1
## 24106 801867 1
## 24107 801868 1
## 24108 801869 1
## 24109 801870 1
## 24110 801871 1
## 24111 801872 1
## 24112 801873 1
## 24113 801874 1
## 24114 801875 1
## 24115 801876 1
## 24116 801877 1
## 24117 801878 1
## 24118 801879 1
## 24119 801880 1
## 24120 801881 1
## 24121 801882 1
## 24122 801883 1
## 24123 801884 1
## 24124 801885 1
## 24125 801886 1
## 24126 801887 1
## 24127 801888 1
## 24128 801889 1
## 24129 801890 1
## 24130 801892 1
## 24131 801893 1
## 24132 801894 1
## 24133 801895 1
## 24134 801896 1
## 24135 801897 1
## 24136 801898 1
## 24137 801899 1
## 24138 801900 1
## 24139 801901 1
## 24140 801902 1
## 24141 801903 1
## 24142 801904 1
## 24143 801905 1
## 24144 801906 1
## 24145 801907 1
## 24146 801908 1
## 24147 801909 1
## 24148 801910 1
## 24149 801911 1
## 24150 801912 1
## 24151 801913 1
## 24152 801914 1
## 24153 801915 1
## 24154 801916 1
## 24155 801917 1
## 24156 801918 1
## 24157 801919 1
## 24158 801920 1
## 24159 801921 1
## 24160 801922 1
## 24161 801923 1
## 24162 801924 1
## 24163 801925 1
## 24164 801926 1
## 24165 801927 1
## 24166 801928 1
## 24167 801929 1
## 24168 801930 1
## 24169 801931 1
## 24170 801932 1
## 24171 801933 1
## 24172 801934 1
## 24173 801935 1
## 24174 801936 1
## 24175 801937 1
## 24176 801938 1
## 24177 801939 1
## 24178 801940 1
## 24179 801941 1
## 24180 801942 1
## 24181 801943 1
## 24182 801944 1
## 24183 801945 1
## 24184 801946 1
## 24185 801947 1
## 24186 801948 1
## 24187 801949 1
## 24188 801950 1
## 24189 801951 1
## 24190 801952 1
## 24191 801953 1
## 24192 801954 1
## 24193 801955 1
## 24194 801956 1
## 24195 801957 1
## 24196 801958 1
## 24197 801959 1
## 24198 801960 1
## 24199 801961 1
## 24200 801962 1
## 24201 801963 1
## 24202 801964 1
## 24203 801965 1
## 24204 801966 1
## 24205 801967 1
## 24206 801968 1
## 24207 801969 1
## 24208 801970 1
## 24209 801971 1
## 24210 801972 1
## 24211 801973 1
## 24212 801974 1
## 24213 801975 1
## 24214 801976 1
## 24215 801977 1
## 24216 801978 1
## 24217 801979 1
## 24218 801980 1
## 24219 801981 1
## 24220 801982 1
## 24221 801983 1
## 24222 801984 1
## 24223 801985 1
## 24224 801986 1
## 24225 801987 1
## 24226 801988 1
## 24227 801989 1
## 24228 801990 1
## 24229 801991 1
## 24230 801992 1
## 24231 801993 1
## 24232 801994 1
## 24233 801995 1
## 24234 801996 1
## 24235 801997 1
## 24236 801998 1
## 24237 801999 1
## 24238 802000 1
## 24239 802001 1
## 24240 802002 1
## 24241 802003 1
## 24242 802004 1
## 24243 802005 1
## 24244 802006 1
## 24245 802007 1
## 24246 802008 1
## 24247 802009 1
## 24248 802010 1
## 24249 802011 1
## 24250 802012 1
## 24251 802013 1
## 24252 802014 1
## 24253 802015 1
## 24254 802016 1
## 24255 802017 1
## 24256 802018 1
## 24257 802019 1
## 24258 802020 1
## 24259 802021 1
## 24260 802022 1
## 24261 802023 1
## 24262 802024 1
## 24263 802025 1
## 24264 802026 1
## 24265 802027 1
## 24266 802028 1
## 24267 802029 1
## 24268 802030 1
## 24269 802031 1
## 24270 802032 1
## 24271 802033 1
## 24272 802034 1
## 24273 802035 1
## 24274 802036 1
## 24275 802037 1
## 24276 802038 1
## 24277 802039 1
## 24278 802040 1
## 24279 802041 1
## 24280 802042 1
## 24281 802043 1
## 24282 802044 1
## 24283 802045 1
## 24284 802046 1
## 24285 802047 1
## 24286 802048 1
## 24287 802049 1
## 24288 802050 1
## 24289 802051 1
## 24290 802052 1
## 24291 802053 1
## 24292 802054 1
## 24293 802055 1
## 24294 802056 1
## 24295 802057 1
## 24296 802058 1
## 24297 802059 1
## 24298 802060 1
## 24299 802061 1
## 24300 802062 1
## 24301 802063 1
## 24302 802064 1
## 24303 802065 1
## 24304 802066 1
## 24305 802067 1
## 24306 802068 1
## 24307 802069 1
## 24308 802070 1
## 24309 802071 1
## 24310 802072 1
## 24311 802073 1
## 24312 802074 1
## 24313 802075 1
## 24314 802076 1
## 24315 802077 1
## 24316 802078 1
## 24317 802079 1
## 24318 802080 1
## 24319 802081 1
## 24320 802082 1
## 24321 802083 1
## 24322 802084 1
## 24323 802086 1
## 24324 802087 1
## 24325 802088 1
## 24326 802089 1
## 24327 802090 1
## 24328 802091 1
## 24329 802092 1
## 24330 802093 1
## 24331 802094 1
## 24332 802095 1
## 24333 802096 1
## 24334 802097 1
## 24335 802098 1
## 24336 802099 1
## 24337 802100 1
## 24338 802101 1
## 24339 802102 1
## 24340 802103 1
## 24341 802104 1
## 24342 802105 1
## 24343 802106 1
## 24344 802107 1
## 24345 802108 1
## 24346 802109 1
## 24347 802110 1
## 24348 802111 1
## 24349 802112 1
## 24350 802113 1
## 24351 802114 1
## 24352 802115 1
## 24353 802116 1
## 24354 802117 1
## 24355 802118 1
## 24356 802119 1
## 24357 802120 1
## 24358 802121 1
## 24359 802122 1
## 24360 802123 1
## 24361 802124 1
## 24362 802125 1
## 24363 802126 1
## 24364 802127 1
## 24365 802128 1
## 24366 802129 1
## 24367 802130 1
## 24368 802131 1
## 24369 802132 1
## 24370 802133 1
## 24371 802134 1
## 24372 802135 1
## 24373 802136 1
## 24374 802137 1
## 24375 802138 1
## 24376 802139 1
## 24377 802140 1
## 24378 802141 1
## 24379 802142 1
## 24380 802143 1
## 24381 802144 1
## 24382 802145 1
## 24383 802146 1
## 24384 802147 1
## 24385 802148 1
## 24386 802149 1
## 24387 802150 1
## 24388 802151 1
## 24389 802152 1
## 24390 802153 1
## 24391 802154 1
## 24392 802155 1
## 24393 802156 1
## 24394 802157 1
## 24395 802158 1
## 24396 802159 1
## 24397 802160 1
## 24398 802161 1
## 24399 802162 1
## 24400 802163 1
## 24401 802164 1
## 24402 802165 1
## 24403 802166 1
## 24404 802167 1
## 24405 802168 1
## 24406 802169 1
## 24407 802170 1
## 24408 802171 1
## 24409 802172 1
## 24410 802173 1
## 24411 802174 1
## 24412 802175 1
## 24413 802176 1
## 24414 802177 1
## 24415 802178 1
## 24416 802179 1
## 24417 802180 1
## 24418 802181 1
## 24419 802182 1
## 24420 802183 1
## 24421 802185 1
## 24422 802186 1
## 24423 802187 1
## 24424 802188 1
## 24425 802189 1
## 24426 802190 1
## 24427 802191 1
## 24428 802192 1
## 24429 802193 1
## 24430 802194 1
## 24431 802195 1
## 24432 802196 1
## 24433 802197 1
## 24434 802198 1
## 24435 802199 1
## 24436 802200 1
## 24437 802201 1
## 24438 802202 1
## 24439 802203 1
## 24440 802204 1
## 24441 802205 1
## 24442 802206 1
## 24443 802207 1
## 24444 802208 1
## 24445 802209 1
## 24446 802210 1
## 24447 802211 1
## 24448 802212 1
## 24449 802213 1
## 24450 802214 1
## 24451 802215 1
## 24452 802216 1
## 24453 802217 1
## 24454 802218 1
## 24455 802219 1
## 24456 802220 1
## 24457 802221 1
## 24458 802222 1
## 24459 802223 1
## 24460 802224 1
## 24461 802225 1
## 24462 802226 1
## 24463 802227 1
## 24464 802228 1
## 24465 802229 1
## 24466 802230 1
## 24467 802231 1
## 24468 802232 1
## 24469 802233 1
## 24470 802234 1
## 24471 802235 1
## 24472 802236 1
## 24473 802237 1
## 24474 802238 1
## 24475 802239 1
## 24476 802240 1
## 24477 802241 1
## 24478 802242 1
## 24479 802243 1
## 24480 802244 1
## 24481 802245 1
## 24482 802246 1
## 24483 802247 1
## 24484 802248 1
## 24485 802249 1
## 24486 802250 1
## 24487 802251 1
## 24488 802252 1
## 24489 802253 1
## 24490 802254 1
## 24491 802255 1
## 24492 802256 1
## 24493 802257 1
## 24494 802258 1
## 24495 802259 1
## 24496 802260 1
## 24497 802261 1
## 24498 802262 1
## 24499 802263 1
## 24500 802264 1
## 24501 802265 1
## 24502 802266 1
## 24503 802267 1
## 24504 802268 1
## 24505 802269 1
## 24506 802271 1
## 24507 802272 1
## 24508 802273 1
## 24509 802274 1
## 24510 802275 1
## 24511 802276 1
## 24512 802277 1
## 24513 802278 1
## 24514 802279 1
## 24515 802280 1
## 24516 802281 1
## 24517 802282 1
## 24518 802283 1
## 24519 802284 1
## 24520 802285 1
## 24521 802286 1
## 24522 802287 1
## 24523 802288 1
## 24524 802289 1
## 24525 802290 1
## 24526 802291 1
## 24527 802292 1
## 24528 802293 1
## 24529 802294 1
## 24530 802295 1
## 24531 802296 1
## 24532 802297 1
## 24533 802298 1
## 24534 802299 1
## 24535 802300 1
## 24536 802301 1
## 24537 802302 1
## 24538 802303 1
## 24539 802304 1
## 24540 802305 1
## 24541 802306 1
## 24542 802307 1
## 24543 802308 1
## 24544 802309 1
## 24545 802310 1
## 24546 802311 1
## 24547 802312 1
## 24548 802313 1
## 24549 802314 1
## 24550 802315 1
## 24551 802316 1
## 24552 802317 1
## 24553 802318 1
## 24554 802319 1
## 24555 802320 1
## 24556 802321 1
## 24557 802322 1
## 24558 802323 1
## 24559 802324 1
## 24560 802325 1
## 24561 802326 1
## 24562 802327 1
## 24563 802328 1
## 24564 802329 1
## 24565 802330 1
## 24566 802331 1
## 24567 802332 1
## 24568 802333 1
## 24569 802334 1
## 24570 802335 1
## 24571 802336 1
## 24572 802337 1
## 24573 802338 1
## 24574 802339 1
## 24575 802340 1
## 24576 802341 1
## 24577 802342 1
## 24578 802343 1
## 24579 802344 1
## 24580 802345 1
## 24581 802346 1
## 24582 802347 1
## 24583 802348 1
## 24584 802349 1
## 24585 802350 1
## 24586 802351 1
## 24587 802352 1
## 24588 802353 1
## 24589 802354 1
## 24590 802355 1
## 24591 802356 1
## 24592 802357 1
## 24593 802358 1
## 24594 802359 1
## 24595 802360 1
## 24596 802361 1
## 24597 802362 1
## 24598 802363 1
## 24599 802364 1
## 24600 802365 1
## 24601 802366 1
## 24602 802367 1
## 24603 802368 1
## 24604 802369 1
## 24605 802370 1
## 24606 802371 1
## 24607 802372 1
## 24608 802373 1
## 24609 802374 1
## 24610 802375 1
## 24611 802376 1
## 24612 802377 1
## 24613 802378 1
## 24614 802379 1
## 24615 802380 1
## 24616 802381 1
## 24617 802382 1
## 24618 802383 1
## 24619 802384 1
## 24620 802385 1
## 24621 802386 1
## 24622 802387 1
## 24623 802388 1
## 24624 802389 1
## 24625 802390 1
## 24626 802391 1
## 24627 802392 1
## 24628 802393 1
## 24629 802394 1
## 24630 802395 1
## 24631 802396 1
## 24632 802397 1
## 24633 802398 1
## 24634 802399 1
## 24635 802400 1
## 24636 802401 1
## 24637 802402 1
## 24638 802403 1
## 24639 802404 1
## 24640 802405 1
## 24641 802406 1
## 24642 802407 1
## 24643 802408 1
## 24644 802409 1
## 24645 802410 1
## 24646 802411 1
## 24647 802412 1
## 24648 802413 1
## 24649 802414 1
## 24650 802415 1
## 24651 802416 1
## 24652 802417 1
## 24653 802418 1
## 24654 802419 1
## 24655 802420 1
## 24656 802421 1
## 24657 802422 1
## 24658 802423 1
## 24659 802424 1
## 24660 802425 1
## 24661 802426 1
## 24662 802427 1
## 24663 802428 1
## 24664 802429 1
## 24665 802430 1
## 24666 802431 1
## 24667 802432 1
## 24668 802433 1
## 24669 802434 1
## 24670 802435 1
## 24671 802436 1
## 24672 802437 1
## 24673 802438 1
## 24674 802439 1
## 24675 802440 1
## 24676 802441 1
## 24677 802442 1
## 24678 802443 1
## 24679 802444 1
## 24680 802445 1
## 24681 802446 1
## 24682 802447 1
## 24683 802448 1
## 24684 802449 1
## 24685 802450 1
## 24686 802451 1
## 24687 802452 1
## 24688 802453 1
## 24689 802454 1
## 24690 802455 1
## 24691 802456 1
## 24692 802457 1
## 24693 802458 1
## 24694 802459 1
## 24695 802460 1
## 24696 802461 1
## 24697 802462 1
## 24698 802463 1
## 24699 802464 1
## 24700 802465 1
## 24701 802467 1
## 24702 802468 1
## 24703 802469 1
## 24704 802470 1
## 24705 802471 1
## 24706 802473 1
## 24707 802474 1
## 24708 802475 1
## 24709 802476 1
## 24710 802477 1
## 24711 802478 1
## 24712 802479 1
## 24713 802480 1
## 24714 802481 1
## 24715 802482 1
## 24716 802483 1
## 24717 802484 1
## 24718 802485 1
## 24719 802486 1
## 24720 802487 1
## 24721 802488 1
## 24722 802489 1
## 24723 802490 1
## 24724 802491 1
## 24725 802492 1
## 24726 802493 1
## 24727 802494 1
## 24728 802495 1
## 24729 802496 1
## 24730 802497 1
## 24731 802498 1
## 24732 802499 1
## 24733 802500 1
## 24734 802501 1
## 24735 802502 1
## 24736 802503 1
## 24737 802504 1
## 24738 802505 1
## 24739 802506 1
## 24740 802507 1
## 24741 802508 1
## 24742 802509 1
## 24743 802510 1
## 24744 802511 1
## 24745 802512 1
## 24746 802513 1
## 24747 802514 1
## 24748 802515 1
## 24749 802516 1
## 24750 802517 1
## 24751 802518 1
## 24752 802519 1
## 24753 802520 1
## 24754 802521 1
## 24755 802522 1
## 24756 802523 1
## 24757 802524 1
## 24758 802525 1
## 24759 802526 1
## 24760 802527 1
## 24761 802528 1
## 24762 802529 1
## 24763 802530 1
## 24764 802531 1
## 24765 802532 1
## 24766 802533 1
## 24767 802534 1
## 24768 802535 1
## 24769 802536 1
## 24770 802537 1
## 24771 802538 1
## 24772 802539 1
## 24773 802540 1
## 24774 802541 1
## 24775 802542 1
## 24776 802543 1
## 24777 802544 1
## 24778 802545 1
## 24779 802546 1
## 24780 802547 1
## 24781 802548 1
## 24782 802549 1
## 24783 802550 1
## 24784 802551 1
## 24785 802552 1
## 24786 802553 1
## 24787 802554 1
## 24788 802555 1
## 24789 802556 1
## 24790 802557 1
## 24791 802558 1
## 24792 802559 1
## 24793 802560 1
## 24794 802561 1
## 24795 802562 1
## 24796 802563 1
## 24797 802564 1
## 24798 802565 1
## 24799 802566 1
## 24800 802567 1
## 24801 802568 1
## 24802 802569 1
## 24803 802570 1
## 24804 802571 1
## 24805 802572 1
## 24806 802573 1
## 24807 802574 1
## 24808 802575 1
## 24809 802576 1
## 24810 802577 1
## 24811 802578 1
## 24812 802579 1
## 24813 802580 1
## 24814 802581 1
## 24815 802582 1
## 24816 802583 1
## 24817 802584 1
## 24818 802585 1
## 24819 802586 1
## 24820 802587 1
## 24821 802588 1
## 24822 802589 1
## 24823 802590 1
## 24824 802591 1
## 24825 802592 1
## 24826 802593 1
## 24827 802594 1
## 24828 802595 1
## 24829 802596 1
## 24830 802597 1
## 24831 802598 1
## 24832 802599 1
## 24833 802600 1
## 24834 802601 1
## 24835 802602 1
## 24836 802603 1
## 24837 802604 1
## 24838 802605 1
## 24839 802606 1
## 24840 802607 1
## 24841 802608 1
## 24842 802609 1
## 24843 802610 1
## 24844 802611 1
## 24845 802612 1
## 24846 802613 1
## 24847 802614 1
## 24848 802615 1
## 24849 802616 1
## 24850 802617 1
## 24851 802618 1
## 24852 802619 1
## 24853 802620 1
## 24854 802621 1
## 24855 802622 1
## 24856 802623 1
## 24857 802624 1
## 24858 802625 1
## 24859 802626 1
## 24860 802627 1
## 24861 802628 1
## 24862 802629 1
## 24863 802630 1
## 24864 802631 1
## 24865 802632 1
## 24866 802633 1
## 24867 802634 1
## 24868 802635 1
## 24869 802636 1
## 24870 802637 1
## 24871 802638 1
## 24872 802639 1
## 24873 802640 1
## 24874 802641 1
## 24875 802642 1
## 24876 802643 1
## 24877 802644 1
## 24878 802645 1
## 24879 802646 1
## 24880 802647 1
## 24881 802648 1
## 24882 802649 1
## 24883 802650 1
## 24884 802651 1
## 24885 802652 1
## 24886 802653 1
## 24887 802654 1
## 24888 802655 1
## 24889 802656 1
## 24890 802657 1
## 24891 802658 1
## 24892 802659 1
## 24893 802660 1
## 24894 802661 1
## 24895 802662 1
## 24896 802663 1
## 24897 802664 1
## 24898 802665 1
## 24899 802666 1
## 24900 802667 1
## 24901 802668 1
## 24902 802669 1
## 24903 802670 1
## 24904 802671 1
## 24905 802672 1
## 24906 802673 1
## 24907 802674 1
## 24908 802675 1
## 24909 802676 1
## 24910 802677 1
## 24911 802678 1
## 24912 802679 1
## 24913 802680 1
## 24914 802681 1
## 24915 802682 1
## 24916 802683 1
## 24917 802684 1
## 24918 802685 1
## 24919 802686 1
## 24920 802687 1
## 24921 802688 1
## 24922 802689 1
## 24923 802690 1
## 24924 802691 1
## 24925 802692 1
## 24926 802693 1
## 24927 802694 1
## 24928 802695 1
## 24929 802696 1
## 24930 802697 1
## 24931 802698 1
## 24932 802699 1
## 24933 802701 1
## 24934 802702 1
## 24935 802703 1
## 24936 802704 1
## 24937 802705 1
## 24938 802706 1
## 24939 802707 1
## 24940 802708 1
## 24941 802709 1
## 24942 802710 1
## 24943 802711 1
## 24944 802712 1
## 24945 802713 1
## 24946 802714 1
## 24947 802715 1
## 24948 802716 1
## 24949 802717 1
## 24950 802718 1
## 24951 802719 1
## 24952 802720 1
## 24953 802721 1
## 24954 802722 1
## 24955 802723 1
## 24956 802724 1
## 24957 802725 1
## 24958 802726 1
## 24959 802727 1
## 24960 802728 1
## 24961 802729 1
## 24962 802730 1
## 24963 802731 1
## 24964 802732 1
## 24965 802733 1
## 24966 802734 1
## 24967 802735 1
## 24968 802736 1
## 24969 802737 1
## 24970 802738 1
## 24971 802739 1
## 24972 802740 1
## 24973 802741 1
## 24974 802742 1
## 24975 802743 1
## 24976 802744 1
## 24977 802745 1
## 24978 802746 1
## 24979 802747 1
## 24980 802748 1
## 24981 802749 1
## 24982 802750 1
## 24983 802751 1
## 24984 802752 1
## 24985 802753 1
## 24986 802754 1
## 24987 802755 1
## 24988 802756 1
## 24989 802757 1
## 24990 802758 1
## 24991 802759 1
## 24992 802760 1
## 24993 802761 1
## 24994 802762 1
## 24995 802763 1
## 24996 802764 1
## 24997 802765 1
## 24998 802766 1
## 24999 802767 1
## 25000 802768 1
## 25001 802769 1
## 25002 802770 1
## 25003 802771 1
## 25004 802772 1
## 25005 802773 1
## 25006 802774 1
## 25007 802775 1
## 25008 802776 1
## 25009 802777 1
## 25010 802778 1
## 25011 802779 1
## 25012 802780 1
## 25013 802781 1
## 25014 802782 1
## 25015 802783 1
## 25016 802784 1
## 25017 802785 1
## 25018 802786 1
## 25019 802787 1
## 25020 802788 1
## 25021 802789 1
## 25022 802790 1
## 25023 802791 1
## 25024 802792 1
## 25025 802793 1
## 25026 802794 1
## 25027 802795 1
## 25028 802796 1
## 25029 802797 1
## 25030 802798 1
## 25031 802799 1
## 25032 802800 1
## 25033 802801 1
## 25034 802803 1
## 25035 802804 1
## 25036 802805 1
## 25037 802806 1
## 25038 802807 1
## 25039 802808 1
## 25040 802809 1
## 25041 802810 1
## 25042 802811 1
## 25043 802812 1
## 25044 802813 1
## 25045 802814 1
## 25046 802815 1
## 25047 802816 1
## 25048 802817 1
## 25049 802818 1
## 25050 802819 1
## 25051 802820 1
## 25052 802821 1
## 25053 802822 1
## 25054 802823 1
## 25055 802824 1
## 25056 802825 1
## 25057 802826 1
## 25058 802827 1
## 25059 802828 1
## 25060 802829 1
## 25061 802830 1
## 25062 802831 1
## 25063 802832 1
## 25064 802833 1
## 25065 802834 1
## 25066 802835 1
## 25067 802836 1
## 25068 802837 1
## 25069 802838 1
## 25070 802839 1
## 25071 802840 1
## 25072 802841 1
## 25073 802842 1
## 25074 802843 1
## 25075 802845 1
## 25076 802846 1
## 25077 802847 1
## 25078 802848 1
## 25079 802849 1
## 25080 802850 1
## 25081 802851 1
## 25082 802852 1
## 25083 802853 1
## 25084 802854 1
## 25085 802855 1
## 25086 802856 1
## 25087 802857 1
## 25088 802858 1
## 25089 802859 1
## 25090 802860 1
## 25091 802861 1
## 25092 802862 1
## 25093 802863 1
## 25094 802864 1
## 25095 802865 1
## 25096 802866 1
## 25097 802867 1
## 25098 802868 1
## 25099 802869 1
## 25100 802870 1
## 25101 802871 1
## 25102 802872 1
## 25103 802873 1
## 25104 802874 1
## 25105 802875 1
## 25106 802876 1
## 25107 802877 1
## 25108 802878 1
## 25109 802879 1
## 25110 802880 1
## 25111 802881 1
## 25112 802882 1
## 25113 802883 1
## 25114 802884 1
## 25115 802885 1
## 25116 802886 1
## 25117 802887 1
## 25118 802888 1
## 25119 802889 1
## 25120 802890 1
## 25121 802891 1
## 25122 802892 1
## 25123 802893 1
## 25124 802894 1
## 25125 802895 1
## 25126 802896 1
## 25127 802897 1
## 25128 802898 1
## 25129 802899 1
## 25130 802900 1
## 25131 802901 1
## 25132 802902 1
## 25133 802903 1
## 25134 802904 1
## 25135 802905 1
## 25136 802906 1
## 25137 802907 1
## 25138 802908 1
## 25139 802909 1
## 25140 802910 1
## 25141 802911 1
## 25142 802912 1
## 25143 802913 1
## 25144 802914 1
## 25145 802915 1
## 25146 802916 1
## 25147 802917 1
## 25148 802918 1
## 25149 802919 1
## 25150 802920 1
## 25151 802921 1
## 25152 802922 1
## 25153 802923 1
## 25154 802924 1
## 25155 802925 1
## 25156 802926 1
## 25157 802927 1
## 25158 802928 1
## 25159 802929 1
## 25160 802930 1
## 25161 802931 1
## 25162 802932 1
## 25163 802933 1
## 25164 802934 1
## 25165 802935 1
## 25166 802936 1
## 25167 802937 1
## 25168 802938 1
## 25169 802939 1
## 25170 802940 1
## 25171 802941 1
## 25172 802942 1
## 25173 802943 1
## 25174 802944 1
## 25175 802945 1
## 25176 802946 1
## 25177 802947 1
## 25178 802948 1
## 25179 802949 1
## 25180 802950 1
## 25181 802951 1
## 25182 802952 1
## 25183 802953 1
## 25184 802954 1
## 25185 802955 1
## 25186 802956 1
## 25187 802957 1
## 25188 802958 1
## 25189 802959 1
## 25190 802960 1
## 25191 802961 1
## 25192 802962 1
## 25193 802963 1
## 25194 802964 1
## 25195 802965 1
## 25196 802966 1
## 25197 802967 1
## 25198 802968 1
## 25199 802969 1
## 25200 802970 1
## 25201 802971 1
## 25202 802972 1
## 25203 802973 1
## 25204 802974 1
## 25205 802975 1
## 25206 802976 1
## 25207 802977 1
## 25208 802978 1
## 25209 802979 1
## 25210 802980 1
## 25211 802981 1
## 25212 802982 1
## 25213 802983 1
## 25214 802984 1
## 25215 802985 1
## 25216 802986 1
## 25217 802987 1
## 25218 802988 1
## 25219 802989 1
## 25220 802990 1
## 25221 802991 1
## 25222 802992 1
## 25223 802993 1
## 25224 802994 1
## 25225 802995 1
## 25226 802996 1
## 25227 802997 1
## 25228 802998 1
## 25229 802999 1
## 25230 803000 1
## 25231 803001 1
## 25232 803002 1
## 25233 803003 1
## 25234 803004 1
## 25235 803005 1
## 25236 803006 1
## 25237 803007 1
## 25238 803008 1
## 25239 803009 1
## 25240 803010 1
## 25241 803011 1
## 25242 803012 1
## 25243 803013 1
## 25244 803014 1
## 25245 803015 1
## 25246 803016 1
## 25247 803017 1
## 25248 803018 1
## 25249 803019 1
## 25250 803020 1
## 25251 803021 1
## 25252 803022 1
## 25253 803023 1
## 25254 803024 1
## 25255 803025 1
## 25256 803026 1
## 25257 803027 1
## 25258 803028 1
## 25259 803029 1
## 25260 803030 1
## 25261 803031 1
## 25262 803032 1
## 25263 803033 1
## 25264 803034 1
## 25265 803035 1
## 25266 803036 1
## 25267 803037 1
## 25268 803038 1
## 25269 803039 1
## 25270 803040 1
## 25271 803041 1
## 25272 803042 1
## 25273 803043 1
## 25274 803044 1
## 25275 803045 1
## 25276 803046 1
## 25277 803047 1
## 25278 803048 1
## 25279 803049 1
## 25280 803050 1
## 25281 803051 1
## 25282 803052 1
## 25283 803053 1
## 25284 803054 1
## 25285 803055 1
## 25286 803056 1
## 25287 803058 1
## 25288 803059 1
## 25289 803060 1
## 25290 803061 1
## 25291 803062 1
## 25292 803063 1
## 25293 803064 1
## 25294 803065 1
## 25295 803066 1
## 25296 803067 1
## 25297 803068 1
## 25298 803069 1
## 25299 803070 1
## 25300 803071 1
## 25301 803072 1
## 25302 803073 1
## 25303 803074 1
## 25304 803075 1
## 25305 803076 1
## 25306 803077 1
## 25307 803078 1
## 25308 803079 1
## 25309 803080 1
## 25310 803081 1
## 25311 803082 1
## 25312 803083 1
## 25313 803084 1
## 25314 803085 1
## 25315 803086 1
## 25316 803087 1
## 25317 803088 1
## 25318 803089 1
## 25319 803090 1
## 25320 803091 1
## 25321 803092 1
## 25322 803093 1
## 25323 803094 1
## 25324 803095 1
## 25325 803096 1
## 25326 803097 1
## 25327 803098 1
## 25328 803099 1
## 25329 803100 1
## 25330 803101 1
## 25331 803102 1
## 25332 803103 1
## 25333 803104 1
## 25334 803105 1
## 25335 803106 1
## 25336 803107 1
## 25337 803108 1
## 25338 803109 1
## 25339 803110 1
## 25340 803111 1
## 25341 803112 1
## 25342 803113 1
## 25343 803114 1
## 25344 803115 1
## 25345 803116 1
## 25346 803117 1
## 25347 803118 1
## 25348 803119 1
## 25349 803120 1
## 25350 803121 1
## 25351 803122 1
## 25352 803123 1
## 25353 803124 1
## 25354 803125 1
## 25355 803126 1
## 25356 803127 1
## 25357 803128 1
## 25358 803129 1
## 25359 803130 1
## 25360 803131 1
## 25361 803132 1
## 25362 803133 1
## 25363 803134 1
## 25364 803135 1
## 25365 803136 1
## 25366 803137 1
## 25367 803138 1
## 25368 803139 1
## 25369 803140 1
## 25370 803141 1
## 25371 803142 1
## 25372 803143 1
## 25373 803144 1
## 25374 803145 1
## 25375 803146 1
## 25376 803147 1
## 25377 803148 1
## 25378 803149 1
## 25379 803150 1
## 25380 803151 1
## 25381 803152 1
## 25382 803153 1
## 25383 803154 1
## 25384 803155 1
## 25385 803156 1
## 25386 803158 1
## 25387 803159 1
## 25388 803160 1
## 25389 803161 1
## 25390 803162 1
## 25391 803163 1
## 25392 803164 1
## 25393 803165 1
## 25394 803166 1
## 25395 803167 1
## 25396 803168 1
## 25397 803169 1
## 25398 803170 1
## 25399 803171 1
## 25400 803172 1
## 25401 803173 1
## 25402 803174 1
## 25403 803175 1
## 25404 803176 1
## 25405 803177 1
## 25406 803178 1
## 25407 803179 1
## 25408 803180 1
## 25409 803181 1
## 25410 803182 1
## 25411 803183 1
## 25412 803184 1
## 25413 803185 1
## 25414 803186 1
## 25415 803187 1
## 25416 803188 1
## 25417 803189 1
## 25418 803190 1
## 25419 803191 1
## 25420 803192 1
## 25421 803193 1
## 25422 803194 1
## 25423 803195 1
## 25424 803196 1
## 25425 803197 1
## 25426 803198 1
## 25427 803199 1
## 25428 803200 1
## 25429 803201 1
## 25430 803202 1
## 25431 803203 1
## 25432 803204 1
## 25433 803205 1
## 25434 803206 1
## 25435 803207 1
## 25436 803208 1
## 25437 803209 1
## 25438 803210 1
## 25439 803211 1
## 25440 803212 1
## 25441 803213 1
## 25442 803214 1
## 25443 803215 1
## 25444 803216 1
## 25445 803217 1
## 25446 803218 1
## 25447 803219 1
## 25448 803220 1
## 25449 803221 1
## 25450 803222 1
## 25451 803223 1
## 25452 803224 1
## 25453 803225 1
## 25454 803226 1
## 25455 803227 1
## 25456 803228 1
## 25457 803229 1
## 25458 803230 1
## 25459 803231 1
## 25460 803232 1
## 25461 803233 1
## 25462 803234 1
## 25463 803235 1
## 25464 803236 1
## 25465 803237 1
## 25466 803238 1
## 25467 803239 1
## 25468 803240 1
## 25469 803241 1
## 25470 803242 1
## 25471 803243 1
## 25472 803244 1
## 25473 803245 1
## 25474 803246 1
## 25475 803247 1
## 25476 803248 1
## 25477 803249 1
## 25478 803250 1
## 25479 803251 1
## 25480 803252 1
## 25481 803253 1
## 25482 803254 1
## 25483 803255 1
## 25484 803256 1
## 25485 803257 1
## 25486 803258 1
## 25487 803259 1
## 25488 803260 1
## 25489 803261 1
## 25490 803262 1
## 25491 803263 1
## 25492 803264 1
## 25493 803265 1
## 25494 803266 1
## 25495 803267 1
## 25496 803268 1
## 25497 803269 1
## 25498 803270 1
## 25499 803271 1
## 25500 803272 1
## 25501 803273 1
## 25502 803274 1
## 25503 803275 1
## 25504 803276 1
## 25505 803277 1
## 25506 803278 1
## 25507 803279 1
## 25508 803280 1
## 25509 803281 1
## 25510 803282 1
## 25511 803283 1
## 25512 803284 1
## 25513 803285 1
## 25514 803286 1
## 25515 803287 1
## 25516 803288 1
## 25517 803289 1
## 25518 803290 1
## 25519 803291 1
## 25520 803292 1
## 25521 803293 1
## 25522 803294 1
## 25523 803295 1
## 25524 803296 1
## 25525 803297 1
## 25526 803298 1
## 25527 803299 1
## 25528 803300 1
## 25529 803301 1
## 25530 803302 1
## 25531 803303 1
## 25532 803304 1
## 25533 803305 1
## 25534 803306 1
## 25535 803307 1
## 25536 803308 1
## 25537 803309 1
## 25538 803310 1
## 25539 803311 1
## 25540 803312 1
## 25541 803313 1
## 25542 803314 1
## 25543 803315 1
## 25544 803316 1
## 25545 803317 1
## 25546 803318 1
## 25547 803319 1
## 25548 803320 1
## 25549 803321 1
## 25550 803322 1
## 25551 803323 1
## 25552 803324 1
## 25553 803325 1
## 25554 803326 1
## 25555 803327 1
## 25556 803328 1
## 25557 803329 1
## 25558 803330 1
## 25559 803331 1
## 25560 803332 1
## 25561 803333 1
## 25562 803334 1
## 25563 803335 1
## 25564 803336 1
## 25565 803337 1
## 25566 803338 1
## 25567 803339 1
## 25568 803340 1
## 25569 803341 1
## 25570 803342 1
## 25571 803343 1
## 25572 803344 1
## 25573 803345 1
## 25574 803346 1
## 25575 803347 1
## 25576 803348 1
## 25577 803349 1
## 25578 803350 1
## 25579 803351 1
## 25580 803352 1
## 25581 803353 1
## 25582 803354 1
## 25583 803355 1
## 25584 803356 1
## 25585 803357 1
## 25586 803358 1
## 25587 803359 1
## 25588 803360 1
## 25589 803361 1
## 25590 803362 1
## 25591 803363 1
## 25592 803364 1
## 25593 803365 1
## 25594 803366 1
## 25595 803367 1
## 25596 803368 1
## 25597 803369 1
## 25598 803370 1
## 25599 803371 1
## 25600 803372 1
## 25601 803373 1
## 25602 803374 1
## 25603 803375 1
## 25604 803376 1
## 25605 803377 1
## 25606 803378 1
## 25607 803379 1
## 25608 803380 1
## 25609 803381 1
## 25610 803382 1
## 25611 803383 1
## 25612 803384 1
## 25613 803385 1
## 25614 803386 1
## 25615 803387 1
## 25616 803388 1
## 25617 803389 1
## 25618 803390 1
## 25619 803391 1
## 25620 803392 1
## 25621 803393 1
## 25622 803394 1
## 25623 803395 1
## 25624 803396 1
## 25625 803397 1
## 25626 803398 1
## 25627 803399 1
## 25628 803400 1
## 25629 803401 1
## 25630 803402 1
## 25631 803403 1
## 25632 803404 1
## 25633 803405 1
## 25634 803406 1
## 25635 803407 1
## 25636 803408 1
## 25637 803409 1
## 25638 803410 1
## 25639 803411 1
## 25640 803412 1
## 25641 803413 1
## 25642 803414 1
## 25643 803415 1
## 25644 803416 1
## 25645 803417 1
## 25646 803418 1
## 25647 803419 1
## 25648 803420 1
## 25649 803421 1
## 25650 803422 1
## 25651 803423 1
## 25652 803424 1
## 25653 803425 1
## 25654 803426 1
## 25655 803427 1
## 25656 803428 1
## 25657 803429 1
## 25658 803430 1
## 25659 803431 1
## 25660 803432 1
## 25661 803433 1
## 25662 803434 1
## 25663 803435 1
## 25664 803436 1
## 25665 803437 1
## 25666 803438 1
## 25667 803439 1
## 25668 803440 1
## 25669 803441 1
## 25670 803442 1
## 25671 803443 1
## 25672 803444 1
## 25673 803445 1
## 25674 803446 1
## 25675 803447 1
## 25676 803448 1
## 25677 803449 1
## 25678 803450 1
## 25679 803451 1
## 25680 803452 1
## 25681 803453 1
## 25682 803454 1
## 25683 803455 1
## 25684 803456 1
## 25685 803457 1
## 25686 803458 1
## 25687 803459 1
## 25688 803460 1
## 25689 803461 1
## 25690 803462 1
## 25691 803463 1
## 25692 803464 1
## 25693 803465 1
## 25694 803466 1
## 25695 803467 1
## 25696 803468 1
## 25697 803469 1
## 25698 803470 1
## 25699 803471 1
## 25700 803472 1
## 25701 803473 1
## 25702 803474 1
## 25703 803475 1
## 25704 803477 1
## 25705 803478 1
## 25706 803479 1
## 25707 803480 1
## 25708 803481 1
## 25709 803482 1
## 25710 803483 1
## 25711 803484 1
## 25712 803485 1
## 25713 803486 1
## 25714 803487 1
## 25715 803488 1
## 25716 803489 1
## 25717 803490 1
## 25718 803491 1
## 25719 803492 1
## 25720 803493 1
## 25721 803494 1
## 25722 803495 1
## 25723 803496 1
## 25724 803497 1
## 25725 803498 1
## 25726 803499 1
## 25727 803500 1
## 25728 803501 1
## 25729 803502 1
## 25730 803503 1
## 25731 803504 1
## 25732 803505 1
## 25733 803506 1
## 25734 803507 1
## 25735 803508 1
## 25736 803509 1
## 25737 803510 1
## 25738 803511 1
## 25739 803512 1
## 25740 803513 1
## 25741 803514 1
## 25742 803515 1
## 25743 803517 1
## 25744 803518 1
## 25745 803519 1
## 25746 803520 1
## 25747 803521 1
## 25748 803522 1
## 25749 803523 1
## 25750 803524 1
## 25751 803525 1
## 25752 803526 1
## 25753 803527 1
## 25754 803528 1
## 25755 803530 1
## 25756 803531 1
## 25757 803532 1
## 25758 803533 1
## 25759 803534 1
## 25760 803535 1
## 25761 803536 1
## 25762 803537 1
## 25763 803538 1
## 25764 803539 1
## 25765 803540 1
## 25766 803541 1
## 25767 803542 1
## 25768 803543 1
## 25769 803544 1
## 25770 803545 1
## 25771 803546 1
## 25772 803547 1
## 25773 803548 1
## 25774 803549 1
## 25775 803550 1
## 25776 803551 1
## 25777 803552 1
## 25778 803553 1
## 25779 803554 1
## 25780 803555 1
## 25781 803556 1
## 25782 803557 1
## 25783 803558 1
## 25784 803559 1
## 25785 803560 1
## 25786 803561 1
## 25787 803562 1
## 25788 803563 1
## 25789 803564 1
## 25790 803565 1
## 25791 803566 1
## 25792 803567 1
## 25793 803568 1
## 25794 803569 1
## 25795 803570 1
## 25796 803571 1
## 25797 803572 1
## 25798 803573 1
## 25799 803574 1
## 25800 803575 1
## 25801 803576 1
## 25802 803577 1
## 25803 803578 1
## 25804 803579 1
## 25805 803580 1
## 25806 803581 1
## 25807 803582 1
## 25808 803583 1
## 25809 803584 1
## 25810 803585 1
## 25811 803586 1
## 25812 803587 1
## 25813 803588 1
## 25814 803590 1
## 25815 803591 1
## 25816 803592 1
## 25817 803593 1
## 25818 803594 1
## 25819 803595 1
## 25820 803596 1
## 25821 803597 1
## 25822 803598 1
## 25823 803599 1
## 25824 803600 1
## 25825 803601 1
## 25826 803602 1
## 25827 803603 1
## 25828 803604 1
## 25829 803605 1
## 25830 803606 1
## 25831 803607 1
## 25832 803608 1
## 25833 803609 1
## 25834 803610 1
## 25835 803611 1
## 25836 803612 1
## 25837 803613 1
## 25838 803614 1
## 25839 803615 1
## 25840 803616 1
## 25841 803617 1
## 25842 803618 1
## 25843 803619 1
## 25844 803620 1
## 25845 803621 1
## 25846 803622 1
## 25847 803623 1
## 25848 803624 1
## 25849 803625 1
## 25850 803626 1
## 25851 803627 1
## 25852 803628 1
## 25853 803629 1
## 25854 803630 1
## 25855 803631 1
## 25856 803632 1
## 25857 803633 1
## 25858 803634 1
## 25859 803635 1
## 25860 803637 1
## 25861 803638 1
## 25862 803639 1
## 25863 803640 1
## 25864 803641 1
## 25865 803642 1
## 25866 803643 1
## 25867 803644 1
## 25868 803645 1
## 25869 803646 1
## 25870 803647 1
## 25871 803648 1
## 25872 803649 1
## 25873 803650 1
## 25874 803651 1
## 25875 803652 1
## 25876 803653 1
## 25877 803654 1
## 25878 803655 1
## 25879 803656 1
## 25880 803657 1
## 25881 803658 1
## 25882 803659 1
## 25883 803660 1
## 25884 803661 1
## 25885 803662 1
## 25886 803663 1
## 25887 803664 1
## 25888 803665 1
## 25889 803666 1
## 25890 803667 1
## 25891 803668 1
## 25892 803669 1
## 25893 803670 1
## 25894 803671 1
## 25895 803672 1
## 25896 803673 1
## 25897 803674 1
## 25898 803675 1
## 25899 803676 1
## 25900 803677 1
## 25901 803678 1
## 25902 803679 1
## 25903 803680 1
## 25904 803681 1
## 25905 803682 1
## 25906 803683 1
## 25907 803684 1
## 25908 803685 1
## 25909 803686 1
## 25910 803687 1
## 25911 803688 1
## 25912 803689 1
## 25913 803690 1
## 25914 803691 1
## 25915 803692 1
## 25916 803693 1
## 25917 803694 1
## 25918 803695 1
## 25919 803696 1
## 25920 803697 1
## 25921 803698 1
## 25922 803699 1
## 25923 803700 1
## 25924 803701 1
## 25925 803702 1
## 25926 803703 1
## 25927 803704 1
## 25928 803705 1
## 25929 803706 1
## 25930 803707 1
## 25931 803708 1
## 25932 803709 1
## 25933 803710 1
## 25934 803711 1
## 25935 803712 1
## 25936 803713 1
## 25937 803714 1
## 25938 803716 1
## 25939 803717 1
## 25940 803718 1
## 25941 803719 1
## 25942 803720 1
## 25943 803721 1
## 25944 803722 1
## 25945 803723 1
## 25946 803724 1
## 25947 803725 1
## 25948 803726 1
## 25949 803727 1
## 25950 803728 1
## 25951 803729 1
## 25952 803730 1
## 25953 803731 1
## 25954 803732 1
## 25955 803733 1
## 25956 803734 1
## 25957 803735 1
## 25958 803736 1
## 25959 803737 1
## 25960 803738 1
## 25961 803739 1
## 25962 803740 1
## 25963 803741 1
## 25964 803742 1
## 25965 803743 1
## 25966 803744 1
## 25967 803745 1
## 25968 803746 1
## 25969 803747 1
## 25970 803748 1
## 25971 803749 1
## 25972 803750 1
## 25973 803751 1
## 25974 803752 1
## 25975 803753 1
## 25976 803754 1
## 25977 803755 1
## 25978 803756 1
## 25979 803757 1
## 25980 803758 1
## 25981 803759 1
## 25982 803760 1
## 25983 803761 1
## 25984 803762 1
## 25985 803763 1
## 25986 803764 1
## 25987 803765 1
## 25988 803766 1
## 25989 803767 1
## 25990 803768 1
## 25991 803769 1
## 25992 803770 1
## 25993 803771 1
## 25994 803772 1
## 25995 803773 1
## 25996 803774 1
## 25997 803775 1
## 25998 803776 1
## 25999 803777 1
## 26000 803778 1
## 26001 803779 1
## 26002 803780 1
## 26003 803781 1
## 26004 803782 1
## 26005 803783 1
## 26006 803784 1
## 26007 803785 1
## 26008 803786 1
## 26009 803787 1
## 26010 803788 1
## 26011 803789 1
## 26012 803790 1
## 26013 803791 1
## 26014 803792 1
## 26015 803793 1
## 26016 803794 1
## 26017 803795 1
## 26018 803796 1
## 26019 803797 1
## 26020 803798 1
## 26021 803799 1
## 26022 803800 1
## 26023 803801 1
## 26024 803802 1
## 26025 803803 1
## 26026 803804 1
## 26027 803805 1
## 26028 803806 1
## 26029 803807 1
## 26030 803808 1
## 26031 803809 1
## 26032 803810 1
## 26033 803811 1
## 26034 803812 1
## 26035 803813 1
## 26036 803814 1
## 26037 803815 1
## 26038 803816 1
## 26039 803817 1
## 26040 803818 1
## 26041 803819 1
## 26042 803820 1
## 26043 803821 1
## 26044 803822 1
## 26045 803823 1
## 26046 803824 1
## 26047 803825 1
## 26048 803826 1
## 26049 803827 1
## 26050 803828 1
## 26051 803829 1
## 26052 803830 1
## 26053 803831 1
## 26054 803832 1
## 26055 803833 1
## 26056 803834 1
## 26057 803835 1
## 26058 803836 1
## 26059 803837 1
## 26060 803838 1
## 26061 803839 1
## 26062 803840 1
## 26063 803841 1
## 26064 803842 1
## 26065 803843 1
## 26066 803844 1
## 26067 803845 1
## 26068 803846 1
## 26069 803847 1
## 26070 803848 1
## 26071 803849 1
## 26072 803850 1
## 26073 803851 1
## 26074 803853 1
## 26075 803854 1
## 26076 803855 1
## 26077 803856 1
## 26078 803857 1
## 26079 803858 1
## 26080 803859 1
## 26081 803860 1
## 26082 803861 1
## 26083 803862 1
## 26084 803863 1
## 26085 803864 1
## 26086 803865 1
## 26087 803866 1
## 26088 803867 1
## 26089 803868 1
## 26090 803869 1
## 26091 803870 1
## 26092 803871 1
## 26093 803872 1
## 26094 803873 1
## 26095 803874 1
## 26096 803875 1
## 26097 803876 1
## 26098 803877 1
## 26099 803878 1
## 26100 803879 1
## 26101 803880 1
## 26102 803881 1
## 26103 803882 1
## 26104 803883 1
## 26105 803884 1
## 26106 803885 1
## 26107 803886 1
## 26108 803887 1
## 26109 803888 1
## 26110 803889 1
## 26111 803890 1
## 26112 803891 1
## 26113 803892 1
## 26114 803893 1
## 26115 803894 1
## 26116 803895 1
## 26117 803896 1
## 26118 803897 1
## 26119 803898 1
## 26120 803899 1
## 26121 803900 1
## 26122 803901 1
## 26123 803902 1
## 26124 803903 1
## 26125 803904 1
## 26126 803905 1
## 26127 803906 1
## 26128 803907 1
## 26129 803908 1
## 26130 803909 1
## 26131 803910 1
## 26132 803911 1
## 26133 803912 1
## 26134 803913 1
## 26135 803914 1
## 26136 803915 1
## 26137 803916 1
## 26138 803917 1
## 26139 803918 1
## 26140 803919 1
## 26141 803920 1
## 26142 803921 1
## 26143 803922 1
## 26144 803923 1
## 26145 803924 1
## 26146 803925 1
## 26147 803926 1
## 26148 803927 1
## 26149 803928 1
## 26150 803929 1
## 26151 803930 1
## 26152 803931 1
## 26153 803932 1
## 26154 803933 1
## 26155 803934 1
## 26156 803935 1
## 26157 803936 1
## 26158 803937 1
## 26159 803938 1
## 26160 803939 1
## 26161 803940 1
## 26162 803941 1
## 26163 803942 1
## 26164 803943 1
## 26165 803944 1
## 26166 803945 1
## 26167 803946 1
## 26168 803947 1
## 26169 803948 1
## 26170 803949 1
## 26171 803950 1
## 26172 803951 1
## 26173 803952 1
## 26174 803953 1
## 26175 803954 1
## 26176 803955 1
## 26177 803956 1
## 26178 803958 1
## 26179 803959 1
## 26180 803960 1
## 26181 803961 1
## 26182 803962 1
## 26183 803963 1
## 26184 803964 1
## 26185 803965 1
## 26186 803966 1
## 26187 803967 1
## 26188 803968 1
## 26189 803969 1
## 26190 803970 1
## 26191 803971 1
## 26192 803972 1
## 26193 803973 1
## 26194 803974 1
## 26195 803975 1
## 26196 803976 1
## 26197 803977 1
## 26198 803978 1
## 26199 803979 1
## 26200 803980 1
## 26201 803981 1
## 26202 803982 1
## 26203 803983 1
## 26204 803984 1
## 26205 803985 1
## 26206 803986 1
## 26207 803987 1
## 26208 803988 1
## 26209 803989 1
## 26210 803990 1
## 26211 803991 1
## 26212 803992 1
## 26213 803993 1
## 26214 803994 1
## 26215 803995 1
## 26216 803996 1
## 26217 803997 1
## 26218 803998 1
## 26219 803999 1
## 26220 804000 1
## 26221 804001 1
## 26222 804002 1
## 26223 804003 1
## 26224 804004 1
## 26225 804005 1
## 26226 804006 1
## 26227 804007 1
## 26228 804008 1
## 26229 804009 1
## 26230 804010 1
## 26231 804011 1
## 26232 804012 1
## 26233 804013 1
## 26234 804014 1
## 26235 804015 1
## 26236 804016 1
## 26237 804017 1
## 26238 804018 1
## 26239 804019 1
## 26240 804020 1
## 26241 804021 1
## 26242 804022 1
## 26243 804023 1
## 26244 804024 1
## 26245 804025 1
## 26246 804026 1
## 26247 804027 1
## 26248 804028 1
## 26249 804029 1
## 26250 804030 1
## 26251 804031 1
## 26252 804032 1
## 26253 804033 1
## 26254 804034 1
## 26255 804035 1
## 26256 804036 1
## 26257 804037 1
## 26258 804038 1
## 26259 804039 1
## 26260 804040 1
## 26261 804041 1
## 26262 804042 1
## 26263 804043 1
## 26264 804044 1
## 26265 804045 1
## 26266 804046 1
## 26267 804047 1
## 26268 804048 1
## 26269 804049 1
## 26270 804050 1
## 26271 804051 1
## 26272 804053 1
## 26273 804054 1
## 26274 804055 1
## 26275 804056 1
## 26276 804058 1
## 26277 804059 1
## 26278 804060 1
## 26279 804061 1
## 26280 804062 1
## 26281 804063 1
## 26282 804064 1
## 26283 804065 1
## 26284 804066 1
## 26285 804067 1
## 26286 804068 1
## 26287 804069 1
## 26288 804070 1
## 26289 804071 1
## 26290 804072 1
## 26291 804073 1
## 26292 804074 1
## 26293 804075 1
## 26294 804077 1
## 26295 804078 1
## 26296 804079 1
## 26297 804080 1
## 26298 804081 1
## 26299 804082 1
## 26300 804083 1
## 26301 804084 1
## 26302 804085 1
## 26303 804086 1
## 26304 804087 1
## 26305 804088 1
## 26306 804089 1
## 26307 804090 1
## 26308 804092 1
## 26309 804093 1
## 26310 804094 1
## 26311 804095 1
## 26312 804096 1
## 26313 804097 1
## 26314 804098 1
## 26315 804099 1
## 26316 804100 1
## 26317 804102 1
## 26318 804103 1
## 26319 804104 1
## 26320 804105 1
## 26321 804106 1
## 26322 804107 1
## 26323 804108 1
## 26324 804109 1
## 26325 804110 1
## 26326 804111 1
## 26327 804112 1
## 26328 804113 1
## 26329 804114 1
## 26330 804115 1
## 26331 804116 1
## 26332 804117 1
## 26333 804118 1
## 26334 804119 1
## 26335 804120 1
## 26336 804121 1
## 26337 804122 1
## 26338 804123 1
## 26339 804124 1
## 26340 804125 1
## 26341 804127 1
## 26342 804128 1
## 26343 804129 1
## 26344 804130 1
## 26345 804131 1
## 26346 804132 1
## 26347 804133 1
## 26348 804134 1
## 26349 804135 1
## 26350 804136 1
## 26351 804137 1
## 26352 804138 1
## 26353 804139 1
## 26354 804140 1
## 26355 804141 1
## 26356 804142 1
## 26357 804143 1
## 26358 804144 1
## 26359 804145 1
## 26360 804146 1
## 26361 804147 1
## 26362 804148 1
## 26363 804149 1
## 26364 804150 1
## 26365 804151 1
## 26366 804152 1
## 26367 804153 1
## 26368 804154 1
## 26369 804156 1
## 26370 804157 1
## 26371 804158 1
## 26372 804159 1
## 26373 804160 1
## 26374 804161 1
## 26375 804162 1
## 26376 804163 1
## 26377 804164 1
## 26378 804165 1
## 26379 804166 1
## 26380 804167 1
## 26381 804168 1
## 26382 804169 1
## 26383 804170 1
## 26384 804171 1
## 26385 804172 1
## 26386 804173 1
## 26387 804174 1
## 26388 804175 1
## 26389 804176 1
## 26390 804177 1
## 26391 804178 1
## 26392 804179 1
## 26393 804180 1
## 26394 804181 1
## 26395 804182 1
## 26396 804183 1
## 26397 804184 1
## 26398 804185 1
## 26399 804186 1
## 26400 804187 1
## 26401 804188 1
## 26402 804189 1
## 26403 804190 1
## 26404 804191 1
## 26405 804192 1
## 26406 804193 1
## 26407 804194 1
## 26408 804195 1
## 26409 804197 1
## 26410 804198 1
## 26411 804199 1
## 26412 804200 1
## 26413 804201 1
## 26414 804202 1
## 26415 804203 1
## 26416 804204 1
## 26417 804205 1
## 26418 804206 1
## 26419 804207 1
## 26420 804208 1
## 26421 804209 1
## 26422 804210 1
## 26423 804211 1
## 26424 804212 1
## 26425 804213 1
## 26426 804214 1
## 26427 804215 1
## 26428 804216 1
## 26429 804217 1
## 26430 804218 1
## 26431 804219 1
## 26432 804220 1
## 26433 804221 1
## 26434 804222 1
## 26435 804223 1
## 26436 804224 1
## 26437 804225 1
## 26438 804226 1
## 26439 804227 1
## 26440 804228 1
## 26441 804229 1
## 26442 804230 1
## 26443 804231 1
## 26444 804232 1
## 26445 804233 1
## 26446 804234 1
## 26447 804235 1
## 26448 804236 1
## 26449 804237 1
## 26450 804238 1
## 26451 804239 1
## 26452 804240 1
## 26453 804241 1
## 26454 804242 1
## 26455 804243 1
## 26456 804244 1
## 26457 804245 1
## 26458 804246 1
## 26459 804247 1
## 26460 804248 1
## 26461 804249 1
## 26462 804250 1
## 26463 804251 1
## 26464 804252 1
## 26465 804253 1
## 26466 804254 1
## 26467 804255 1
## 26468 804256 1
## 26469 804257 1
## 26470 804258 1
## 26471 804259 1
## 26472 804260 1
## 26473 804261 1
## 26474 804262 1
## 26475 804263 1
## 26476 804264 1
## 26477 804265 1
## 26478 804266 1
## 26479 804267 1
## 26480 804268 1
## 26481 804269 1
## 26482 804270 1
## 26483 804271 1
## 26484 804272 1
## 26485 804273 1
## 26486 804274 1
## 26487 804275 1
## 26488 804276 1
## 26489 804277 1
## 26490 804278 1
## 26491 804279 1
## 26492 804280 1
## 26493 804281 1
## 26494 804282 1
## 26495 804283 1
## 26496 804284 1
## 26497 804285 1
## 26498 804286 1
## 26499 804287 1
## 26500 804288 1
## 26501 804289 1
## 26502 804290 1
## 26503 804291 1
## 26504 804292 1
## 26505 804293 1
## 26506 804294 1
## 26507 804295 1
## 26508 804296 1
## 26509 804297 1
## 26510 804298 1
## 26511 804299 1
## 26512 804300 1
## 26513 804301 1
## 26514 804302 1
## 26515 804303 1
## 26516 804304 1
## 26517 804305 1
## 26518 804306 1
## 26519 804307 1
## 26520 804308 1
## 26521 804309 1
## 26522 804310 1
## 26523 804311 1
## 26524 804312 1
## 26525 804313 1
## 26526 804314 1
## 26527 804315 1
## 26528 804316 1
## 26529 804317 1
## 26530 804318 1
## 26531 804319 1
## 26532 804320 1
## 26533 804321 1
## 26534 804322 1
## 26535 804323 1
## 26536 804324 1
## 26537 804325 1
## 26538 804326 1
## 26539 804327 1
## 26540 804328 1
## 26541 804329 1
## 26542 804330 1
## 26543 804331 1
## 26544 804332 1
## 26545 804333 1
## 26546 804334 1
## 26547 804335 1
## 26548 804336 1
## 26549 804337 1
## 26550 804338 1
## 26551 804339 1
## 26552 804340 1
## 26553 804341 1
## 26554 804342 1
## 26555 804343 1
## 26556 804344 1
## 26557 804345 1
## 26558 804346 1
## 26559 804347 1
## 26560 804348 1
## 26561 804349 1
## 26562 804350 1
## 26563 804351 1
## 26564 804352 1
## 26565 804353 1
## 26566 804354 1
## 26567 804355 1
## 26568 804356 1
## 26569 804357 1
## 26570 804358 1
## 26571 804359 1
## 26572 804360 1
## 26573 804361 1
## 26574 804362 1
## 26575 804363 1
## 26576 804364 1
## 26577 804365 1
## 26578 804366 1
## 26579 804367 1
## 26580 804368 1
## 26581 804369 1
## 26582 804370 1
## 26583 804371 1
## 26584 804372 1
## 26585 804373 1
## 26586 804374 1
## 26587 804375 1
## 26588 804376 1
## 26589 804377 1
## 26590 804378 1
## 26591 804379 1
## 26592 804380 1
## 26593 804381 1
## 26594 804382 1
## 26595 804383 1
## 26596 804384 1
## 26597 804385 1
## 26598 804386 1
## 26599 804387 1
## 26600 804388 1
## 26601 804389 1
## 26602 804390 1
## 26603 804391 1
## 26604 804392 1
## 26605 804393 1
## 26606 804394 1
## 26607 804395 1
## 26608 804396 1
## 26609 804397 1
## 26610 804398 1
## 26611 804399 1
## 26612 804400 1
## 26613 804401 1
## 26614 804402 1
## 26615 804403 1
## 26616 804404 1
## 26617 804405 1
## 26618 804406 1
## 26619 804407 1
## 26620 804408 1
## 26621 804409 1
## 26622 804410 1
## 26623 804411 1
## 26624 804412 1
## 26625 804413 1
## 26626 804414 1
## 26627 804415 1
## 26628 804416 1
## 26629 804417 1
## 26630 804418 1
## 26631 804419 1
## 26632 804420 1
## 26633 804421 1
## 26634 804422 1
## 26635 804423 1
## 26636 804424 1
## 26637 804425 1
## 26638 804426 1
## 26639 804427 1
## 26640 804428 1
## 26641 804429 1
## 26642 804430 1
## 26643 804431 1
## 26644 804432 1
## 26645 804433 1
## 26646 804434 1
## 26647 804435 1
## 26648 804436 1
## 26649 804437 1
## 26650 804438 1
## 26651 804439 1
## 26652 804440 1
## 26653 804441 1
## 26654 804442 1
## 26655 804443 1
## 26656 804444 1
## 26657 804445 1
## 26658 804446 1
## 26659 804447 1
## 26660 804448 1
## 26661 804449 1
## 26662 804450 1
## 26663 804451 1
## 26664 804452 1
## 26665 804453 1
## 26666 804454 1
## 26667 804455 1
## 26668 804456 1
## 26669 804457 1
## 26670 804458 1
## 26671 804459 1
## 26672 804460 1
## 26673 804461 1
## 26674 804462 1
## 26675 804463 1
## 26676 804464 1
## 26677 804465 1
## 26678 804466 1
## 26679 804467 1
## 26680 804468 1
## 26681 804469 1
## 26682 804470 1
## 26683 804471 1
## 26684 804472 1
## 26685 804473 1
## 26686 804474 1
## 26687 804475 1
## 26688 804476 1
## 26689 804477 1
## 26690 804478 1
## 26691 804480 1
## 26692 804481 1
## 26693 804482 1
## 26694 804483 1
## 26695 804484 1
## 26696 804485 1
## 26697 804486 1
## 26698 804487 1
## 26699 804488 1
## 26700 804489 1
## 26701 804490 1
## 26702 804491 1
## 26703 804492 1
## 26704 804493 1
## 26705 804494 1
## 26706 804495 1
## 26707 804496 1
## 26708 804497 1
## 26709 804498 1
## 26710 804499 1
## 26711 804500 1
## 26712 804501 1
## 26713 804502 1
## 26714 804503 1
## 26715 804504 1
## 26716 804505 1
## 26717 804506 1
## 26718 804507 1
## 26719 804508 1
## 26720 804509 1
## 26721 804510 1
## 26722 804511 1
## 26723 804512 1
## 26724 804513 1
## 26725 804514 1
## 26726 804515 1
## 26727 804516 1
## 26728 804517 1
## 26729 804518 1
## 26730 804519 1
## 26731 804520 1
## 26732 804521 1
## 26733 804522 1
## 26734 804523 1
## 26735 804524 1
## 26736 804525 1
## 26737 804526 1
## 26738 804527 1
## 26739 804528 1
## 26740 804529 1
## 26741 804530 1
## 26742 804531 1
## 26743 804532 1
## 26744 804533 1
## 26745 804534 1
## 26746 804535 1
## 26747 804536 1
## 26748 804537 1
## 26749 804538 1
## 26750 804539 1
## 26751 804540 1
## 26752 804541 1
## 26753 804542 1
## 26754 804543 1
## 26755 804544 1
## 26756 804545 1
## 26757 804546 1
## 26758 804547 1
## 26759 804549 1
## 26760 804550 1
## 26761 804551 1
## 26762 804552 1
## 26763 804553 1
## 26764 804554 1
## 26765 804555 1
## 26766 804556 1
## 26767 804557 1
## 26768 804558 1
## 26769 804559 1
## 26770 804560 1
## 26771 804561 1
## 26772 804562 1
## 26773 804563 1
## 26774 804564 1
## 26775 804565 1
## 26776 804566 1
## 26777 804567 1
## 26778 804568 1
## 26779 804569 1
## 26780 804570 1
## 26781 804571 1
## 26782 804572 1
## 26783 804573 1
## 26784 804574 1
## 26785 804575 1
## 26786 804576 1
## 26787 804577 1
## 26788 804578 1
## 26789 804579 1
## 26790 804580 1
## 26791 804582 1
## 26792 804583 1
## 26793 804584 1
## 26794 804585 1
## 26795 804586 1
## 26796 804587 1
## 26797 804588 1
## 26798 804589 1
## 26799 804590 1
## 26800 804591 1
## 26801 804592 1
## 26802 804593 1
## 26803 804594 1
## 26804 804595 1
## 26805 804596 1
## 26806 804597 1
## 26807 804598 1
## 26808 804599 1
## 26809 804600 1
## 26810 804601 1
## 26811 804602 1
## 26812 804603 1
## 26813 804604 1
## 26814 804605 1
## 26815 804606 1
## 26816 804607 1
## 26817 804608 1
## 26818 804609 1
## 26819 804610 1
## 26820 804611 1
## 26821 804612 1
## 26822 804613 1
## 26823 804614 1
## 26824 804615 1
## 26825 804616 1
## 26826 804617 1
## 26827 804618 1
## 26828 804619 1
## 26829 804620 1
## 26830 804621 1
## 26831 804622 1
## 26832 804623 1
## 26833 804624 1
## 26834 804625 1
## 26835 804626 1
## 26836 804627 1
## 26837 804628 1
## 26838 804629 1
## 26839 804630 1
## 26840 804631 1
## 26841 804632 1
## 26842 804633 1
## 26843 804634 1
## 26844 804635 1
## 26845 804636 1
## 26846 804637 1
## 26847 804638 1
## 26848 804639 1
## 26849 804640 1
## 26850 804641 1
## 26851 804642 1
## 26852 804643 1
## 26853 804644 1
## 26854 804645 1
## 26855 804646 1
## 26856 804647 1
## 26857 804648 1
## 26858 804649 1
## 26859 804651 1
## 26860 804652 1
## 26861 804653 1
## 26862 804654 1
## 26863 804655 1
## 26864 804656 1
## 26865 804657 1
## 26866 804658 1
## 26867 804659 1
## 26868 804660 1
## 26869 804661 1
## 26870 804662 1
## 26871 804663 1
## 26872 804664 1
## 26873 804665 1
## 26874 804666 1
## 26875 804667 1
## 26876 804668 1
## 26877 804669 1
## 26878 804670 1
## 26879 804671 1
## 26880 804672 1
## 26881 804673 1
## 26882 804674 1
## 26883 804675 1
## 26884 804676 1
## 26885 804677 1
## 26886 804678 1
## 26887 804679 1
## 26888 804680 1
## 26889 804681 1
## 26890 804682 1
## 26891 804684 1
## 26892 804685 1
## 26893 804687 1
## 26894 804688 1
## 26895 804689 1
## 26896 804690 1
## 26897 804691 1
## 26898 804692 1
## 26899 804693 1
## 26900 804694 1
## 26901 804695 1
## 26902 804696 1
## 26903 804697 1
## 26904 804698 1
## 26905 804699 1
## 26906 804700 1
## 26907 804701 1
## 26908 804702 1
## 26909 804703 1
## 26910 804704 1
## 26911 804705 1
## 26912 804706 1
## 26913 804707 1
## 26914 804708 1
## 26915 804709 1
## 26916 804710 1
## 26917 804713 1
## 26918 804714 1
## 26919 804715 1
## 26920 804716 1
## 26921 804717 1
## 26922 804718 1
## 26923 804719 1
## 26924 804720 1
## 26925 804721 1
## 26926 804722 1
## 26927 804723 1
## 26928 804724 1
## 26929 804725 1
## 26930 804726 1
## 26931 804727 1
## 26932 804728 1
## 26933 804729 1
## 26934 804730 1
## 26935 804731 1
## 26936 804732 1
## 26937 804733 1
## 26938 804734 1
## 26939 804735 1
## 26940 804736 1
## 26941 804737 1
## 26942 804738 1
## 26943 804739 1
## 26944 804740 1
## 26945 804741 1
## 26946 804742 1
## 26947 804743 1
## 26948 804744 1
## 26949 804745 1
## 26950 804746 1
## 26951 804747 1
## 26952 804748 1
## 26953 804749 1
## 26954 804750 1
## 26955 804751 1
## 26956 804752 1
## 26957 804753 1
## 26958 804754 1
## 26959 804755 1
## 26960 804756 1
## 26961 804757 1
## 26962 804758 1
## 26963 804759 1
## 26964 804760 1
## 26965 804761 1
## 26966 804762 1
## 26967 804763 1
## 26968 804764 1
## 26969 804765 1
## 26970 804766 1
## 26971 804767 1
## 26972 804768 1
## 26973 804769 1
## 26974 804770 1
## 26975 804771 1
## 26976 804772 1
## 26977 804773 1
## 26978 804774 1
## 26979 804775 1
## 26980 804776 1
## 26981 804777 1
## 26982 804778 1
## 26983 804779 1
## 26984 804780 1
## 26985 804781 1
## 26986 804782 1
## 26987 804783 1
## 26988 804784 1
## 26989 804785 1
## 26990 804786 1
## 26991 804787 1
## 26992 804788 1
## 26993 804789 1
## 26994 804790 1
## 26995 804791 1
## 26996 804792 1
## 26997 804793 1
## 26998 804794 1
## 26999 804795 1
## 27000 804796 1
## 27001 804797 1
## 27002 804798 1
## 27003 804799 1
## 27004 804800 1
## 27005 804801 1
## 27006 804802 1
## 27007 804803 1
## 27008 804804 1
## 27009 804805 1
## 27010 804806 1
## 27011 804807 1
## 27012 804808 1
## 27013 804809 1
## 27014 804810 1
## 27015 804811 1
## 27016 804812 1
## 27017 804813 1
## 27018 804814 1
## 27019 804815 1
## 27020 804816 1
## 27021 804817 1
## 27022 804818 1
## 27023 804819 1
## 27024 804820 1
## 27025 804821 1
## 27026 804822 1
## 27027 804823 1
## 27028 804824 1
## 27029 804825 1
## 27030 804826 1
## 27031 804827 1
## 27032 804828 1
## 27033 804829 1
## 27034 804830 1
## 27035 804831 1
## 27036 804832 1
## 27037 804833 1
## 27038 804834 1
## 27039 804835 1
## 27040 804836 1
## 27041 804837 1
## 27042 804838 1
## 27043 804839 1
## 27044 804840 1
## 27045 804841 1
## 27046 804842 1
## 27047 804843 1
## 27048 804844 1
## 27049 804845 1
## 27050 804846 1
## 27051 804847 1
## 27052 804848 1
## 27053 804849 1
## 27054 804850 1
## 27055 804851 1
## 27056 804852 1
## 27057 804853 1
## 27058 804854 1
## 27059 804855 1
## 27060 804856 1
## 27061 804857 1
## 27062 804858 1
## 27063 804859 1
## 27064 804860 1
## 27065 804861 1
## 27066 804862 1
## 27067 804863 1
## 27068 804864 1
## 27069 804865 1
## 27070 804866 1
## 27071 804867 1
## 27072 804868 1
## 27073 804869 1
## 27074 804870 1
## 27075 804871 1
## 27076 804872 1
## 27077 804873 1
## 27078 804874 1
## 27079 804875 1
## 27080 804876 1
## 27081 804877 1
## 27082 804878 1
## 27083 804879 1
## 27084 804880 1
## 27085 804881 1
## 27086 804882 1
## 27087 804883 1
## 27088 804884 1
## 27089 804885 1
## 27090 804886 1
## 27091 804887 1
## 27092 804888 1
## 27093 804889 1
## 27094 804890 1
## 27095 804891 1
## 27096 804892 1
## 27097 804893 1
## 27098 804894 1
## 27099 804895 1
## 27100 804896 1
## 27101 804897 1
## 27102 804898 1
## 27103 804899 1
## 27104 804900 1
## 27105 804901 1
## 27106 804902 1
## 27107 804903 1
## 27108 804904 1
## 27109 804905 1
## 27110 804906 1
## 27111 804907 1
## 27112 804908 1
## 27113 804909 1
## 27114 804910 1
## 27115 804911 1
## 27116 804912 1
## 27117 804913 1
## 27118 804914 1
## 27119 804915 1
## 27120 804916 1
## 27121 804917 1
## 27122 804918 1
## 27123 804919 1
## 27124 804920 1
## 27125 804922 1
## 27126 804923 1
## 27127 804924 1
## 27128 804925 1
## 27129 804926 1
## 27130 804927 1
## 27131 804928 1
## 27132 804929 1
## 27133 804930 1
## 27134 804931 1
## 27135 804932 1
## 27136 804933 1
## 27137 804934 1
## 27138 804935 1
## 27139 804936 1
## 27140 804937 1
## 27141 804938 1
## 27142 804939 1
## 27143 804940 1
## 27144 804941 1
## 27145 804942 1
## 27146 804943 1
## 27147 804944 1
## 27148 804945 1
## 27149 804946 1
## 27150 804947 1
## 27151 804948 1
## 27152 804949 1
## 27153 804950 1
## 27154 804951 1
## 27155 804952 1
## 27156 804953 1
## 27157 804954 1
## 27158 804955 1
## 27159 804956 1
## 27160 804957 1
## 27161 804958 1
## 27162 804959 1
## 27163 804960 1
## 27164 804961 1
## 27165 804962 1
## 27166 804963 1
## 27167 804964 1
## 27168 804965 1
## 27169 804966 1
## 27170 804967 1
## 27171 804968 1
## 27172 804969 1
## 27173 804970 1
## 27174 804971 1
## 27175 804972 1
## 27176 804973 1
## 27177 804974 1
## 27178 804975 1
## 27179 804976 1
## 27180 804977 1
## 27181 804978 1
## 27182 804979 1
## 27183 804980 1
## 27184 804981 1
## 27185 804982 1
## 27186 804983 1
## 27187 804984 1
## 27188 804985 1
## 27189 804986 1
## 27190 804987 1
## 27191 804988 1
## 27192 804989 1
## 27193 804990 1
## 27194 804991 1
## 27195 804992 1
## 27196 804993 1
## 27197 804994 1
## 27198 804995 1
## 27199 804996 1
## 27200 804997 1
## 27201 804998 1
## 27202 804999 1
## 27203 805000 1
## 27204 805001 1
## 27205 805002 1
## 27206 805003 1
## 27207 805004 1
## 27208 805005 1
## 27209 805006 1
## 27210 805007 1
## 27211 805008 1
## 27212 805009 1
## 27213 805010 1
## 27214 805011 1
## 27215 805012 1
## 27216 805013 1
## 27217 805014 1
## 27218 805015 1
## 27219 805016 1
## 27220 805017 1
## 27221 805018 1
## 27222 805019 1
## 27223 805020 1
## 27224 805021 1
## 27225 805022 1
## 27226 805023 1
## 27227 805024 1
## 27228 805025 1
## 27229 805026 1
## 27230 805027 1
## 27231 805028 1
## 27232 805029 1
## 27233 805030 1
## 27234 805031 1
## 27235 805032 1
## 27236 805033 1
## 27237 805034 1
## 27238 805035 1
## 27239 805036 1
## 27240 805037 1
## 27241 805038 1
## 27242 805039 1
## 27243 805040 1
## 27244 805041 1
## 27245 805042 1
## 27246 805043 1
## 27247 805044 1
## 27248 805045 1
## 27249 805047 1
## 27250 805048 1
## 27251 805049 1
## 27252 805050 1
## 27253 805051 1
## 27254 805052 1
## 27255 805053 1
## 27256 805054 1
## 27257 805055 1
## 27258 805056 1
## 27259 805057 1
## 27260 805058 1
## 27261 805059 1
## 27262 805060 1
## 27263 805062 1
## 27264 805063 1
## 27265 805064 1
## 27266 805065 1
## 27267 805066 1
## 27268 805067 1
## 27269 805068 1
## 27270 805069 1
## 27271 805070 1
## 27272 805071 1
## 27273 805072 1
## 27274 805073 1
## 27275 805074 1
## 27276 805075 1
## 27277 805076 1
## 27278 805077 1
## 27279 805078 1
## 27280 805079 1
## 27281 805080 1
## 27282 805081 1
## 27283 805082 1
## 27284 805083 1
## 27285 805084 1
## 27286 805085 1
## 27287 805086 1
## 27288 805087 1
## 27289 805088 1
## 27290 805089 1
## 27291 805090 1
## 27292 805091 1
## 27293 805092 1
## 27294 805093 1
## 27295 805094 1
## 27296 805095 1
## 27297 805096 1
## 27298 805097 1
## 27299 805098 1
## 27300 805099 1
## 27301 805100 1
## 27302 805101 1
## 27303 805102 1
## 27304 805103 1
## 27305 805104 1
## 27306 805105 1
## 27307 805106 1
## 27308 805107 1
## 27309 805108 1
## 27310 805109 1
## 27311 805110 1
## 27312 805111 1
## 27313 805112 1
## 27314 805113 1
## 27315 805114 1
## 27316 805115 1
## 27317 805116 1
## 27318 805117 1
## 27319 805118 1
## 27320 805119 1
## 27321 805120 1
## 27322 805121 1
## 27323 805122 1
## 27324 805123 1
## 27325 805124 1
## 27326 805125 1
## 27327 805126 1
## 27328 805127 1
## 27329 805128 1
## 27330 805129 1
## 27331 805130 1
## 27332 805131 1
## 27333 805132 1
## 27334 805133 1
## 27335 805134 1
## 27336 805135 1
## 27337 805136 1
## 27338 805137 1
## 27339 805138 1
## 27340 805139 1
## 27341 805140 1
## 27342 805141 1
## 27343 805142 1
## 27344 805143 1
## 27345 805144 1
## 27346 805145 1
## 27347 805146 1
## 27348 805147 1
## 27349 805148 1
## 27350 805149 1
## 27351 805150 1
## 27352 805151 1
## 27353 805152 1
## 27354 805153 1
## 27355 805154 1
## 27356 805155 1
## 27357 805156 1
## 27358 805157 1
## 27359 805158 1
## 27360 805159 1
## 27361 805160 1
## 27362 805161 1
## 27363 805162 1
## 27364 805163 1
## 27365 805164 1
## 27366 805165 1
## 27367 805166 1
## 27368 805167 1
## 27369 805168 1
## 27370 805169 1
## 27371 805170 1
## 27372 805171 1
## 27373 805172 1
## 27374 805173 1
## 27375 805174 1
## 27376 805175 1
## 27377 805176 1
## 27378 805177 1
## 27379 805178 1
## 27380 805179 1
## 27381 805180 1
## 27382 805181 1
## 27383 805182 1
## 27384 805183 1
## 27385 805184 1
## 27386 805185 1
## 27387 805186 1
## 27388 805187 1
## 27389 805188 1
## 27390 805189 1
## 27391 805190 1
## 27392 805191 1
## 27393 805192 1
## 27394 805194 1
## 27395 805195 1
## 27396 805196 1
## 27397 805197 1
## 27398 805198 1
## 27399 805199 1
## 27400 805200 1
## 27401 805202 1
## 27402 805203 1
## 27403 805204 1
## 27404 805205 1
## 27405 805206 1
## 27406 805207 1
## 27407 805208 1
## 27408 805209 1
## 27409 805210 1
## 27410 805211 1
## 27411 805212 1
## 27412 805213 1
## 27413 805214 1
## 27414 805215 1
## 27415 805216 1
## 27416 805217 1
## 27417 805218 1
## 27418 805219 1
## 27419 805220 1
## 27420 805221 1
## 27421 805222 1
## 27422 805223 1
## 27423 805224 1
## 27424 805225 1
## 27425 805226 1
## 27426 805227 1
## 27427 805228 1
## 27428 805229 1
## 27429 805230 1
## 27430 805231 1
## 27431 805232 1
## 27432 805233 1
## 27433 805234 1
## 27434 805235 1
## 27435 805236 1
## 27436 805237 1
## 27437 805238 1
## 27438 805239 1
## 27439 805240 1
## 27440 805241 1
## 27441 805242 1
## 27442 805243 1
## 27443 805244 1
## 27444 805245 1
## 27445 805246 1
## 27446 805247 1
## 27447 805248 1
## 27448 805249 1
## 27449 805250 1
## 27450 805251 1
## 27451 805252 1
## 27452 805253 1
## 27453 805254 1
## 27454 805255 1
## 27455 805256 1
## 27456 805257 1
## 27457 805258 1
## 27458 805259 1
## 27459 805260 1
## 27460 805261 1
## 27461 805262 1
## 27462 805263 1
## 27463 805264 1
## 27464 805265 1
## 27465 805266 1
## 27466 805267 1
## 27467 805268 1
## 27468 805269 1
## 27469 805270 1
## 27470 805271 1
## 27471 805272 1
## 27472 805273 1
## 27473 805274 1
## 27474 805275 1
## 27475 805276 1
## 27476 805277 1
## 27477 805278 1
## 27478 805279 1
## 27479 805280 1
## 27480 805281 1
## 27481 805282 1
## 27482 805283 1
## 27483 805284 1
## 27484 805285 1
## 27485 805286 1
## 27486 805287 1
## 27487 805288 1
## 27488 805289 1
## 27489 805290 1
## 27490 805291 1
## 27491 805292 1
## 27492 805293 1
## 27493 805294 1
## 27494 805295 1
## 27495 805296 1
## 27496 805297 1
## 27497 805298 1
## 27498 805299 1
## 27499 805300 1
## 27500 805301 1
## 27501 805302 1
## 27502 805303 1
## 27503 805304 1
## 27504 805305 1
## 27505 805306 1
## 27506 805307 1
## 27507 805308 1
## 27508 805309 1
## 27509 805311 1
## 27510 805312 1
## 27511 805313 1
## 27512 805314 1
## 27513 805315 1
## 27514 805316 1
## 27515 805317 1
## 27516 805318 1
## 27517 805319 1
## 27518 805320 1
## 27519 805321 1
## 27520 805322 1
## 27521 805323 1
## 27522 805324 1
## 27523 805325 1
## 27524 805326 1
## 27525 805327 1
## 27526 805328 1
## 27527 805329 1
## 27528 805330 1
## 27529 805331 1
## 27530 805332 1
## 27531 805333 1
## 27532 805334 1
## 27533 805335 1
## 27534 805336 1
## 27535 805337 1
## 27536 805338 1
## 27537 805339 1
## 27538 805340 1
## 27539 805341 1
## 27540 805342 1
## 27541 805343 1
## 27542 805344 1
## 27543 805345 1
## 27544 805346 1
## 27545 805347 1
## 27546 805348 1
## 27547 805349 1
## 27548 805350 1
## 27549 805351 1
## 27550 805352 1
## 27551 805353 1
## 27552 805354 1
## 27553 805355 1
## 27554 805356 1
## 27555 805357 1
## 27556 805358 1
## 27557 805359 1
## 27558 805360 1
## 27559 805361 1
## 27560 805362 1
## 27561 805363 1
## 27562 805364 1
## 27563 805365 1
## 27564 805366 1
## 27565 805367 1
## 27566 805368 1
## 27567 805369 1
## 27568 805370 1
## 27569 805371 1
## 27570 805372 1
## 27571 805373 1
## 27572 805374 1
## 27573 805375 1
## 27574 805376 1
## 27575 805377 1
## 27576 805378 1
## 27577 805379 1
## 27578 805380 1
## 27579 805381 1
## 27580 805382 1
## 27581 805383 1
## 27582 805384 1
## 27583 805385 1
## 27584 805386 1
## 27585 805387 1
## 27586 805388 1
## 27587 805389 1
## 27588 805390 1
## 27589 805391 1
## 27590 805392 1
## 27591 805393 1
## 27592 805394 1
## 27593 805395 1
## 27594 805396 1
## 27595 805397 1
## 27596 805398 1
## 27597 805399 1
## 27598 805400 1
## 27599 805401 1
## 27600 805402 1
## 27601 805403 1
## 27602 805404 1
## 27603 805405 1
## 27604 805406 1
## 27605 805407 1
## 27606 805409 1
## 27607 805410 1
## 27608 805411 1
## 27609 805412 1
## 27610 805413 1
## 27611 805414 1
## 27612 805415 1
## 27613 805416 1
## 27614 805417 1
## 27615 805418 1
## 27616 805419 1
## 27617 805420 1
## 27618 805421 1
## 27619 805422 1
## 27620 805423 1
## 27621 805424 1
## 27622 805425 1
## 27623 805426 1
## 27624 805427 1
## 27625 805428 1
## 27626 805429 1
## 27627 805430 1
## 27628 805431 1
## 27629 805432 1
## 27630 805433 1
## 27631 805434 1
## 27632 805435 1
## 27633 805436 1
## 27634 805437 1
## 27635 805438 1
## 27636 805439 1
## 27637 805440 1
## 27638 805441 1
## 27639 805442 1
## 27640 805443 1
## 27641 805444 1
## 27642 805445 1
## 27643 805446 1
## 27644 805447 1
## 27645 805448 1
## 27646 805449 1
## 27647 805450 1
## 27648 805451 1
## 27649 805452 1
## 27650 805453 1
## 27651 805454 1
## 27652 805455 1
## 27653 805456 1
## 27654 805457 1
## 27655 805458 1
## 27656 805459 1
## 27657 805460 1
## 27658 805461 1
## 27659 805462 1
## 27660 805463 1
## 27661 805464 1
## 27662 805465 1
## 27663 805466 1
## 27664 805467 1
## 27665 805468 1
## 27666 805469 1
## 27667 805470 1
## 27668 805471 1
## 27669 805472 1
## 27670 805473 1
## 27671 805474 1
## 27672 805475 1
## 27673 805476 1
## 27674 805477 1
## 27675 805478 1
## 27676 805479 1
## 27677 805480 1
## 27678 805481 1
## 27679 805482 1
## 27680 805483 1
## 27681 805484 1
## 27682 805485 1
## 27683 805486 1
## 27684 805487 1
## 27685 805488 1
## 27686 805489 1
## 27687 805490 1
## 27688 805491 1
## 27689 805492 1
## 27690 805494 1
## 27691 805495 1
## 27692 805496 1
## 27693 805497 1
## 27694 805498 1
## 27695 805499 1
## 27696 805500 1
## 27697 805501 1
## 27698 805502 1
## 27699 805503 1
## 27700 805504 1
## 27701 805505 1
## 27702 805506 1
## 27703 805507 1
## 27704 805508 1
## 27705 805509 1
## 27706 805510 1
## 27707 805511 1
## 27708 805512 1
## 27709 805513 1
## 27710 805514 1
## 27711 805515 1
## 27712 805516 1
## 27713 805517 1
## 27714 805518 1
## 27715 805519 1
## 27716 805520 1
## 27717 805521 1
## 27718 805522 1
## 27719 805523 1
## 27720 805524 1
## 27721 805525 1
## 27722 805526 1
## 27723 805527 1
## 27724 805528 1
## 27725 805529 1
## 27726 805530 1
## 27727 805531 1
## 27728 805532 1
## 27729 805533 1
## 27730 805534 1
## 27731 805535 1
## 27732 805536 1
## 27733 805537 1
## 27734 805538 1
## 27735 805539 1
## 27736 805540 1
## 27737 805541 1
## 27738 805542 1
## 27739 805543 1
## 27740 805545 1
## 27741 805546 1
## 27742 805547 1
## 27743 805548 1
## 27744 805549 1
## 27745 805550 1
## 27746 805551 1
## 27747 805552 1
## 27748 805553 1
## 27749 805554 1
## 27750 805555 1
## 27751 805556 1
## 27752 805557 1
## 27753 805558 1
## 27754 805559 1
## 27755 805560 1
## 27756 805561 1
## 27757 805562 1
## 27758 805563 1
## 27759 805564 1
## 27760 805565 1
## 27761 805566 1
## 27762 805567 1
## 27763 805568 1
## 27764 805569 1
## 27765 805570 1
## 27766 805571 1
## 27767 805572 1
## 27768 805573 1
## 27769 805574 1
## 27770 805575 1
## 27771 805576 1
## 27772 805577 1
## 27773 805578 1
## 27774 805579 1
## 27775 805580 1
## 27776 805581 1
## 27777 805582 1
## 27778 805583 1
## 27779 805584 1
## 27780 805585 1
## 27781 805586 1
## 27782 805587 1
## 27783 805588 1
## 27784 805589 1
## 27785 805590 1
## 27786 805591 1
## 27787 805592 1
## 27788 805593 1
## 27789 805594 1
## 27790 805595 1
## 27791 805596 1
## 27792 805597 1
## 27793 805598 1
## 27794 805599 1
## 27795 805600 1
## 27796 805601 1
## 27797 805602 1
## 27798 805603 1
## 27799 805604 1
## 27800 805605 1
## 27801 805606 1
## 27802 805607 1
## 27803 805608 1
## 27804 805609 1
## 27805 805610 1
## 27806 805611 1
## 27807 805612 1
## 27808 805613 1
## 27809 805614 1
## 27810 805615 1
## 27811 805616 1
## 27812 805617 1
## 27813 805618 1
## 27814 805619 1
## 27815 805620 1
## 27816 805621 1
## 27817 805622 1
## 27818 805623 1
## 27819 805624 1
## 27820 805625 1
## 27821 805626 1
## 27822 805627 1
## 27823 805628 1
## 27824 805629 1
## 27825 805630 1
## 27826 805631 1
## 27827 805632 1
## 27828 805633 1
## 27829 805634 1
## 27830 805635 1
## 27831 805636 1
## 27832 805637 1
## 27833 805638 1
## 27834 805639 1
## 27835 805640 1
## 27836 805641 1
## 27837 805642 1
## 27838 805643 1
## 27839 805644 1
## 27840 805645 1
## 27841 805646 1
## 27842 805647 1
## 27843 805648 1
## 27844 805649 1
## 27845 805650 1
## 27846 805651 1
## 27847 805652 1
## 27848 805653 1
## 27849 805654 1
## 27850 805655 1
## 27851 805656 1
## 27852 805657 1
## 27853 805658 1
## 27854 805659 1
## 27855 805660 1
## 27856 805661 1
## 27857 805662 1
## 27858 805663 1
## 27859 805664 1
## 27860 805665 1
## 27861 805666 1
## 27862 805667 1
## 27863 805668 1
## 27864 805669 1
## 27865 805670 1
## 27866 805671 1
## 27867 805672 1
## 27868 805673 1
## 27869 805674 1
## 27870 805675 1
## 27871 805676 1
## 27872 805677 1
## 27873 805678 1
## 27874 805679 1
## 27875 805680 1
## 27876 805681 1
## 27877 805682 1
## 27878 805683 1
## 27879 805684 1
## 27880 805685 1
## 27881 805686 1
## 27882 805687 1
## 27883 805688 1
## 27884 805689 1
## 27885 805690 1
## 27886 805691 1
## 27887 805692 1
## 27888 805693 1
## 27889 805694 1
## 27890 805695 1
## 27891 805696 1
## 27892 805697 1
## 27893 805698 1
## 27894 805699 1
## 27895 805700 1
## 27896 805701 1
## 27897 805702 1
## 27898 805703 1
## 27899 805704 1
## 27900 805705 1
## 27901 805706 1
## 27902 805707 1
## 27903 805708 1
## 27904 805709 1
## 27905 805710 1
## 27906 805711 1
## 27907 805712 1
## 27908 805713 1
## 27909 805714 1
## 27910 805715 1
## 27911 805716 1
## 27912 805717 1
## 27913 805718 1
## 27914 805719 1
## 27915 805720 1
## 27916 805721 1
## 27917 805722 1
## 27918 805723 1
## 27919 805724 1
## 27920 805725 1
## 27921 805726 1
## 27922 805727 1
## 27923 805728 1
## 27924 805729 1
## 27925 805730 1
## 27926 805731 1
## 27927 805732 1
## 27928 805733 1
## 27929 805734 1
## 27930 805735 1
## 27931 805736 1
## 27932 805737 1
## 27933 805738 1
## 27934 805739 1
## 27935 805740 1
## 27936 805741 1
## 27937 805742 1
## 27938 805743 1
## 27939 805744 1
## 27940 805745 1
## 27941 805746 1
## 27942 805747 1
## 27943 805748 1
## 27944 805749 1
## 27945 805750 1
## 27946 805751 1
## 27947 805752 1
## 27948 805753 1
## 27949 805754 1
## 27950 805755 1
## 27951 805756 1
## 27952 805757 1
## 27953 805758 1
## 27954 805759 1
## 27955 805760 1
## 27956 805761 1
## 27957 805762 1
## 27958 805763 1
## 27959 805764 1
## 27960 805765 1
## 27961 805766 1
## 27962 805767 1
## 27963 805768 1
## 27964 805769 1
## 27965 805770 1
## 27966 805771 1
## 27967 805772 1
## 27968 805773 1
## 27969 805774 1
## 27970 805775 1
## 27971 805776 1
## 27972 805777 1
## 27973 805778 1
## 27974 805779 1
## 27975 805780 1
## 27976 805781 1
## 27977 805782 1
## 27978 805783 1
## 27979 805784 1
## 27980 805785 1
## 27981 805786 1
## 27982 805787 1
## 27983 805788 1
## 27984 805789 1
## 27985 805790 1
## 27986 805791 1
## 27987 805792 1
## 27988 805793 1
## 27989 805794 1
## 27990 805795 1
## 27991 805796 1
## 27992 805797 1
## 27993 805798 1
## 27994 805799 1
## 27995 805800 1
## 27996 805801 1
## 27997 805802 1
## 27998 805803 1
## 27999 805804 1
## 28000 805805 1
## 28001 805806 1
## 28002 805807 1
## 28003 805808 1
## 28004 805809 1
## 28005 805810 1
## 28006 805811 1
## 28007 805812 1
## 28008 805813 1
## 28009 805814 1
## 28010 805815 1
## 28011 805816 1
## 28012 805817 1
## 28013 805818 1
## 28014 805819 1
## 28015 805820 1
## 28016 805821 1
## 28017 805822 1
## 28018 805823 1
## 28019 805824 1
## 28020 805825 1
## 28021 805826 1
## 28022 805827 1
## 28023 805828 1
## 28024 805829 1
## 28025 805830 1
## 28026 805831 1
## 28027 805832 1
## 28028 805833 1
## 28029 805834 1
## 28030 805835 1
## 28031 805836 1
## 28032 805837 1
## 28033 805838 1
## 28034 805839 1
## 28035 805840 1
## 28036 805841 1
## 28037 805842 1
## 28038 805843 1
## 28039 805844 1
## 28040 805845 1
## 28041 805846 1
## 28042 805847 1
## 28043 805848 1
## 28044 805849 1
## 28045 805850 1
## 28046 805851 1
## 28047 805852 1
## 28048 805853 1
## 28049 805854 1
## 28050 805855 1
## 28051 805856 1
## 28052 805857 1
## 28053 805858 1
## 28054 805859 1
## 28055 805860 1
## 28056 805861 1
## 28057 805862 1
## 28058 805863 1
## 28059 805864 1
## 28060 805865 1
## 28061 805866 1
## 28062 805867 1
## 28063 805868 1
## 28064 805870 1
## 28065 805871 1
## 28066 805872 1
## 28067 805873 1
## 28068 805874 1
## 28069 805875 1
## 28070 805876 1
## 28071 805877 1
## 28072 805878 1
## 28073 805879 1
## 28074 805880 1
## 28075 805881 1
## 28076 805882 1
## 28077 805883 1
## 28078 805884 1
## 28079 805885 1
## 28080 805886 1
## 28081 805887 1
## 28082 805888 1
## 28083 805889 1
## 28084 805890 1
## 28085 805891 1
## 28086 805892 1
## 28087 805893 1
## 28088 805894 1
## 28089 805895 1
## 28090 805896 1
## 28091 805897 1
## 28092 805898 1
## 28093 805899 1
## 28094 805900 1
## 28095 805901 1
## 28096 805902 1
## 28097 805903 1
## 28098 805904 1
## 28099 805905 1
## 28100 805906 1
## 28101 805907 1
## 28102 805908 1
## 28103 805909 1
## 28104 805910 1
## 28105 805911 1
## 28106 805912 1
## 28107 805913 1
## 28108 805914 1
## 28109 805915 1
## 28110 805916 1
## 28111 805917 1
## 28112 805918 1
## 28113 805919 1
## 28114 805920 1
## 28115 805921 1
## 28116 805922 1
## 28117 805923 1
## 28118 805924 1
## 28119 805925 1
## 28120 805926 1
## 28121 805927 1
## 28122 805928 1
## 28123 805929 1
## 28124 805930 1
## 28125 805931 1
## 28126 805932 1
## 28127 805933 1
## 28128 805934 1
## 28129 805935 1
## 28130 805936 1
## 28131 805937 1
## 28132 805938 1
## 28133 805939 1
## 28134 805940 1
## 28135 805941 1
## 28136 805942 1
## 28137 805943 1
## 28138 805944 1
## 28139 805945 1
## 28140 805946 1
## 28141 805947 1
## 28142 805948 1
## 28143 805949 1
## 28144 805950 1
## 28145 805951 1
## 28146 805952 1
## 28147 805953 1
## 28148 805954 1
## 28149 805955 1
## 28150 805956 1
## 28151 805957 1
## 28152 805958 1
## 28153 805959 1
## 28154 805960 1
## 28155 805961 1
## 28156 805962 1
## 28157 805963 1
## 28158 805964 1
## 28159 805965 1
## 28160 805966 1
## 28161 805967 1
## 28162 805968 1
## 28163 805969 1
## 28164 805970 1
## 28165 805972 1
## 28166 805973 1
## 28167 805974 1
## 28168 805975 1
## 28169 805976 1
## 28170 805977 1
## 28171 805978 1
## 28172 805979 1
## 28173 805980 1
## 28174 805981 1
## 28175 805982 1
## 28176 805983 1
## 28177 805984 1
## 28178 805985 1
## 28179 805986 1
## 28180 805987 1
## 28181 805988 1
## 28182 805989 1
## 28183 805990 1
## 28184 805991 1
## 28185 805992 1
## 28186 805993 1
## 28187 805994 1
## 28188 805995 1
## 28189 805997 1
## 28190 805998 1
## 28191 805999 1
## 28192 806000 1
## 28193 806001 1
## 28194 806002 1
## 28195 806003 1
## 28196 806004 1
## 28197 806005 1
## 28198 806006 1
## 28199 806007 1
## 28200 806008 1
## 28201 806009 1
## 28202 806010 1
## 28203 806011 1
## 28204 806012 1
## 28205 806013 1
## 28206 806014 1
## 28207 806015 1
## 28208 806016 1
## 28209 806017 1
## 28210 806018 1
## 28211 806019 1
## 28212 806020 1
## 28213 806021 1
## 28214 806022 1
## 28215 806023 1
## 28216 806024 1
## 28217 806025 1
## 28218 806026 1
## 28219 806027 1
## 28220 806028 1
## 28221 806029 1
## 28222 806030 1
## 28223 806031 1
## 28224 806032 1
## 28225 806033 1
## 28226 806034 1
## 28227 806035 1
## 28228 806036 1
## 28229 806037 1
## 28230 806038 1
## 28231 806039 1
## 28232 806040 1
## 28233 806041 1
## 28234 806042 1
## 28235 806043 1
## 28236 806044 1
## 28237 806045 1
## 28238 806046 1
## 28239 806047 1
## 28240 806048 1
## 28241 806049 1
## 28242 806050 1
## 28243 806051 1
## 28244 806052 1
## 28245 806053 1
## 28246 806054 1
## 28247 806055 1
## 28248 806056 1
## 28249 806057 1
## 28250 806058 1
## 28251 806059 1
## 28252 806060 1
## 28253 806061 1
## 28254 806062 1
## 28255 806063 1
## 28256 806064 1
## 28257 806065 1
## 28258 806066 1
## 28259 806067 1
## 28260 806068 1
## 28261 806069 1
## 28262 806070 1
## 28263 806071 1
## 28264 806072 1
## 28265 806073 1
## 28266 806074 1
## 28267 806075 1
## 28268 806076 1
## 28269 806077 1
## 28270 806078 1
## 28271 806079 1
## 28272 806080 1
## 28273 806081 1
## 28274 806082 1
## 28275 806083 1
## 28276 806084 1
## 28277 806085 1
## 28278 806086 1
## 28279 806087 1
## 28280 806088 1
## 28281 806089 1
## 28282 806090 1
## 28283 806091 1
## 28284 806092 1
## 28285 806093 1
## 28286 806094 1
## 28287 806095 1
## 28288 806096 1
## 28289 806097 1
## 28290 806098 1
## 28291 806099 1
## 28292 806100 1
## 28293 806101 1
## 28294 806102 1
## 28295 806103 1
## 28296 806104 1
## 28297 806105 1
## 28298 806106 1
## 28299 806108 1
## 28300 806109 1
## 28301 806110 1
## 28302 806111 1
## 28303 806112 1
## 28304 806113 1
## 28305 806114 1
## 28306 806115 1
## 28307 806116 1
## 28308 806117 1
## 28309 806118 1
## 28310 806119 1
## 28311 806120 1
## 28312 806121 1
## 28313 806122 1
## 28314 806123 1
## 28315 806124 1
## 28316 806125 1
## 28317 806126 1
## 28318 806127 1
## 28319 806128 1
## 28320 806129 1
## 28321 806130 1
## 28322 806131 1
## 28323 806132 1
## 28324 806133 1
## 28325 806134 1
## 28326 806135 1
## 28327 806136 1
## 28328 806137 1
## 28329 806138 1
## 28330 806139 1
## 28331 806140 1
## 28332 806141 1
## 28333 806142 1
## 28334 806143 1
## 28335 806144 1
## 28336 806145 1
## 28337 806146 1
## 28338 806147 1
## 28339 806148 1
## 28340 806149 1
## 28341 806151 1
## 28342 806152 1
## 28343 806153 1
## 28344 806154 1
## 28345 806155 1
## 28346 806156 1
## 28347 806157 1
## 28348 806158 1
## 28349 806159 1
## 28350 806160 1
## 28351 806161 1
## 28352 806162 1
## 28353 806163 1
## 28354 806165 1
## 28355 806166 1
## 28356 806167 1
## 28357 806168 1
## 28358 806169 1
## 28359 806170 1
## 28360 806171 1
## 28361 806172 1
## 28362 806173 1
## 28363 806174 1
## 28364 806175 1
## 28365 806176 1
## 28366 806177 1
## 28367 806178 1
## 28368 806180 1
## 28369 806181 1
## 28370 806182 1
## 28371 806183 1
## 28372 806184 1
## 28373 806185 1
## 28374 806186 1
## 28375 806187 1
## 28376 806188 1
## 28377 806189 1
## 28378 806190 1
## 28379 806191 1
## 28380 806192 1
## 28381 806193 1
## 28382 806194 1
## 28383 806195 1
## 28384 806196 1
## 28385 806197 1
## 28386 806198 1
## 28387 806199 1
## 28388 806200 1
## 28389 806201 1
## 28390 806202 1
## 28391 806203 1
## 28392 806204 1
## 28393 806205 1
## 28394 806206 1
## 28395 806207 1
## 28396 806208 1
## 28397 806209 1
## 28398 806210 1
## 28399 806211 1
## 28400 806212 1
## 28401 806213 1
## 28402 806214 1
## 28403 806215 1
## 28404 806216 1
## 28405 806217 1
## 28406 806218 1
## 28407 806219 1
## 28408 806220 1
## 28409 806221 1
## 28410 806222 1
## 28411 806223 1
## 28412 806224 1
## 28413 806225 1
## 28414 806226 1
## 28415 806227 1
## 28416 806228 1
## 28417 806229 1
## 28418 806230 1
## 28419 806231 1
## 28420 806232 1
## 28421 806233 1
## 28422 806234 1
## 28423 806235 1
## 28424 806236 1
## 28425 806237 1
## 28426 806238 1
## 28427 806239 1
## 28428 806240 1
## 28429 806241 1
## 28430 806242 1
## 28431 806243 1
## 28432 806244 1
## 28433 806245 1
## 28434 806246 1
## 28435 806247 1
## 28436 806248 1
## 28437 806249 1
## 28438 806250 1
## 28439 806251 1
## 28440 806252 1
## 28441 806253 1
## 28442 806254 1
## 28443 806255 1
## 28444 806256 1
## 28445 806257 1
## 28446 806258 1
## 28447 806259 1
## 28448 806260 1
## 28449 806261 1
## 28450 806262 1
## 28451 806263 1
## 28452 806264 1
## 28453 806265 1
## 28454 806266 1
## 28455 806267 1
## 28456 806268 1
## 28457 806269 1
## 28458 806270 1
## 28459 806271 1
## 28460 806272 1
## 28461 806273 1
## 28462 806274 1
## 28463 806275 1
## 28464 806277 1
## 28465 806278 1
## 28466 806279 1
## 28467 806280 1
## 28468 806281 1
## 28469 806282 1
## 28470 806283 1
## 28471 806284 1
## 28472 806285 1
## 28473 806286 1
## 28474 806287 1
## 28475 806288 1
## 28476 806289 1
## 28477 806290 1
## 28478 806291 1
## 28479 806292 1
## 28480 806293 1
## 28481 806294 1
## 28482 806295 1
## 28483 806296 1
## 28484 806297 1
## 28485 806298 1
## 28486 806299 1
## 28487 806300 1
## 28488 806301 1
## 28489 806302 1
## 28490 806303 1
## 28491 806304 1
## 28492 806305 1
## 28493 806306 1
## 28494 806307 1
## 28495 806308 1
## 28496 806309 1
## 28497 806310 1
## 28498 806311 1
## 28499 806312 1
## 28500 806313 1
## 28501 806314 1
## 28502 806315 1
## 28503 806316 1
## 28504 806317 1
## 28505 806318 1
## 28506 806319 1
## 28507 806320 1
## 28508 806321 1
## 28509 806322 1
## 28510 806323 1
## 28511 806324 1
## 28512 806325 1
## 28513 806326 1
## 28514 806327 1
## 28515 806328 1
## 28516 806329 1
## 28517 806331 1
## 28518 806332 1
## 28519 806333 1
## 28520 806334 1
## 28521 806335 1
## 28522 806336 1
## 28523 806337 1
## 28524 806338 1
## 28525 806339 1
## 28526 806340 1
## 28527 806341 1
## 28528 806342 1
## 28529 806343 1
## 28530 806344 1
## 28531 806345 1
## 28532 806346 1
## 28533 806347 1
## 28534 806348 1
## 28535 806349 1
## 28536 806350 1
## 28537 806351 1
## 28538 806352 1
## 28539 806353 1
## 28540 806354 1
## 28541 806355 1
## 28542 806356 1
## 28543 806357 1
## 28544 806358 1
## 28545 806359 1
## 28546 806360 1
## 28547 806361 1
## 28548 806362 1
## 28549 806363 1
## 28550 806364 1
## 28551 806365 1
## 28552 806366 1
## 28553 806367 1
## 28554 806368 1
## 28555 806369 1
## 28556 806370 1
## 28557 806371 1
## 28558 806372 1
## 28559 806373 1
## 28560 806374 1
## 28561 806375 1
## 28562 806376 1
## 28563 806377 1
## 28564 806378 1
## 28565 806379 1
## 28566 806380 1
## 28567 806381 1
## 28568 806382 1
## 28569 806383 1
## 28570 806384 1
## 28571 806385 1
## 28572 806386 1
## 28573 806387 1
## 28574 806388 1
## 28575 806389 1
## 28576 806390 1
## 28577 806391 1
## 28578 806392 1
## 28579 806393 1
## 28580 806394 1
## 28581 806395 1
## 28582 806396 1
## 28583 806397 1
## 28584 806398 1
## 28585 806399 1
## 28586 806400 1
## 28587 806401 1
## 28588 806402 1
## 28589 806403 1
## 28590 806404 1
## 28591 806405 1
## 28592 806406 1
## 28593 806407 1
## 28594 806408 1
## 28595 806409 1
## 28596 806410 1
## 28597 806411 1
## 28598 806412 1
## 28599 806413 1
## 28600 806414 1
## 28601 806415 1
## 28602 806416 1
## 28603 806417 1
## 28604 806418 1
## 28605 806419 1
## 28606 806420 1
## 28607 806421 1
## 28608 806422 1
## 28609 806423 1
## 28610 806424 1
## 28611 806425 1
## 28612 806426 1
## 28613 806427 1
## 28614 806428 1
## 28615 806429 1
## 28616 806430 1
## 28617 806431 1
## 28618 806432 1
## 28619 806433 1
## 28620 806434 1
## 28621 806435 1
## 28622 806436 1
## 28623 806437 1
## 28624 806438 1
## 28625 806439 1
## 28626 806440 1
## 28627 806441 1
## 28628 806442 1
## 28629 806443 1
## 28630 806444 1
## 28631 806445 1
## 28632 806446 1
## 28633 806447 1
## 28634 806448 1
## 28635 806449 1
## 28636 806450 1
## 28637 806451 1
## 28638 806452 1
## 28639 806453 1
## 28640 806455 1
## 28641 806456 1
## 28642 806457 1
## 28643 806458 1
## 28644 806459 1
## 28645 806460 1
## 28646 806461 1
## 28647 806462 1
## 28648 806463 1
## 28649 806464 1
## 28650 806465 1
## 28651 806466 1
## 28652 806467 1
## 28653 806468 1
## 28654 806469 1
## 28655 806470 1
## 28656 806471 1
## 28657 806472 1
## 28658 806473 1
## 28659 806474 1
## 28660 806475 1
## 28661 806476 1
## 28662 806477 1
## 28663 806478 1
## 28664 806479 1
## 28665 806480 1
## 28666 806481 1
## 28667 806482 1
## 28668 806483 1
## 28669 806484 1
## 28670 806485 1
## 28671 806486 1
## 28672 806487 1
## 28673 806488 1
## 28674 806489 1
## 28675 806490 1
## 28676 806491 1
## 28677 806492 1
## 28678 806494 1
## 28679 806495 1
## 28680 806496 1
## 28681 806497 1
## 28682 806498 1
## 28683 806499 1
## 28684 806500 1
## 28685 806501 1
## 28686 806502 1
## 28687 806503 1
## 28688 806504 1
## 28689 806505 1
## 28690 806506 1
## 28691 806507 1
## 28692 806508 1
## 28693 806509 1
## 28694 806510 1
## 28695 806511 1
## 28696 806512 1
## 28697 806513 1
## 28698 806514 1
## 28699 806515 1
## 28700 806516 1
## 28701 806517 1
## 28702 806518 1
## 28703 806519 1
## 28704 806520 1
## 28705 806521 1
## 28706 806522 1
## 28707 806523 1
## 28708 806524 1
## 28709 806525 1
## 28710 806526 1
## 28711 806527 1
## 28712 806528 1
## 28713 806529 1
## 28714 806530 1
## 28715 806531 1
## 28716 806532 1
## 28717 806533 1
## 28718 806534 1
## 28719 806535 1
## 28720 806536 1
## 28721 806537 1
## 28722 806538 1
## 28723 806539 1
## 28724 806540 1
## 28725 806541 1
## 28726 806542 1
## 28727 806543 1
## 28728 806544 1
## 28729 806545 1
## 28730 806546 1
## 28731 806547 1
## 28732 806548 1
## 28733 806549 1
## 28734 806550 1
## 28735 806551 1
## 28736 806552 1
## 28737 806553 1
## 28738 806554 1
## 28739 806555 1
## 28740 806556 1
## 28741 806557 1
## 28742 806558 1
## 28743 806559 1
## 28744 806560 1
## 28745 806561 1
## 28746 806562 1
## 28747 806563 1
## 28748 806564 1
## 28749 806565 1
## 28750 806566 1
## 28751 806567 1
## 28752 806568 1
## 28753 806569 1
## 28754 806570 1
## 28755 806571 1
## 28756 806572 1
## 28757 806573 1
## 28758 806574 1
## 28759 806575 1
## 28760 806576 1
## 28761 806577 1
## 28762 806578 1
## 28763 806579 1
## 28764 806580 1
## 28765 806581 1
## 28766 806582 1
## 28767 806583 1
## 28768 806584 1
## 28769 806585 1
## 28770 806586 1
## 28771 806587 1
## 28772 806588 1
## 28773 806589 1
## 28774 806590 1
## 28775 806591 1
## 28776 806592 1
## 28777 806593 1
## 28778 806594 1
## 28779 806595 1
## 28780 806596 1
## 28781 806597 1
## 28782 806598 1
## 28783 806599 1
## 28784 806600 1
## 28785 806601 1
## 28786 806602 1
## 28787 806603 1
## 28788 806604 1
## 28789 806605 1
## 28790 806606 1
## 28791 806607 1
## 28792 806608 1
## 28793 806609 1
## 28794 806611 1
## 28795 806612 1
## 28796 806613 1
## 28797 806614 1
## 28798 806615 1
## 28799 806616 1
## 28800 806617 1
## 28801 806618 1
## 28802 806619 1
## 28803 806620 1
## 28804 806621 1
## 28805 806622 1
## 28806 806623 1
## 28807 806624 1
## 28808 806625 1
## 28809 806626 1
## 28810 806627 1
## 28811 806628 1
## 28812 806629 1
## 28813 806630 1
## 28814 806631 1
## 28815 806632 1
## 28816 806633 1
## 28817 806634 1
## 28818 806635 1
## 28819 806636 1
## 28820 806637 1
## 28821 806638 1
## 28822 806639 1
## 28823 806640 1
## 28824 806641 1
## 28825 806642 1
## 28826 806643 1
## 28827 806644 1
## 28828 806645 1
## 28829 806646 1
## 28830 806647 1
## 28831 806648 1
## 28832 806649 1
## 28833 806650 1
## 28834 806651 1
## 28835 806652 1
## 28836 806653 1
## 28837 806654 1
## 28838 806655 1
## 28839 806656 1
## 28840 806657 1
## 28841 806658 1
## 28842 806659 1
## 28843 806660 1
## 28844 806661 1
## 28845 806662 1
## 28846 806663 1
## 28847 806664 1
## 28848 806665 1
## 28849 806666 1
## 28850 806667 1
## 28851 806668 1
## 28852 806669 1
## 28853 806670 1
## 28854 806671 1
## 28855 806672 1
## 28856 806673 1
## 28857 806674 1
## 28858 806675 1
## 28859 806676 1
## 28860 806677 1
## 28861 806678 1
## 28862 806679 1
## 28863 806680 1
## 28864 806681 1
## 28865 806682 1
## 28866 806683 1
## 28867 806684 1
## 28868 806685 1
## 28869 806686 1
## 28870 806687 1
## 28871 806688 1
## 28872 806689 1
## 28873 806690 1
## 28874 806691 1
## 28875 806692 1
## 28876 806693 1
## 28877 806694 1
## 28878 806695 1
## 28879 806696 1
## 28880 806697 1
## 28881 806698 1
## 28882 806699 1
## 28883 806700 1
## 28884 806702 1
## 28885 806703 1
## 28886 806704 1
## 28887 806705 1
## 28888 806706 1
## 28889 806707 1
## 28890 806708 1
## 28891 806709 1
## 28892 806710 1
## 28893 806711 1
## 28894 806712 1
## 28895 806713 1
## 28896 806714 1
## 28897 806715 1
## 28898 806716 1
## 28899 806717 1
## 28900 806718 1
## 28901 806719 1
## 28902 806720 1
## 28903 806721 1
## 28904 806722 1
## 28905 806723 1
## 28906 806724 1
## 28907 806725 1
## 28908 806726 1
## 28909 806727 1
## 28910 806728 1
## 28911 806729 1
## 28912 806730 1
## 28913 806731 1
## 28914 806732 1
## 28915 806733 1
## 28916 806734 1
## 28917 806735 1
## 28918 806736 1
## 28919 806737 1
## 28920 806738 1
## 28921 806739 1
## 28922 806740 1
## 28923 806741 1
## 28924 806742 1
## 28925 806743 1
## 28926 806744 1
## 28927 806745 1
## 28928 806746 1
## 28929 806747 1
## 28930 806748 1
## 28931 806749 1
## 28932 806750 1
## 28933 806751 1
## 28934 806752 1
## 28935 806753 1
## 28936 806754 1
## 28937 806755 1
## 28938 806756 1
## 28939 806757 1
## 28940 806758 1
## 28941 806759 1
## 28942 806760 1
## 28943 806761 1
## 28944 806762 1
## 28945 806763 1
## 28946 806764 1
## 28947 806765 1
## 28948 806766 1
## 28949 806767 1
## 28950 806768 1
## 28951 806769 1
## 28952 806770 1
## 28953 806771 1
## 28954 806772 1
## 28955 806773 1
## 28956 806774 1
## 28957 806775 1
## 28958 806776 1
## 28959 806777 1
## 28960 806778 1
## 28961 806779 1
## 28962 806780 1
## 28963 806781 1
## 28964 806782 1
## 28965 806783 1
## 28966 806784 1
## 28967 806785 1
## 28968 806786 1
## 28969 806787 1
## 28970 806788 1
## 28971 806789 1
## 28972 806790 1
## 28973 806792 1
## 28974 806793 1
## 28975 806794 1
## 28976 806795 1
## 28977 806796 1
## 28978 806797 1
## 28979 806798 1
## 28980 806799 1
## 28981 806800 1
## 28982 806801 1
## 28983 806802 1
## 28984 806803 1
## 28985 806804 1
## 28986 806805 1
## 28987 806806 1
## 28988 806807 1
## 28989 806808 1
## 28990 806809 1
## 28991 806810 1
## 28992 806811 1
## 28993 806812 1
## 28994 806813 1
## 28995 806814 1
## 28996 806815 1
## 28997 806816 1
## 28998 806817 1
## 28999 806818 1
## 29000 806819 1
## 29001 806820 1
## 29002 806821 1
## 29003 806822 1
## 29004 806823 1
## 29005 806824 1
## 29006 806825 1
## 29007 806826 1
## 29008 806827 1
## 29009 806828 1
## 29010 806829 1
## 29011 806830 1
## 29012 806831 1
## 29013 806832 1
## 29014 806833 1
## 29015 806834 1
## 29016 806835 1
## 29017 806836 1
## 29018 806837 1
## 29019 806838 1
## 29020 806839 1
## 29021 806840 1
## 29022 806841 1
## 29023 806842 1
## 29024 806843 1
## 29025 806844 1
## 29026 806845 1
## 29027 806846 1
## 29028 806847 1
## 29029 806848 1
## 29030 806849 1
## 29031 806850 1
## 29032 806851 1
## 29033 806852 1
## 29034 806853 1
## 29035 806854 1
## 29036 806855 1
## 29037 806856 1
## 29038 806857 1
## 29039 806858 1
## 29040 806859 1
## 29041 806860 1
## 29042 806861 1
## 29043 806862 1
## 29044 806863 1
## 29045 806864 1
## 29046 806865 1
## 29047 806866 1
## 29048 806867 1
## 29049 806868 1
## 29050 806869 1
## 29051 806870 1
## 29052 806871 1
## 29053 806872 1
## 29054 806873 1
## 29055 806874 1
## 29056 806875 1
## 29057 806876 1
## 29058 806877 1
## 29059 806878 1
## 29060 806879 1
## 29061 806880 1
## 29062 806881 1
## 29063 806882 1
## 29064 806883 1
## 29065 806884 1
## 29066 806885 1
## 29067 806886 1
## 29068 806887 1
## 29069 806888 1
## 29070 806889 1
## 29071 806890 1
## 29072 806891 1
## 29073 806892 1
## 29074 806893 1
## 29075 806894 1
## 29076 806895 1
## 29077 806896 1
## 29078 806897 1
## 29079 806898 1
## 29080 806899 1
## 29081 806900 1
## 29082 806901 1
## 29083 806902 1
## 29084 806903 1
## 29085 806904 1
## 29086 806905 1
## 29087 806906 1
## 29088 806907 1
## 29089 806908 1
## 29090 806909 1
## 29091 806910 1
## 29092 806911 1
## 29093 806912 1
## 29094 806913 1
## 29095 806914 1
## 29096 806915 1
## 29097 806916 1
## 29098 806917 1
## 29099 806918 1
## 29100 806920 1
## 29101 806921 1
## 29102 806922 1
## 29103 806923 1
## 29104 806924 1
## 29105 806925 1
## 29106 806926 1
## 29107 806927 1
## 29108 806928 1
## 29109 806929 1
## 29110 806930 1
## 29111 806931 1
## 29112 806932 1
## 29113 806933 1
## 29114 806934 1
## 29115 806935 1
## 29116 806936 1
## 29117 806937 1
## 29118 806938 1
## 29119 806939 1
## 29120 806940 1
## 29121 806941 1
## 29122 806942 1
## 29123 806943 1
## 29124 806944 1
## 29125 806945 1
## 29126 806946 1
## 29127 806947 1
## 29128 806948 1
## 29129 806949 1
## 29130 806950 1
## 29131 806951 1
## 29132 806952 1
## 29133 806953 1
## 29134 806954 1
## 29135 806955 1
## 29136 806956 1
## 29137 806957 1
## 29138 806958 1
## 29139 806959 1
## 29140 806960 1
## 29141 806961 1
## 29142 806962 1
## 29143 806963 1
## 29144 806964 1
## 29145 806965 1
## 29146 806966 1
## 29147 806967 1
## 29148 806968 1
## 29149 806969 1
## 29150 806970 1
## 29151 806971 1
## 29152 806972 1
## 29153 806973 1
## 29154 806974 1
## 29155 806975 1
## 29156 806976 1
## 29157 806977 1
## 29158 806978 1
## 29159 806979 1
## 29160 806980 1
## 29161 806981 1
## 29162 806982 1
## 29163 806983 1
## 29164 806984 1
## 29165 806985 1
## 29166 806986 1
## 29167 806987 1
## 29168 806988 1
## 29169 806989 1
## 29170 806990 1
## 29171 806991 1
## 29172 806992 1
## 29173 806993 1
## 29174 806994 1
## 29175 806995 1
## 29176 806996 1
## 29177 806997 1
## 29178 806998 1
## 29179 806999 1
## 29180 807000 1
## 29181 807001 1
## 29182 807002 1
## 29183 807003 1
## 29184 807004 1
## 29185 807005 1
## 29186 807006 1
## 29187 807007 1
## 29188 807008 1
## 29189 807009 1
## 29190 807010 1
## 29191 807011 1
## 29192 807012 1
## 29193 807013 1
## 29194 807014 1
## 29195 807015 1
## 29196 807016 1
## 29197 807017 1
## 29198 807018 1
## 29199 807019 1
## 29200 807020 1
## 29201 807021 1
## 29202 807022 1
## 29203 807023 1
## 29204 807024 1
## 29205 807025 1
## 29206 807026 1
## 29207 807027 1
## 29208 807028 1
## 29209 807029 1
## 29210 807030 1
## 29211 807031 1
## 29212 807032 1
## 29213 807033 1
## 29214 807034 1
## 29215 807035 1
## 29216 807036 1
## 29217 807037 1
## 29218 807038 1
## 29219 807039 1
## 29220 807040 1
## 29221 807041 1
## 29222 807042 1
## 29223 807043 1
## 29224 807044 1
## 29225 807045 1
## 29226 807046 1
## 29227 807047 1
## 29228 807048 1
## 29229 807049 1
## 29230 807050 1
## 29231 807051 1
## 29232 807052 1
## 29233 807053 1
## 29234 807054 1
## 29235 807055 1
## 29236 807056 1
## 29237 807057 1
## 29238 807058 1
## 29239 807059 1
## 29240 807060 1
## 29241 807061 1
## 29242 807062 1
## 29243 807063 1
## 29244 807064 1
## 29245 807065 1
## 29246 807066 1
## 29247 807067 1
## 29248 807068 1
## 29249 807069 1
## 29250 807070 1
## 29251 807071 1
## 29252 807072 1
## 29253 807073 1
## 29254 807074 1
## 29255 807075 1
## 29256 807076 1
## 29257 807077 1
## 29258 807078 1
## 29259 807079 1
## 29260 807080 1
## 29261 807081 1
## 29262 807082 1
## 29263 807083 1
## 29264 807084 1
## 29265 807085 1
## 29266 807086 1
## 29267 807087 1
## 29268 807088 1
## 29269 807089 1
## 29270 807090 1
## 29271 807091 1
## 29272 807092 1
## 29273 807093 1
## 29274 807094 1
## 29275 807095 1
## 29276 807096 1
## 29277 807097 1
## 29278 807098 1
## 29279 807100 1
## 29280 807101 1
## 29281 807102 1
## 29282 807103 1
## 29283 807104 1
## 29284 807105 1
## 29285 807106 1
## 29286 807107 1
## 29287 807108 1
## 29288 807109 1
## 29289 807110 1
## 29290 807111 1
## 29291 807112 1
## 29292 807113 1
## 29293 807114 1
## 29294 807115 1
## 29295 807116 1
## 29296 807117 1
## 29297 807118 1
## 29298 807119 1
## 29299 807120 1
## 29300 807121 1
## 29301 807122 1
## 29302 807123 1
## 29303 807124 1
## 29304 807125 1
## 29305 807126 1
## 29306 807127 1
## 29307 807128 1
## 29308 807129 1
## 29309 807130 1
## 29310 807131 1
## 29311 807132 1
## 29312 807133 1
## 29313 807134 1
## 29314 807135 1
## 29315 807136 1
## 29316 807137 1
## 29317 807138 1
## 29318 807139 1
## 29319 807140 1
## 29320 807141 1
## 29321 807142 1
## 29322 807143 1
## 29323 807144 1
## 29324 807145 1
## 29325 807146 1
## 29326 807147 1
## 29327 807148 1
## 29328 807149 1
## 29329 807150 1
## 29330 807151 1
## 29331 807152 1
## 29332 807153 1
## 29333 807154 1
## 29334 807155 1
## 29335 807156 1
## 29336 807157 1
## 29337 807158 1
## 29338 807159 1
## 29339 807160 1
## 29340 807161 1
## 29341 807162 1
## 29342 807163 1
## 29343 807164 1
## 29344 807165 1
## 29345 807166 1
## 29346 807167 1
## 29347 807168 1
## 29348 807169 1
## 29349 807170 1
## 29350 807171 1
## 29351 807172 1
## 29352 807173 1
## 29353 807174 1
## 29354 807175 1
## 29355 807176 1
## 29356 807177 1
## 29357 807178 1
## 29358 807179 1
## 29359 807180 1
## 29360 807181 1
## 29361 807182 1
## 29362 807183 1
## 29363 807184 1
## 29364 807185 1
## 29365 807186 1
## 29366 807187 1
## 29367 807188 1
## 29368 807189 1
## 29369 807190 1
## 29370 807191 1
## 29371 807192 1
## 29372 807193 1
## 29373 807194 1
## 29374 807195 1
## 29375 807196 1
## 29376 807197 1
## 29377 807198 1
## 29378 807199 1
## 29379 807200 1
## 29380 807201 1
## 29381 807202 1
## 29382 807203 1
## 29383 807204 1
## 29384 807205 1
## 29385 807206 1
## 29386 807207 1
## 29387 807208 1
## 29388 807209 1
## 29389 807210 1
## 29390 807211 1
## 29391 807212 1
## 29392 807213 1
## 29393 807214 1
## 29394 807215 1
## 29395 807216 1
## 29396 807217 1
## 29397 807218 1
## 29398 807219 1
## 29399 807220 1
## 29400 807221 1
## 29401 807222 1
## 29402 807223 1
## 29403 807224 1
## 29404 807225 1
## 29405 807226 1
## 29406 807227 1
## 29407 807228 1
## 29408 807229 1
## 29409 807230 1
## 29410 807231 1
## 29411 807232 1
## 29412 807233 1
## 29413 807234 1
## 29414 807235 1
## 29415 807236 1
## 29416 807237 1
## 29417 807238 1
## 29418 807239 1
## 29419 807240 1
## 29420 807241 1
## 29421 807242 1
## 29422 807243 1
## 29423 807244 1
## 29424 807245 1
## 29425 807246 1
## 29426 807247 1
## 29427 807248 1
## 29428 807249 1
## 29429 807250 1
## 29430 807251 1
## 29431 807252 1
## 29432 807253 1
## 29433 807254 1
## 29434 807255 1
## 29435 807256 1
## 29436 807257 1
## 29437 807258 1
## 29438 807259 1
## 29439 807260 1
## 29440 807261 1
## 29441 807262 1
## 29442 807263 1
## 29443 807264 1
## 29444 807265 1
## 29445 807266 1
## 29446 807267 1
## 29447 807268 1
## 29448 807269 1
## 29449 807270 1
## 29450 807271 1
## 29451 807272 1
## 29452 807273 1
## 29453 807274 1
## 29454 807275 1
## 29455 807276 1
## 29456 807277 1
## 29457 807278 1
## 29458 807279 1
## 29459 807280 1
## 29460 807281 1
## 29461 807283 1
## 29462 807284 1
## 29463 807285 1
## 29464 807286 1
## 29465 807287 1
## 29466 807288 1
## 29467 807289 1
## 29468 807290 1
## 29469 807291 1
## 29470 807292 1
## 29471 807293 1
## 29472 807294 1
## 29473 807295 1
## 29474 807296 1
## 29475 807297 1
## 29476 807298 1
## 29477 807299 1
## 29478 807300 1
## 29479 807301 1
## 29480 807302 1
## 29481 807303 1
## 29482 807304 1
## 29483 807305 1
## 29484 807306 1
## 29485 807307 1
## 29486 807308 1
## 29487 807309 1
## 29488 807310 1
## 29489 807311 1
## 29490 807312 1
## 29491 807313 1
## 29492 807314 1
## 29493 807315 1
## 29494 807316 1
## 29495 807317 1
## 29496 807318 1
## 29497 807319 1
## 29498 807320 1
## 29499 807321 1
## 29500 807322 1
## 29501 807323 1
## 29502 807324 1
## 29503 807325 1
## 29504 807326 1
## 29505 807327 1
## 29506 807328 1
## 29507 807329 1
## 29508 807330 1
## 29509 807331 1
## 29510 807332 1
## 29511 807333 1
## 29512 807334 1
## 29513 807335 1
## 29514 807336 1
## 29515 807337 1
## 29516 807338 1
## 29517 807339 1
## 29518 807340 1
## 29519 807341 1
## 29520 807343 1
## 29521 807344 1
## 29522 807345 1
## 29523 807346 1
## 29524 807347 1
## 29525 807348 1
## 29526 807349 1
## 29527 807350 1
## 29528 807351 1
## 29529 807352 1
## 29530 807353 1
## 29531 807354 1
## 29532 807356 1
## 29533 807357 1
## 29534 807358 1
## 29535 807359 1
## 29536 807360 1
## 29537 807361 1
## 29538 807362 1
## 29539 807363 1
## 29540 807364 1
## 29541 807365 1
## 29542 807366 1
## 29543 807367 1
## 29544 807368 1
## 29545 807369 1
## 29546 807370 1
## 29547 807371 1
## 29548 807372 1
## 29549 807373 1
## 29550 807374 1
## 29551 807375 1
## 29552 807376 1
## 29553 807377 1
## 29554 807378 1
## 29555 807379 1
## 29556 807380 1
## 29557 807381 1
## 29558 807382 1
## 29559 807383 1
## 29560 807384 1
## 29561 807385 1
## 29562 807386 1
## 29563 807387 1
## 29564 807388 1
## 29565 807389 1
## 29566 807390 1
## 29567 807391 1
## 29568 807392 1
## 29569 807393 1
## 29570 807394 1
## 29571 807395 1
## 29572 807396 1
## 29573 807397 1
## 29574 807398 1
## 29575 807399 1
## 29576 807400 1
## 29577 807401 1
## 29578 807402 1
## 29579 807403 1
## 29580 807404 1
## 29581 807405 1
## 29582 807406 1
## 29583 807407 1
## 29584 807408 1
## 29585 807409 1
## 29586 807410 1
## 29587 807411 1
## 29588 807412 1
## 29589 807413 1
## 29590 807414 1
## 29591 807415 1
## 29592 807416 1
## 29593 807417 1
## 29594 807418 1
## 29595 807419 1
## 29596 807420 1
## 29597 807421 1
## 29598 807422 1
## 29599 807423 1
## 29600 807424 1
## 29601 807425 1
## 29602 807426 1
## 29603 807427 1
## 29604 807428 1
## 29605 807429 1
## 29606 807430 1
## 29607 807431 1
## 29608 807432 1
## 29609 807433 1
## 29610 807434 1
## 29611 807435 1
## 29612 807436 1
## 29613 807437 1
## 29614 807438 1
## 29615 807439 1
## 29616 807440 1
## 29617 807441 1
## 29618 807442 1
## 29619 807443 1
## 29620 807444 1
## 29621 807445 1
## 29622 807446 1
## 29623 807447 1
## 29624 807448 1
## 29625 807449 1
## 29626 807450 1
## 29627 807451 1
## 29628 807452 1
## 29629 807453 1
## 29630 807454 1
## 29631 807455 1
## 29632 807456 1
## 29633 807457 1
## 29634 807458 1
## 29635 807459 1
## 29636 807460 1
## 29637 807461 1
## 29638 807462 1
## 29639 807463 1
## 29640 807464 1
## 29641 807465 1
## 29642 807466 1
## 29643 807468 1
## 29644 807469 1
## 29645 807470 1
## 29646 807471 1
## 29647 807472 1
## 29648 807473 1
## 29649 807474 1
## 29650 807475 1
## 29651 807476 1
## 29652 807477 1
## 29653 807478 1
## 29654 807479 1
## 29655 807480 1
## 29656 807481 1
## 29657 807482 1
## 29658 807483 1
## 29659 807484 1
## 29660 807485 1
## 29661 807486 1
## 29662 807487 1
## 29663 807488 1
## 29664 807489 1
## 29665 807490 1
## 29666 807491 1
## 29667 807492 1
## 29668 807493 1
## 29669 807494 1
## 29670 807495 1
## 29671 807496 1
## 29672 807497 1
## 29673 807498 1
## 29674 807499 1
## 29675 807500 1
## 29676 807501 1
## 29677 807502 1
## 29678 807503 1
## 29679 807504 1
## 29680 807505 1
## 29681 807506 1
## 29682 807507 1
## 29683 807508 1
## 29684 807509 1
## 29685 807510 1
## 29686 807511 1
## 29687 807512 1
## 29688 807513 1
## 29689 807514 1
## 29690 807515 1
## 29691 807516 1
## 29692 807517 1
## 29693 807518 1
## 29694 807519 1
## 29695 807520 1
## 29696 807521 1
## 29697 807522 1
## 29698 807523 1
## 29699 807524 1
## 29700 807525 1
## 29701 807526 1
## 29702 807527 1
## 29703 807528 1
## 29704 807529 1
## 29705 807530 1
## 29706 807531 1
## 29707 807532 1
## 29708 807533 1
## 29709 807534 1
## 29710 807535 1
## 29711 807536 1
## 29712 807537 1
## 29713 807538 1
## 29714 807539 1
## 29715 807540 1
## 29716 807541 1
## 29717 807542 1
## 29718 807543 1
## 29719 807544 1
## 29720 807545 1
## 29721 807546 1
## 29722 807547 1
## 29723 807548 1
## 29724 807549 1
## 29725 807550 1
## 29726 807551 1
## 29727 807552 1
## 29728 807553 1
## 29729 807554 1
## 29730 807555 1
## 29731 807556 1
## 29732 807557 1
## 29733 807558 1
## 29734 807559 1
## 29735 807560 1
## 29736 807561 1
## 29737 807562 1
## 29738 807563 1
## 29739 807564 1
## 29740 807565 1
## 29741 807566 1
## 29742 807567 1
## 29743 807568 1
## 29744 807569 1
## 29745 807570 1
## 29746 807571 1
## 29747 807572 1
## 29748 807573 1
## 29749 807574 1
## 29750 807575 1
## 29751 807576 1
## 29752 807577 1
## 29753 807578 1
## 29754 807579 1
## 29755 807580 1
## 29756 807581 1
## 29757 807582 1
## 29758 807583 1
## 29759 807584 1
## 29760 807585 1
## 29761 807586 1
## 29762 807587 1
## 29763 807588 1
## 29764 807589 1
## 29765 807590 1
## 29766 807591 1
## 29767 807592 1
## 29768 807593 1
## 29769 807594 1
## 29770 807595 1
## 29771 807596 1
## 29772 807597 1
## 29773 807598 1
## 29774 807599 1
## 29775 807600 1
## 29776 807601 1
## 29777 807602 1
## 29778 807603 1
## 29779 807604 1
## 29780 807605 1
## 29781 807606 1
## 29782 807607 1
## 29783 807608 1
## 29784 807609 1
## 29785 807610 1
## 29786 807611 1
## 29787 807612 1
## 29788 807613 1
## 29789 807614 1
## 29790 807615 1
## 29791 807616 1
## 29792 807617 1
## 29793 807618 1
## 29794 807619 1
## 29795 807620 1
## 29796 807621 1
## 29797 807622 1
## 29798 807623 1
## 29799 807624 1
## 29800 807625 1
## 29801 807626 1
## 29802 807627 1
## 29803 807628 1
## 29804 807629 1
## 29805 807630 1
## 29806 807631 1
## 29807 807632 1
## 29808 807633 1
## 29809 807634 1
## 29810 807635 1
## 29811 807636 1
## 29812 807637 1
## 29813 807638 1
## 29814 807639 1
## 29815 807640 1
## 29816 807641 1
## 29817 807642 1
## 29818 807643 1
## 29819 807644 1
## 29820 807645 1
## 29821 807647 1
## 29822 807648 1
## 29823 807649 1
## 29824 807650 1
## 29825 807651 1
## 29826 807652 1
## 29827 807653 1
## 29828 807654 1
## 29829 807655 1
## 29830 807656 1
## 29831 807657 1
## 29832 807658 1
## 29833 807659 1
## 29834 807660 1
## 29835 807661 1
## 29836 807662 1
## 29837 807663 1
## 29838 807664 1
## 29839 807665 1
## 29840 807666 1
## 29841 807667 1
## 29842 807668 1
## 29843 807669 1
## 29844 807670 1
## 29845 807671 1
## 29846 807672 1
## 29847 807673 1
## 29848 807675 1
## 29849 807676 1
## 29850 807677 1
## 29851 807678 1
## 29852 807679 1
## 29853 807680 1
## 29854 807681 1
## 29855 807682 1
## 29856 807683 1
## 29857 807684 1
## 29858 807685 1
## 29859 807686 1
## 29860 807687 1
## 29861 807688 1
## 29862 807689 1
## 29863 807690 1
## 29864 807691 1
## 29865 807692 1
## 29866 807693 1
## 29867 807694 1
## 29868 807695 1
## 29869 807696 1
## 29870 807697 1
## 29871 807698 1
## 29872 807699 1
## 29873 807700 1
## 29874 807701 1
## 29875 807702 1
## 29876 807703 1
## 29877 807704 1
## 29878 807706 1
## 29879 807707 1
## 29880 807708 1
## 29881 807709 1
## 29882 807710 1
## 29883 807711 1
## 29884 807712 1
## 29885 807713 1
## 29886 807714 1
## 29887 807715 1
## 29888 807716 1
## 29889 807717 1
## 29890 807718 1
## 29891 807719 1
## 29892 807720 1
## 29893 807721 1
## 29894 807722 1
## 29895 807723 1
## 29896 807724 1
## 29897 807725 1
## 29898 807726 1
## 29899 807727 1
## 29900 807728 1
## 29901 807729 1
## 29902 807730 1
## 29903 807731 1
## 29904 807732 1
## 29905 807733 1
## 29906 807734 1
## 29907 807735 1
## 29908 807736 1
## 29909 807737 1
## 29910 807738 1
## 29911 807739 1
## 29912 807740 1
## 29913 807741 1
## 29914 807742 1
## 29915 807743 1
## 29916 807744 1
## 29917 807745 1
## 29918 807746 1
## 29919 807747 1
## 29920 807748 1
## 29921 807749 1
## 29922 807750 1
## 29923 807751 1
## 29924 807752 1
## 29925 807753 1
## 29926 807754 1
## 29927 807755 1
## 29928 807756 1
## 29929 807757 1
## 29930 807758 1
## 29931 807759 1
## 29932 807760 1
## 29933 807761 1
## 29934 807762 1
## 29935 807763 1
## 29936 807764 1
## 29937 807765 1
## 29938 807766 1
## 29939 807767 1
## 29940 807768 1
## 29941 807769 1
## 29942 807770 1
## 29943 807771 1
## 29944 807772 1
## 29945 807773 1
## 29946 807774 1
## 29947 807775 1
## 29948 807776 1
## 29949 807777 1
## 29950 807778 1
## 29951 807779 1
## 29952 807780 1
## 29953 807781 1
## 29954 807782 1
## 29955 807783 1
## 29956 807784 1
## 29957 807785 1
## 29958 807786 1
## 29959 807787 1
## 29960 807788 1
## 29961 807789 1
## 29962 807790 1
## 29963 807791 1
## 29964 807792 1
## 29965 807793 1
## 29966 807794 1
## 29967 807795 1
## 29968 807796 1
## 29969 807797 1
## 29970 807798 1
## 29971 807799 1
## 29972 807800 1
## 29973 807801 1
## 29974 807802 1
## 29975 807803 1
## 29976 807804 1
## 29977 807805 1
## 29978 807806 1
## 29979 807807 1
## 29980 807808 1
## 29981 807809 1
## 29982 807810 1
## 29983 807811 1
## 29984 807812 1
## 29985 807813 1
## 29986 807814 1
## 29987 807815 1
## 29988 807816 1
## 29989 807817 1
## 29990 807818 1
## 29991 807819 1
## 29992 807820 1
## 29993 807821 1
## 29994 807822 1
## 29995 807823 1
## 29996 807824 1
## 29997 807825 1
## 29998 807826 1
## 29999 807827 1
## 30000 807829 1
## 30001 807830 1
## 30002 807831 1
## 30003 807832 1
## 30004 807833 1
## 30005 807834 1
## 30006 807835 1
## 30007 807836 1
## 30008 807837 1
## 30009 807838 1
## 30010 807839 1
## 30011 807840 1
## 30012 807841 1
## 30013 807842 1
## 30014 807843 1
## 30015 807844 1
## 30016 807845 1
## 30017 807846 1
## 30018 807847 1
## 30019 807848 1
## 30020 807849 1
## 30021 807850 1
## 30022 807851 1
## 30023 807852 1
## 30024 807853 1
## 30025 807854 1
## 30026 807856 1
## 30027 807857 1
## 30028 807858 1
## 30029 807859 1
## 30030 807860 1
## 30031 807861 1
## 30032 807862 1
## 30033 807863 1
## 30034 807864 1
## 30035 807865 1
## 30036 807866 1
## 30037 807867 1
## 30038 807868 1
## 30039 807869 1
## 30040 807870 1
## 30041 807871 1
## 30042 807872 1
## 30043 807873 1
## 30044 807874 1
## 30045 807875 1
## 30046 807876 1
## 30047 807877 1
## 30048 807878 1
## 30049 807879 1
## 30050 807880 1
## 30051 807881 1
## 30052 807882 1
## 30053 807883 1
## 30054 807884 1
## 30055 807885 1
## 30056 807886 1
## 30057 807887 1
## 30058 807888 1
## 30059 807889 1
## 30060 807890 1
## 30061 807891 1
## 30062 807892 1
## 30063 807893 1
## 30064 807894 1
## 30065 807895 1
## 30066 807897 1
## 30067 807898 1
## 30068 807899 1
## 30069 807900 1
## 30070 807901 1
## 30071 807902 1
## 30072 807903 1
## 30073 807904 1
## 30074 807905 1
## 30075 807906 1
## 30076 807907 1
## 30077 807908 1
## 30078 807909 1
## 30079 807910 1
## 30080 807911 1
## 30081 807912 1
## 30082 807913 1
## 30083 807914 1
## 30084 807915 1
## 30085 807916 1
## 30086 807917 1
## 30087 807918 1
## 30088 807919 1
## 30089 807920 1
## 30090 807921 1
## 30091 807922 1
## 30092 807923 1
## 30093 807924 1
## 30094 807925 1
## 30095 807926 1
## 30096 807927 1
## 30097 807928 1
## 30098 807929 1
## 30099 807930 1
## 30100 807931 1
## 30101 807932 1
## 30102 807933 1
## 30103 807934 1
## 30104 807935 1
## 30105 807936 1
## 30106 807937 1
## 30107 807938 1
## 30108 807939 1
## 30109 807940 1
## 30110 807941 1
## 30111 807942 1
## 30112 807943 1
## 30113 807944 1
## 30114 807945 1
## 30115 807946 1
## 30116 807947 1
## 30117 807948 1
## 30118 807949 1
## 30119 807950 1
## 30120 807951 1
## 30121 807952 1
## 30122 807953 1
## 30123 807954 1
## 30124 807955 1
## 30125 807956 1
## 30126 807957 1
## 30127 807958 1
## 30128 807959 1
## 30129 807960 1
## 30130 807961 1
## 30131 807962 1
## 30132 807963 1
## 30133 807964 1
## 30134 807965 1
## 30135 807966 1
## 30136 807967 1
## 30137 807968 1
## 30138 807969 1
## 30139 807970 1
## 30140 807971 1
## 30141 807972 1
## 30142 807973 1
## 30143 807974 1
## 30144 807975 1
## 30145 807976 1
## 30146 807977 1
## 30147 807978 1
## 30148 807979 1
## 30149 807980 1
## 30150 807981 1
## 30151 807982 1
## 30152 807983 1
## 30153 807984 1
## 30154 807985 1
## 30155 807986 1
## 30156 807987 1
## 30157 807988 1
## 30158 807989 1
## 30159 807990 1
## 30160 807991 1
## 30161 807992 1
## 30162 807993 1
## 30163 807994 1
## 30164 807995 1
## 30165 807996 1
## 30166 807997 1
## 30167 807998 1
## 30168 807999 1
## 30169 808000 1
## 30170 808001 1
## 30171 808002 1
## 30172 808003 1
## 30173 808004 1
## 30174 808005 1
## 30175 808006 1
## 30176 808007 1
## 30177 808008 1
## 30178 808009 1
## 30179 808010 1
## 30180 808011 1
## 30181 808012 1
## 30182 808013 1
## 30183 808014 1
## 30184 808015 1
## 30185 808016 1
## 30186 808017 1
## 30187 808018 1
## 30188 808019 1
## 30189 808020 1
## 30190 808021 1
## 30191 808022 1
## 30192 808023 1
## 30193 808024 1
## 30194 808025 1
## 30195 808026 1
## 30196 808027 1
## 30197 808028 1
## 30198 808029 1
## 30199 808030 1
## 30200 808031 1
## 30201 808032 1
## 30202 808033 1
## 30203 808034 1
## 30204 808035 1
## 30205 808036 1
## 30206 808037 1
## 30207 808038 1
## 30208 808039 1
## 30209 808040 1
## 30210 808041 1
## 30211 808042 1
## 30212 808043 1
## 30213 808044 1
## 30214 808045 1
## 30215 808046 1
## 30216 808047 1
## 30217 808048 1
## 30218 808049 1
## 30219 808050 1
## 30220 808051 1
## 30221 808052 1
## 30222 808053 1
## 30223 808054 1
## 30224 808055 1
## 30225 808056 1
## 30226 808057 1
## 30227 808058 1
## 30228 808059 1
## 30229 808060 1
## 30230 808061 1
## 30231 808062 1
## 30232 808063 1
## 30233 808064 1
## 30234 808065 1
## 30235 808066 1
## 30236 808067 1
## 30237 808068 1
## 30238 808069 1
## 30239 808070 1
## 30240 808071 1
## 30241 808072 1
## 30242 808073 1
## 30243 808074 1
## 30244 808075 1
## 30245 808076 1
## 30246 808077 1
## 30247 808078 1
## 30248 808079 1
## 30249 808080 1
## 30250 808081 1
## 30251 808082 1
## 30252 808083 1
## 30253 808084 1
## 30254 808085 1
## 30255 808086 1
## 30256 808087 1
## 30257 808088 1
## 30258 808089 1
## 30259 808090 1
## 30260 808091 1
## 30261 808092 1
## 30262 808093 1
## 30263 808094 1
## 30264 808095 1
## 30265 808096 1
## 30266 808097 1
## 30267 808098 1
## 30268 808099 1
## 30269 808100 1
## 30270 808101 1
## 30271 808102 1
## 30272 808103 1
## 30273 808104 1
## 30274 808105 1
## 30275 808106 1
## 30276 808107 1
## 30277 808108 1
## 30278 808109 1
## 30279 808110 1
## 30280 808111 1
## 30281 808112 1
## 30282 808113 1
## 30283 808114 1
## 30284 808115 1
## 30285 808116 1
## 30286 808117 1
## 30287 808118 1
## 30288 808119 1
## 30289 808120 1
## 30290 808121 1
## 30291 808122 1
## 30292 808123 1
## 30293 808124 1
## 30294 808125 1
## 30295 808126 1
## 30296 808127 1
## 30297 808128 1
## 30298 808129 1
## 30299 808130 1
## 30300 808131 1
## 30301 808132 1
## 30302 808133 1
## 30303 808134 1
## 30304 808135 1
## 30305 808136 1
## 30306 808137 1
## 30307 808138 1
## 30308 808139 1
## 30309 808140 1
## 30310 808141 1
## 30311 808142 1
## 30312 808143 1
## 30313 808144 1
## 30314 808145 1
## 30315 808146 1
## 30316 808147 1
## 30317 808148 1
## 30318 808149 1
## 30319 808150 1
## 30320 808151 1
## 30321 808152 1
## 30322 808153 1
## 30323 808154 1
## 30324 808155 1
## 30325 808156 1
## 30326 808157 1
## 30327 808158 1
## 30328 808159 1
## 30329 808160 1
## 30330 808161 1
## 30331 808162 1
## 30332 808163 1
## 30333 808164 1
## 30334 808165 1
## 30335 808166 1
## 30336 808167 1
## 30337 808168 1
## 30338 808169 1
## 30339 808170 1
## 30340 808171 1
## 30341 808172 1
## 30342 808173 1
## 30343 808174 1
## 30344 808175 1
## 30345 808176 1
## 30346 808177 1
## 30347 808178 1
## 30348 808179 1
## 30349 808180 1
## 30350 808181 1
## 30351 808182 1
## 30352 808183 1
## 30353 808184 1
## 30354 808185 1
## 30355 808186 1
## 30356 808187 1
## 30357 808188 1
## 30358 808189 1
## 30359 808190 1
## 30360 808191 1
## 30361 808192 1
## 30362 808193 1
## 30363 808194 1
## 30364 808195 1
## 30365 808196 1
## 30366 808198 1
## 30367 808199 1
## 30368 808200 1
## 30369 808201 1
## 30370 808202 1
## 30371 808203 1
## 30372 808204 1
## 30373 808205 1
## 30374 808206 1
## 30375 808207 1
## 30376 808208 1
## 30377 808209 1
## 30378 808210 1
## 30379 808211 1
## 30380 808212 1
## 30381 808213 1
## 30382 808214 1
## 30383 808215 1
## 30384 808216 1
## 30385 808217 1
## 30386 808218 1
## 30387 808219 1
## 30388 808220 1
## 30389 808221 1
## 30390 808222 1
## 30391 808223 1
## 30392 808224 1
## 30393 808225 1
## 30394 808226 1
## 30395 808227 1
## 30396 808228 1
## 30397 808229 1
## 30398 808230 1
## 30399 808231 1
## 30400 808232 1
## 30401 808233 1
## 30402 808234 1
## 30403 808235 1
## 30404 808236 1
## 30405 808237 1
## 30406 808238 1
## 30407 808239 1
## 30408 808240 1
## 30409 808241 1
## 30410 808242 1
## 30411 808243 1
## 30412 808244 1
## 30413 808245 1
## 30414 808246 1
## 30415 808247 1
## 30416 808248 1
## 30417 808249 1
## 30418 808250 1
## 30419 808251 1
## 30420 808252 1
## 30421 808253 1
## 30422 808254 1
## 30423 808255 1
## 30424 808256 1
## 30425 808257 1
## 30426 808258 1
## 30427 808259 1
## 30428 808260 1
## 30429 808261 1
## 30430 808262 1
## 30431 808263 1
## 30432 808264 1
## 30433 808265 1
## 30434 808266 1
## 30435 808267 1
## 30436 808268 1
## 30437 808269 1
## 30438 808270 1
## 30439 808271 1
## 30440 808272 1
## 30441 808273 1
## 30442 808274 1
## 30443 808275 1
## 30444 808276 1
## 30445 808277 1
## 30446 808278 1
## 30447 808279 1
## 30448 808280 1
## 30449 808281 1
## 30450 808282 1
## 30451 808283 1
## 30452 808284 1
## 30453 808285 1
## 30454 808286 1
## 30455 808287 1
## 30456 808288 1
## 30457 808289 1
## 30458 808290 1
## 30459 808291 1
## 30460 808292 1
## 30461 808293 1
## 30462 808294 1
## 30463 808295 1
## 30464 808296 1
## 30465 808297 1
## 30466 808298 1
## 30467 808299 1
## 30468 808300 1
## 30469 808301 1
## 30470 808302 1
## 30471 808303 1
## 30472 808304 1
## 30473 808305 1
## 30474 808307 1
## 30475 808308 1
## 30476 808309 1
## 30477 808310 1
## 30478 808311 1
## 30479 808312 1
## 30480 808313 1
## 30481 808314 1
## 30482 808315 1
## 30483 808316 1
## 30484 808317 1
## 30485 808318 1
## 30486 808319 1
## 30487 808320 1
## 30488 808321 1
## 30489 808322 1
## 30490 808323 1
## 30491 808324 1
## 30492 808325 1
## 30493 808326 1
## 30494 808327 1
## 30495 808328 1
## 30496 808329 1
## 30497 808330 1
## 30498 808331 1
## 30499 808332 1
## 30500 808333 1
## 30501 808334 1
## 30502 808335 1
## 30503 808336 1
## 30504 808337 1
## 30505 808338 1
## 30506 808339 1
## 30507 808340 1
## 30508 808341 1
## 30509 808342 1
## 30510 808343 1
## 30511 808344 1
## 30512 808345 1
## 30513 808346 1
## 30514 808347 1
## 30515 808348 1
## 30516 808349 1
## 30517 808350 1
## 30518 808351 1
## 30519 808352 1
## 30520 808353 1
## 30521 808354 1
## 30522 808355 1
## 30523 808356 1
## 30524 808357 1
## 30525 808358 1
## 30526 808359 1
## 30527 808360 1
## 30528 808361 1
## 30529 808362 1
## 30530 808363 1
## 30531 808364 1
## 30532 808365 1
## 30533 808366 1
## 30534 808367 1
## 30535 808368 1
## 30536 808369 1
## 30537 808370 1
## 30538 808371 1
## 30539 808372 1
## 30540 808373 1
## 30541 808374 1
## 30542 808375 1
## 30543 808376 1
## 30544 808377 1
## 30545 808378 1
## 30546 808379 1
## 30547 808380 1
## 30548 808381 1
## 30549 808382 1
## 30550 808383 1
## 30551 808384 1
## 30552 808385 1
## 30553 808386 1
## 30554 808387 1
## 30555 808388 1
## 30556 808389 1
## 30557 808390 1
## 30558 808391 1
## 30559 808392 1
## 30560 808393 1
## 30561 808394 1
## 30562 808395 1
## 30563 808396 1
## 30564 808397 1
## 30565 808398 1
## 30566 808399 1
## 30567 808400 1
## 30568 808401 1
## 30569 808402 1
## 30570 808403 1
## 30571 808404 1
## 30572 808405 1
## 30573 808406 1
## 30574 808407 1
## 30575 808408 1
## 30576 808409 1
## 30577 808410 1
## 30578 808411 1
## 30579 808412 1
## 30580 808413 1
## 30581 808414 1
## 30582 808415 1
## 30583 808416 1
## 30584 808417 1
## 30585 808418 1
## 30586 808419 1
## 30587 808420 1
## 30588 808421 1
## 30589 808422 1
## 30590 808423 1
## 30591 808424 1
## 30592 808425 1
## 30593 808426 1
## 30594 808427 1
## 30595 808428 1
## 30596 808429 1
## 30597 808430 1
## 30598 808431 1
## 30599 808432 1
## 30600 808433 1
## 30601 808434 1
## 30602 808435 1
## 30603 808436 1
## 30604 808437 1
## 30605 808438 1
## 30606 808439 1
## 30607 808440 1
## 30608 808441 1
## 30609 808442 1
## 30610 808443 1
## 30611 808444 1
## 30612 808445 1
## 30613 808446 1
## 30614 808447 1
## 30615 808448 1
## 30616 808449 1
## 30617 808450 1
## 30618 808451 1
## 30619 808452 1
## 30620 808453 1
## 30621 808454 1
## 30622 808455 1
## 30623 808456 1
## 30624 808457 1
## 30625 808458 1
## 30626 808459 1
## 30627 808460 1
## 30628 808461 1
## 30629 808462 1
## 30630 808463 1
## 30631 808464 1
## 30632 808465 1
## 30633 808466 1
## 30634 808467 1
## 30635 808468 1
## 30636 808469 1
## 30637 808470 1
## 30638 808471 1
## 30639 808472 1
## 30640 808473 1
## 30641 808474 1
## 30642 808475 1
## 30643 808476 1
## 30644 808477 1
## 30645 808478 1
## 30646 808479 1
## 30647 808480 1
## 30648 808481 1
## 30649 808482 1
## 30650 808483 1
## 30651 808484 1
## 30652 808485 1
## 30653 808486 1
## 30654 808487 1
## 30655 808488 1
## 30656 808489 1
## 30657 808490 1
## 30658 808491 1
## 30659 808492 1
## 30660 808493 1
## 30661 808494 1
## 30662 808495 1
## 30663 808496 1
## 30664 808497 1
## 30665 808498 1
## 30666 808499 1
## 30667 808500 1
## 30668 808501 1
## 30669 808502 1
## 30670 808503 1
## 30671 808504 1
## 30672 808505 1
## 30673 808506 1
## 30674 808507 1
## 30675 808508 1
## 30676 808509 1
## 30677 808510 1
## 30678 808511 1
## 30679 808512 1
## 30680 808513 1
## 30681 808514 1
## 30682 808515 1
## 30683 808516 1
## 30684 808517 1
## 30685 808518 1
## 30686 808519 1
## 30687 808520 1
## 30688 808521 1
## 30689 808522 1
## 30690 808523 1
## 30691 808524 1
## 30692 808525 1
## 30693 808526 1
## 30694 808527 1
## 30695 808528 1
## 30696 808529 1
## 30697 808530 1
## 30698 808531 1
## 30699 808532 1
## 30700 808533 1
## 30701 808534 1
## 30702 808535 1
## 30703 808536 1
## 30704 808537 1
## 30705 808538 1
## 30706 808540 1
## 30707 808541 1
## 30708 808542 1
## 30709 808543 1
## 30710 808544 1
## 30711 808545 1
## 30712 808546 1
## 30713 808547 1
## 30714 808548 1
## 30715 808549 1
## 30716 808550 1
## 30717 808551 1
## 30718 808552 1
## 30719 808553 1
## 30720 808554 1
## 30721 808555 1
## 30722 808556 1
## 30723 808557 1
## 30724 808558 1
## 30725 808559 1
## 30726 808560 1
## 30727 808561 1
## 30728 808562 1
## 30729 808563 1
## 30730 808564 1
## 30731 808565 1
## 30732 808566 1
## 30733 808567 1
## 30734 808568 1
## 30735 808569 1
## 30736 808570 1
## 30737 808571 1
## 30738 808572 1
## 30739 808573 1
## 30740 808574 1
## 30741 808575 1
## 30742 808576 1
## 30743 808577 1
## 30744 808578 1
## 30745 808579 1
## 30746 808580 1
## 30747 808581 1
## 30748 808582 1
## 30749 808583 1
## 30750 808584 1
## 30751 808585 1
## 30752 808586 1
## 30753 808587 1
## 30754 808588 1
## 30755 808589 1
## 30756 808590 1
## 30757 808591 1
## 30758 808592 1
## 30759 808593 1
## 30760 808594 1
## 30761 808595 1
## 30762 808596 1
## 30763 808597 1
## 30764 808598 1
## 30765 808599 1
## 30766 808600 1
## 30767 808601 1
## 30768 808602 1
## 30769 808603 1
## 30770 808604 1
## 30771 808605 1
## 30772 808606 1
## 30773 808607 1
## 30774 808608 1
## 30775 808609 1
## 30776 808610 1
## 30777 808611 1
## 30778 808612 1
## 30779 808613 1
## 30780 808614 1
## 30781 808615 1
## 30782 808616 1
## 30783 808617 1
## 30784 808618 1
## 30785 808619 1
## 30786 808620 1
## 30787 808621 1
## 30788 808622 1
## 30789 808623 1
## 30790 808624 1
## 30791 808625 1
## 30792 808626 1
## 30793 808627 1
## 30794 808628 1
## 30795 808629 1
## 30796 808630 1
## 30797 808631 1
## 30798 808632 1
## 30799 808633 1
## 30800 808634 1
## 30801 808635 1
## 30802 808636 1
## 30803 808637 1
## 30804 808638 1
## 30805 808639 1
## 30806 808640 1
## 30807 808641 1
## 30808 808642 1
## 30809 808643 1
## 30810 808644 1
## 30811 808645 1
## 30812 808646 1
## 30813 808647 1
## 30814 808648 1
## 30815 808649 1
## 30816 808650 1
## 30817 808651 1
## 30818 808652 1
## 30819 808653 1
## 30820 808654 1
## 30821 808655 1
## 30822 808656 1
## 30823 808657 1
## 30824 808658 1
## 30825 808659 1
## 30826 808660 1
## 30827 808661 1
## 30828 808662 1
## 30829 808663 1
## 30830 808664 1
## 30831 808665 1
## 30832 808666 1
## 30833 808667 1
## 30834 808668 1
## 30835 808669 1
## 30836 808670 1
## 30837 808671 1
## 30838 808672 1
## 30839 808673 1
## 30840 808674 1
## 30841 808675 1
## 30842 808676 1
## 30843 808677 1
## 30844 808678 1
## 30845 808679 1
## 30846 808680 1
## 30847 808681 1
## 30848 808682 1
## 30849 808683 1
## 30850 808684 1
## 30851 808685 1
## 30852 808686 1
## 30853 808687 1
## 30854 808688 1
## 30855 808689 1
## 30856 808690 1
## 30857 808691 1
## 30858 808692 1
## 30859 808693 1
## 30860 808694 1
## 30861 808695 1
## 30862 808696 1
## 30863 808697 1
## 30864 808698 1
## 30865 808699 1
## 30866 808700 1
## 30867 808701 1
## 30868 808702 1
## 30869 808703 1
## 30870 808704 1
## 30871 808705 1
## 30872 808706 1
## 30873 808707 1
## 30874 808708 1
## 30875 808710 1
## 30876 808711 1
## 30877 808712 1
## 30878 808713 1
## 30879 808714 1
## 30880 808715 1
## 30881 808716 1
## 30882 808717 1
## 30883 808718 1
## 30884 808719 1
## 30885 808720 1
## 30886 808721 1
## 30887 808722 1
## 30888 808723 1
## 30889 808724 1
## 30890 808725 1
## 30891 808726 1
## 30892 808727 1
## 30893 808728 1
## 30894 808729 1
## 30895 808730 1
## 30896 808731 1
## 30897 808732 1
## 30898 808733 1
## 30899 808734 1
## 30900 808735 1
## 30901 808736 1
## 30902 808737 1
## 30903 808738 1
## 30904 808739 1
## 30905 808740 1
## 30906 808741 1
## 30907 808742 1
## 30908 808743 1
## 30909 808744 1
## 30910 808745 1
## 30911 808746 1
## 30912 808747 1
## 30913 808748 1
## 30914 808749 1
## 30915 808750 1
## 30916 808751 1
## 30917 808752 1
## 30918 808753 1
## 30919 808754 1
## 30920 808755 1
## 30921 808756 1
## 30922 808757 1
## 30923 808758 1
## 30924 808759 1
## 30925 808760 1
## 30926 808761 1
## 30927 808762 1
## 30928 808763 1
## 30929 808764 1
## 30930 808765 1
## 30931 808766 1
## 30932 808767 1
## 30933 808768 1
## 30934 808769 1
## 30935 808770 1
## 30936 808771 1
## 30937 808772 1
## 30938 808773 1
## 30939 808774 1
## 30940 808775 1
## 30941 808776 1
## 30942 808777 1
## 30943 808778 1
## 30944 808779 1
## 30945 808780 1
## 30946 808781 1
## 30947 808782 1
## 30948 808783 1
## 30949 808784 1
## 30950 808785 1
## 30951 808786 1
## 30952 808787 1
## 30953 808788 1
## 30954 808789 1
## 30955 808790 1
## 30956 808791 1
## 30957 808792 1
## 30958 808793 1
## 30959 808794 1
## 30960 808795 1
## 30961 808796 1
## 30962 808797 1
## 30963 808798 1
## 30964 808799 1
## 30965 808800 1
## 30966 808801 1
## 30967 808802 1
## 30968 808803 1
## 30969 808804 1
## 30970 808805 1
## 30971 808806 1
## 30972 808807 1
## 30973 808808 1
## 30974 808809 1
## 30975 808810 1
## 30976 808811 1
## 30977 808812 1
## 30978 808813 1
## 30979 808814 1
## 30980 808815 1
## 30981 808816 1
## 30982 808817 1
## 30983 808818 1
## 30984 808819 1
## 30985 808820 1
## 30986 808821 1
## 30987 808822 1
## 30988 808823 1
## 30989 808824 1
## 30990 808825 1
## 30991 808826 1
## 30992 808827 1
## 30993 808828 1
## 30994 808829 1
## 30995 808830 1
## 30996 808831 1
## 30997 808832 1
## 30998 808833 1
## 30999 808834 1
## 31000 808835 1
## 31001 808836 1
## 31002 808837 1
## 31003 808838 1
## 31004 808839 1
## 31005 808840 1
## 31006 808841 1
## 31007 808842 1
## 31008 808843 1
## 31009 808844 1
## 31010 808845 1
## 31011 808846 1
## 31012 808847 1
## 31013 808848 1
## 31014 808849 1
## 31015 808850 1
## 31016 808851 1
## 31017 808852 1
## 31018 808853 1
## 31019 808854 1
## 31020 808855 1
## 31021 808856 1
## 31022 808857 1
## 31023 808858 1
## 31024 808859 1
## 31025 808860 1
## 31026 808861 1
## 31027 808862 1
## 31028 808863 1
## 31029 808864 1
## 31030 808865 1
## 31031 808866 1
## 31032 808867 1
## 31033 808868 1
## 31034 808869 1
## 31035 808870 1
## 31036 808871 1
## 31037 808872 1
## 31038 808873 1
## 31039 808874 1
## 31040 808875 1
## 31041 808876 1
## 31042 808878 1
## 31043 808879 1
## 31044 808880 1
## 31045 808881 1
## 31046 808882 1
## 31047 808883 1
## 31048 808884 1
## 31049 808885 1
## 31050 808886 1
## 31051 808887 1
## 31052 808888 1
## 31053 808889 1
## 31054 808890 1
## 31055 808891 1
## 31056 808892 1
## 31057 808893 1
## 31058 808894 1
## 31059 808895 1
## 31060 808896 1
## 31061 808897 1
## 31062 808898 1
## 31063 808899 1
## 31064 808900 1
## 31065 808901 1
## 31066 808902 1
## 31067 808903 1
## 31068 808904 1
## 31069 808905 1
## 31070 808906 1
## 31071 808907 1
## 31072 808908 1
## 31073 808909 1
## 31074 808910 1
## 31075 808911 1
## 31076 808912 1
## 31077 808913 1
## 31078 808914 1
## 31079 808915 1
## 31080 808916 1
## 31081 808917 1
## 31082 808918 1
## 31083 808919 1
## 31084 808920 1
## 31085 808921 1
## 31086 808922 1
## 31087 808923 1
## 31088 808924 1
## 31089 808925 1
## 31090 808926 1
## 31091 808927 1
## 31092 808928 1
## 31093 808929 1
## 31094 808930 1
## 31095 808931 1
## 31096 808932 1
## 31097 808933 1
## 31098 808934 1
## 31099 808935 1
## 31100 808936 1
## 31101 808937 1
## 31102 808938 1
## 31103 808939 1
## 31104 808940 1
## 31105 808941 1
## 31106 808942 1
## 31107 808943 1
## 31108 808944 1
## 31109 808945 1
## 31110 808946 1
## 31111 808947 1
## 31112 808948 1
## 31113 808949 1
## 31114 808950 1
## 31115 808951 1
## 31116 808952 1
## 31117 808953 1
## 31118 808954 1
## 31119 808955 1
## 31120 808956 1
## 31121 808957 1
## 31122 808958 1
## 31123 808959 1
## 31124 808960 1
## 31125 808961 1
## 31126 808962 1
## 31127 808963 1
## 31128 808964 1
## 31129 808966 1
## 31130 808967 1
## 31131 808968 1
## 31132 808969 1
## 31133 808970 1
## 31134 808971 1
## 31135 808972 1
## 31136 808973 1
## 31137 808974 1
## 31138 808975 1
## 31139 808976 1
## 31140 808977 1
## 31141 808978 1
## 31142 808979 1
## 31143 808980 1
## 31144 808981 1
## 31145 808982 1
## 31146 808983 1
## 31147 808984 1
## 31148 808985 1
## 31149 808986 1
## 31150 808987 1
## 31151 808988 1
## 31152 808989 1
## 31153 808990 1
## 31154 808991 1
## 31155 808992 1
## 31156 808993 1
## 31157 808994 1
## 31158 808995 1
## 31159 808996 1
## 31160 808997 1
## 31161 808998 1
## 31162 808999 1
## 31163 809000 1
## 31164 809001 1
## 31165 809002 1
## 31166 809003 1
## 31167 809004 1
## 31168 809005 1
## 31169 809006 1
## 31170 809007 1
## 31171 809008 1
## 31172 809009 1
## 31173 809010 1
## 31174 809011 1
## 31175 809012 1
## 31176 809013 1
## 31177 809014 1
## 31178 809015 1
## 31179 809016 1
## 31180 809017 1
## 31181 809018 1
## 31182 809019 1
## 31183 809020 1
## 31184 809021 1
## 31185 809022 1
## 31186 809023 1
## 31187 809024 1
## 31188 809025 1
## 31189 809026 1
## 31190 809027 1
## 31191 809028 1
## 31192 809029 1
## 31193 809030 1
## 31194 809031 1
## 31195 809032 1
## 31196 809033 1
## 31197 809034 1
## 31198 809035 1
## 31199 809036 1
## 31200 809037 1
## 31201 809038 1
## 31202 809039 1
## 31203 809040 1
## 31204 809041 1
## 31205 809042 1
## 31206 809043 1
## 31207 809044 1
## 31208 809045 1
## 31209 809046 1
## 31210 809047 1
## 31211 809048 1
## 31212 809049 1
## 31213 809050 1
## 31214 809051 1
## 31215 809052 1
## 31216 809053 1
## 31217 809054 1
## 31218 809055 1
## 31219 809056 1
## 31220 809057 1
## 31221 809058 1
## 31222 809059 1
## 31223 809060 1
## 31224 809061 1
## 31225 809062 1
## 31226 809063 1
## 31227 809064 1
## 31228 809065 1
## 31229 809066 1
## 31230 809067 1
## 31231 809068 1
## 31232 809069 1
## 31233 809070 1
## 31234 809071 1
## 31235 809072 1
## 31236 809073 1
## 31237 809074 1
## 31238 809075 1
## 31239 809076 1
## 31240 809077 1
## 31241 809078 1
## 31242 809079 1
## 31243 809080 1
## 31244 809081 1
## 31245 809082 1
## 31246 809083 1
## 31247 809084 1
## 31248 809085 1
## 31249 809086 1
## 31250 809087 1
## 31251 809088 1
## 31252 809089 1
## 31253 809090 1
## 31254 809091 1
## 31255 809092 1
## 31256 809093 1
## 31257 809094 1
## 31258 809095 1
## 31259 809096 1
## 31260 809097 1
## 31261 809099 1
## 31262 809100 1
## 31263 809101 1
## 31264 809102 1
## 31265 809103 1
## 31266 809104 1
## 31267 809105 1
## 31268 809106 1
## 31269 809107 1
## 31270 809108 1
## 31271 809109 1
## 31272 809110 1
## 31273 809111 1
## 31274 809112 1
## 31275 809113 1
## 31276 809114 1
## 31277 809115 1
## 31278 809116 1
## 31279 809117 1
## 31280 809118 1
## 31281 809119 1
## 31282 809120 1
## 31283 809121 1
## 31284 809122 1
## 31285 809123 1
## 31286 809124 1
## 31287 809125 1
## 31288 809126 1
## 31289 809127 1
## 31290 809128 1
## 31291 809129 1
## 31292 809130 1
## 31293 809131 1
## 31294 809132 1
## 31295 809133 1
## 31296 809134 1
## 31297 809135 1
## 31298 809136 1
## 31299 809137 1
## 31300 809138 1
## 31301 809139 1
## 31302 809140 1
## 31303 809141 1
## 31304 809142 1
## 31305 809143 1
## 31306 809144 1
## 31307 809145 1
## 31308 809146 1
## 31309 809147 1
## 31310 809148 1
## 31311 809149 1
## 31312 809150 1
## 31313 809151 1
## 31314 809152 1
## 31315 809153 1
## 31316 809154 1
## 31317 809155 1
## 31318 809156 1
## 31319 809157 1
## 31320 809158 1
## 31321 809159 1
## 31322 809160 1
## 31323 809161 1
## 31324 809162 1
## 31325 809163 1
## 31326 809164 1
## 31327 809165 1
## 31328 809166 1
## 31329 809167 1
## 31330 809168 1
## 31331 809169 1
## 31332 809170 1
## 31333 809171 1
## 31334 809172 1
## 31335 809173 1
## 31336 809174 1
## 31337 809175 1
## 31338 809176 1
## 31339 809177 1
## 31340 809178 1
## 31341 809179 1
## 31342 809180 1
## 31343 809181 1
## 31344 809182 1
## 31345 809183 1
## 31346 809184 1
## 31347 809185 1
## 31348 809186 1
## 31349 809187 1
## 31350 809188 1
## 31351 809189 1
## 31352 809190 1
## 31353 809191 1
## 31354 809192 1
## 31355 809193 1
## 31356 809194 1
## 31357 809195 1
## 31358 809196 1
## 31359 809197 1
## 31360 809198 1
## 31361 809199 1
## 31362 809200 1
## 31363 809201 1
## 31364 809202 1
## 31365 809203 1
## 31366 809204 1
## 31367 809205 1
## 31368 809206 1
## 31369 809207 1
## 31370 809208 1
## 31371 809209 1
## 31372 809210 1
## 31373 809211 1
## 31374 809212 1
## 31375 809213 1
## 31376 809214 1
## 31377 809215 1
## 31378 809216 1
## 31379 809217 1
## 31380 809218 1
## 31381 809219 1
## 31382 809220 1
## 31383 809221 1
## 31384 809222 1
## 31385 809224 1
## 31386 809225 1
## 31387 809226 1
## 31388 809227 1
## 31389 809228 1
## 31390 809229 1
## 31391 809230 1
## 31392 809231 1
## 31393 809232 1
## 31394 809233 1
## 31395 809234 1
## 31396 809235 1
## 31397 809236 1
## 31398 809237 1
## 31399 809238 1
## 31400 809239 1
## 31401 809240 1
## 31402 809241 1
## 31403 809242 1
## 31404 809243 1
## 31405 809244 1
## 31406 809245 1
## 31407 809246 1
## 31408 809247 1
## 31409 809248 1
## 31410 809249 1
## 31411 809250 1
## 31412 809251 1
## 31413 809252 1
## 31414 809253 1
## 31415 809254 1
## 31416 809255 1
## 31417 809256 1
## 31418 809257 1
## 31419 809258 1
## 31420 809259 1
## 31421 809260 1
## 31422 809261 1
## 31423 809262 1
## 31424 809263 1
## 31425 809264 1
## 31426 809265 1
## 31427 809266 1
## 31428 809267 1
## 31429 809268 1
## 31430 809269 1
## 31431 809270 1
## 31432 809271 1
## 31433 809272 1
## 31434 809273 1
## 31435 809274 1
## 31436 809275 1
## 31437 809276 1
## 31438 809277 1
## 31439 809278 1
## 31440 809279 1
## 31441 809280 1
## 31442 809281 1
## 31443 809282 1
## 31444 809283 1
## 31445 809284 1
## 31446 809285 1
## 31447 809286 1
## 31448 809287 1
## 31449 809288 1
## 31450 809289 1
## 31451 809290 1
## 31452 809291 1
## 31453 809292 1
## 31454 809293 1
## 31455 809294 1
## 31456 809295 1
## 31457 809296 1
## 31458 809297 1
## 31459 809298 1
## 31460 809299 1
## 31461 809300 1
## 31462 809301 1
## 31463 809302 1
## 31464 809303 1
## 31465 809304 1
## 31466 809305 1
## 31467 809306 1
## 31468 809307 1
## 31469 809308 1
## 31470 809309 1
## 31471 809310 1
## 31472 809311 1
## 31473 809312 1
## 31474 809313 1
## 31475 809314 1
## 31476 809315 1
## 31477 809316 1
## 31478 809317 1
## 31479 809318 1
## 31480 809319 1
## 31481 809320 1
## 31482 809321 1
## 31483 809322 1
## 31484 809323 1
## 31485 809324 1
## 31486 809325 1
## 31487 809326 1
## 31488 809327 1
## 31489 809328 1
## 31490 809329 1
## 31491 809330 1
## 31492 809331 1
## 31493 809332 1
## 31494 809333 1
## 31495 809334 1
## 31496 809335 1
## 31497 809336 1
## 31498 809337 1
## 31499 809338 1
## 31500 809339 1
## 31501 809340 1
## 31502 809341 1
## 31503 809342 1
## 31504 809343 1
## 31505 809344 1
## 31506 809345 1
## 31507 809346 1
## 31508 809347 1
## 31509 809348 1
## 31510 809349 1
## 31511 809350 1
## 31512 809351 1
## 31513 809352 1
## 31514 809353 1
## 31515 809354 1
## 31516 809355 1
## 31517 809356 1
## 31518 809357 1
## 31519 809358 1
## 31520 809359 1
## 31521 809360 1
## 31522 809361 1
## 31523 809362 1
## 31524 809363 1
## 31525 809364 1
## 31526 809365 1
## 31527 809366 1
## 31528 809367 1
## 31529 809368 1
## 31530 809369 1
## 31531 809370 1
## 31532 809371 1
## 31533 809372 1
## 31534 809373 1
## 31535 809374 1
## 31536 809375 1
## 31537 809376 1
## 31538 809377 1
## 31539 809378 1
## 31540 809379 1
## 31541 809380 1
## 31542 809381 1
## 31543 809382 1
## 31544 809383 1
## 31545 809384 1
## 31546 809385 1
## 31547 809386 1
## 31548 809387 1
## 31549 809388 1
## 31550 809389 1
## 31551 809390 1
## 31552 809391 1
## 31553 809392 1
## 31554 809393 1
## 31555 809394 1
## 31556 809395 1
## 31557 809396 1
## 31558 809397 1
## 31559 809398 1
## 31560 809399 1
## 31561 809400 1
## 31562 809401 1
## 31563 809402 1
## 31564 809403 1
## 31565 809404 1
## 31566 809405 1
## 31567 809406 1
## 31568 809407 1
## 31569 809408 1
## 31570 809409 1
## 31571 809410 1
## 31572 809411 1
## 31573 809412 1
## 31574 809413 1
## 31575 809414 1
## 31576 809415 1
## 31577 809416 1
## 31578 809417 1
## 31579 809418 1
## 31580 809419 1
## 31581 809420 1
## 31582 809421 1
## 31583 809422 1
## 31584 809423 1
## 31585 809424 1
## 31586 809425 1
## 31587 809426 1
## 31588 809427 1
## 31589 809428 1
## 31590 809429 1
## 31591 809430 1
## 31592 809431 1
## 31593 809432 1
## 31594 809433 1
## 31595 809434 1
## 31596 809435 1
## 31597 809436 1
## 31598 809437 1
## 31599 809438 1
## 31600 809439 1
## 31601 809440 1
## 31602 809441 1
## 31603 809442 1
## 31604 809443 1
## 31605 809444 1
## 31606 809445 1
## 31607 809446 1
## 31608 809447 1
## 31609 809448 1
## 31610 809449 1
## 31611 809450 1
## 31612 809451 1
## 31613 809452 1
## 31614 809453 1
## 31615 809454 1
## 31616 809455 1
## 31617 809456 1
## 31618 809457 1
## 31619 809458 1
## 31620 809459 1
## 31621 809460 1
## 31622 809461 1
## 31623 809462 1
## 31624 809463 1
## 31625 809464 1
## 31626 809465 1
## 31627 809466 1
## 31628 809467 1
## 31629 809468 1
## 31630 809469 1
## 31631 809470 1
## 31632 809471 1
## 31633 809472 1
## 31634 809473 1
## 31635 809474 1
## 31636 809475 1
## 31637 809476 1
## 31638 809477 1
## 31639 809478 1
## 31640 809479 1
## 31641 809480 1
## 31642 809481 1
## 31643 809482 1
## 31644 809483 1
## 31645 809484 1
## 31646 809485 1
## 31647 809486 1
## 31648 809487 1
## 31649 809488 1
## 31650 809489 1
## 31651 809490 1
## 31652 809491 1
## 31653 809492 1
## 31654 809493 1
## 31655 809494 1
## 31656 809495 1
## 31657 809496 1
## 31658 809497 1
## 31659 809498 1
## 31660 809499 1
## 31661 809500 1
## 31662 809501 1
## 31663 809502 1
## 31664 809503 1
## 31665 809504 1
## 31666 809505 1
## 31667 809506 1
## 31668 809507 1
## 31669 809508 1
## 31670 809509 1
## 31671 809510 1
## 31672 809511 1
## 31673 809512 1
## 31674 809513 1
## 31675 809514 1
## 31676 809515 1
## 31677 809516 1
## 31678 809517 1
## 31679 809518 1
## 31680 809519 1
## 31681 809520 1
## 31682 809521 1
## 31683 809522 1
## 31684 809523 1
## 31685 809524 1
## 31686 809525 1
## 31687 809526 1
## 31688 809527 1
## 31689 809528 1
## 31690 809529 1
## 31691 809530 1
## 31692 809531 1
## 31693 809532 1
## 31694 809533 1
## 31695 809534 1
## 31696 809535 1
## 31697 809536 1
## 31698 809537 1
## 31699 809538 1
## 31700 809539 1
## 31701 809540 1
## 31702 809541 1
## 31703 809542 1
## 31704 809543 1
## 31705 809544 1
## 31706 809545 1
## 31707 809546 1
## 31708 809547 1
## 31709 809548 1
## 31710 809549 1
## 31711 809550 1
## 31712 809551 1
## 31713 809552 1
## 31714 809553 1
## 31715 809554 1
## 31716 809555 1
## 31717 809556 1
## 31718 809557 1
## 31719 809558 1
## 31720 809559 1
## 31721 809560 1
## 31722 809561 1
## 31723 809562 1
## 31724 809563 1
## 31725 809564 1
## 31726 809565 1
## 31727 809566 1
## 31728 809567 1
## 31729 809568 1
## 31730 809569 1
## 31731 809570 1
## 31732 809571 1
## 31733 809572 1
## 31734 809573 1
## 31735 809574 1
## 31736 809575 1
## 31737 809576 1
## 31738 809577 1
## 31739 809578 1
## 31740 809579 1
## 31741 809580 1
## 31742 809581 1
## 31743 809582 1
## 31744 809583 1
## 31745 809584 1
## 31746 809585 1
## 31747 809586 1
## 31748 809587 1
## 31749 809588 1
## 31750 809589 1
## 31751 809590 1
## 31752 809591 1
## 31753 809592 1
## 31754 809593 1
## 31755 809594 1
## 31756 809595 1
## 31757 809596 1
## 31758 809597 1
## 31759 809598 1
## 31760 809599 1
## 31761 809600 1
## 31762 809601 1
## 31763 809602 1
## 31764 809603 1
## 31765 809604 1
## 31766 809605 1
## 31767 809606 1
## 31768 809607 1
## 31769 809608 1
## 31770 809609 1
## 31771 809610 1
## 31772 809611 1
## 31773 809612 1
## 31774 809614 1
## 31775 809615 1
## 31776 809616 1
## 31777 809617 1
## 31778 809618 1
## 31779 809619 1
## 31780 809620 1
## 31781 809621 1
## 31782 809622 1
## 31783 809623 1
## 31784 809624 1
## 31785 809625 1
## 31786 809626 1
## 31787 809627 1
## 31788 809628 1
## 31789 809629 1
## 31790 809630 1
## 31791 809631 1
## 31792 809632 1
## 31793 809633 1
## 31794 809634 1
## 31795 809635 1
## 31796 809636 1
## 31797 809637 1
## 31798 809638 1
## 31799 809639 1
## 31800 809640 1
## 31801 809641 1
## 31802 809642 1
## 31803 809643 1
## 31804 809644 1
## 31805 809645 1
## 31806 809646 1
## 31807 809647 1
## 31808 809648 1
## 31809 809649 1
## 31810 809650 1
## 31811 809651 1
## 31812 809652 1
## 31813 809653 1
## 31814 809654 1
## 31815 809655 1
## 31816 809656 1
## 31817 809657 1
## 31818 809658 1
## 31819 809659 1
## 31820 809660 1
## 31821 809661 1
## 31822 809662 1
## 31823 809663 1
## 31824 809664 1
## 31825 809665 1
## 31826 809666 1
## 31827 809667 1
## 31828 809668 1
## 31829 809669 1
## 31830 809670 1
## 31831 809671 1
## 31832 809672 1
## 31833 809673 1
## 31834 809674 1
## 31835 809675 1
## 31836 809676 1
## 31837 809677 1
## 31838 809678 1
## 31839 809679 1
## 31840 809680 1
## 31841 809681 1
## 31842 809682 1
## 31843 809683 1
## 31844 809684 1
## 31845 809685 1
## 31846 809686 1
## 31847 809687 1
## 31848 809688 1
## 31849 809689 1
## 31850 809690 1
## 31851 809691 1
## 31852 809692 1
## 31853 809693 1
## 31854 809694 1
## 31855 809695 1
## 31856 809696 1
## 31857 809697 1
## 31858 809698 1
## 31859 809699 1
## 31860 809700 1
## 31861 809701 1
## 31862 809702 1
## 31863 809703 1
## 31864 809704 1
## 31865 809705 1
## 31866 809706 1
## 31867 809707 1
## 31868 809708 1
## 31869 809709 1
## 31870 809710 1
## 31871 809711 1
## 31872 809712 1
## 31873 809713 1
## 31874 809714 1
## 31875 809715 1
## 31876 809716 1
## 31877 809717 1
## 31878 809718 1
## 31879 809719 1
## 31880 809720 1
## 31881 809721 1
## 31882 809722 1
## 31883 809723 1
## 31884 809724 1
## 31885 809725 1
## 31886 809726 1
## 31887 809727 1
## 31888 809728 1
## 31889 809729 1
## 31890 809730 1
## 31891 809731 1
## 31892 809732 1
## 31893 809733 1
## 31894 809734 1
## 31895 809735 1
## 31896 809736 1
## 31897 809737 1
## 31898 809738 1
## 31899 809739 1
## 31900 809740 1
## 31901 809741 1
## 31902 809742 1
## 31903 809743 1
## 31904 809744 1
## 31905 809745 1
## 31906 809746 1
## 31907 809747 1
## 31908 809748 1
## 31909 809749 1
## 31910 809750 1
## 31911 809751 1
## 31912 809752 1
## 31913 809753 1
## 31914 809754 1
## 31915 809755 1
## 31916 809756 1
## 31917 809757 1
## 31918 809758 1
## 31919 809759 1
## 31920 809760 1
## 31921 809761 1
## 31922 809762 1
## 31923 809763 1
## 31924 809764 1
## 31925 809765 1
## 31926 809766 1
## 31927 809767 1
## 31928 809768 1
## 31929 809770 1
## 31930 809771 1
## 31931 809772 1
## 31932 809773 1
## 31933 809774 1
## 31934 809775 1
## 31935 809776 1
## 31936 809777 1
## 31937 809778 1
## 31938 809779 1
## 31939 809780 1
## 31940 809781 1
## 31941 809782 1
## 31942 809783 1
## 31943 809784 1
## 31944 809785 1
## 31945 809786 1
## 31946 809787 1
## 31947 809788 1
## 31948 809789 1
## 31949 809790 1
## 31950 809791 1
## 31951 809792 1
## 31952 809793 1
## 31953 809794 1
## 31954 809795 1
## 31955 809796 1
## 31956 809797 1
## 31957 809798 1
## 31958 809799 1
## 31959 809800 1
## 31960 809801 1
## 31961 809802 1
## 31962 809803 1
## 31963 809804 1
## 31964 809805 1
## 31965 809806 1
## 31966 809807 1
## 31967 809808 1
## 31968 809809 1
## 31969 809810 1
## 31970 809811 1
## 31971 809812 1
## 31972 809813 1
## 31973 809814 1
## 31974 809815 1
## 31975 809816 1
## 31976 809817 1
## 31977 809818 1
## 31978 809819 1
## 31979 809820 1
## 31980 809821 1
## 31981 809822 1
## 31982 809823 1
## 31983 809824 1
## 31984 809825 1
## 31985 809826 1
## 31986 809827 1
## 31987 809828 1
## 31988 809829 1
## 31989 809830 1
## 31990 809831 1
## 31991 809832 1
## 31992 809833 1
## 31993 809834 1
## 31994 809835 1
## 31995 809836 1
## 31996 809837 1
## 31997 809838 1
## 31998 809839 1
## 31999 809840 1
## 32000 809841 1
## 32001 809842 1
## 32002 809843 1
## 32003 809844 1
## 32004 809845 1
## 32005 809846 1
## 32006 809847 1
## 32007 809848 1
## 32008 809849 1
## 32009 809850 1
## 32010 809851 1
## 32011 809852 1
## 32012 809853 1
## 32013 809854 1
## 32014 809855 1
## 32015 809856 1
## 32016 809857 1
## 32017 809858 1
## 32018 809859 1
## 32019 809860 1
## 32020 809861 1
## 32021 809862 1
## 32022 809863 1
## 32023 809864 1
## 32024 809865 1
## 32025 809866 1
## 32026 809867 1
## 32027 809868 1
## 32028 809869 1
## 32029 809870 1
## 32030 809871 1
## 32031 809872 1
## 32032 809873 1
## 32033 809874 1
## 32034 809875 1
## 32035 809876 1
## 32036 809877 1
## 32037 809878 1
## 32038 809879 1
## 32039 809880 1
## 32040 809881 1
## 32041 809882 1
## 32042 809883 1
## 32043 809884 1
## 32044 809885 1
## 32045 809886 1
## 32046 809887 1
## 32047 809888 1
## 32048 809889 1
## 32049 809890 1
## 32050 809891 1
## 32051 809892 1
## 32052 809893 1
## 32053 809894 1
## 32054 809895 1
## 32055 809896 1
## 32056 809897 1
## 32057 809898 1
## 32058 809899 1
## 32059 809900 1
## 32060 809901 1
## 32061 809902 1
## 32062 809903 1
## 32063 809904 1
## 32064 809905 1
## 32065 809906 1
## 32066 809907 1
## 32067 809908 1
## 32068 809909 1
## 32069 809910 1
## 32070 809911 1
## 32071 809912 1
## 32072 809913 1
## 32073 809914 1
## 32074 809915 1
## 32075 809916 1
## 32076 809917 1
## 32077 809918 1
## 32078 809919 1
## 32079 809920 1
## 32080 809921 1
## 32081 809922 1
## 32082 809923 1
## 32083 809924 1
## 32084 809925 1
## 32085 809926 1
## 32086 809927 1
## 32087 809928 1
## 32088 809929 1
## 32089 809930 1
## 32090 809931 1
## 32091 809932 1
## 32092 809933 1
## 32093 809934 1
## 32094 809935 1
## 32095 809936 1
## 32096 809937 1
## 32097 809938 1
## 32098 809939 1
## 32099 809940 1
## 32100 809941 1
## 32101 809942 1
## 32102 809943 1
## 32103 809944 1
## 32104 809945 1
## 32105 809946 1
## 32106 809947 1
## 32107 809948 1
## 32108 809949 1
## 32109 809950 1
## 32110 809951 1
## 32111 809952 1
## 32112 809953 1
## 32113 809954 1
## 32114 809955 1
## 32115 809956 1
## 32116 809957 1
## 32117 809958 1
## 32118 809959 1
## 32119 809960 1
## 32120 809961 1
## 32121 809962 1
## 32122 809963 1
## 32123 809964 1
## 32124 809965 1
## 32125 809966 1
## 32126 809967 1
## 32127 809968 1
## 32128 809969 1
## 32129 809970 1
## 32130 809971 1
## 32131 809972 1
## 32132 809973 1
## 32133 809974 1
## 32134 809975 1
## 32135 809976 1
## 32136 809977 1
## 32137 809978 1
## 32138 809979 1
## 32139 809980 1
## 32140 809981 1
## 32141 809982 1
## 32142 809983 1
## 32143 809984 1
## 32144 809985 1
## 32145 809986 1
## 32146 809987 1
## 32147 809988 1
## 32148 809989 1
## 32149 809990 1
## 32150 809991 1
## 32151 809992 1
## 32152 809993 1
## 32153 809994 1
## 32154 809995 1
## 32155 809996 1
## 32156 809997 1
## 32157 809998 1
## 32158 809999 1
## 32159 810000 1
## 32160 810001 1
## 32161 810002 1
## 32162 810003 1
## 32163 810004 1
## 32164 810005 1
## 32165 810006 1
## 32166 810007 1
## 32167 810008 1
## 32168 810009 1
## 32169 810010 1
## 32170 810011 1
## 32171 810012 1
## 32172 810013 1
## 32173 810014 1
## 32174 810015 1
## 32175 810016 1
## 32176 810017 1
## 32177 810018 1
## 32178 810019 1
## 32179 810020 1
## 32180 810021 1
## 32181 810022 1
## 32182 810023 1
## 32183 810024 1
## 32184 810025 1
## 32185 810026 1
## 32186 810027 1
## 32187 810028 1
## 32188 810029 1
## 32189 810030 1
## 32190 810031 1
## 32191 810032 1
## 32192 810033 1
## 32193 810034 1
## 32194 810035 1
## 32195 810036 1
## 32196 810037 1
## 32197 810038 1
## 32198 810039 1
## 32199 810040 1
## 32200 810041 1
## 32201 810042 1
## 32202 810043 1
## 32203 810044 1
## 32204 810045 1
## 32205 810046 1
## 32206 810047 1
## 32207 810048 1
## 32208 810049 1
## 32209 810050 1
## 32210 810051 1
## 32211 810052 1
## 32212 810053 1
## 32213 810054 1
## 32214 810055 1
## 32215 810056 1
## 32216 810057 1
## 32217 810058 1
## 32218 810059 1
## 32219 810060 1
## 32220 810061 1
## 32221 810062 1
## 32222 810063 1
## 32223 810064 1
## 32224 810065 1
## 32225 810066 1
## 32226 810067 1
## 32227 810068 1
## 32228 810069 1
## 32229 810070 1
## 32230 810071 1
## 32231 810072 1
## 32232 810073 1
## 32233 810074 1
## 32234 810075 1
## 32235 810076 1
## 32236 810077 1
## 32237 810078 1
## 32238 810079 1
## 32239 810080 1
## 32240 810081 1
## 32241 810082 1
## 32242 810083 1
## 32243 810084 1
## 32244 810085 1
## 32245 810086 1
## 32246 810087 1
## 32247 810088 1
## 32248 810089 1
## 32249 810090 1
## 32250 810091 1
## 32251 810092 1
## 32252 810093 1
## 32253 810094 1
## 32254 810095 1
## 32255 810096 1
## 32256 810097 1
## 32257 810098 1
## 32258 810099 1
## 32259 810100 1
## 32260 810101 1
## 32261 810102 1
## 32262 810103 1
## 32263 810104 1
## 32264 810105 1
## 32265 810106 1
## 32266 810107 1
## 32267 810108 1
## 32268 810109 1
## 32269 810110 1
## 32270 810111 1
## 32271 810112 1
## 32272 810113 1
## 32273 810114 1
## 32274 810115 1
## 32275 810116 1
## 32276 810117 1
## 32277 810118 1
## 32278 810119 1
## 32279 810120 1
## 32280 810121 1
## 32281 810122 1
## 32282 810123 1
## 32283 810124 1
## 32284 810125 1
## 32285 810126 1
## 32286 810127 1
## 32287 810128 1
## 32288 810129 1
## 32289 810130 1
## 32290 810131 1
## 32291 810132 1
## 32292 810133 1
## 32293 810134 1
## 32294 810135 1
## 32295 810136 1
## 32296 810137 1
## 32297 810138 1
## 32298 810139 1
## 32299 810140 1
## 32300 810141 1
## 32301 810142 1
## 32302 810143 1
## 32303 810144 1
## 32304 810145 1
## 32305 810146 1
## 32306 810147 1
## 32307 810148 1
## 32308 810150 1
## 32309 810151 1
## 32310 810152 1
## 32311 810153 1
## 32312 810154 1
## 32313 810155 1
## 32314 810156 1
## 32315 810157 1
## 32316 810158 1
## 32317 810159 1
## 32318 810160 1
## 32319 810161 1
## 32320 810162 1
## 32321 810163 1
## 32322 810164 1
## 32323 810165 1
## 32324 810166 1
## 32325 810167 1
## 32326 810168 1
## 32327 810169 1
## 32328 810170 1
## 32329 810171 1
## 32330 810172 1
## 32331 810173 1
## 32332 810174 1
## 32333 810175 1
## 32334 810176 1
## 32335 810177 1
## 32336 810178 1
## 32337 810179 1
## 32338 810180 1
## 32339 810181 1
## 32340 810182 1
## 32341 810183 1
## 32342 810184 1
## 32343 810185 1
## 32344 810186 1
## 32345 810187 1
## 32346 810188 1
## 32347 810189 1
## 32348 810190 1
## 32349 810191 1
## 32350 810192 1
## 32351 810193 1
## 32352 810194 1
## 32353 810195 1
## 32354 810196 1
## 32355 810197 1
## 32356 810198 1
## 32357 810200 1
## 32358 810201 1
## 32359 810202 1
## 32360 810203 1
## 32361 810204 1
## 32362 810205 1
## 32363 810206 1
## 32364 810207 1
## 32365 810208 1
## 32366 810209 1
## 32367 810211 1
## 32368 810212 1
## 32369 810213 1
## 32370 810214 1
## 32371 810215 1
## 32372 810216 1
## 32373 810217 1
## 32374 810218 1
## 32375 810219 1
## 32376 810220 1
## 32377 810221 1
## 32378 810222 1
## 32379 810223 1
## 32380 810224 1
## 32381 810225 1
## 32382 810226 1
## 32383 810227 1
## 32384 810228 1
## 32385 810229 1
## 32386 810230 1
## 32387 810231 1
## 32388 810232 1
## 32389 810233 1
## 32390 810234 1
## 32391 810235 1
## 32392 810237 1
## 32393 810238 1
## 32394 810239 1
## 32395 810240 1
## 32396 810241 1
## 32397 810242 1
## 32398 810243 1
## 32399 810244 1
## 32400 810245 1
## 32401 810246 1
## 32402 810247 1
## 32403 810248 1
## 32404 810249 1
## 32405 810250 1
## 32406 810251 1
## 32407 810252 1
## 32408 810253 1
## 32409 810254 1
## 32410 810255 1
## 32411 810256 1
## 32412 810257 1
## 32413 810258 1
## 32414 810259 1
## 32415 810260 1
## 32416 810261 1
## 32417 810262 1
## 32418 810263 1
## 32419 810264 1
## 32420 810265 1
## 32421 810266 1
## 32422 810267 1
## 32423 810268 1
## 32424 810269 1
## 32425 810270 1
## 32426 810271 1
## 32427 810272 1
## 32428 810273 1
## 32429 810274 1
## 32430 810275 1
## 32431 810276 1
## 32432 810277 1
## 32433 810278 1
## 32434 810279 1
## 32435 810280 1
## 32436 810281 1
## 32437 810282 1
## 32438 810283 1
## 32439 810284 1
## 32440 810285 1
## 32441 810286 1
## 32442 810287 1
## 32443 810288 1
## 32444 810289 1
## 32445 810290 1
## 32446 810291 1
## 32447 810292 1
## 32448 810293 1
## 32449 810294 1
## 32450 810295 1
## 32451 810296 1
## 32452 810297 1
## 32453 810298 1
## 32454 810299 1
## 32455 810300 1
## 32456 810301 1
## 32457 810302 1
## 32458 810304 1
## 32459 810305 1
## 32460 810306 1
## 32461 810307 1
## 32462 810308 1
## 32463 810309 1
## 32464 810310 1
## 32465 810311 1
## 32466 810312 1
## 32467 810313 1
## 32468 810314 1
## 32469 810315 1
## 32470 810316 1
## 32471 810317 1
## 32472 810318 1
## 32473 810319 1
## 32474 810320 1
## 32475 810322 1
## 32476 810323 1
## 32477 810324 1
## 32478 810325 1
## 32479 810326 1
## 32480 810327 1
## 32481 810328 1
## 32482 810329 1
## 32483 810330 1
## 32484 810331 1
## 32485 810332 1
## 32486 810333 1
## 32487 810334 1
## 32488 810335 1
## 32489 810336 1
## 32490 810337 1
## 32491 810338 1
## 32492 810339 1
## 32493 810340 1
## 32494 810341 1
## 32495 810342 1
## 32496 810343 1
## 32497 810344 1
## 32498 810345 1
## 32499 810346 1
## 32500 810347 1
## 32501 810348 1
## 32502 810349 1
## 32503 810350 1
## 32504 810351 1
## 32505 810352 1
## 32506 810353 1
## 32507 810354 1
## 32508 810355 1
## 32509 810356 1
## 32510 810357 1
## 32511 810358 1
## 32512 810359 1
## 32513 810360 1
## 32514 810361 1
## 32515 810362 1
## 32516 810363 1
## 32517 810364 1
## 32518 810365 1
## 32519 810366 1
## 32520 810367 1
## 32521 810369 1
## 32522 810370 1
## 32523 810371 1
## 32524 810372 1
## 32525 810373 1
## 32526 810374 1
## 32527 810375 1
## 32528 810376 1
## 32529 810377 1
## 32530 810378 1
## 32531 810379 1
## 32532 810380 1
## 32533 810381 1
## 32534 810382 1
## 32535 810383 1
## 32536 810384 1
## 32537 810385 1
## 32538 810386 1
## 32539 810387 1
## 32540 810388 1
## 32541 810389 1
## 32542 810390 1
## 32543 810391 1
## 32544 810392 1
## 32545 810393 1
## 32546 810394 1
## 32547 810395 1
## 32548 810396 1
## 32549 810397 1
## 32550 810398 1
## 32551 810399 1
## 32552 810400 1
## 32553 810401 1
## 32554 810402 1
## 32555 810403 1
## 32556 810404 1
## 32557 810405 1
## 32558 810406 1
## 32559 810407 1
## 32560 810408 1
## 32561 810409 1
## 32562 810410 1
## 32563 810411 1
## 32564 810412 1
## 32565 810413 1
## 32566 810414 1
## 32567 810415 1
## 32568 810416 1
## 32569 810417 1
## 32570 810418 1
## 32571 810419 1
## 32572 810420 1
## 32573 810422 1
## 32574 810423 1
## 32575 810424 1
## 32576 810425 1
## 32577 810426 1
## 32578 810427 1
## 32579 810428 1
## 32580 810429 1
## 32581 810430 1
## 32582 810431 1
## 32583 810432 1
## 32584 810433 1
## 32585 810434 1
## 32586 810435 1
## 32587 810436 1
## 32588 810437 1
## 32589 810438 1
## 32590 810439 1
## 32591 810440 1
## 32592 810441 1
## 32593 810442 1
## 32594 810443 1
## 32595 810444 1
## 32596 810445 1
## 32597 810446 1
## 32598 810447 1
## 32599 810448 1
## 32600 810449 1
## 32601 810450 1
## 32602 810451 1
## 32603 810452 1
## 32604 810453 1
## 32605 810454 1
## 32606 810455 1
## 32607 810456 1
## 32608 810457 1
## 32609 810458 1
## 32610 810459 1
## 32611 810460 1
## 32612 810461 1
## 32613 810462 1
## 32614 810463 1
## 32615 810464 1
## 32616 810465 1
## 32617 810466 1
## 32618 810467 1
## 32619 810468 1
## 32620 810469 1
## 32621 810470 1
## 32622 810471 1
## 32623 810472 1
## 32624 810473 1
## 32625 810474 1
## 32626 810477 1
## 32627 810478 1
## 32628 810479 1
## 32629 810480 1
## 32630 810481 1
## 32631 810482 1
## 32632 810483 1
## 32633 810484 1
## 32634 810485 1
## 32635 810486 1
## 32636 810488 1
## 32637 810489 1
## 32638 810490 1
## 32639 810491 1
## 32640 810492 1
## 32641 810493 1
## 32642 810494 1
## 32643 810495 1
## 32644 810496 1
## 32645 810497 1
## 32646 810498 1
## 32647 810499 1
## 32648 810500 1
## 32649 810501 1
## 32650 810502 1
## 32651 810503 1
## 32652 810504 1
## 32653 810505 1
## 32654 810506 1
## 32655 810507 1
## 32656 810508 1
## 32657 810509 1
## 32658 810510 1
## 32659 810511 1
## 32660 810512 1
## 32661 810513 1
## 32662 810514 1
## 32663 810515 1
## 32664 810516 1
## 32665 810517 1
## 32666 810518 1
## 32667 810519 1
## 32668 810520 1
## 32669 810521 1
## 32670 810522 1
## 32671 810523 1
## 32672 810524 1
## 32673 810525 1
## 32674 810526 1
## 32675 810527 1
## 32676 810529 1
## 32677 810530 1
## 32678 810531 1
## 32679 810532 1
## 32680 810533 1
## 32681 810534 1
## 32682 810535 1
## 32683 810536 1
## 32684 810537 1
## 32685 810538 1
## 32686 810539 1
## 32687 810540 1
## 32688 810541 1
## 32689 810542 1
## 32690 810543 1
## 32691 810544 1
## 32692 810545 1
## 32693 810546 1
## 32694 810547 1
## 32695 810548 1
## 32696 810549 1
## 32697 810550 1
## 32698 810551 1
## 32699 810552 1
## 32700 810553 1
## 32701 810554 1
## 32702 810555 1
## 32703 810556 1
## 32704 810557 1
## 32705 810558 1
## 32706 810559 1
## 32707 810560 1
## 32708 810561 1
## 32709 810562 1
## 32710 810563 1
## 32711 810564 1
## 32712 810565 1
## 32713 810566 1
## 32714 810567 1
## 32715 810568 1
## 32716 810569 1
## 32717 810570 1
## 32718 810571 1
## 32719 810572 1
## 32720 810573 1
## 32721 810574 1
## 32722 810575 1
## 32723 810576 1
## 32724 810577 1
## 32725 810578 1
## 32726 810579 1
## 32727 810580 1
## 32728 810581 1
## 32729 810582 1
## 32730 810583 1
## 32731 810584 1
## 32732 810585 1
## 32733 810586 1
## 32734 810587 1
## 32735 810588 1
## 32736 810589 1
## 32737 810590 1
## 32738 810591 1
## 32739 810592 1
## 32740 810593 1
## 32741 810594 1
## 32742 810595 1
## 32743 810596 1
## 32744 810597 1
## 32745 810598 1
## 32746 810599 1
## 32747 810600 1
## 32748 810601 1
## 32749 810602 1
## 32750 810603 1
## 32751 810604 1
## 32752 810605 1
## 32753 810606 1
## 32754 810607 1
## 32755 810608 1
## 32756 810609 1
## 32757 810611 1
## 32758 810612 1
## 32759 810613 1
## 32760 810614 1
## 32761 810615 1
## 32762 810616 1
## 32763 810617 1
## 32764 810618 1
## 32765 810619 1
## 32766 810620 1
## 32767 810621 1
## 32768 810622 1
## 32769 810623 1
## 32770 810624 1
## 32771 810625 1
## 32772 810626 1
## 32773 810627 1
## 32774 810628 1
## 32775 810629 1
## 32776 810630 1
## 32777 810631 1
## 32778 810632 1
## 32779 810633 1
## 32780 810634 1
## 32781 810635 1
## 32782 810636 1
## 32783 810637 1
## 32784 810638 1
## 32785 810639 1
## 32786 810640 1
## 32787 810641 1
## 32788 810642 1
## 32789 810643 1
## 32790 810644 1
## 32791 810645 1
## 32792 810646 1
## 32793 810647 1
## 32794 810648 1
## 32795 810649 1
## 32796 810650 1
## 32797 810651 1
## 32798 810652 1
## 32799 810653 1
## 32800 810654 1
## 32801 810655 1
## 32802 810657 1
## 32803 810659 1
## 32804 810660 1
## 32805 810661 1
## 32806 810662 1
## 32807 810663 1
## 32808 810664 1
## 32809 810665 1
## 32810 810666 1
## 32811 810667 1
## 32812 810668 1
## 32813 810669 1
## 32814 810670 1
## 32815 810671 1
## 32816 810672 1
## 32817 810673 1
## 32818 810674 1
## 32819 810675 1
## 32820 810676 1
## 32821 810677 1
## 32822 810678 1
## 32823 810679 1
## 32824 810680 1
## 32825 810681 1
## 32826 810682 1
## 32827 810683 1
## 32828 810684 1
## 32829 810685 1
## 32830 810686 1
## 32831 810687 1
## 32832 810688 1
## 32833 810689 1
## 32834 810690 1
## 32835 810691 1
## 32836 810692 1
## 32837 810693 1
## 32838 810694 1
## 32839 810695 1
## 32840 810696 1
## 32841 810697 1
## 32842 810698 1
## 32843 810699 1
## 32844 810700 1
## 32845 810701 1
## 32846 810702 1
## 32847 810703 1
## 32848 810704 1
## 32849 810705 1
## 32850 810706 1
## 32851 810707 1
## 32852 810708 1
## 32853 810709 1
## 32854 810710 1
## 32855 810711 1
## 32856 810712 1
## 32857 810713 1
## 32858 810714 1
## 32859 810715 1
## 32860 810716 1
## 32861 810717 1
## 32862 810718 1
## 32863 810719 1
## 32864 810720 1
## 32865 810721 1
## 32866 810722 1
## 32867 810723 1
## 32868 810724 1
## 32869 810725 1
## 32870 810726 1
## 32871 810727 1
## 32872 810729 1
## 32873 810730 1
## 32874 810731 1
## 32875 810732 1
## 32876 810733 1
## 32877 810734 1
## 32878 810735 1
## 32879 810736 1
## 32880 810737 1
## 32881 810738 1
## 32882 810739 1
## 32883 810740 1
## 32884 810741 1
## 32885 810742 1
## 32886 810744 1
## 32887 810745 1
## 32888 810746 1
## 32889 810747 1
## 32890 810748 1
## 32891 810749 1
## 32892 810750 1
## 32893 810751 1
## 32894 810752 1
## 32895 810753 1
## 32896 810754 1
## 32897 810755 1
## 32898 810756 1
## 32899 810757 1
## 32900 810758 1
## 32901 810759 1
## 32902 810760 1
## 32903 810761 1
## 32904 810762 1
## 32905 810763 1
## 32906 810764 1
## 32907 810765 1
## 32908 810766 1
## 32909 810767 1
## 32910 810768 1
## 32911 810769 1
## 32912 810770 1
## 32913 810771 1
## 32914 810772 1
## 32915 810773 1
## 32916 810774 1
## 32917 810775 1
## 32918 810776 1
## 32919 810777 1
## 32920 810778 1
## 32921 810779 1
## 32922 810780 1
## 32923 810781 1
## 32924 810782 1
## 32925 810783 1
## 32926 810784 1
## 32927 810785 1
## 32928 810786 1
## 32929 810787 1
## 32930 810788 1
## 32931 810789 1
## 32932 810790 1
## 32933 810791 1
## 32934 810792 1
## 32935 810793 1
## 32936 810794 1
## 32937 810795 1
## 32938 810796 1
## 32939 810797 1
## 32940 810798 1
## 32941 810799 1
## 32942 810800 1
## 32943 810801 1
## 32944 810802 1
## 32945 810803 1
## 32946 810804 1
## 32947 810805 1
## 32948 810806 1
## 32949 810807 1
## 32950 810808 1
## 32951 810809 1
## 32952 810810 1
## 32953 810811 1
## 32954 810812 1
## 32955 810813 1
## 32956 810814 1
## 32957 810815 1
## 32958 810816 1
## 32959 810817 1
## 32960 810818 1
## 32961 810819 1
## 32962 810820 1
## 32963 810821 1
## 32964 810822 1
## 32965 810823 1
## 32966 810824 1
## 32967 810825 1
## 32968 810826 1
## 32969 810827 1
## 32970 810828 1
## 32971 810829 1
## 32972 810830 1
## 32973 810831 1
## 32974 810832 1
## 32975 810833 1
## 32976 810834 1
## 32977 810835 1
## 32978 810836 1
## 32979 810837 1
## 32980 810838 1
## 32981 810839 1
## 32982 810840 1
## 32983 810841 1
## 32984 810842 1
## 32985 810843 1
## 32986 810844 1
## 32987 810846 1
## 32988 810847 1
## 32989 810848 1
## 32990 810849 1
## 32991 810850 1
## 32992 810851 1
## 32993 810852 1
## 32994 810853 1
## 32995 810854 1
## 32996 810855 1
## 32997 810856 1
## 32998 810857 1
## 32999 810858 1
## 33000 810859 1
## 33001 810860 1
## 33002 810861 1
## 33003 810862 1
## 33004 810863 1
## 33005 810864 1
## 33006 810865 1
## 33007 810866 1
## 33008 810867 1
## 33009 810868 1
## 33010 810869 1
## 33011 810870 1
## 33012 810871 1
## 33013 810872 1
## 33014 810873 1
## 33015 810874 1
## 33016 810875 1
## 33017 810876 1
## 33018 810877 1
## 33019 810878 1
## 33020 810879 1
## 33021 810880 1
## 33022 810881 1
## 33023 810882 1
## 33024 810883 1
## 33025 810884 1
## 33026 810885 1
## 33027 810886 1
## 33028 810887 1
## 33029 810888 1
## 33030 810889 1
## 33031 810890 1
## 33032 810891 1
## 33033 810892 1
## 33034 810893 1
## 33035 810894 1
## 33036 810895 1
## 33037 810896 1
## 33038 810897 1
## 33039 810898 1
## 33040 810899 1
## 33041 810900 1
## 33042 810901 1
## 33043 810902 1
## 33044 810903 1
## 33045 810904 1
## 33046 810905 1
## 33047 810906 1
## 33048 810907 1
## 33049 810908 1
## 33050 810909 1
## 33051 810910 1
## 33052 810911 1
## 33053 810912 1
## 33054 810913 1
## 33055 810914 1
## 33056 810915 1
## 33057 810916 1
## 33058 810917 1
## 33059 810918 1
## 33060 810919 1
## 33061 810920 1
## 33062 810921 1
## 33063 810922 1
## 33064 810923 1
## 33065 810924 1
## 33066 810925 1
## 33067 810926 1
## 33068 810927 1
## 33069 810928 1
## 33070 810929 1
## 33071 810930 1
## 33072 810931 1
## 33073 810932 1
## 33074 810933 1
## 33075 810934 1
## 33076 810935 1
## 33077 810936 1
## 33078 810937 1
## 33079 810938 1
## 33080 810939 1
## 33081 810940 1
## 33082 810941 1
## 33083 810942 1
## 33084 810943 1
## 33085 810944 1
## 33086 810945 1
## 33087 810946 1
## 33088 810947 1
## 33089 810948 1
## 33090 810949 1
## 33091 810950 1
## 33092 810951 1
## 33093 810952 1
## 33094 810953 1
## 33095 810954 1
## 33096 810955 1
## 33097 810956 1
## 33098 810957 1
## 33099 810958 1
## 33100 810959 1
## 33101 810960 1
## 33102 810961 1
## 33103 810962 1
## 33104 810963 1
## 33105 810964 1
## 33106 810965 1
## 33107 810966 1
## 33108 810967 1
## 33109 810968 1
## 33110 810969 1
## 33111 810970 1
## 33112 810971 1
## 33113 810972 1
## 33114 810973 1
## 33115 810974 1
## 33116 810975 1
## 33117 810976 1
## 33118 810977 1
## 33119 810978 1
## 33120 810979 1
## 33121 810980 1
## 33122 810981 1
## 33123 810982 1
## 33124 810983 1
## 33125 810984 1
## 33126 810985 1
## 33127 810986 1
## 33128 810987 1
## 33129 810988 1
## 33130 810989 1
## 33131 810990 1
## 33132 810991 1
## 33133 810992 1
## 33134 810993 1
## 33135 810994 1
## 33136 810995 1
## 33137 810996 1
## 33138 810997 1
## 33139 810998 1
## 33140 810999 1
## 33141 811000 1
## 33142 811001 1
## 33143 811002 1
## 33144 811003 1
## 33145 811004 1
## 33146 811005 1
## 33147 811006 1
## 33148 811007 1
## 33149 811008 1
## 33150 811009 1
## 33151 811010 1
## 33152 811011 1
## 33153 811012 1
## 33154 811013 1
## 33155 811014 1
## 33156 811015 1
## 33157 811016 1
## 33158 811017 1
## 33159 811018 1
## 33160 811019 1
## 33161 811020 1
## 33162 811021 1
## 33163 811022 1
## 33164 811023 1
## 33165 811024 1
## 33166 811025 1
## 33167 811026 1
## 33168 811027 1
## 33169 811028 1
## 33170 811029 1
## 33171 811030 1
## 33172 811031 1
## 33173 811032 1
## 33174 811033 1
## 33175 811034 1
## 33176 811035 1
## 33177 811036 1
## 33178 811037 1
## 33179 811038 1
## 33180 811039 1
## 33181 811040 1
## 33182 811041 1
## 33183 811042 1
## 33184 811043 1
## 33185 811044 1
## 33186 811045 1
## 33187 811046 1
## 33188 811047 1
## 33189 811048 1
## 33190 811049 1
## 33191 811050 1
## 33192 811051 1
## 33193 811052 1
## 33194 811053 1
## 33195 811054 1
## 33196 811055 1
## 33197 811056 1
## 33198 811057 1
## 33199 811058 1
## 33200 811059 1
## 33201 811060 1
## 33202 811061 1
## 33203 811062 1
## 33204 811063 1
## 33205 811064 1
## 33206 811065 1
## 33207 811066 1
## 33208 811067 1
## 33209 811068 1
## 33210 811069 1
## 33211 811070 1
## 33212 811071 1
## 33213 811072 1
## 33214 811073 1
## 33215 811074 1
## 33216 811075 1
## 33217 811076 1
## 33218 811077 1
## 33219 811078 1
## 33220 811079 1
## 33221 811080 1
## 33222 811081 1
## 33223 811082 1
## 33224 811083 1
## 33225 811084 1
## 33226 811085 1
## 33227 811086 1
## 33228 811087 1
## 33229 811088 1
## 33230 811089 1
## 33231 811090 1
## 33232 811091 1
## 33233 811092 1
## 33234 811093 1
## 33235 811094 1
## 33236 811095 1
## 33237 811096 1
## 33238 811097 1
## 33239 811098 1
## 33240 811099 1
## 33241 811100 1
## 33242 811101 1
## 33243 811102 1
## 33244 811103 1
## 33245 811104 1
## 33246 811105 1
## 33247 811106 1
## 33248 811107 1
## 33249 811108 1
## 33250 811109 1
## 33251 811110 1
## 33252 811111 1
## 33253 811112 1
## 33254 811113 1
## 33255 811114 1
## 33256 811115 1
## 33257 811116 1
## 33258 811117 1
## 33259 811118 1
## 33260 811119 1
## 33261 811120 1
## 33262 811121 1
## 33263 811122 1
## 33264 811123 1
## 33265 811124 1
## 33266 811125 1
## 33267 811126 1
## 33268 811127 1
## 33269 811128 1
## 33270 811129 1
## 33271 811130 1
## 33272 811131 1
## 33273 811132 1
## 33274 811133 1
## 33275 811134 1
## 33276 811135 1
## 33277 811136 1
## 33278 811137 1
## 33279 811138 1
## 33280 811139 1
## 33281 811140 1
## 33282 811141 1
## 33283 811142 1
## 33284 811143 1
## 33285 811144 1
## 33286 811145 1
## 33287 811146 1
## 33288 811147 1
## 33289 811148 1
## 33290 811149 1
## 33291 811150 1
## 33292 811151 1
## 33293 811152 1
## 33294 811153 1
## 33295 811154 1
## 33296 811155 1
## 33297 811156 1
## 33298 811157 1
## 33299 811158 1
## 33300 811159 1
## 33301 811160 1
## 33302 811161 1
## 33303 811162 1
## 33304 811163 1
## 33305 811164 1
## 33306 811165 1
## 33307 811166 1
## 33308 811167 1
## 33309 811168 1
## 33310 811169 1
## 33311 811170 1
## 33312 811171 1
## 33313 811172 1
## 33314 811173 1
## 33315 811175 1
## 33316 811176 1
## 33317 811177 1
## 33318 811178 1
## 33319 811179 1
## 33320 811180 1
## 33321 811181 1
## 33322 811182 1
## 33323 811183 1
## 33324 811184 1
## 33325 811185 1
## 33326 811186 1
## 33327 811187 1
## 33328 811188 1
## 33329 811189 1
## 33330 811190 1
## 33331 811191 1
## 33332 811192 1
## 33333 811193 1
## 33334 811194 1
## 33335 811195 1
## 33336 811196 1
## 33337 811197 1
## 33338 811198 1
## 33339 811199 1
## 33340 811200 1
## 33341 811201 1
## 33342 811202 1
## 33343 811203 1
## 33344 811204 1
## 33345 811205 1
## 33346 811206 1
## 33347 811207 1
## 33348 811208 1
## 33349 811209 1
## 33350 811210 1
## 33351 811211 1
## 33352 811212 1
## 33353 811213 1
## 33354 811214 1
## 33355 811215 1
## 33356 811216 1
## 33357 811217 1
## 33358 811218 1
## 33359 811219 1
## 33360 811220 1
## 33361 811221 1
## 33362 811222 1
## 33363 811223 1
## 33364 811224 1
## 33365 811225 1
## 33366 811226 1
## 33367 811227 1
## 33368 811228 1
## 33369 811229 1
## 33370 811230 1
## 33371 811231 1
## 33372 811232 1
## 33373 811233 1
## 33374 811234 1
## 33375 811235 1
## 33376 811236 1
## 33377 811237 1
## 33378 811238 1
## 33379 811239 1
## 33380 811240 1
## 33381 811241 1
## 33382 811242 1
## 33383 811243 1
## 33384 811244 1
## 33385 811245 1
## 33386 811246 1
## 33387 811247 1
## 33388 811248 1
## 33389 811249 1
## 33390 811250 1
## 33391 811251 1
## 33392 811252 1
## 33393 811253 1
## 33394 811254 1
## 33395 811255 1
## 33396 811256 1
## 33397 811257 1
## 33398 811258 1
## 33399 811259 1
## 33400 811260 1
## 33401 811261 1
## 33402 811262 1
## 33403 811263 1
## 33404 811264 1
## 33405 811265 1
## 33406 811266 1
## 33407 811267 1
## 33408 811268 1
## 33409 811269 1
## 33410 811270 1
## 33411 811271 1
## 33412 811272 1
## 33413 811273 1
## 33414 811274 1
## 33415 811275 1
## 33416 811276 1
## 33417 811278 1
## 33418 811279 1
## 33419 811280 1
## 33420 811281 1
## 33421 811282 1
## 33422 811283 1
## 33423 811284 1
## 33424 811285 1
## 33425 811286 1
## 33426 811287 1
## 33427 811288 1
## 33428 811289 1
## 33429 811290 1
## 33430 811291 1
## 33431 811292 1
## 33432 811293 1
## 33433 811294 1
## 33434 811295 1
## 33435 811296 1
## 33436 811297 1
## 33437 811298 1
## 33438 811299 1
## 33439 811300 1
## 33440 811301 1
## 33441 811302 1
## 33442 811303 1
## 33443 811304 1
## 33444 811305 1
## 33445 811306 1
## 33446 811307 1
## 33447 811308 1
## 33448 811309 1
## 33449 811310 1
## 33450 811311 1
## 33451 811312 1
## 33452 811313 1
## 33453 811314 1
## 33454 811315 1
## 33455 811316 1
## 33456 811317 1
## 33457 811318 1
## 33458 811319 1
## 33459 811320 1
## 33460 811321 1
## 33461 811322 1
## 33462 811323 1
## 33463 811326 1
## 33464 811327 1
## 33465 811328 1
## 33466 811329 1
## 33467 811330 1
## 33468 811331 1
## 33469 811332 1
## 33470 811333 1
## 33471 811334 1
## 33472 811335 1
## 33473 811336 1
## 33474 811337 1
## 33475 811338 1
## 33476 811339 1
## 33477 811340 1
## 33478 811341 1
## 33479 811342 1
## 33480 811343 1
## 33481 811344 1
## 33482 811345 1
## 33483 811346 1
## 33484 811347 1
## 33485 811348 1
## 33486 811349 1
## 33487 811350 1
## 33488 811351 1
## 33489 811352 1
## 33490 811353 1
## 33491 811354 1
## 33492 811355 1
## 33493 811356 1
## 33494 811357 1
## 33495 811358 1
## 33496 811359 1
## 33497 811360 1
## 33498 811361 1
## 33499 811362 1
## 33500 811363 1
## 33501 811364 1
## 33502 811365 1
## 33503 811366 1
## 33504 811367 1
## 33505 811368 1
## 33506 811369 1
## 33507 811370 1
## 33508 811371 1
## 33509 811372 1
## 33510 811373 1
## 33511 811374 1
## 33512 811375 1
## 33513 811376 1
## 33514 811377 1
## 33515 811378 1
## 33516 811379 1
## 33517 811380 1
## 33518 811382 1
## 33519 811383 1
## 33520 811384 1
## 33521 811385 1
## 33522 811386 1
## 33523 811387 1
## 33524 811388 1
## 33525 811389 1
## 33526 811390 1
## 33527 811391 1
## 33528 811392 1
## 33529 811393 1
## 33530 811394 1
## 33531 811395 1
## 33532 811396 1
## 33533 811397 1
## 33534 811398 1
## 33535 811399 1
## 33536 811400 1
## 33537 811401 1
## 33538 811402 1
## 33539 811403 1
## 33540 811404 1
## 33541 811405 1
## 33542 811406 1
## 33543 811407 1
## 33544 811408 1
## 33545 811409 1
## 33546 811410 1
## 33547 811411 1
## 33548 811412 1
## 33549 811413 1
## 33550 811414 1
## 33551 811415 1
## 33552 811416 1
## 33553 811417 1
## 33554 811418 1
## 33555 811419 1
## 33556 811420 1
## 33557 811421 1
## 33558 811422 1
## 33559 811423 1
## 33560 811424 1
## 33561 811425 1
## 33562 811426 1
## 33563 811427 1
## 33564 811428 1
## 33565 811429 1
## 33566 811430 1
## 33567 811431 1
## 33568 811433 1
## 33569 811434 1
## 33570 811435 1
## 33571 811436 1
## 33572 811437 1
## 33573 811438 1
## 33574 811439 1
## 33575 811440 1
## 33576 811441 1
## 33577 811442 1
## 33578 811443 1
## 33579 811444 1
## 33580 811445 1
## 33581 811446 1
## 33582 811447 1
## 33583 811448 1
## 33584 811449 1
## 33585 811450 1
## 33586 811451 1
## 33587 811452 1
## 33588 811453 1
## 33589 811454 1
## 33590 811455 1
## 33591 811456 1
## 33592 811457 1
## 33593 811458 1
## 33594 811459 1
## 33595 811460 1
## 33596 811461 1
## 33597 811462 1
## 33598 811463 1
## 33599 811464 1
## 33600 811465 1
## 33601 811466 1
## 33602 811467 1
## 33603 811468 1
## 33604 811469 1
## 33605 811470 1
## 33606 811471 1
## 33607 811472 1
## 33608 811473 1
## 33609 811474 1
## 33610 811475 1
## 33611 811476 1
## 33612 811477 1
## 33613 811478 1
## 33614 811479 1
## 33615 811480 1
## 33616 811481 1
## 33617 811482 1
## 33618 811483 1
## 33619 811484 1
## 33620 811485 1
## 33621 811486 1
## 33622 811487 1
## 33623 811488 1
## 33624 811489 1
## 33625 811491 1
## 33626 811492 1
## 33627 811493 1
## 33628 811494 1
## 33629 811495 1
## 33630 811496 1
## 33631 811497 1
## 33632 811498 1
## 33633 811499 1
## 33634 811500 1
## 33635 811501 1
## 33636 811502 1
## 33637 811503 1
## 33638 811504 1
## 33639 811505 1
## 33640 811506 1
## 33641 811507 1
## 33642 811508 1
## 33643 811509 1
## 33644 811510 1
## 33645 811511 1
## 33646 811512 1
## 33647 811513 1
## 33648 811514 1
## 33649 811515 1
## 33650 811516 1
## 33651 811517 1
## 33652 811518 1
## 33653 811519 1
## 33654 811520 1
## 33655 811521 1
## 33656 811522 1
## 33657 811523 1
## 33658 811524 1
## 33659 811525 1
## 33660 811526 1
## 33661 811527 1
## 33662 811528 1
## 33663 811529 1
## 33664 811530 1
## 33665 811531 1
## 33666 811532 1
## 33667 811533 1
## 33668 811534 1
## 33669 811535 1
## 33670 811536 1
## 33671 811537 1
## 33672 811538 1
## 33673 811539 1
## 33674 811540 1
## 33675 811541 1
## 33676 811542 1
## 33677 811543 1
## 33678 811544 1
## 33679 811545 1
## 33680 811546 1
## 33681 811547 1
## 33682 811548 1
## 33683 811549 1
## 33684 811550 1
## 33685 811551 1
## 33686 811553 1
## 33687 811554 1
## 33688 811555 1
## 33689 811556 1
## 33690 811557 1
## 33691 811558 1
## 33692 811559 1
## 33693 811560 1
## 33694 811561 1
## 33695 811562 1
## 33696 811563 1
## 33697 811564 1
## 33698 811565 1
## 33699 811566 1
## 33700 811567 1
## 33701 811568 1
## 33702 811569 1
## 33703 811570 1
## 33704 811571 1
## 33705 811572 1
## 33706 811573 1
## 33707 811574 1
## 33708 811575 1
## 33709 811576 1
## 33710 811577 1
## 33711 811578 1
## 33712 811579 1
## 33713 811580 1
## 33714 811581 1
## 33715 811582 1
## 33716 811583 1
## 33717 811584 1
## 33718 811585 1
## 33719 811586 1
## 33720 811587 1
## 33721 811588 1
## 33722 811589 1
## 33723 811590 1
## 33724 811591 1
## 33725 811592 1
## 33726 811593 1
## 33727 811594 1
## 33728 811595 1
## 33729 811596 1
## 33730 811597 1
## 33731 811598 1
## 33732 811599 1
## 33733 811600 1
## 33734 811601 1
## 33735 811602 1
## 33736 811603 1
## 33737 811604 1
## 33738 811605 1
## 33739 811606 1
## 33740 811607 1
## 33741 811608 1
## 33742 811609 1
## 33743 811610 1
## 33744 811612 1
## 33745 811613 1
## 33746 811614 1
## 33747 811615 1
## 33748 811616 1
## 33749 811617 1
## 33750 811618 1
## 33751 811619 1
## 33752 811620 1
## 33753 811621 1
## 33754 811622 1
## 33755 811623 1
## 33756 811624 1
## 33757 811625 1
## 33758 811626 1
## 33759 811627 1
## 33760 811628 1
## 33761 811629 1
## 33762 811630 1
## 33763 811631 1
## 33764 811632 1
## 33765 811633 1
## 33766 811634 1
## 33767 811635 1
## 33768 811636 1
## 33769 811637 1
## 33770 811638 1
## 33771 811639 1
## 33772 811640 1
## 33773 811641 1
## 33774 811642 1
## 33775 811643 1
## 33776 811644 1
## 33777 811645 1
## 33778 811646 1
## 33779 811647 1
## 33780 811648 1
## 33781 811649 1
## 33782 811650 1
## 33783 811651 1
## 33784 811652 1
## 33785 811653 1
## 33786 811654 1
## 33787 811655 1
## 33788 811656 1
## 33789 811657 1
## 33790 811658 1
## 33791 811659 1
## 33792 811660 1
## 33793 811661 1
## 33794 811662 1
## 33795 811663 1
## 33796 811664 1
## 33797 811665 1
## 33798 811666 1
## 33799 811667 1
## 33800 811668 1
## 33801 811669 1
## 33802 811670 1
## 33803 811671 1
## 33804 811672 1
## 33805 811673 1
## 33806 811674 1
## 33807 811675 1
## 33808 811676 1
## 33809 811677 1
## 33810 811678 1
## 33811 811681 1
## 33812 811682 1
## 33813 811683 1
## 33814 811684 1
## 33815 811685 1
## 33816 811686 1
## 33817 811687 1
## 33818 811688 1
## 33819 811689 1
## 33820 811690 1
## 33821 811691 1
## 33822 811692 1
## 33823 811693 1
## 33824 811694 1
## 33825 811695 1
## 33826 811696 1
## 33827 811697 1
## 33828 811698 1
## 33829 811699 1
## 33830 811700 1
## 33831 811701 1
## 33832 811702 1
## 33833 811703 1
## 33834 811704 1
## 33835 811705 1
## 33836 811706 1
## 33837 811707 1
## 33838 811708 1
## 33839 811709 1
## 33840 811710 1
## 33841 811711 1
## 33842 811712 1
## 33843 811713 1
## 33844 811714 1
## 33845 811715 1
## 33846 811716 1
## 33847 811717 1
## 33848 811718 1
## 33849 811719 1
## 33850 811720 1
## 33851 811721 1
## 33852 811722 1
## 33853 811723 1
## 33854 811724 1
## 33855 811725 1
## 33856 811726 1
## 33857 811727 1
## 33858 811728 1
## 33859 811729 1
## 33860 811730 1
## 33861 811731 1
## 33862 811732 1
## 33863 811733 1
## 33864 811734 1
## 33865 811735 1
## 33866 811737 1
## 33867 811738 1
## 33868 811739 1
## 33869 811740 1
## 33870 811741 1
## 33871 811742 1
## 33872 811743 1
## 33873 811744 1
## 33874 811745 1
## 33875 811746 1
## 33876 811747 1
## 33877 811748 1
## 33878 811749 1
## 33879 811750 1
## 33880 811751 1
## 33881 811752 1
## 33882 811753 1
## 33883 811754 1
## 33884 811755 1
## 33885 811756 1
## 33886 811757 1
## 33887 811758 1
## 33888 811759 1
## 33889 811760 1
## 33890 811761 1
## 33891 811762 1
## 33892 811763 1
## 33893 811764 1
## 33894 811765 1
## 33895 811766 1
## 33896 811767 1
## 33897 811768 1
## 33898 811769 1
## 33899 811770 1
## 33900 811771 1
## 33901 811772 1
## 33902 811773 1
## 33903 811774 1
## 33904 811775 1
## 33905 811776 1
## 33906 811777 1
## 33907 811778 1
## 33908 811779 1
## 33909 811780 1
## 33910 811781 1
## 33911 811782 1
## 33912 811783 1
## 33913 811784 1
## 33914 811785 1
## 33915 811786 1
## 33916 811787 1
## 33917 811788 1
## 33918 811789 1
## 33919 811790 1
## 33920 811791 1
## 33921 811792 1
## 33922 811793 1
## 33923 811794 1
## 33924 811795 1
## 33925 811796 1
## 33926 811797 1
## 33927 811798 1
## 33928 811799 1
## 33929 811800 1
## 33930 811801 1
## 33931 811803 1
## 33932 811804 1
## 33933 811805 1
## 33934 811806 1
## 33935 811807 1
## 33936 811808 1
## 33937 811809 1
## 33938 811810 1
## 33939 811811 1
## 33940 811812 1
## 33941 811813 1
## 33942 811814 1
## 33943 811815 1
## 33944 811816 1
## 33945 811817 1
## 33946 811818 1
## 33947 811819 1
## 33948 811820 1
## 33949 811821 1
## 33950 811822 1
## 33951 811823 1
## 33952 811824 1
## 33953 811825 1
## 33954 811826 1
## 33955 811827 1
## 33956 811828 1
## 33957 811829 1
## 33958 811830 1
## 33959 811831 1
## 33960 811832 1
## 33961 811833 1
## 33962 811834 1
## 33963 811835 1
## 33964 811836 1
## 33965 811837 1
## 33966 811838 1
## 33967 811839 1
## 33968 811840 1
## 33969 811841 1
## 33970 811842 1
## 33971 811843 1
## 33972 811844 1
## 33973 811845 1
## 33974 811846 1
## 33975 811847 1
## 33976 811848 1
## 33977 811849 1
## 33978 811850 1
## 33979 811851 1
## 33980 811852 1
## 33981 811853 1
## 33982 811854 1
## 33983 811855 1
## 33984 811856 1
## 33985 811857 1
## 33986 811858 1
## 33987 811859 1
## 33988 811860 1
## 33989 811861 1
## 33990 811862 1
## 33991 811863 1
## 33992 811864 1
## 33993 811865 1
## 33994 811866 1
## 33995 811867 1
## 33996 811868 1
## 33997 811869 1
## 33998 811870 1
## 33999 811871 1
## 34000 811872 1
## 34001 811873 1
## 34002 811874 1
## 34003 811875 1
## 34004 811876 1
## 34005 811877 1
## 34006 811878 1
## 34007 811879 1
## 34008 811880 1
## 34009 811881 1
## 34010 811882 1
## 34011 811883 1
## 34012 811884 1
## 34013 811885 1
## 34014 811886 1
## 34015 811887 1
## 34016 811888 1
## 34017 811889 1
## 34018 811890 1
## 34019 811891 1
## 34020 811892 1
## 34021 811893 1
## 34022 811894 1
## 34023 811895 1
## 34024 811896 1
## 34025 811897 1
## 34026 811898 1
## 34027 811899 1
## 34028 811900 1
## 34029 811901 1
## 34030 811902 1
## 34031 811903 1
## 34032 811904 1
## 34033 811905 1
## 34034 811906 1
## 34035 811907 1
## 34036 811908 1
## 34037 811909 1
## 34038 811910 1
## 34039 811911 1
## 34040 811912 1
## 34041 811913 1
## 34042 811914 1
## 34043 811915 1
## 34044 811916 1
## 34045 811917 1
## 34046 811918 1
## 34047 811919 1
## 34048 811920 1
## 34049 811921 1
## 34050 811922 1
## 34051 811923 1
## 34052 811924 1
## 34053 811925 1
## 34054 811926 1
## 34055 811927 1
## 34056 811928 1
## 34057 811929 1
## 34058 811930 1
## 34059 811931 1
## 34060 811932 1
## 34061 811933 1
## 34062 811934 1
## 34063 811935 1
## 34064 811936 1
## 34065 811937 1
## 34066 811938 1
## 34067 811939 1
## 34068 811940 1
## 34069 811941 1
## 34070 811942 1
## 34071 811943 1
## 34072 811944 1
## 34073 811945 1
## 34074 811946 1
## 34075 811947 1
## 34076 811948 1
## 34077 811949 1
## 34078 811950 1
## 34079 811951 1
## 34080 811952 1
## 34081 811953 1
## 34082 811954 1
## 34083 811955 1
## 34084 811956 1
## 34085 811957 1
## 34086 811958 1
## 34087 811959 1
## 34088 811960 1
## 34089 811961 1
## 34090 811962 1
## 34091 811963 1
## 34092 811964 1
## 34093 811965 1
## 34094 811966 1
## 34095 811967 1
## 34096 811968 1
## 34097 811969 1
## 34098 811970 1
## 34099 811971 1
## 34100 811972 1
## 34101 811973 1
## 34102 811974 1
## 34103 811975 1
## 34104 811976 1
## 34105 811977 1
## 34106 811978 1
## 34107 811979 1
## 34108 811980 1
## 34109 811981 1
## 34110 811982 1
## 34111 811983 1
## 34112 811984 1
## 34113 811985 1
## 34114 811986 1
## 34115 811987 1
## 34116 811988 1
## 34117 811989 1
## 34118 811990 1
## 34119 811991 1
## 34120 811992 1
## 34121 811993 1
## 34122 811994 1
## 34123 811995 1
## 34124 811996 1
## 34125 811997 1
## 34126 811998 1
## 34127 811999 1
## 34128 812000 1
## 34129 812001 1
## 34130 812002 1
## 34131 812003 1
## 34132 812004 1
## 34133 812005 1
## 34134 812006 1
## 34135 812007 1
## 34136 812008 1
## 34137 812009 1
## 34138 812010 1
## 34139 812011 1
## 34140 812012 1
## 34141 812013 1
## 34142 812014 1
## 34143 812015 1
## 34144 812016 1
## 34145 812017 1
## 34146 812018 1
## 34147 812019 1
## 34148 812020 1
## 34149 812021 1
## 34150 812022 1
## 34151 812023 1
## 34152 812024 1
## 34153 812025 1
## 34154 812026 1
## 34155 812027 1
## 34156 812028 1
## 34157 812029 1
## 34158 812030 1
## 34159 812031 1
## 34160 812032 1
## 34161 812033 1
## 34162 812034 1
## 34163 812035 1
## 34164 812036 1
## 34165 812037 1
## 34166 812038 1
## 34167 812039 1
## 34168 812040 1
## 34169 812041 1
## 34170 812042 1
## 34171 812043 1
## 34172 812044 1
## 34173 812045 1
## 34174 812046 1
## 34175 812047 1
## 34176 812048 1
## 34177 812049 1
## 34178 812050 1
## 34179 812051 1
## 34180 812052 1
## 34181 812053 1
## 34182 812054 1
## 34183 812055 1
## 34184 812056 1
## 34185 812057 1
## 34186 812058 1
## 34187 812059 1
## 34188 812060 1
## 34189 812061 1
## 34190 812062 1
## 34191 812064 1
## 34192 812065 1
## 34193 812066 1
## 34194 812067 1
## 34195 812068 1
## 34196 812069 1
## 34197 812070 1
## 34198 812071 1
## 34199 812072 1
## 34200 812073 1
## 34201 812074 1
## 34202 812075 1
## 34203 812076 1
## 34204 812077 1
## 34205 812078 1
## 34206 812079 1
## 34207 812080 1
## 34208 812081 1
## 34209 812082 1
## 34210 812083 1
## 34211 812084 1
## 34212 812085 1
## 34213 812086 1
## 34214 812087 1
## 34215 812088 1
## 34216 812089 1
## 34217 812090 1
## 34218 812091 1
## 34219 812092 1
## 34220 812093 1
## 34221 812094 1
## 34222 812095 1
## 34223 812096 1
## 34224 812097 1
## 34225 812098 1
## 34226 812099 1
## 34227 812100 1
## 34228 812101 1
## 34229 812102 1
## 34230 812103 1
## 34231 812104 1
## 34232 812105 1
## 34233 812106 1
## 34234 812107 1
## 34235 812108 1
## 34236 812109 1
## 34237 812110 1
## 34238 812111 1
## 34239 812112 1
## 34240 812113 1
## 34241 812114 1
## 34242 812115 1
## 34243 812116 1
## 34244 812117 1
## 34245 812118 1
## 34246 812119 1
## 34247 812120 1
## 34248 812121 1
## 34249 812122 1
## 34250 812123 1
## 34251 812124 1
## 34252 812125 1
## 34253 812126 1
## 34254 812127 1
## 34255 812128 1
## 34256 812129 1
## 34257 812130 1
## 34258 812131 1
## 34259 812132 1
## 34260 812133 1
## 34261 812134 1
## 34262 812135 1
## 34263 812136 1
## 34264 812137 1
## 34265 812138 1
## 34266 812139 1
## 34267 812140 1
## 34268 812141 1
## 34269 812142 1
## 34270 812143 1
## 34271 812144 1
## 34272 812145 1
## 34273 812146 1
## 34274 812147 1
## 34275 812148 1
## 34276 812149 1
## 34277 812150 1
## 34278 812151 1
## 34279 812152 1
## 34280 812153 1
## 34281 812154 1
## 34282 812155 1
## 34283 812156 1
## 34284 812157 1
## 34285 812158 1
## 34286 812159 1
## 34287 812160 1
## 34288 812161 1
## 34289 812162 1
## 34290 812163 1
## 34291 812164 1
## 34292 812165 1
## 34293 812166 1
## 34294 812167 1
## 34295 812168 1
## 34296 812169 1
## 34297 812170 1
## 34298 812171 1
## 34299 812172 1
## 34300 812173 1
## 34301 812174 1
## 34302 812175 1
## 34303 812176 1
## 34304 812177 1
## 34305 812178 1
## 34306 812179 1
## 34307 812180 1
## 34308 812181 1
## 34309 812182 1
## 34310 812183 1
## 34311 812184 1
## 34312 812185 1
## 34313 812186 1
## 34314 812187 1
## 34315 812188 1
## 34316 812189 1
## 34317 812190 1
## 34318 812191 1
## 34319 812192 1
## 34320 812193 1
## 34321 812194 1
## 34322 812195 1
## 34323 812196 1
## 34324 812197 1
## 34325 812198 1
## 34326 812199 1
## 34327 812200 1
## 34328 812201 1
## 34329 812202 1
## 34330 812203 1
## 34331 812204 1
## 34332 812205 1
## 34333 812206 1
## 34334 812207 1
## 34335 812208 1
## 34336 812209 1
## 34337 812210 1
## 34338 812211 1
## 34339 812212 1
## 34340 812213 1
## 34341 812214 1
## 34342 812215 1
## 34343 812216 1
## 34344 812217 1
## 34345 812218 1
## 34346 812219 1
## 34347 812220 1
## 34348 812221 1
## 34349 812222 1
## 34350 812223 1
## 34351 812224 1
## 34352 812225 1
## 34353 812226 1
## 34354 812227 1
## 34355 812228 1
## 34356 812229 1
## 34357 812230 1
## 34358 812231 1
## 34359 812232 1
## 34360 812233 1
## 34361 812234 1
## 34362 812235 1
## 34363 812236 1
## 34364 812237 1
## 34365 812238 1
## 34366 812239 1
## 34367 812240 1
## 34368 812241 1
## 34369 812242 1
## 34370 812243 1
## 34371 812244 1
## 34372 812245 1
## 34373 812246 1
## 34374 812247 1
## 34375 812248 1
## 34376 812249 1
## 34377 812250 1
## 34378 812251 1
## 34379 812252 1
## 34380 812253 1
## 34381 812254 1
## 34382 812255 1
## 34383 812256 1
## 34384 812257 1
## 34385 812258 1
## 34386 812259 1
## 34387 812260 1
## 34388 812261 1
## 34389 812262 1
## 34390 812263 1
## 34391 812264 1
## 34392 812265 1
## 34393 812266 1
## 34394 812267 1
## 34395 812268 1
## 34396 812269 1
## 34397 812270 1
## 34398 812271 1
## 34399 812272 1
## 34400 812273 1
## 34401 812274 1
## 34402 812275 1
## 34403 812276 1
## 34404 812277 1
## 34405 812278 1
## 34406 812279 1
## 34407 812280 1
## 34408 812281 1
## 34409 812282 1
## 34410 812283 1
## 34411 812284 1
## 34412 812285 1
## 34413 812286 1
## 34414 812287 1
## 34415 812288 1
## 34416 812289 1
## 34417 812290 1
## 34418 812291 1
## 34419 812292 1
## 34420 812293 1
## 34421 812294 1
## 34422 812295 1
## 34423 812296 1
## 34424 812297 1
## 34425 812298 1
## 34426 812299 1
## 34427 812300 1
## 34428 812301 1
## 34429 812302 1
## 34430 812303 1
## 34431 812304 1
## 34432 812305 1
## 34433 812306 1
## 34434 812307 1
## 34435 812308 1
## 34436 812309 1
## 34437 812310 1
## 34438 812311 1
## 34439 812312 1
## 34440 812313 1
## 34441 812314 1
## 34442 812315 1
## 34443 812316 1
## 34444 812317 1
## 34445 812318 1
## 34446 812319 1
## 34447 812320 1
## 34448 812321 1
## 34449 812322 1
## 34450 812323 1
## 34451 812324 1
## 34452 812325 1
## 34453 812326 1
## 34454 812327 1
## 34455 812328 1
## 34456 812329 1
## 34457 812330 1
## 34458 812331 1
## 34459 812332 1
## 34460 812333 1
## 34461 812334 1
## 34462 812335 1
## 34463 812336 1
## 34464 812337 1
## 34465 812338 1
## 34466 812339 1
## 34467 812340 1
## 34468 812341 1
## 34469 812342 1
## 34470 812343 1
## 34471 812344 1
## 34472 812345 1
## 34473 812346 1
## 34474 812347 1
## 34475 812348 1
## 34476 812349 1
## 34477 812350 1
## 34478 812351 1
## 34479 812352 1
## 34480 812353 1
## 34481 812354 1
## 34482 812355 1
## 34483 812356 1
## 34484 812357 1
## 34485 812358 1
## 34486 812359 1
## 34487 812360 1
## 34488 812361 1
## 34489 812362 1
## 34490 812363 1
## 34491 812364 1
## 34492 812365 1
## 34493 812367 1
## 34494 812368 1
## 34495 812369 1
## 34496 812370 1
## 34497 812371 1
## 34498 812372 1
## 34499 812373 1
## 34500 812374 1
## 34501 812375 1
## 34502 812376 1
## 34503 812377 1
## 34504 812378 1
## 34505 812379 1
## 34506 812380 1
## 34507 812381 1
## 34508 812382 1
## 34509 812383 1
## 34510 812384 1
## 34511 812385 1
## 34512 812386 1
## 34513 812387 1
## 34514 812388 1
## 34515 812389 1
## 34516 812390 1
## 34517 812391 1
## 34518 812392 1
## 34519 812393 1
## 34520 812394 1
## 34521 812395 1
## 34522 812396 1
## 34523 812397 1
## 34524 812398 1
## 34525 812399 1
## 34526 812400 1
## 34527 812401 1
## 34528 812402 1
## 34529 812403 1
## 34530 812404 1
## 34531 812405 1
## 34532 812406 1
## 34533 812407 1
## 34534 812408 1
## 34535 812409 1
## 34536 812410 1
## 34537 812411 1
## 34538 812412 1
## 34539 812413 1
## 34540 812414 1
## 34541 812415 1
## 34542 812416 1
## 34543 812417 1
## 34544 812418 1
## 34545 812419 1
## 34546 812420 1
## 34547 812421 1
## 34548 812422 1
## 34549 812423 1
## 34550 812424 1
## 34551 812425 1
## 34552 812426 1
## 34553 812427 1
## 34554 812428 1
## 34555 812429 1
## 34556 812430 1
## 34557 812431 1
## 34558 812432 1
## 34559 812433 1
## 34560 812434 1
## 34561 812435 1
## 34562 812436 1
## 34563 812437 1
## 34564 812438 1
## 34565 812439 1
## 34566 812440 1
## 34567 812441 1
## 34568 812442 1
## 34569 812443 1
## 34570 812444 1
## 34571 812445 1
## 34572 812446 1
## 34573 812447 1
## 34574 812448 1
## 34575 812449 1
## 34576 812450 1
## 34577 812451 1
## 34578 812452 1
## 34579 812453 1
## 34580 812454 1
## 34581 812455 1
## 34582 812456 1
## 34583 812457 1
## 34584 812458 1
## 34585 812459 1
## 34586 812460 1
## 34587 812461 1
## 34588 812462 1
## 34589 812463 1
## 34590 812464 1
## 34591 812466 1
## 34592 812467 1
## 34593 812468 1
## 34594 812469 1
## 34595 812470 1
## 34596 812471 1
## 34597 812472 1
## 34598 812473 1
## 34599 812474 1
## 34600 812475 1
## 34601 812476 1
## 34602 812477 1
## 34603 812478 1
## 34604 812479 1
## 34605 812480 1
## 34606 812481 1
## 34607 812482 1
## 34608 812483 1
## 34609 812484 1
## 34610 812485 1
## 34611 812486 1
## 34612 812487 1
## 34613 812488 1
## 34614 812489 1
## 34615 812490 1
## 34616 812491 1
## 34617 812492 1
## 34618 812493 1
## 34619 812494 1
## 34620 812495 1
## 34621 812496 1
## 34622 812497 1
## 34623 812498 1
## 34624 812499 1
## 34625 812500 1
## 34626 812501 1
## 34627 812502 1
## 34628 812503 1
## 34629 812504 1
## 34630 812505 1
## 34631 812506 1
## 34632 812507 1
## 34633 812508 1
## 34634 812509 1
## 34635 812510 1
## 34636 812511 1
## 34637 812512 1
## 34638 812513 1
## 34639 812514 1
## 34640 812515 1
## 34641 812516 1
## 34642 812517 1
## 34643 812518 1
## 34644 812519 1
## 34645 812520 1
## 34646 812521 1
## 34647 812522 1
## 34648 812523 1
## 34649 812524 1
## 34650 812525 1
## 34651 812526 1
## 34652 812527 1
## 34653 812528 1
## 34654 812529 1
## 34655 812530 1
## 34656 812531 1
## 34657 812532 1
## 34658 812533 1
## 34659 812534 1
## 34660 812535 1
## 34661 812536 1
## 34662 812538 1
## 34663 812539 1
## 34664 812540 1
## 34665 812541 1
## 34666 812542 1
## 34667 812543 1
## 34668 812544 1
## 34669 812545 1
## 34670 812546 1
## 34671 812547 1
## 34672 812548 1
## 34673 812549 1
## 34674 812550 1
## 34675 812551 1
## 34676 812552 1
## 34677 812553 1
## 34678 812554 1
## 34679 812555 1
## 34680 812556 1
## 34681 812557 1
## 34682 812558 1
## 34683 812559 1
## 34684 812560 1
## 34685 812561 1
## 34686 812562 1
## 34687 812563 1
## 34688 812564 1
## 34689 812566 1
## 34690 812567 1
## 34691 812568 1
## 34692 812569 1
## 34693 812570 1
## 34694 812571 1
## 34695 812572 1
## 34696 812573 1
## 34697 812574 1
## 34698 812575 1
## 34699 812576 1
## 34700 812577 1
## 34701 812578 1
## 34702 812579 1
## 34703 812580 1
## 34704 812581 1
## 34705 812582 1
## 34706 812583 1
## 34707 812584 1
## 34708 812585 1
## 34709 812586 1
## 34710 812587 1
## 34711 812588 1
## 34712 812589 1
## 34713 812590 1
## 34714 812591 1
## 34715 812592 1
## 34716 812593 1
## 34717 812594 1
## 34718 812595 1
## 34719 812596 1
## 34720 812597 1
## 34721 812598 1
## 34722 812599 1
## 34723 812600 1
## 34724 812601 1
## 34725 812602 1
## 34726 812603 1
## 34727 812604 1
## 34728 812605 1
## 34729 812606 1
## 34730 812607 1
## 34731 812609 1
## 34732 812610 1
## 34733 812611 1
## 34734 812612 1
## 34735 812613 1
## 34736 812614 1
## 34737 812615 1
## 34738 812616 1
## 34739 812617 1
## 34740 812618 1
## 34741 812619 1
## 34742 812620 1
## 34743 812621 1
## 34744 812622 1
## 34745 812623 1
## 34746 812624 1
## 34747 812625 1
## 34748 812626 1
## 34749 812627 1
## 34750 812628 1
## 34751 812629 1
## 34752 812630 1
## 34753 812631 1
## 34754 812632 1
## 34755 812633 1
## 34756 812634 1
## 34757 812635 1
## 34758 812636 1
## 34759 812637 1
## 34760 812638 1
## 34761 812639 1
## 34762 812640 1
## 34763 812641 1
## 34764 812642 1
## 34765 812643 1
## 34766 812644 1
## 34767 812645 1
## 34768 812646 1
## 34769 812647 1
## 34770 812648 1
## 34771 812649 1
## 34772 812650 1
## 34773 812651 1
## 34774 812652 1
## 34775 812653 1
## 34776 812654 1
## 34777 812655 1
## 34778 812656 1
## 34779 812657 1
## 34780 812658 1
## 34781 812659 1
## 34782 812660 1
## 34783 812661 1
## 34784 812662 1
## 34785 812663 1
## 34786 812664 1
## 34787 812665 1
## 34788 812666 1
## 34789 812667 1
## 34790 812668 1
## 34791 812669 1
## 34792 812670 1
## 34793 812671 1
## 34794 812672 1
## 34795 812673 1
## 34796 812674 1
## 34797 812675 1
## 34798 812676 1
## 34799 812677 1
## 34800 812678 1
## 34801 812679 1
## 34802 812680 1
## 34803 812681 1
## 34804 812682 1
## 34805 812683 1
## 34806 812684 1
## 34807 812685 1
## 34808 812686 1
## 34809 812687 1
## 34810 812688 1
## 34811 812689 1
## 34812 812690 1
## 34813 812691 1
## 34814 812692 1
## 34815 812693 1
## 34816 812694 1
## 34817 812695 1
## 34818 812696 1
## 34819 812697 1
## 34820 812698 1
## 34821 812699 1
## 34822 812700 1
## 34823 812701 1
## 34824 812702 1
## 34825 812703 1
## 34826 812704 1
## 34827 812705 1
## 34828 812706 1
## 34829 812707 1
## 34830 812708 1
## 34831 812709 1
## 34832 812710 1
## 34833 812711 1
## 34834 812712 1
## 34835 812713 1
## 34836 812714 1
## 34837 812715 1
## 34838 812716 1
## 34839 812717 1
## 34840 812718 1
## 34841 812719 1
## 34842 812720 1
## 34843 812721 1
## 34844 812722 1
## 34845 812723 1
## 34846 812724 1
## 34847 812725 1
## 34848 812726 1
## 34849 812727 1
## 34850 812728 1
## 34851 812729 1
## 34852 812730 1
## 34853 812731 1
## 34854 812732 1
## 34855 812733 1
## 34856 812734 1
## 34857 812735 1
## 34858 812736 1
## 34859 812737 1
## 34860 812738 1
## 34861 812739 1
## 34862 812740 1
## 34863 812741 1
## 34864 812742 1
## 34865 812743 1
## 34866 812744 1
## 34867 812745 1
## 34868 812746 1
## 34869 812747 1
## 34870 812748 1
## 34871 812749 1
## 34872 812750 1
## 34873 812751 1
## 34874 812752 1
## 34875 812753 1
## 34876 812754 1
## 34877 812755 1
## 34878 812756 1
## 34879 812757 1
## 34880 812758 1
## 34881 812759 1
## 34882 812760 1
## 34883 812761 1
## 34884 812762 1
## 34885 812763 1
## 34886 812764 1
## 34887 812765 1
## 34888 812766 1
## 34889 812767 1
## 34890 812768 1
## 34891 812769 1
## 34892 812770 1
## 34893 812771 1
## 34894 812772 1
## 34895 812773 1
## 34896 812774 1
## 34897 812775 1
## 34898 812776 1
## 34899 812777 1
## 34900 812778 1
## 34901 812779 1
## 34902 812780 1
## 34903 812781 1
## 34904 812782 1
## 34905 812783 1
## 34906 812784 1
## 34907 812785 1
## 34908 812786 1
## 34909 812787 1
## 34910 812788 1
## 34911 812789 1
## 34912 812790 1
## 34913 812791 1
## 34914 812792 1
## 34915 812793 1
## 34916 812794 1
## 34917 812795 1
## 34918 812797 1
## 34919 812798 1
## 34920 812799 1
## 34921 812800 1
## 34922 812801 1
## 34923 812802 1
## 34924 812803 1
## 34925 812804 1
## 34926 812805 1
## 34927 812806 1
## 34928 812807 1
## 34929 812808 1
## 34930 812809 1
## 34931 812810 1
## 34932 812811 1
## 34933 812812 1
## 34934 812813 1
## 34935 812814 1
## 34936 812815 1
## 34937 812816 1
## 34938 812817 1
## 34939 812818 1
## 34940 812819 1
## 34941 812820 1
## 34942 812821 1
## 34943 812822 1
## 34944 812823 1
## 34945 812824 1
## 34946 812825 1
## 34947 812826 1
## 34948 812827 1
## 34949 812828 1
## 34950 812829 1
## 34951 812830 1
## 34952 812831 1
## 34953 812832 1
## 34954 812833 1
## 34955 812834 1
## 34956 812835 1
## 34957 812836 1
## 34958 812837 1
## 34959 812838 1
## 34960 812839 1
## 34961 812840 1
## 34962 812841 1
## 34963 812842 1
## 34964 812843 1
## 34965 812844 1
## 34966 812845 1
## 34967 812846 1
## 34968 812847 1
## 34969 812848 1
## 34970 812849 1
## 34971 812850 1
## 34972 812851 1
## 34973 812852 1
## 34974 812853 1
## 34975 812854 1
## 34976 812855 1
## 34977 812856 1
## 34978 812857 1
## 34979 812858 1
## 34980 812859 1
## 34981 812860 1
## 34982 812861 1
## 34983 812862 1
## 34984 812863 1
## 34985 812864 1
## 34986 812865 1
## 34987 812866 1
## 34988 812867 1
## 34989 812868 1
## 34990 812869 1
## 34991 812870 1
## 34992 812871 1
## 34993 812872 1
## 34994 812873 1
## 34995 812874 1
## 34996 812875 1
## 34997 812876 1
## 34998 812877 1
## 34999 812878 1
## 35000 812879 1
## 35001 812880 1
## 35002 812881 1
## 35003 812882 1
## 35004 812883 1
## 35005 812884 1
## 35006 812886 1
## 35007 812887 1
## 35008 812888 1
## 35009 812889 1
## 35010 812890 1
## 35011 812891 1
## 35012 812892 1
## 35013 812893 1
## 35014 812894 1
## 35015 812895 1
## 35016 812896 1
## 35017 812897 1
## 35018 812898 1
## 35019 812899 1
## 35020 812900 1
## 35021 812901 1
## 35022 812902 1
## 35023 812903 1
## 35024 812904 1
## 35025 812905 1
## 35026 812906 1
## 35027 812907 1
## 35028 812908 1
## 35029 812910 1
## 35030 812911 1
## 35031 812912 1
## 35032 812913 1
## 35033 812914 1
## 35034 812915 1
## 35035 812916 1
## 35036 812917 1
## 35037 812918 1
## 35038 812919 1
## 35039 812920 1
## 35040 812921 1
## 35041 812922 1
## 35042 812923 1
## 35043 812924 1
## 35044 812925 1
## 35045 812926 1
## 35046 812927 1
## 35047 812928 1
## 35048 812929 1
## 35049 812930 1
## 35050 812931 1
## 35051 812932 1
## 35052 812933 1
## 35053 812934 1
## 35054 812935 1
## 35055 812936 1
## 35056 812937 1
## 35057 812938 1
## 35058 812939 1
## 35059 812940 1
## 35060 812941 1
## 35061 812942 1
## 35062 812943 1
## 35063 812944 1
## 35064 812945 1
## 35065 812946 1
## 35066 812947 1
## 35067 812948 1
## 35068 812949 1
## 35069 812950 1
## 35070 812951 1
## 35071 812952 1
## 35072 812953 1
## 35073 812954 1
## 35074 812955 1
## 35075 812956 1
## 35076 812957 1
## 35077 812958 1
## 35078 812959 1
## 35079 812960 1
## 35080 812961 1
## 35081 812962 1
## 35082 812963 1
## 35083 812964 1
## 35084 812965 1
## 35085 812966 1
## 35086 812967 1
## 35087 812968 1
## 35088 812970 1
## 35089 812971 1
## 35090 812972 1
## 35091 812973 1
## 35092 812974 1
## 35093 812975 1
## 35094 812976 1
## 35095 812977 1
## 35096 812978 1
## 35097 812979 1
## 35098 812980 1
## 35099 812981 1
## 35100 812982 1
## 35101 812983 1
## 35102 812984 1
## 35103 812985 1
## 35104 812986 1
## 35105 812987 1
## 35106 812988 1
## 35107 812989 1
## 35108 812990 1
## 35109 812991 1
## 35110 812992 1
## 35111 812993 1
## 35112 812994 1
## 35113 812995 1
## 35114 812996 1
## 35115 812997 1
## 35116 812998 1
## 35117 812999 1
## 35118 813000 1
## 35119 813001 1
## 35120 813002 1
## 35121 813003 1
## 35122 813004 1
## 35123 813005 1
## 35124 813006 1
## 35125 813007 1
## 35126 813008 1
## 35127 813009 1
## 35128 813010 1
## 35129 813011 1
## 35130 813012 1
## 35131 813013 1
## 35132 813014 1
## 35133 813015 1
## 35134 813016 1
## 35135 813017 1
## 35136 813018 1
## 35137 813019 1
## 35138 813020 1
## 35139 813021 1
## 35140 813022 1
## 35141 813023 1
## 35142 813024 1
## 35143 813025 1
## 35144 813026 1
## 35145 813027 1
## 35146 813028 1
## 35147 813029 1
## 35148 813030 1
## 35149 813031 1
## 35150 813032 1
## 35151 813033 1
## 35152 813034 1
## 35153 813035 1
## 35154 813036 1
## 35155 813037 1
## 35156 813038 1
## 35157 813039 1
## 35158 813040 1
## 35159 813041 1
## 35160 813042 1
## 35161 813043 1
## 35162 813044 1
## 35163 813045 1
## 35164 813046 1
## 35165 813047 1
## 35166 813048 1
## 35167 813049 1
## 35168 813050 1
## 35169 813051 1
## 35170 813052 1
## 35171 813053 1
## 35172 813054 1
## 35173 813055 1
## 35174 813056 1
## 35175 813057 1
## 35176 813058 1
## 35177 813059 1
## 35178 813060 1
## 35179 813061 1
## 35180 813062 1
## 35181 813063 1
## 35182 813064 1
## 35183 813065 1
## 35184 813066 1
## 35185 813067 1
## 35186 813068 1
## 35187 813069 1
## 35188 813070 1
## 35189 813071 1
## 35190 813072 1
## 35191 813073 1
## 35192 813074 1
## 35193 813075 1
## 35194 813076 1
## 35195 813077 1
## 35196 813078 1
## 35197 813079 1
## 35198 813080 1
## 35199 813081 1
## 35200 813082 1
## 35201 813083 1
## 35202 813084 1
## 35203 813085 1
## 35204 813086 1
## 35205 813087 1
## 35206 813088 1
## 35207 813089 1
## 35208 813090 1
## 35209 813091 1
## 35210 813092 1
## 35211 813093 1
## 35212 813094 1
## 35213 813095 1
## 35214 813096 1
## 35215 813097 1
## 35216 813098 1
## 35217 813099 1
## 35218 813100 1
## 35219 813102 1
## 35220 813103 1
## 35221 813104 1
## 35222 813105 1
## 35223 813106 1
## 35224 813107 1
## 35225 813108 1
## 35226 813109 1
## 35227 813110 1
## 35228 813111 1
## 35229 813112 1
## 35230 813113 1
## 35231 813114 1
## 35232 813115 1
## 35233 813116 1
## 35234 813117 1
## 35235 813118 1
## 35236 813119 1
## 35237 813120 1
## 35238 813121 1
## 35239 813122 1
## 35240 813123 1
## 35241 813124 1
## 35242 813125 1
## 35243 813126 1
## 35244 813127 1
## 35245 813128 1
## 35246 813129 1
## 35247 813130 1
## 35248 813131 1
## 35249 813132 1
## 35250 813133 1
## 35251 813134 1
## 35252 813135 1
## 35253 813136 1
## 35254 813137 1
## 35255 813138 1
## 35256 813139 1
## 35257 813140 1
## 35258 813141 1
## 35259 813142 1
## 35260 813143 1
## 35261 813144 1
## 35262 813145 1
## 35263 813146 1
## 35264 813147 1
## 35265 813148 1
## 35266 813149 1
## 35267 813150 1
## 35268 813151 1
## 35269 813152 1
## 35270 813153 1
## 35271 813154 1
## 35272 813155 1
## 35273 813156 1
## 35274 813157 1
## 35275 813158 1
## 35276 813159 1
## 35277 813160 1
## 35278 813161 1
## 35279 813162 1
## 35280 813163 1
## 35281 813164 1
## 35282 813165 1
## 35283 813166 1
## 35284 813167 1
## 35285 813168 1
## 35286 813169 1
## 35287 813170 1
## 35288 813171 1
## 35289 813172 1
## 35290 813173 1
## 35291 813174 1
## 35292 813175 1
## 35293 813176 1
## 35294 813177 1
## 35295 813178 1
## 35296 813179 1
## 35297 813180 1
## 35298 813181 1
## 35299 813182 1
## 35300 813183 1
## 35301 813184 1
## 35302 813185 1
## 35303 813186 1
## 35304 813187 1
## 35305 813188 1
## 35306 813189 1
## 35307 813190 1
## 35308 813191 1
## 35309 813192 1
## 35310 813193 1
## 35311 813194 1
## 35312 813195 1
## 35313 813196 1
## 35314 813197 1
## 35315 813198 1
## 35316 813199 1
## 35317 813200 1
## 35318 813201 1
## 35319 813202 1
## 35320 813203 1
## 35321 813204 1
## 35322 813205 1
## 35323 813206 1
## 35324 813207 1
## 35325 813208 1
## 35326 813209 1
## 35327 813210 1
## 35328 813211 1
## 35329 813212 1
## 35330 813213 1
## 35331 813214 1
## 35332 813215 1
## 35333 813216 1
## 35334 813217 1
## 35335 813218 1
## 35336 813219 1
## 35337 813220 1
## 35338 813221 1
## 35339 813222 1
## 35340 813223 1
## 35341 813224 1
## 35342 813225 1
## 35343 813226 1
## 35344 813227 1
## 35345 813228 1
## 35346 813229 1
## 35347 813230 1
## 35348 813231 1
## 35349 813232 1
## 35350 813233 1
## 35351 813234 1
## 35352 813235 1
## 35353 813236 1
## 35354 813237 1
## 35355 813238 1
## 35356 813239 1
## 35357 813240 1
## 35358 813241 1
## 35359 813242 1
## 35360 813243 1
## 35361 813244 1
## 35362 813245 1
## 35363 813246 1
## 35364 813247 1
## 35365 813248 1
## 35366 813249 1
## 35367 813250 1
## 35368 813251 1
## 35369 813252 1
## 35370 813253 1
## 35371 813254 1
## 35372 813255 1
## 35373 813256 1
## 35374 813257 1
## 35375 813258 1
## 35376 813259 1
## 35377 813260 1
## 35378 813261 1
## 35379 813262 1
## 35380 813263 1
## 35381 813264 1
## 35382 813265 1
## 35383 813266 1
## 35384 813267 1
## 35385 813268 1
## 35386 813269 1
## 35387 813270 1
## 35388 813271 1
## 35389 813272 1
## 35390 813273 1
## 35391 813274 1
## 35392 813275 1
## 35393 813276 1
## 35394 813277 1
## 35395 813278 1
## 35396 813279 1
## 35397 813280 1
## 35398 813281 1
## 35399 813282 1
## 35400 813283 1
## 35401 813284 1
## 35402 813285 1
## 35403 813286 1
## 35404 813287 1
## 35405 813288 1
## 35406 813289 1
## 35407 813290 1
## 35408 813291 1
## 35409 813292 1
## 35410 813293 1
## 35411 813294 1
## 35412 813295 1
## 35413 813296 1
## 35414 813297 1
## 35415 813298 1
## 35416 813299 1
## 35417 813300 1
## 35418 813301 1
## 35419 813302 1
## 35420 813303 1
## 35421 813304 1
## 35422 813305 1
## 35423 813306 1
## 35424 813307 1
## 35425 813308 1
## 35426 813309 1
## 35427 813310 1
## 35428 813311 1
## 35429 813312 1
## 35430 813313 1
## 35431 813314 1
## 35432 813315 1
## 35433 813316 1
## 35434 813317 1
## 35435 813318 1
## 35436 813319 1
## 35437 813320 1
## 35438 813321 1
## 35439 813322 1
## 35440 813323 1
## 35441 813324 1
## 35442 813325 1
## 35443 813326 1
## 35444 813327 1
## 35445 813328 1
## 35446 813329 1
## 35447 813330 1
## 35448 813331 1
## 35449 813332 1
## 35450 813333 1
## 35451 813334 1
## 35452 813335 1
## 35453 813336 1
## 35454 813337 1
## 35455 813338 1
## 35456 813339 1
## 35457 813340 1
## 35458 813341 1
## 35459 813342 1
## 35460 813343 1
## 35461 813344 1
## 35462 813345 1
## 35463 813346 1
## 35464 813347 1
## 35465 813348 1
## 35466 813349 1
## 35467 813350 1
## 35468 813351 1
## 35469 813352 1
## 35470 813353 1
## 35471 813354 1
## 35472 813355 1
## 35473 813356 1
## 35474 813357 1
## 35475 813358 1
## 35476 813359 1
## 35477 813360 1
## 35478 813361 1
## 35479 813362 1
## 35480 813363 1
## 35481 813364 1
## 35482 813365 1
## 35483 813366 1
## 35484 813367 1
## 35485 813368 1
## 35486 813369 1
## 35487 813370 1
## 35488 813371 1
## 35489 813372 1
## 35490 813373 1
## 35491 813374 1
## 35492 813375 1
## 35493 813376 1
## 35494 813377 1
## 35495 813378 1
## 35496 813379 1
## 35497 813380 1
## 35498 813381 1
## 35499 813382 1
## 35500 813383 1
## 35501 813384 1
## 35502 813385 1
## 35503 813386 1
## 35504 813387 1
## 35505 813388 1
## 35506 813389 1
## 35507 813390 1
## 35508 813391 1
## 35509 813392 1
## 35510 813393 1
## 35511 813394 1
## 35512 813395 1
## 35513 813396 1
## 35514 813397 1
## 35515 813398 1
## 35516 813399 1
## 35517 813400 1
## 35518 813401 1
## 35519 813402 1
## 35520 813403 1
## 35521 813404 1
## 35522 813405 1
## 35523 813406 1
## 35524 813407 1
## 35525 813408 1
## 35526 813409 1
## 35527 813410 1
## 35528 813411 1
## 35529 813412 1
## 35530 813413 1
## 35531 813414 1
## 35532 813415 1
## 35533 813416 1
## 35534 813417 1
## 35535 813418 1
## 35536 813419 1
## 35537 813420 1
## 35538 813421 1
## 35539 813422 1
## 35540 813423 1
## 35541 813424 1
## 35542 813425 1
## 35543 813426 1
## 35544 813427 1
## 35545 813428 1
## 35546 813429 1
## 35547 813430 1
## 35548 813431 1
## 35549 813432 1
## 35550 813433 1
## 35551 813434 1
## 35552 813435 1
## 35553 813436 1
## 35554 813437 1
## 35555 813438 1
## 35556 813439 1
## 35557 813440 1
## 35558 813441 1
## 35559 813442 1
## 35560 813443 1
## 35561 813444 1
## 35562 813445 1
## 35563 813446 1
## 35564 813447 1
## 35565 813448 1
## 35566 813449 1
## 35567 813451 1
## 35568 813452 1
## 35569 813453 1
## 35570 813454 1
## 35571 813455 1
## 35572 813456 1
## 35573 813457 1
## 35574 813458 1
## 35575 813459 1
## 35576 813460 1
## 35577 813461 1
## 35578 813462 1
## 35579 813464 1
## 35580 813465 1
## 35581 813466 1
## 35582 813467 1
## 35583 813468 1
## 35584 813469 1
## 35585 813470 1
## 35586 813471 1
## 35587 813472 1
## 35588 813473 1
## 35589 813474 1
## 35590 813475 1
## 35591 813476 1
## 35592 813477 1
## 35593 813478 1
## 35594 813479 1
## 35595 813480 1
## 35596 813481 1
## 35597 813482 1
## 35598 813483 1
## 35599 813484 1
## 35600 813485 1
## 35601 813486 1
## 35602 813487 1
## 35603 813488 1
## 35604 813489 1
## 35605 813490 1
## 35606 813491 1
## 35607 813492 1
## 35608 813493 1
## 35609 813494 1
## 35610 813495 1
## 35611 813496 1
## 35612 813497 1
## 35613 813498 1
## 35614 813499 1
## 35615 813500 1
## 35616 813501 1
## 35617 813502 1
## 35618 813503 1
## 35619 813504 1
## 35620 813505 1
## 35621 813506 1
## 35622 813507 1
## 35623 813508 1
## 35624 813509 1
## 35625 813510 1
## 35626 813511 1
## 35627 813512 1
## 35628 813513 1
## 35629 813514 1
## 35630 813515 1
## 35631 813516 1
## 35632 813517 1
## 35633 813518 1
## 35634 813519 1
## 35635 813520 1
## 35636 813521 1
## 35637 813522 1
## 35638 813523 1
## 35639 813524 1
## 35640 813525 1
## 35641 813526 1
## 35642 813527 1
## 35643 813528 1
## 35644 813529 1
## 35645 813530 1
## 35646 813531 1
## 35647 813532 1
## 35648 813533 1
## 35649 813534 1
## 35650 813535 1
## 35651 813536 1
## 35652 813537 1
## 35653 813538 1
## 35654 813539 1
## 35655 813540 1
## 35656 813541 1
## 35657 813542 1
## 35658 813543 1
## 35659 813544 1
## 35660 813545 1
## 35661 813546 1
## 35662 813547 1
## 35663 813548 1
## 35664 813549 1
## 35665 813550 1
## 35666 813551 1
## 35667 813552 1
## 35668 813553 1
## 35669 813554 1
## 35670 813555 1
## 35671 813556 1
## 35672 813557 1
## 35673 813558 1
## 35674 813559 1
## 35675 813560 1
## 35676 813561 1
## 35677 813562 1
## 35678 813563 1
## 35679 813564 1
## 35680 813565 1
## 35681 813566 1
## 35682 813567 1
## 35683 813568 1
## 35684 813569 1
## 35685 813570 1
## 35686 813571 1
## 35687 813572 1
## 35688 813573 1
## 35689 813574 1
## 35690 813575 1
## 35691 813576 1
## 35692 813577 1
## 35693 813578 1
## 35694 813579 1
## 35695 813580 1
## 35696 813581 1
## 35697 813582 1
## 35698 813583 1
## 35699 813584 1
## 35700 813585 1
## 35701 813586 1
## 35702 813587 1
## 35703 813588 1
## 35704 813589 1
## 35705 813591 1
## 35706 813592 1
## 35707 813593 1
## 35708 813594 1
## 35709 813595 1
## 35710 813596 1
## 35711 813597 1
## 35712 813598 1
## 35713 813599 1
## 35714 813600 1
## 35715 813601 1
## 35716 813602 1
## 35717 813603 1
## 35718 813604 1
## 35719 813605 1
## 35720 813606 1
## 35721 813607 1
## 35722 813608 1
## 35723 813609 1
## 35724 813610 1
## 35725 813611 1
## 35726 813612 1
## 35727 813613 1
## 35728 813614 1
## 35729 813615 1
## 35730 813616 1
## 35731 813617 1
## 35732 813618 1
## 35733 813619 1
## 35734 813620 1
## 35735 813621 1
## 35736 813622 1
## 35737 813623 1
## 35738 813624 1
## 35739 813625 1
## 35740 813626 1
## 35741 813627 1
## 35742 813628 1
## 35743 813629 1
## 35744 813630 1
## 35745 813631 1
## 35746 813632 1
## 35747 813633 1
## 35748 813634 1
## 35749 813635 1
## 35750 813636 1
## 35751 813637 1
## 35752 813638 1
## 35753 813639 1
## 35754 813640 1
## 35755 813641 1
## 35756 813642 1
## 35757 813643 1
## 35758 813644 1
## 35759 813645 1
## 35760 813646 1
## 35761 813647 1
## 35762 813648 1
## 35763 813649 1
## 35764 813650 1
## 35765 813651 1
## 35766 813652 1
## 35767 813653 1
## 35768 813654 1
## 35769 813655 1
## 35770 813656 1
## 35771 813657 1
## 35772 813658 1
## 35773 813659 1
## 35774 813660 1
## 35775 813661 1
## 35776 813662 1
## 35777 813663 1
## 35778 813664 1
## 35779 813665 1
## 35780 813666 1
## 35781 813667 1
## 35782 813668 1
## 35783 813669 1
## 35784 813670 1
## 35785 813671 1
## 35786 813672 1
## 35787 813673 1
## 35788 813674 1
## 35789 813675 1
## 35790 813676 1
## 35791 813677 1
## 35792 813678 1
## 35793 813679 1
## 35794 813680 1
## 35795 813681 1
## 35796 813682 1
## 35797 813683 1
## 35798 813684 1
## 35799 813685 1
## 35800 813686 1
## 35801 813687 1
## 35802 813688 1
## 35803 813689 1
## 35804 813690 1
## 35805 813691 1
## 35806 813692 1
## 35807 813693 1
## 35808 813694 1
## 35809 813695 1
## 35810 813696 1
## 35811 813697 1
## 35812 813698 1
## 35813 813699 1
## 35814 813700 1
## 35815 813701 1
## 35816 813702 1
## 35817 813703 1
## 35818 813704 1
## 35819 813705 1
## 35820 813707 1
## 35821 813708 1
## 35822 813709 1
## 35823 813710 1
## 35824 813711 1
## 35825 813712 1
## 35826 813713 1
## 35827 813714 1
## 35828 813715 1
## 35829 813716 1
## 35830 813717 1
## 35831 813718 1
## 35832 813719 1
## 35833 813720 1
## 35834 813721 1
## 35835 813722 1
## 35836 813723 1
## 35837 813724 1
## 35838 813725 1
## 35839 813726 1
## 35840 813727 1
## 35841 813728 1
## 35842 813729 1
## 35843 813730 1
## 35844 813731 1
## 35845 813732 1
## 35846 813733 1
## 35847 813734 1
## 35848 813735 1
## 35849 813736 1
## 35850 813737 1
## 35851 813738 1
## 35852 813739 1
## 35853 813740 1
## 35854 813741 1
## 35855 813742 1
## 35856 813743 1
## 35857 813744 1
## 35858 813745 1
## 35859 813746 1
## 35860 813747 1
## 35861 813748 1
## 35862 813749 1
## 35863 813750 1
## 35864 813751 1
## 35865 813752 1
## 35866 813753 1
## 35867 813754 1
## 35868 813755 1
## 35869 813756 1
## 35870 813757 1
## 35871 813758 1
## 35872 813759 1
## 35873 813760 1
## 35874 813761 1
## 35875 813762 1
## 35876 813763 1
## 35877 813764 1
## 35878 813765 1
## 35879 813766 1
## 35880 813767 1
## 35881 813768 1
## 35882 813769 1
## 35883 813770 1
## 35884 813771 1
## 35885 813772 1
## 35886 813773 1
## 35887 813774 1
## 35888 813775 1
## 35889 813776 1
## 35890 813777 1
## 35891 813778 1
## 35892 813779 1
## 35893 813780 1
## 35894 813781 1
## 35895 813782 1
## 35896 813783 1
## 35897 813784 1
## 35898 813785 1
## 35899 813786 1
## 35900 813787 1
## 35901 813788 1
## 35902 813789 1
## 35903 813790 1
## 35904 813791 1
## 35905 813792 1
## 35906 813793 1
## 35907 813794 1
## 35908 813795 1
## 35909 813796 1
## 35910 813797 1
## 35911 813798 1
## 35912 813799 1
## 35913 813800 1
## 35914 813801 1
## 35915 813802 1
## 35916 813803 1
## 35917 813804 1
## 35918 813805 1
## 35919 813806 1
## 35920 813807 1
## 35921 813808 1
## 35922 813809 1
## 35923 813810 1
## 35924 813811 1
## 35925 813812 1
## 35926 813813 1
## 35927 813814 1
## 35928 813815 1
## 35929 813816 1
## 35930 813817 1
## 35931 813818 1
## 35932 813819 1
## 35933 813820 1
## 35934 813821 1
## 35935 813822 1
## 35936 813823 1
## 35937 813824 1
## 35938 813825 1
## 35939 813826 1
## 35940 813828 1
## 35941 813829 1
## 35942 813830 1
## 35943 813831 1
## 35944 813832 1
## 35945 813833 1
## 35946 813834 1
## 35947 813835 1
## 35948 813836 1
## 35949 813837 1
## 35950 813838 1
## 35951 813839 1
## 35952 813840 1
## 35953 813841 1
## 35954 813842 1
## 35955 813843 1
## 35956 813844 1
## 35957 813845 1
## 35958 813846 1
## 35959 813847 1
## 35960 813848 1
## 35961 813849 1
## 35962 813850 1
## 35963 813851 1
## 35964 813852 1
## 35965 813853 1
## 35966 813854 1
## 35967 813855 1
## 35968 813856 1
## 35969 813857 1
## 35970 813858 1
## 35971 813859 1
## 35972 813860 1
## 35973 813861 1
## 35974 813862 1
## 35975 813863 1
## 35976 813864 1
## 35977 813866 1
## 35978 813867 1
## 35979 813868 1
## 35980 813869 1
## 35981 813870 1
## 35982 813871 1
## 35983 813872 1
## 35984 813873 1
## 35985 813874 1
## 35986 813875 1
## 35987 813876 1
## 35988 813877 1
## 35989 813878 1
## 35990 813879 1
## 35991 813880 1
## 35992 813881 1
## 35993 813882 1
## 35994 813883 1
## 35995 813884 1
## 35996 813885 1
## 35997 813886 1
## 35998 813887 1
## 35999 813888 1
## 36000 813889 1
## 36001 813890 1
## 36002 813891 1
## 36003 813892 1
## 36004 813893 1
## 36005 813894 1
## 36006 813895 1
## 36007 813896 1
## 36008 813897 1
## 36009 813898 1
## 36010 813899 1
## 36011 813900 1
## 36012 813901 1
## 36013 813902 1
## 36014 813903 1
## 36015 813904 1
## 36016 813905 1
## 36017 813906 1
## 36018 813907 1
## 36019 813908 1
## 36020 813909 1
## 36021 813910 1
## 36022 813911 1
## 36023 813912 1
## 36024 813913 1
## 36025 813914 1
## 36026 813915 1
## 36027 813916 1
## 36028 813917 1
## 36029 813918 1
## 36030 813919 1
## 36031 813920 1
## 36032 813921 1
## 36033 813922 1
## 36034 813923 1
## 36035 813924 1
## 36036 813925 1
## 36037 813926 1
## 36038 813927 1
## 36039 813928 1
## 36040 813929 1
## 36041 813930 1
## 36042 813931 1
## 36043 813932 1
## 36044 813933 1
## 36045 813934 1
## 36046 813935 1
## 36047 813936 1
## 36048 813937 1
## 36049 813938 1
## 36050 813939 1
## 36051 813940 1
## 36052 813941 1
## 36053 813942 1
## 36054 813943 1
## 36055 813944 1
## 36056 813945 1
## 36057 813946 1
## 36058 813947 1
## 36059 813948 1
## 36060 813949 1
## 36061 813950 1
## 36062 813951 1
## 36063 813952 1
## 36064 813953 1
## 36065 813954 1
## 36066 813955 1
## 36067 813956 1
## 36068 813957 1
## 36069 813958 1
## 36070 813959 1
## 36071 813960 1
## 36072 813961 1
## 36073 813962 1
## 36074 813963 1
## 36075 813964 1
## 36076 813965 1
## 36077 813966 1
## 36078 813967 1
## 36079 813968 1
## 36080 813969 1
## 36081 813970 1
## 36082 813971 1
## 36083 813972 1
## 36084 813973 1
## 36085 813974 1
## 36086 813975 1
## 36087 813976 1
## 36088 813977 1
## 36089 813978 1
## 36090 813979 1
## 36091 813980 1
## 36092 813981 1
## 36093 813982 1
## 36094 813983 1
## 36095 813984 1
## 36096 813985 1
## 36097 813986 1
## 36098 813987 1
## 36099 813988 1
## 36100 813989 1
## 36101 813990 1
## 36102 813991 1
## 36103 813992 1
## 36104 813993 1
## 36105 813994 1
## 36106 813995 1
## 36107 813996 1
## 36108 813997 1
## 36109 813998 1
## 36110 813999 1
## 36111 814000 1
## 36112 814001 1
## 36113 814002 1
## 36114 814004 1
## 36115 814005 1
## 36116 814006 1
## 36117 814007 1
## 36118 814008 1
## 36119 814009 1
## 36120 814010 1
## 36121 814011 1
## 36122 814012 1
## 36123 814013 1
## 36124 814014 1
## 36125 814015 1
## 36126 814016 1
## 36127 814017 1
## 36128 814018 1
## 36129 814019 1
## 36130 814020 1
## 36131 814021 1
## 36132 814022 1
## 36133 814023 1
## 36134 814024 1
## 36135 814025 1
## 36136 814026 1
## 36137 814027 1
## 36138 814028 1
## 36139 814029 1
## 36140 814031 1
## 36141 814032 1
## 36142 814033 1
## 36143 814034 1
## 36144 814035 1
## 36145 814036 1
## 36146 814037 1
## 36147 814038 1
## 36148 814039 1
## 36149 814040 1
## 36150 814041 1
## 36151 814042 1
## 36152 814043 1
## 36153 814044 1
## 36154 814045 1
## 36155 814046 1
## 36156 814047 1
## 36157 814048 1
## 36158 814049 1
## 36159 814050 1
## 36160 814051 1
## 36161 814052 1
## 36162 814053 1
## 36163 814054 1
## 36164 814055 1
## 36165 814056 1
## 36166 814057 1
## 36167 814058 1
## 36168 814059 1
## 36169 814060 1
## 36170 814061 1
## 36171 814062 1
## 36172 814063 1
## 36173 814064 1
## 36174 814065 1
## 36175 814066 1
## 36176 814067 1
## 36177 814068 1
## 36178 814069 1
## 36179 814070 1
## 36180 814071 1
## 36181 814072 1
## 36182 814073 1
## 36183 814074 1
## 36184 814075 1
## 36185 814076 1
## 36186 814077 1
## 36187 814078 1
## 36188 814079 1
## 36189 814080 1
## 36190 814081 1
## 36191 814082 1
## 36192 814083 1
## 36193 814084 1
## 36194 814085 1
## 36195 814086 1
## 36196 814087 1
## 36197 814088 1
## 36198 814089 1
## 36199 814090 1
## 36200 814091 1
## 36201 814092 1
## 36202 814093 1
## 36203 814094 1
## 36204 814095 1
## 36205 814096 1
## 36206 814097 1
## 36207 814098 1
## 36208 814099 1
## 36209 814100 1
## 36210 814101 1
## 36211 814102 1
## 36212 814103 1
## 36213 814104 1
## 36214 814105 1
## 36215 814106 1
## 36216 814107 1
## 36217 814108 1
## 36218 814109 1
## 36219 814110 1
## 36220 814111 1
## 36221 814112 1
## 36222 814113 1
## 36223 814114 1
## 36224 814115 1
## 36225 814116 1
## 36226 814117 1
## 36227 814118 1
## 36228 814119 1
## 36229 814120 1
## 36230 814121 1
## 36231 814122 1
## 36232 814123 1
## 36233 814124 1
## 36234 814125 1
## 36235 814126 1
## 36236 814127 1
## 36237 814128 1
## 36238 814129 1
## 36239 814130 1
## 36240 814131 1
## 36241 814132 1
## 36242 814133 1
## 36243 814134 1
## 36244 814135 1
## 36245 814136 1
## 36246 814137 1
## 36247 814138 1
## 36248 814139 1
## 36249 814140 1
## 36250 814141 1
## 36251 814142 1
## 36252 814143 1
## 36253 814144 1
## 36254 814145 1
## 36255 814146 1
## 36256 814147 1
## 36257 814148 1
## 36258 814149 1
## 36259 814150 1
## 36260 814151 1
## 36261 814152 1
## 36262 814153 1
## 36263 814154 1
## 36264 814155 1
## 36265 814156 1
## 36266 814157 1
## 36267 814158 1
## 36268 814159 1
## 36269 814160 1
## 36270 814161 1
## 36271 814162 1
## 36272 814163 1
## 36273 814164 1
## 36274 814165 1
## 36275 814166 1
## 36276 814167 1
## 36277 814168 1
## 36278 814169 1
## 36279 814170 1
## 36280 814171 1
## 36281 814172 1
## 36282 814173 1
## 36283 814174 1
## 36284 814175 1
## 36285 814176 1
## 36286 814177 1
## 36287 814178 1
## 36288 814179 1
## 36289 814180 1
## 36290 814181 1
## 36291 814182 1
## 36292 814183 1
## 36293 814184 1
## 36294 814185 1
## 36295 814186 1
## 36296 814187 1
## 36297 814188 1
## 36298 814189 1
## 36299 814190 1
## 36300 814191 1
## 36301 814192 1
## 36302 814193 1
## 36303 814194 1
## 36304 814195 1
## 36305 814196 1
## 36306 814197 1
## 36307 814198 1
## 36308 814199 1
## 36309 814200 1
## 36310 814201 1
## 36311 814202 1
## 36312 814203 1
## 36313 814204 1
## 36314 814206 1
## 36315 814207 1
## 36316 814208 1
## 36317 814209 1
## 36318 814210 1
## 36319 814211 1
## 36320 814212 1
## 36321 814213 1
## 36322 814214 1
## 36323 814215 1
## 36324 814216 1
## 36325 814217 1
## 36326 814218 1
## 36327 814219 1
## 36328 814220 1
## 36329 814221 1
## 36330 814222 1
## 36331 814223 1
## 36332 814224 1
## 36333 814225 1
## 36334 814226 1
## 36335 814227 1
## 36336 814228 1
## 36337 814229 1
## 36338 814230 1
## 36339 814231 1
## 36340 814232 1
## 36341 814233 1
## 36342 814234 1
## 36343 814235 1
## 36344 814236 1
## 36345 814237 1
## 36346 814238 1
## 36347 814239 1
## 36348 814240 1
## 36349 814241 1
## 36350 814242 1
## 36351 814243 1
## 36352 814244 1
## 36353 814245 1
## 36354 814246 1
## 36355 814247 1
## 36356 814248 1
## 36357 814249 1
## 36358 814250 1
## 36359 814251 1
## 36360 814252 1
## 36361 814253 1
## 36362 814254 1
## 36363 814255 1
## 36364 814256 1
## 36365 814258 1
## 36366 814259 1
## 36367 814260 1
## 36368 814261 1
## 36369 814262 1
## 36370 814263 1
## 36371 814264 1
## 36372 814265 1
## 36373 814266 1
## 36374 814268 1
## 36375 814269 1
## 36376 814270 1
## 36377 814271 1
## 36378 814272 1
## 36379 814273 1
## 36380 814274 1
## 36381 814275 1
## 36382 814276 1
## 36383 814277 1
## 36384 814278 1
## 36385 814279 1
## 36386 814280 1
## 36387 814281 1
## 36388 814282 1
## 36389 814283 1
## 36390 814284 1
## 36391 814285 1
## 36392 814286 1
## 36393 814287 1
## 36394 814288 1
## 36395 814289 1
## 36396 814290 1
## 36397 814291 1
## 36398 814292 1
## 36399 814293 1
## 36400 814294 1
## 36401 814295 1
## 36402 814296 1
## 36403 814297 1
## 36404 814298 1
## 36405 814299 1
## 36406 814300 1
## 36407 814301 1
## 36408 814302 1
## 36409 814303 1
## 36410 814304 1
## 36411 814305 1
## 36412 814306 1
## 36413 814307 1
## 36414 814308 1
## 36415 814309 1
## 36416 814310 1
## 36417 814311 1
## 36418 814312 1
## 36419 814313 1
## 36420 814314 1
## 36421 814315 1
## 36422 814316 1
## 36423 814317 1
## 36424 814318 1
## 36425 814319 1
## 36426 814320 1
## 36427 814321 1
## 36428 814322 1
## 36429 814323 1
## 36430 814324 1
## 36431 814325 1
## 36432 814326 1
## 36433 814327 1
## 36434 814328 1
## 36435 814329 1
## 36436 814330 1
## 36437 814331 1
## 36438 814332 1
## 36439 814333 1
## 36440 814334 1
## 36441 814335 1
## 36442 814336 1
## 36443 814337 1
## 36444 814338 1
## 36445 814339 1
## 36446 814340 1
## 36447 814341 1
## 36448 814342 1
## 36449 814343 1
## 36450 814344 1
## 36451 814345 1
## 36452 814347 1
## 36453 814349 1
## 36454 814350 1
## 36455 814351 1
## 36456 814352 1
## 36457 814353 1
## 36458 814354 1
## 36459 814355 1
## 36460 814356 1
## 36461 814357 1
## 36462 814358 1
## 36463 814359 1
## 36464 814360 1
## 36465 814361 1
## 36466 814362 1
## 36467 814363 1
## 36468 814364 1
## 36469 814365 1
## 36470 814366 1
## 36471 814367 1
## 36472 814368 1
## 36473 814369 1
## 36474 814370 1
## 36475 814371 1
## 36476 814372 1
## 36477 814373 1
## 36478 814374 1
## 36479 814375 1
## 36480 814376 1
## 36481 814377 1
## 36482 814378 1
## 36483 814379 1
## 36484 814380 1
## 36485 814381 1
## 36486 814382 1
## 36487 814383 1
## 36488 814384 1
## 36489 814385 1
## 36490 814386 1
## 36491 814387 1
## 36492 814388 1
## 36493 814389 1
## 36494 814390 1
## 36495 814391 1
## 36496 814392 1
## 36497 814393 1
## 36498 814394 1
## 36499 814395 1
## 36500 814396 1
## 36501 814397 1
## 36502 814398 1
## 36503 814399 1
## 36504 814400 1
## 36505 814401 1
## 36506 814402 1
## 36507 814403 1
## 36508 814404 1
## 36509 814405 1
## 36510 814406 1
## 36511 814407 1
## 36512 814408 1
## 36513 814409 1
## 36514 814410 1
## 36515 814411 1
## 36516 814412 1
## 36517 814413 1
## 36518 814414 1
## 36519 814415 1
## 36520 814416 1
## 36521 814417 1
## 36522 814418 1
## 36523 814419 1
## 36524 814420 1
## 36525 814421 1
## 36526 814422 1
## 36527 814423 1
## 36528 814424 1
## 36529 814425 1
## 36530 814426 1
## 36531 814427 1
## 36532 814428 1
## 36533 814429 1
## 36534 814431 1
## 36535 814432 1
## 36536 814433 1
## 36537 814434 1
## 36538 814435 1
## 36539 814436 1
## 36540 814437 1
## 36541 814438 1
## 36542 814439 1
## 36543 814440 1
## 36544 814441 1
## 36545 814442 1
## 36546 814443 1
## 36547 814444 1
## 36548 814445 1
## 36549 814446 1
## 36550 814447 1
## 36551 814448 1
## 36552 814449 1
## 36553 814450 1
## 36554 814451 1
## 36555 814452 1
## 36556 814453 1
## 36557 814454 1
## 36558 814455 1
## 36559 814456 1
## 36560 814457 1
## 36561 814458 1
## 36562 814459 1
## 36563 814460 1
## 36564 814461 1
## 36565 814462 1
## 36566 814463 1
## 36567 814464 1
## 36568 814465 1
## 36569 814466 1
## 36570 814467 1
## 36571 814468 1
## 36572 814469 1
## 36573 814470 1
## 36574 814471 1
## 36575 814472 1
## 36576 814473 1
## 36577 814474 1
## 36578 814475 1
## 36579 814476 1
## 36580 814477 1
## 36581 814478 1
## 36582 814479 1
## 36583 814480 1
## 36584 814481 1
## 36585 814482 1
## 36586 814483 1
## 36587 814484 1
## 36588 814485 1
## 36589 814486 1
## 36590 814487 1
## 36591 814488 1
## 36592 814489 1
## 36593 814490 1
## 36594 814491 1
## 36595 814492 1
## 36596 814493 1
## 36597 814494 1
## 36598 814495 1
## 36599 814496 1
## 36600 814497 1
## 36601 814498 1
## 36602 814499 1
## 36603 814500 1
## 36604 814501 1
## 36605 814502 1
## 36606 814503 1
## 36607 814504 1
## 36608 814505 1
## 36609 814506 1
## 36610 814507 1
## 36611 814508 1
## 36612 814509 1
## 36613 814510 1
## 36614 814511 1
## 36615 814512 1
## 36616 814513 1
## 36617 814514 1
## 36618 814515 1
## 36619 814516 1
## 36620 814517 1
## 36621 814518 1
## 36622 814519 1
## 36623 814520 1
## 36624 814521 1
## 36625 814522 1
## 36626 814523 1
## 36627 814524 1
## 36628 814525 1
## 36629 814526 1
## 36630 814527 1
## 36631 814528 1
## 36632 814529 1
## 36633 814530 1
## 36634 814531 1
## 36635 814532 1
## 36636 814533 1
## 36637 814534 1
## 36638 814535 1
## 36639 814536 1
## 36640 814537 1
## 36641 814538 1
## 36642 814539 1
## 36643 814540 1
## 36644 814541 1
## 36645 814542 1
## 36646 814543 1
## 36647 814544 1
## 36648 814545 1
## 36649 814546 1
## 36650 814548 1
## 36651 814549 1
## 36652 814550 1
## 36653 814551 1
## 36654 814552 1
## 36655 814553 1
## 36656 814554 1
## 36657 814555 1
## 36658 814556 1
## 36659 814557 1
## 36660 814558 1
## 36661 814559 1
## 36662 814560 1
## 36663 814561 1
## 36664 814562 1
## 36665 814563 1
## 36666 814564 1
## 36667 814565 1
## 36668 814566 1
## 36669 814567 1
## 36670 814568 1
## 36671 814569 1
## 36672 814570 1
## 36673 814571 1
## 36674 814572 1
## 36675 814573 1
## 36676 814574 1
## 36677 814575 1
## 36678 814576 1
## 36679 814577 1
## 36680 814578 1
## 36681 814579 1
## 36682 814580 1
## 36683 814581 1
## 36684 814582 1
## 36685 814583 1
## 36686 814584 1
## 36687 814585 1
## 36688 814586 1
## 36689 814587 1
## 36690 814588 1
## 36691 814589 1
## 36692 814590 1
## 36693 814591 1
## 36694 814592 1
## 36695 814593 1
## 36696 814594 1
## 36697 814595 1
## 36698 814596 1
## 36699 814597 1
## 36700 814598 1
## 36701 814599 1
## 36702 814600 1
## 36703 814601 1
## 36704 814602 1
## 36705 814603 1
## 36706 814604 1
## 36707 814605 1
## 36708 814606 1
## 36709 814607 1
## 36710 814608 1
## 36711 814609 1
## 36712 814610 1
## 36713 814611 1
## 36714 814612 1
## 36715 814613 1
## 36716 814614 1
## 36717 814615 1
## 36718 814616 1
## 36719 814617 1
## 36720 814618 1
## 36721 814619 1
## 36722 814620 1
## 36723 814621 1
## 36724 814622 1
## 36725 814623 1
## 36726 814624 1
## 36727 814625 1
## 36728 814626 1
## 36729 814627 1
## 36730 814628 1
## 36731 814629 1
## 36732 814630 1
## 36733 814631 1
## 36734 814632 1
## 36735 814633 1
## 36736 814634 1
## 36737 814635 1
## 36738 814636 1
## 36739 814637 1
## 36740 814638 1
## 36741 814639 1
## 36742 814640 1
## 36743 814641 1
## 36744 814642 1
## 36745 814643 1
## 36746 814644 1
## 36747 814645 1
## 36748 814646 1
## 36749 814647 1
## 36750 814648 1
## 36751 814649 1
## 36752 814650 1
## 36753 814651 1
## 36754 814652 1
## 36755 814653 1
## 36756 814654 1
## 36757 814655 1
## 36758 814656 1
## 36759 814657 1
## 36760 814658 1
## 36761 814659 1
## 36762 814660 1
## 36763 814661 1
## 36764 814662 1
## 36765 814663 1
## 36766 814664 1
## 36767 814665 1
## 36768 814666 1
## 36769 814667 1
## 36770 814668 1
## 36771 814669 1
## 36772 814670 1
## 36773 814671 1
## 36774 814672 1
## 36775 814673 1
## 36776 814674 1
## 36777 814675 1
## 36778 814676 1
## 36779 814677 1
## 36780 814678 1
## 36781 814679 1
## 36782 814680 1
## 36783 814681 1
## 36784 814682 1
## 36785 814683 1
## 36786 814684 1
## 36787 814685 1
## 36788 814686 1
## 36789 814687 1
## 36790 814688 1
## 36791 814689 1
## 36792 814690 1
## 36793 814691 1
## 36794 814692 1
## 36795 814693 1
## 36796 814694 1
## 36797 814695 1
## 36798 814696 1
## 36799 814697 1
## 36800 814698 1
## 36801 814699 1
## 36802 814700 1
## 36803 814701 1
## 36804 814702 1
## 36805 814704 1
## 36806 814705 1
## 36807 814706 1
## 36808 814707 1
## 36809 814708 1
## 36810 814709 1
## 36811 814710 1
## 36812 814711 1
## 36813 814712 1
## 36814 814713 1
## 36815 814714 1
## 36816 814715 1
## 36817 814716 1
## 36818 814717 1
## 36819 814718 1
## 36820 814719 1
## 36821 814720 1
## 36822 814721 1
## 36823 814722 1
## 36824 814723 1
## 36825 814724 1
## 36826 814725 1
## 36827 814726 1
## 36828 814727 1
## 36829 814728 1
## 36830 814729 1
## 36831 814730 1
## 36832 814731 1
## 36833 814732 1
## 36834 814733 1
## 36835 814734 1
## 36836 814735 1
## 36837 814736 1
## 36838 814737 1
## 36839 814738 1
## 36840 814739 1
## 36841 814740 1
## 36842 814741 1
## 36843 814742 1
## 36844 814743 1
## 36845 814744 1
## 36846 814745 1
## 36847 814746 1
## 36848 814747 1
## 36849 814748 1
## 36850 814749 1
## 36851 814750 1
## 36852 814751 1
## 36853 814753 1
## 36854 814754 1
## 36855 814755 1
## 36856 814756 1
## 36857 814757 1
## 36858 814758 1
## 36859 814759 1
## 36860 814760 1
## 36861 814761 1
## 36862 814762 1
## 36863 814763 1
## 36864 814764 1
## 36865 814765 1
## 36866 814766 1
## 36867 814767 1
## 36868 814768 1
## 36869 814769 1
## 36870 814770 1
## 36871 814771 1
## 36872 814773 1
## 36873 814774 1
## 36874 814775 1
## 36875 814776 1
## 36876 814777 1
## 36877 814778 1
## 36878 814779 1
## 36879 814780 1
## 36880 814781 1
## 36881 814782 1
## 36882 814783 1
## 36883 814784 1
## 36884 814785 1
## 36885 814786 1
## 36886 814787 1
## 36887 814788 1
## 36888 814789 1
## 36889 814790 1
## 36890 814791 1
## 36891 814792 1
## 36892 814793 1
## 36893 814794 1
## 36894 814795 1
## 36895 814796 1
## 36896 814797 1
## 36897 814798 1
## 36898 814799 1
## 36899 814800 1
## 36900 814801 1
## 36901 814802 1
## 36902 814803 1
## 36903 814804 1
## 36904 814805 1
## 36905 814806 1
## 36906 814807 1
## 36907 814808 1
## 36908 814809 1
## 36909 814810 1
## 36910 814811 1
## 36911 814813 1
## 36912 814814 1
## 36913 814815 1
## 36914 814816 1
## 36915 814817 1
## 36916 814818 1
## 36917 814819 1
## 36918 814820 1
## 36919 814821 1
## 36920 814822 1
## 36921 814823 1
## 36922 814824 1
## 36923 814825 1
## 36924 814826 1
## 36925 814827 1
## 36926 814828 1
## 36927 814829 1
## 36928 814830 1
## 36929 814831 1
## 36930 814832 1
## 36931 814833 1
## 36932 814834 1
## 36933 814835 1
## 36934 814836 1
## 36935 814838 1
## 36936 814839 1
## 36937 814840 1
## 36938 814841 1
## 36939 814842 1
## 36940 814843 1
## 36941 814844 1
## 36942 814845 1
## 36943 814846 1
## 36944 814847 1
## 36945 814848 1
## 36946 814849 1
## 36947 814850 1
## 36948 814851 1
## 36949 814852 1
## 36950 814853 1
## 36951 814854 1
## 36952 814855 1
## 36953 814856 1
## 36954 814857 1
## 36955 814858 1
## 36956 814859 1
## 36957 814860 1
## 36958 814861 1
## 36959 814862 1
## 36960 814863 1
## 36961 814864 1
## 36962 814865 1
## 36963 814866 1
## 36964 814867 1
## 36965 814868 1
## 36966 814869 1
## 36967 814870 1
## 36968 814871 1
## 36969 814872 1
## 36970 814873 1
## 36971 814874 1
## 36972 814875 1
## 36973 814876 1
## 36974 814877 1
## 36975 814878 1
## 36976 814879 1
## 36977 814880 1
## 36978 814881 1
## 36979 814882 1
## 36980 814883 1
## 36981 814884 1
## 36982 814885 1
## 36983 814886 1
## 36984 814887 1
## 36985 814888 1
## 36986 814889 1
## 36987 814890 1
## 36988 814891 1
## 36989 814892 1
## 36990 814893 1
## 36991 814894 1
## 36992 814895 1
## 36993 814896 1
## 36994 814897 1
## 36995 814898 1
## 36996 814899 1
## 36997 814900 1
## 36998 814901 1
## 36999 814902 1
## 37000 814903 1
## 37001 814904 1
## 37002 814905 1
## 37003 814906 1
## 37004 814907 1
## 37005 814908 1
## 37006 814909 1
## 37007 814910 1
## 37008 814911 1
## 37009 814912 1
## 37010 814913 1
## 37011 814914 1
## 37012 814915 1
## 37013 814916 1
## 37014 814917 1
## 37015 814918 1
## 37016 814919 1
## 37017 814920 1
## 37018 814921 1
## 37019 814922 1
## 37020 814923 1
## 37021 814924 1
## 37022 814925 1
## 37023 814926 1
## 37024 814927 1
## 37025 814928 1
## 37026 814929 1
## 37027 814930 1
## 37028 814931 1
## 37029 814932 1
## 37030 814933 1
## 37031 814934 1
## 37032 814935 1
## 37033 814936 1
## 37034 814937 1
## 37035 814938 1
## 37036 814939 1
## 37037 814940 1
## 37038 814941 1
## 37039 814942 1
## 37040 814943 1
## 37041 814944 1
## 37042 814945 1
## 37043 814946 1
## 37044 814947 1
## 37045 814948 1
## 37046 814949 1
## 37047 814950 1
## 37048 814951 1
## 37049 814952 1
## 37050 814954 1
## 37051 814955 1
## 37052 814956 1
## 37053 814957 1
## 37054 814958 1
## 37055 814959 1
## 37056 814960 1
## 37057 814961 1
## 37058 814962 1
## 37059 814963 1
## 37060 814964 1
## 37061 814965 1
## 37062 814966 1
## 37063 814967 1
## 37064 814968 1
## 37065 814969 1
## 37066 814970 1
## 37067 814971 1
## 37068 814972 1
## 37069 814973 1
## 37070 814974 1
## 37071 814975 1
## 37072 814976 1
## 37073 814977 1
## 37074 814978 1
## 37075 814979 1
## 37076 814980 1
## 37077 814981 1
## 37078 814982 1
## 37079 814983 1
## 37080 814984 1
## 37081 814985 1
## 37082 814986 1
## 37083 814987 1
## 37084 814988 1
## 37085 814989 1
## 37086 814990 1
## 37087 814991 1
## 37088 814992 1
## 37089 814993 1
## 37090 814994 1
## 37091 814995 1
## 37092 814996 1
## 37093 814997 1
## 37094 814998 1
## 37095 814999 1
## 37096 815000 1
## 37097 815001 1
## 37098 815002 1
## 37099 815003 1
## 37100 815004 1
## 37101 815005 1
## 37102 815006 1
## 37103 815007 1
## 37104 815008 1
## 37105 815009 1
## 37106 815010 1
## 37107 815011 1
## 37108 815012 1
## 37109 815013 1
## 37110 815014 1
## 37111 815015 1
## 37112 815016 1
## 37113 815017 1
## 37114 815018 1
## 37115 815019 1
## 37116 815020 1
## 37117 815021 1
## 37118 815022 1
## 37119 815023 1
## 37120 815024 1
## 37121 815025 1
## 37122 815026 1
## 37123 815027 1
## 37124 815028 1
## 37125 815029 1
## 37126 815030 1
## 37127 815031 1
## 37128 815032 1
## 37129 815033 1
## 37130 815034 1
## 37131 815035 1
## 37132 815036 1
## 37133 815037 1
## 37134 815038 1
## 37135 815039 1
## 37136 815040 1
## 37137 815041 1
## 37138 815042 1
## 37139 815043 1
## 37140 815044 1
## 37141 815045 1
## 37142 815046 1
## 37143 815047 1
## 37144 815048 1
## 37145 815049 1
## 37146 815050 1
## 37147 815051 1
## 37148 815052 1
## 37149 815053 1
## 37150 815054 1
## 37151 815055 1
## 37152 815056 1
## 37153 815057 1
## 37154 815058 1
## 37155 815059 1
## 37156 815060 1
## 37157 815061 1
## 37158 815062 1
## 37159 815063 1
## 37160 815064 1
## 37161 815065 1
## 37162 815066 1
## 37163 815067 1
## 37164 815068 1
## 37165 815069 1
## 37166 815070 1
## 37167 815071 1
## 37168 815072 1
## 37169 815073 1
## 37170 815074 1
## 37171 815075 1
## 37172 815076 1
## 37173 815077 1
## 37174 815078 1
## 37175 815079 1
## 37176 815080 1
## 37177 815081 1
## 37178 815082 1
## 37179 815083 1
## 37180 815084 1
## 37181 815085 1
## 37182 815086 1
## 37183 815087 1
## 37184 815088 1
## 37185 815089 1
## 37186 815090 1
## 37187 815091 1
## 37188 815092 1
## 37189 815093 1
## 37190 815094 1
## 37191 815095 1
## 37192 815096 1
## 37193 815097 1
## 37194 815099 1
## 37195 815100 1
## 37196 815101 1
## 37197 815102 1
## 37198 815103 1
## 37199 815104 1
## 37200 815105 1
## 37201 815106 1
## 37202 815107 1
## 37203 815108 1
## 37204 815109 1
## 37205 815110 1
## 37206 815111 1
## 37207 815112 1
## 37208 815113 1
## 37209 815114 1
## 37210 815115 1
## 37211 815116 1
## 37212 815117 1
## 37213 815118 1
## 37214 815119 1
## 37215 815120 1
## 37216 815121 1
## 37217 815122 1
## 37218 815123 1
## 37219 815124 1
## 37220 815125 1
## 37221 815126 1
## 37222 815127 1
## 37223 815128 1
## 37224 815129 1
## 37225 815130 1
## 37226 815131 1
## 37227 815132 1
## 37228 815133 1
## 37229 815134 1
## 37230 815135 1
## 37231 815136 1
## 37232 815137 1
## 37233 815138 1
## 37234 815139 1
## 37235 815140 1
## 37236 815141 1
## 37237 815143 1
## 37238 815144 1
## 37239 815145 1
## 37240 815146 1
## 37241 815147 1
## 37242 815148 1
## 37243 815149 1
## 37244 815150 1
## 37245 815151 1
## 37246 815152 1
## 37247 815153 1
## 37248 815154 1
## 37249 815155 1
## 37250 815156 1
## 37251 815157 1
## 37252 815158 1
## 37253 815159 1
## 37254 815160 1
## 37255 815161 1
## 37256 815162 1
## 37257 815163 1
## 37258 815164 1
## 37259 815165 1
## 37260 815166 1
## 37261 815167 1
## 37262 815168 1
## 37263 815169 1
## 37264 815170 1
## 37265 815171 1
## 37266 815172 1
## 37267 815173 1
## 37268 815174 1
## 37269 815175 1
## 37270 815176 1
## 37271 815177 1
## 37272 815178 1
## 37273 815179 1
## 37274 815180 1
## 37275 815181 1
## 37276 815182 1
## 37277 815183 1
## 37278 815184 1
## 37279 815185 1
## 37280 815186 1
## 37281 815187 1
## 37282 815188 1
## 37283 815189 1
## 37284 815190 1
## 37285 815191 1
## 37286 815192 1
## 37287 815193 1
## 37288 815194 1
## 37289 815195 1
## 37290 815196 1
## 37291 815197 1
## 37292 815198 1
## 37293 815199 1
## 37294 815200 1
## 37295 815201 1
## 37296 815202 1
## 37297 815203 1
## 37298 815204 1
## 37299 815205 1
## 37300 815206 1
## 37301 815207 1
## 37302 815208 1
## 37303 815209 1
## 37304 815210 1
## 37305 815211 1
## 37306 815212 1
## 37307 815213 1
## 37308 815214 1
## 37309 815215 1
## 37310 815216 1
## 37311 815217 1
## 37312 815218 1
## 37313 815219 1
## 37314 815220 1
## 37315 815221 1
## 37316 815222 1
## 37317 815223 1
## 37318 815224 1
## 37319 815225 1
## 37320 815226 1
## 37321 815227 1
## 37322 815228 1
## 37323 815229 1
## 37324 815230 1
## 37325 815231 1
## 37326 815232 1
## 37327 815233 1
## 37328 815234 1
## 37329 815235 1
## 37330 815236 1
## 37331 815237 1
## 37332 815238 1
## 37333 815239 1
## 37334 815240 1
## 37335 815241 1
## 37336 815242 1
## 37337 815243 1
## 37338 815244 1
## 37339 815245 1
## 37340 815246 1
## 37341 815247 1
## 37342 815248 1
## 37343 815249 1
## 37344 815250 1
## 37345 815251 1
## 37346 815252 1
## 37347 815253 1
## 37348 815254 1
## 37349 815255 1
## 37350 815256 1
## 37351 815257 1
## 37352 815258 1
## 37353 815259 1
## 37354 815260 1
## 37355 815261 1
## 37356 815262 1
## 37357 815263 1
## 37358 815264 1
## 37359 815265 1
## 37360 815266 1
## 37361 815267 1
## 37362 815268 1
## 37363 815269 1
## 37364 815270 1
## 37365 815271 1
## 37366 815272 1
## 37367 815273 1
## 37368 815274 1
## 37369 815275 1
## 37370 815276 1
## 37371 815277 1
## 37372 815278 1
## 37373 815279 1
## 37374 815280 1
## 37375 815281 1
## 37376 815282 1
## 37377 815283 1
## 37378 815284 1
## 37379 815285 1
## 37380 815286 1
## 37381 815287 1
## 37382 815288 1
## 37383 815289 1
## 37384 815290 1
## 37385 815291 1
## 37386 815292 1
## 37387 815293 1
## 37388 815294 1
## 37389 815295 1
## 37390 815296 1
## 37391 815297 1
## 37392 815298 1
## 37393 815299 1
## 37394 815300 1
## 37395 815301 1
## 37396 815302 1
## 37397 815303 1
## 37398 815304 1
## 37399 815305 1
## 37400 815306 1
## 37401 815307 1
## 37402 815308 1
## 37403 815309 1
## 37404 815310 1
## 37405 815311 1
## 37406 815312 1
## 37407 815313 1
## 37408 815314 1
## 37409 815315 1
## 37410 815316 1
## 37411 815317 1
## 37412 815318 1
## 37413 815319 1
## 37414 815320 1
## 37415 815321 1
## 37416 815322 1
## 37417 815323 1
## 37418 815324 1
## 37419 815325 1
## 37420 815327 1
## 37421 815328 1
## 37422 815329 1
## 37423 815330 1
## 37424 815331 1
## 37425 815332 1
## 37426 815333 1
## 37427 815334 1
## 37428 815335 1
## 37429 815336 1
## 37430 815337 1
## 37431 815338 1
## 37432 815339 1
## 37433 815340 1
## 37434 815341 1
## 37435 815342 1
## 37436 815343 1
## 37437 815344 1
## 37438 815345 1
## 37439 815346 1
## 37440 815347 1
## 37441 815348 1
## 37442 815349 1
## 37443 815350 1
## 37444 815351 1
## 37445 815352 1
## 37446 815353 1
## 37447 815354 1
## 37448 815355 1
## 37449 815356 1
## 37450 815357 1
## 37451 815358 1
## 37452 815359 1
## 37453 815360 1
## 37454 815361 1
## 37455 815362 1
## 37456 815363 1
## 37457 815364 1
## 37458 815365 1
## 37459 815366 1
## 37460 815367 1
## 37461 815368 1
## 37462 815369 1
## 37463 815370 1
## 37464 815371 1
## 37465 815372 1
## 37466 815373 1
## 37467 815374 1
## 37468 815375 1
## 37469 815376 1
## 37470 815377 1
## 37471 815378 1
## 37472 815379 1
## 37473 815380 1
## 37474 815381 1
## 37475 815382 1
## 37476 815383 1
## 37477 815384 1
## 37478 815385 1
## 37479 815386 1
## 37480 815387 1
## 37481 815388 1
## 37482 815389 1
## 37483 815390 1
## 37484 815391 1
## 37485 815392 1
## 37486 815393 1
## 37487 815394 1
## 37488 815395 1
## 37489 815396 1
## 37490 815397 1
## 37491 815398 1
## 37492 815399 1
## 37493 815400 1
## 37494 815401 1
## 37495 815402 1
## 37496 815403 1
## 37497 815404 1
## 37498 815405 1
## 37499 815406 1
## 37500 815407 1
## 37501 815408 1
## 37502 815409 1
## 37503 815410 1
## 37504 815411 1
## 37505 815412 1
## 37506 815413 1
## 37507 815414 1
## 37508 815415 1
## 37509 815416 1
## 37510 815417 1
## 37511 815418 1
## 37512 815419 1
## 37513 815420 1
## 37514 815421 1
## 37515 815422 1
## 37516 815423 1
## 37517 815424 1
## 37518 815425 1
## 37519 815426 1
## 37520 815427 1
## 37521 815428 1
## 37522 815429 1
## 37523 815430 1
## 37524 815431 1
## 37525 815432 1
## 37526 815433 1
## 37527 815434 1
## 37528 815435 1
## 37529 815436 1
## 37530 815437 1
## 37531 815438 1
## 37532 815439 1
## 37533 815440 1
## 37534 815441 1
## 37535 815442 1
## 37536 815443 1
## 37537 815444 1
## 37538 815445 1
## 37539 815446 1
## 37540 815447 1
## 37541 815448 1
## 37542 815449 1
## 37543 815450 1
## 37544 815451 1
## 37545 815452 1
## 37546 815453 1
## 37547 815454 1
## 37548 815455 1
## 37549 815456 1
## 37550 815457 1
## 37551 815458 1
## 37552 815459 1
## 37553 815460 1
## 37554 815461 1
## 37555 815462 1
## 37556 815463 1
## 37557 815464 1
## 37558 815465 1
## 37559 815466 1
## 37560 815467 1
## 37561 815468 1
## 37562 815469 1
## 37563 815470 1
## 37564 815471 1
## 37565 815472 1
## 37566 815473 1
## 37567 815474 1
## 37568 815475 1
## 37569 815476 1
## 37570 815477 1
## 37571 815478 1
## 37572 815479 1
## 37573 815480 1
## 37574 815481 1
## 37575 815482 1
## 37576 815483 1
## 37577 815484 1
## 37578 815485 1
## 37579 815486 1
## 37580 815487 1
## 37581 815488 1
## 37582 815489 1
## 37583 815490 1
## 37584 815491 1
## 37585 815492 1
## 37586 815493 1
## 37587 815494 1
## 37588 815495 1
## 37589 815496 1
## 37590 815497 1
## 37591 815498 1
## 37592 815499 1
## 37593 815500 1
## 37594 815501 1
## 37595 815502 1
## 37596 815503 1
## 37597 815504 1
## 37598 815505 1
## 37599 815506 1
## 37600 815507 1
## 37601 815508 1
## 37602 815509 1
## 37603 815510 1
## 37604 815511 1
## 37605 815512 1
## 37606 815513 1
## 37607 815514 1
## 37608 815515 1
## 37609 815516 1
## 37610 815517 1
## 37611 815518 1
## 37612 815519 1
## 37613 815520 1
## 37614 815521 1
## 37615 815522 1
## 37616 815523 1
## 37617 815524 1
## 37618 815525 1
## 37619 815526 1
## 37620 815527 1
## 37621 815528 1
## 37622 815529 1
## 37623 815530 1
## 37624 815531 1
## 37625 815532 1
## 37626 815533 1
## 37627 815534 1
## 37628 815535 1
## 37629 815536 1
## 37630 815537 1
## 37631 815538 1
## 37632 815539 1
## 37633 815540 1
## 37634 815541 1
## 37635 815542 1
## 37636 815543 1
## 37637 815544 1
## 37638 815545 1
## 37639 815546 1
## 37640 815547 1
## 37641 815548 1
## 37642 815549 1
## 37643 815550 1
## 37644 815551 1
## 37645 815552 1
## 37646 815553 1
## 37647 815554 1
## 37648 815555 1
## 37649 815556 1
## 37650 815557 1
## 37651 815558 1
## 37652 815559 1
## 37653 815560 1
## 37654 815561 1
## 37655 815562 1
## 37656 815563 1
## 37657 815564 1
## 37658 815565 1
## 37659 815566 1
## 37660 815567 1
## 37661 815568 1
## 37662 815569 1
## 37663 815571 1
## 37664 815572 1
## 37665 815573 1
## 37666 815574 1
## 37667 815575 1
## 37668 815576 1
## 37669 815577 1
## 37670 815578 1
## 37671 815579 1
## 37672 815580 1
## 37673 815581 1
## 37674 815582 1
## 37675 815583 1
## 37676 815584 1
## 37677 815585 1
## 37678 815586 1
## 37679 815587 1
## 37680 815588 1
## 37681 815589 1
## 37682 815590 1
## 37683 815592 1
## 37684 815593 1
## 37685 815594 1
## 37686 815595 1
## 37687 815596 1
## 37688 815597 1
## 37689 815598 1
## 37690 815599 1
## 37691 815600 1
## 37692 815601 1
## 37693 815602 1
## 37694 815603 1
## 37695 815604 1
## 37696 815606 1
## 37697 815607 1
## 37698 815608 1
## 37699 815609 1
## 37700 815610 1
## 37701 815611 1
## 37702 815612 1
## 37703 815613 1
## 37704 815614 1
## 37705 815615 1
## 37706 815616 1
## 37707 815617 1
## 37708 815618 1
## 37709 815619 1
## 37710 815620 1
## 37711 815621 1
## 37712 815622 1
## 37713 815623 1
## 37714 815624 1
## 37715 815625 1
## 37716 815626 1
## 37717 815627 1
## 37718 815628 1
## 37719 815629 1
## 37720 815630 1
## 37721 815631 1
## 37722 815632 1
## 37723 815633 1
## 37724 815634 1
## 37725 815635 1
## 37726 815636 1
## 37727 815637 1
## 37728 815638 1
## 37729 815639 1
## 37730 815640 1
## 37731 815641 1
## 37732 815642 1
## 37733 815643 1
## 37734 815644 1
## 37735 815645 1
## 37736 815646 1
## 37737 815647 1
## 37738 815648 1
## 37739 815649 1
## 37740 815650 1
## 37741 815651 1
## 37742 815652 1
## 37743 815653 1
## 37744 815654 1
## 37745 815655 1
## 37746 815656 1
## 37747 815657 1
## 37748 815658 1
## 37749 815659 1
## 37750 815660 1
## 37751 815661 1
## 37752 815662 1
## 37753 815663 1
## 37754 815664 1
## 37755 815665 1
## 37756 815666 1
## 37757 815667 1
## 37758 815668 1
## 37759 815669 1
## 37760 815670 1
## 37761 815671 1
## 37762 815672 1
## 37763 815673 1
## 37764 815674 1
## 37765 815675 1
## 37766 815676 1
## 37767 815677 1
## 37768 815678 1
## 37769 815679 1
## 37770 815680 1
## 37771 815681 1
## 37772 815682 1
## 37773 815683 1
## 37774 815684 1
## 37775 815685 1
## 37776 815686 1
## 37777 815687 1
## 37778 815688 1
## 37779 815689 1
## 37780 815690 1
## 37781 815691 1
## 37782 815692 1
## 37783 815693 1
## 37784 815694 1
## 37785 815695 1
## 37786 815696 1
## 37787 815697 1
## 37788 815698 1
## 37789 815699 1
## 37790 815700 1
## 37791 815701 1
## 37792 815702 1
## 37793 815703 1
## 37794 815704 1
## 37795 815705 1
## 37796 815706 1
## 37797 815707 1
## 37798 815708 1
## 37799 815709 1
## 37800 815710 1
## 37801 815711 1
## 37802 815712 1
## 37803 815713 1
## 37804 815714 1
## 37805 815715 1
## 37806 815716 1
## 37807 815717 1
## 37808 815718 1
## 37809 815719 1
## 37810 815720 1
## 37811 815721 1
## 37812 815722 1
## 37813 815723 1
## 37814 815724 1
## 37815 815725 1
## 37816 815726 1
## 37817 815727 1
## 37818 815728 1
## 37819 815729 1
## 37820 815730 1
## 37821 815731 1
## 37822 815732 1
## 37823 815733 1
## 37824 815734 1
## 37825 815735 1
## 37826 815736 1
## 37827 815737 1
## 37828 815738 1
## 37829 815739 1
## 37830 815740 1
## 37831 815741 1
## 37832 815742 1
## 37833 815743 1
## 37834 815744 1
## 37835 815745 1
## 37836 815746 1
## 37837 815747 1
## 37838 815748 1
## 37839 815749 1
## 37840 815750 1
## 37841 815751 1
## 37842 815752 1
## 37843 815753 1
## 37844 815754 1
## 37845 815756 1
## 37846 815757 1
## 37847 815758 1
## 37848 815759 1
## 37849 815760 1
## 37850 815761 1
## 37851 815762 1
## 37852 815763 1
## 37853 815764 1
## 37854 815765 1
## 37855 815766 1
## 37856 815767 1
## 37857 815768 1
## 37858 815769 1
## 37859 815770 1
## 37860 815771 1
## 37861 815772 1
## 37862 815773 1
## 37863 815774 1
## 37864 815775 1
## 37865 815776 1
## 37866 815777 1
## 37867 815778 1
## 37868 815779 1
## 37869 815780 1
## 37870 815781 1
## 37871 815782 1
## 37872 815783 1
## 37873 815784 1
## 37874 815785 1
## 37875 815786 1
## 37876 815787 1
## 37877 815788 1
## 37878 815789 1
## 37879 815791 1
## 37880 815792 1
## 37881 815793 1
## 37882 815794 1
## 37883 815795 1
## 37884 815796 1
## 37885 815797 1
## 37886 815798 1
## 37887 815799 1
## 37888 815800 1
## 37889 815801 1
## 37890 815802 1
## 37891 815803 1
## 37892 815804 1
## 37893 815805 1
## 37894 815806 1
## 37895 815807 1
## 37896 815808 1
## 37897 815809 1
## 37898 815810 1
## 37899 815811 1
## 37900 815812 1
## 37901 815813 1
## 37902 815814 1
## 37903 815815 1
## 37904 815816 1
## 37905 815817 1
## 37906 815818 1
## 37907 815819 1
## 37908 815820 1
## 37909 815821 1
## 37910 815822 1
## 37911 815823 1
## 37912 815824 1
## 37913 815825 1
## 37914 815826 1
## 37915 815827 1
## 37916 815828 1
## 37917 815829 1
## 37918 815830 1
## 37919 815831 1
## 37920 815832 1
## 37921 815833 1
## 37922 815834 1
## 37923 815835 1
## 37924 815836 1
## 37925 815837 1
## 37926 815838 1
## 37927 815839 1
## 37928 815840 1
## 37929 815841 1
## 37930 815842 1
## 37931 815843 1
## 37932 815844 1
## 37933 815845 1
## 37934 815846 1
## 37935 815847 1
## 37936 815848 1
## 37937 815849 1
## 37938 815850 1
## 37939 815851 1
## 37940 815852 1
## 37941 815853 1
## 37942 815854 1
## 37943 815855 1
## 37944 815856 1
## 37945 815857 1
## 37946 815858 1
## 37947 815859 1
## 37948 815860 1
## 37949 815861 1
## 37950 815862 1
## 37951 815863 1
## 37952 815864 1
## 37953 815865 1
## 37954 815866 1
## 37955 815867 1
## 37956 815868 1
## 37957 815869 1
## 37958 815870 1
## 37959 815871 1
## 37960 815872 1
## 37961 815873 1
## 37962 815874 1
## 37963 815875 1
## 37964 815876 1
## 37965 815877 1
## 37966 815878 1
## 37967 815879 1
## 37968 815880 1
## 37969 815881 1
## 37970 815882 1
## 37971 815883 1
## 37972 815884 1
## 37973 815885 1
## 37974 815886 1
## 37975 815887 1
## 37976 815888 1
## 37977 815889 1
## 37978 815890 1
## 37979 815891 1
## 37980 815892 1
## 37981 815893 1
## 37982 815894 1
## 37983 815895 1
## 37984 815896 1
## 37985 815897 1
## 37986 815898 1
## 37987 815899 1
## 37988 815900 1
## 37989 815901 1
## 37990 815902 1
## 37991 815903 1
## 37992 815904 1
## 37993 815905 1
## 37994 815906 1
## 37995 815907 1
## 37996 815908 1
## 37997 815909 1
## 37998 815910 1
## 37999 815911 1
## 38000 815912 1
## 38001 815913 1
## 38002 815914 1
## 38003 815915 1
## 38004 815916 1
## 38005 815917 1
## 38006 815918 1
## 38007 815919 1
## 38008 815920 1
## 38009 815921 1
## 38010 815922 1
## 38011 815923 1
## 38012 815924 1
## 38013 815925 1
## 38014 815926 1
## 38015 815927 1
## 38016 815928 1
## 38017 815929 1
## 38018 815930 1
## 38019 815931 1
## 38020 815932 1
## 38021 815933 1
## 38022 815934 1
## 38023 815935 1
## 38024 815936 1
## 38025 815937 1
## 38026 815938 1
## 38027 815939 1
## 38028 815940 1
## 38029 815941 1
## 38030 815942 1
## 38031 815943 1
## 38032 815944 1
## 38033 815945 1
## 38034 815946 1
## 38035 815947 1
## 38036 815948 1
## 38037 815949 1
## 38038 815950 1
## 38039 815951 1
## 38040 815952 1
## 38041 815953 1
## 38042 815954 1
## 38043 815955 1
## 38044 815956 1
## 38045 815957 1
## 38046 815958 1
## 38047 815959 1
## 38048 815960 1
## 38049 815961 1
## 38050 815962 1
## 38051 815963 1
## 38052 815964 1
## 38053 815965 1
## 38054 815966 1
## 38055 815967 1
## 38056 815968 1
## 38057 815969 1
## 38058 815970 1
## 38059 815971 1
## 38060 815972 1
## 38061 815973 1
## 38062 815974 1
## 38063 815975 1
## 38064 815976 1
## 38065 815977 1
## 38066 815978 1
## 38067 815979 1
## 38068 815980 1
## 38069 815981 1
## 38070 815982 1
## 38071 815983 1
## 38072 815984 1
## 38073 815985 1
## 38074 815986 1
## 38075 815987 1
## 38076 815988 1
## 38077 815989 1
## 38078 815990 1
## 38079 815991 1
## 38080 815992 1
## 38081 815993 1
## 38082 815994 1
## 38083 815995 1
## 38084 815996 1
## 38085 815997 1
## 38086 815998 1
## 38087 815999 1
## 38088 816000 1
## 38089 816001 1
## 38090 816002 1
## 38091 816003 1
## 38092 816004 1
## 38093 816005 1
## 38094 816006 1
## 38095 816007 1
## 38096 816008 1
## 38097 816009 1
## 38098 816010 1
## 38099 816011 1
## 38100 816012 1
## 38101 816014 1
## 38102 816015 1
## 38103 816016 1
## 38104 816017 1
## 38105 816018 1
## 38106 816019 1
## 38107 816020 1
## 38108 816021 1
## 38109 816022 1
## 38110 816024 1
## 38111 816025 1
## 38112 816026 1
## 38113 816027 1
## 38114 816028 1
## 38115 816029 1
## 38116 816030 1
## 38117 816031 1
## 38118 816032 1
## 38119 816033 1
## 38120 816034 1
## 38121 816035 1
## 38122 816036 1
## 38123 816037 1
## 38124 816038 1
## 38125 816040 1
## 38126 816041 1
## 38127 816042 1
## 38128 816043 1
## 38129 816044 1
## 38130 816045 1
## 38131 816046 1
## 38132 816047 1
## 38133 816048 1
## 38134 816049 1
## 38135 816050 1
## 38136 816051 1
## 38137 816052 1
## 38138 816054 1
## 38139 816055 1
## 38140 816056 1
## 38141 816057 1
## 38142 816058 1
## 38143 816059 1
## 38144 816060 1
## 38145 816061 1
## 38146 816062 1
## 38147 816063 1
## 38148 816064 1
## 38149 816065 1
## 38150 816066 1
## 38151 816067 1
## 38152 816068 1
## 38153 816069 1
## 38154 816070 1
## 38155 816071 1
## 38156 816072 1
## 38157 816073 1
## 38158 816074 1
## 38159 816075 1
## 38160 816076 1
## 38161 816077 1
## 38162 816078 1
## 38163 816079 1
## 38164 816080 1
## 38165 816082 1
## 38166 816083 1
## 38167 816084 1
## 38168 816085 1
## 38169 816086 1
## 38170 816087 1
## 38171 816088 1
## 38172 816089 1
## 38173 816090 1
## 38174 816091 1
## 38175 816092 1
## 38176 816093 1
## 38177 816094 1
## 38178 816095 1
## 38179 816096 1
## 38180 816097 1
## 38181 816098 1
## 38182 816099 1
## 38183 816100 1
## 38184 816101 1
## 38185 816102 1
## 38186 816103 1
## 38187 816104 1
## 38188 816105 1
## 38189 816106 1
## 38190 816107 1
## 38191 816108 1
## 38192 816109 1
## 38193 816110 1
## 38194 816111 1
## 38195 816112 1
## 38196 816113 1
## 38197 816114 1
## 38198 816115 1
## 38199 816117 1
## 38200 816118 1
## 38201 816119 1
## 38202 816120 1
## 38203 816121 1
## 38204 816122 1
## 38205 816123 1
## 38206 816124 1
## 38207 816125 1
## 38208 816126 1
## 38209 816127 1
## 38210 816128 1
## 38211 816129 1
## 38212 816130 1
## 38213 816131 1
## 38214 816132 1
## 38215 816133 1
## 38216 816134 1
## 38217 816135 1
## 38218 816136 1
## 38219 816137 1
## 38220 816138 1
## 38221 816139 1
## 38222 816140 1
## 38223 816141 1
## 38224 816142 1
## 38225 816143 1
## 38226 816144 1
## 38227 816145 1
## 38228 816146 1
## 38229 816147 1
## 38230 816148 1
## 38231 816149 1
## 38232 816150 1
## 38233 816151 1
## 38234 816152 1
## 38235 816153 1
## 38236 816155 1
## 38237 816156 1
## 38238 816157 1
## 38239 816158 1
## 38240 816159 1
## 38241 816160 1
## 38242 816161 1
## 38243 816162 1
## 38244 816163 1
## 38245 816164 1
## 38246 816165 1
## 38247 816166 1
## 38248 816167 1
## 38249 816168 1
## 38250 816169 1
## 38251 816170 1
## 38252 816171 1
## 38253 816172 1
## 38254 816173 1
## 38255 816174 1
## 38256 816175 1
## 38257 816176 1
## 38258 816177 1
## 38259 816178 1
## 38260 816179 1
## 38261 816180 1
## 38262 816181 1
## 38263 816182 1
## 38264 816183 1
## 38265 816184 1
## 38266 816185 1
## 38267 816186 1
## 38268 816187 1
## 38269 816188 1
## 38270 816189 1
## 38271 816190 1
## 38272 816191 1
## 38273 816192 1
## 38274 816193 1
## 38275 816194 1
## 38276 816195 1
## 38277 816196 1
## 38278 816197 1
## 38279 816198 1
## 38280 816199 1
## 38281 816201 1
## 38282 816202 1
## 38283 816203 1
## 38284 816204 1
## 38285 816205 1
## 38286 816206 1
## 38287 816207 1
## 38288 816208 1
## 38289 816209 1
## 38290 816210 1
## 38291 816211 1
## 38292 816212 1
## 38293 816213 1
## 38294 816214 1
## 38295 816215 1
## 38296 816216 1
## 38297 816217 1
## 38298 816218 1
## 38299 816219 1
## 38300 816220 1
## 38301 816221 1
## 38302 816222 1
## 38303 816223 1
## 38304 816224 1
## 38305 816225 1
## 38306 816226 1
## 38307 816227 1
## 38308 816228 1
## 38309 816229 1
## 38310 816230 1
## 38311 816231 1
## 38312 816232 1
## 38313 816233 1
## 38314 816234 1
## 38315 816235 1
## 38316 816236 1
## 38317 816237 1
## 38318 816238 1
## 38319 816239 1
## 38320 816240 1
## 38321 816241 1
## 38322 816242 1
## 38323 816243 1
## 38324 816244 1
## 38325 816245 1
## 38326 816246 1
## 38327 816247 1
## 38328 816248 1
## 38329 816249 1
## 38330 816250 1
## 38331 816251 1
## 38332 816252 1
## 38333 816253 1
## 38334 816254 1
## 38335 816255 1
## 38336 816256 1
## 38337 816257 1
## 38338 816258 1
## 38339 816259 1
## 38340 816260 1
## 38341 816261 1
## 38342 816262 1
## 38343 816263 1
## 38344 816264 1
## 38345 816265 1
## 38346 816266 1
## 38347 816267 1
## 38348 816268 1
## 38349 816269 1
## 38350 816270 1
## 38351 816271 1
## 38352 816272 1
## 38353 816273 1
## 38354 816274 1
## 38355 816275 1
## 38356 816276 1
## 38357 816277 1
## 38358 816278 1
## 38359 816279 1
## 38360 816280 1
## 38361 816281 1
## 38362 816282 1
## 38363 816283 1
## 38364 816284 1
## 38365 816285 1
## 38366 816286 1
## 38367 816287 1
## 38368 816288 1
## 38369 816289 1
## 38370 816290 1
## 38371 816291 1
## 38372 816292 1
## 38373 816293 1
## 38374 816294 1
## 38375 816295 1
## 38376 816296 1
## 38377 816297 1
## 38378 816298 1
## 38379 816299 1
## 38380 816300 1
## 38381 816301 1
## 38382 816302 1
## 38383 816303 1
## 38384 816304 1
## 38385 816305 1
## 38386 816306 1
## 38387 816307 1
## 38388 816308 1
## 38389 816309 1
## 38390 816310 1
## 38391 816311 1
## 38392 816312 1
## 38393 816313 1
## 38394 816314 1
## 38395 816315 1
## 38396 816316 1
## 38397 816317 1
## 38398 816318 1
## 38399 816319 1
## 38400 816320 1
## 38401 816321 1
## 38402 816322 1
## 38403 816323 1
## 38404 816324 1
## 38405 816325 1
## 38406 816326 1
## 38407 816327 1
## 38408 816328 1
## 38409 816329 1
## 38410 816330 1
## 38411 816331 1
## 38412 816332 1
## 38413 816333 1
## 38414 816334 1
## 38415 816335 1
## 38416 816336 1
## 38417 816337 1
## 38418 816338 1
## 38419 816339 1
## 38420 816340 1
## 38421 816341 1
## 38422 816342 1
## 38423 816343 1
## 38424 816344 1
## 38425 816345 1
## 38426 816346 1
## 38427 816347 1
## 38428 816348 1
## 38429 816349 1
## 38430 816350 1
## 38431 816351 1
## 38432 816352 1
## 38433 816353 1
## 38434 816354 1
## 38435 816355 1
## 38436 816356 1
## 38437 816357 1
## 38438 816358 1
## 38439 816359 1
## 38440 816360 1
## 38441 816361 1
## 38442 816362 1
## 38443 816363 1
## 38444 816364 1
## 38445 816365 1
## 38446 816366 1
## 38447 816367 1
## 38448 816368 1
## 38449 816369 1
## 38450 816370 1
## 38451 816371 1
## 38452 816372 1
## 38453 816373 1
## 38454 816374 1
## 38455 816375 1
## 38456 816376 1
## 38457 816377 1
## 38458 816378 1
## 38459 816379 1
## 38460 816380 1
## 38461 816381 1
## 38462 816382 1
## 38463 816383 1
## 38464 816384 1
## 38465 816385 1
## 38466 816386 1
## 38467 816387 1
## 38468 816388 1
## 38469 816389 1
## 38470 816390 1
## 38471 816391 1
## 38472 816392 1
## 38473 816393 1
## 38474 816394 1
## 38475 816395 1
## 38476 816396 1
## 38477 816397 1
## 38478 816398 1
## 38479 816399 1
## 38480 816400 1
## 38481 816401 1
## 38482 816402 1
## 38483 816403 1
## 38484 816404 1
## 38485 816405 1
## 38486 816406 1
## 38487 816407 1
## 38488 816408 1
## 38489 816409 1
## 38490 816410 1
## 38491 816411 1
## 38492 816412 1
## 38493 816413 1
## 38494 816414 1
## 38495 816415 1
## 38496 816416 1
## 38497 816417 1
## 38498 816418 1
## 38499 816419 1
## 38500 816420 1
## 38501 816421 1
## 38502 816422 1
## 38503 816423 1
## 38504 816424 1
## 38505 816425 1
## 38506 816426 1
## 38507 816427 1
## 38508 816428 1
## 38509 816429 1
## 38510 816430 1
## 38511 816431 1
## 38512 816432 1
## 38513 816433 1
## 38514 816434 1
## 38515 816435 1
## 38516 816436 1
## 38517 816437 1
## 38518 816438 1
## 38519 816439 1
## 38520 816440 1
## 38521 816441 1
## 38522 816442 1
## 38523 816443 1
## 38524 816444 1
## 38525 816445 1
## 38526 816446 1
## 38527 816447 1
## 38528 816448 1
## 38529 816449 1
## 38530 816450 1
## 38531 816451 1
## 38532 816452 1
## 38533 816453 1
## 38534 816454 1
## 38535 816455 1
## 38536 816456 1
## 38537 816457 1
## 38538 816458 1
## 38539 816459 1
## 38540 816460 1
## 38541 816461 1
## 38542 816462 1
## 38543 816463 1
## 38544 816464 1
## 38545 816465 1
## 38546 816466 1
## 38547 816467 1
## 38548 816468 1
## 38549 816469 1
## 38550 816470 1
## 38551 816471 1
## 38552 816472 1
## 38553 816473 1
## 38554 816474 1
## 38555 816475 1
## 38556 816476 1
## 38557 816477 1
## 38558 816479 1
## 38559 816480 1
## 38560 816481 1
## 38561 816482 1
## 38562 816483 1
## 38563 816484 1
## 38564 816485 1
## 38565 816486 1
## 38566 816487 1
## 38567 816488 1
## 38568 816489 1
## 38569 816490 1
## 38570 816491 1
## 38571 816492 1
## 38572 816493 1
## 38573 816494 1
## 38574 816495 1
## 38575 816496 1
## 38576 816497 1
## 38577 816498 1
## 38578 816499 1
## 38579 816500 1
## 38580 816501 1
## 38581 816502 1
## 38582 816503 1
## 38583 816504 1
## 38584 816505 1
## 38585 816506 1
## 38586 816507 1
## 38587 816508 1
## 38588 816509 1
## 38589 816510 1
## 38590 816511 1
## 38591 816512 1
## 38592 816513 1
## 38593 816514 1
## 38594 816515 1
## 38595 816516 1
## 38596 816517 1
## 38597 816518 1
## 38598 816519 1
## 38599 816520 1
## 38600 816521 1
## 38601 816522 1
## 38602 816523 1
## 38603 816524 1
## 38604 816525 1
## 38605 816526 1
## 38606 816527 1
## 38607 816528 1
## 38608 816529 1
## 38609 816530 1
## 38610 816531 1
## 38611 816532 1
## 38612 816533 1
## 38613 816534 1
## 38614 816535 1
## 38615 816536 1
## 38616 816537 1
## 38617 816538 1
## 38618 816539 1
## 38619 816540 1
## 38620 816541 1
## 38621 816542 1
## 38622 816543 1
## 38623 816544 1
## 38624 816545 1
## 38625 816546 1
## 38626 816547 1
## 38627 816548 1
## 38628 816549 1
## 38629 816550 1
## 38630 816551 1
## 38631 816552 1
## 38632 816553 1
## 38633 816554 1
## 38634 816555 1
## 38635 816556 1
## 38636 816557 1
## 38637 816558 1
## 38638 816559 1
## 38639 816560 1
## 38640 816561 1
## 38641 816562 1
## 38642 816563 1
## 38643 816564 1
## 38644 816565 1
## 38645 816566 1
## 38646 816567 1
## 38647 816568 1
## 38648 816569 1
## 38649 816570 1
## 38650 816571 1
## 38651 816572 1
## 38652 816573 1
## 38653 816574 1
## 38654 816575 1
## 38655 816576 1
## 38656 816577 1
## 38657 816578 1
## 38658 816579 1
## 38659 816580 1
## 38660 816581 1
## 38661 816582 1
## 38662 816583 1
## 38663 816584 1
## 38664 816585 1
## 38665 816586 1
## 38666 816587 1
## 38667 816588 1
## 38668 816589 1
## 38669 816590 1
## 38670 816591 1
## 38671 816592 1
## 38672 816593 1
## 38673 816594 1
## 38674 816595 1
## 38675 816596 1
## 38676 816597 1
## 38677 816598 1
## 38678 816599 1
## 38679 816600 1
## 38680 816601 1
## 38681 816602 1
## 38682 816603 1
## 38683 816604 1
## 38684 816605 1
## 38685 816606 1
## 38686 816607 1
## 38687 816608 1
## 38688 816609 1
## 38689 816610 1
## 38690 816611 1
## 38691 816612 1
## 38692 816613 1
## 38693 816614 1
## 38694 816615 1
## 38695 816616 1
## 38696 816617 1
## 38697 816618 1
## 38698 816619 1
## 38699 816620 1
## 38700 816621 1
## 38701 816622 1
## 38702 816623 1
## 38703 816624 1
## 38704 816625 1
## 38705 816626 1
## 38706 816627 1
## 38707 816628 1
## 38708 816629 1
## 38709 816630 1
## 38710 816631 1
## 38711 816632 1
## 38712 816633 1
## 38713 816634 1
## 38714 816635 1
## 38715 816637 1
## 38716 816638 1
## 38717 816639 1
## 38718 816640 1
## 38719 816641 1
## 38720 816643 1
## 38721 816644 1
## 38722 816645 1
## 38723 816646 1
## 38724 816647 1
## 38725 816648 1
## 38726 816649 1
## 38727 816650 1
## 38728 816651 1
## 38729 816652 1
## 38730 816653 1
## 38731 816654 1
## 38732 816655 1
## 38733 816656 1
## 38734 816657 1
## 38735 816658 1
## 38736 816659 1
## 38737 816660 1
## 38738 816661 1
## 38739 816662 1
## 38740 816663 1
## 38741 816664 1
## 38742 816665 1
## 38743 816666 1
## 38744 816667 1
## 38745 816668 1
## 38746 816669 1
## 38747 816670 1
## 38748 816671 1
## 38749 816672 1
## 38750 816673 1
## 38751 816674 1
## 38752 816675 1
## 38753 816676 1
## 38754 816677 1
## 38755 816678 1
## 38756 816679 1
## 38757 816680 1
## 38758 816681 1
## 38759 816682 1
## 38760 816683 1
## 38761 816684 1
## 38762 816685 1
## 38763 816686 1
## 38764 816687 1
## 38765 816688 1
## 38766 816689 1
## 38767 816690 1
## 38768 816691 1
## 38769 816692 1
## 38770 816694 1
## 38771 816695 1
## 38772 816696 1
## 38773 816697 1
## 38774 816698 1
## 38775 816699 1
## 38776 816701 1
## 38777 816702 1
## 38778 816703 1
## 38779 816704 1
## 38780 816705 1
## 38781 816706 1
## 38782 816707 1
## 38783 816708 1
## 38784 816709 1
## 38785 816710 1
## 38786 816711 1
## 38787 816712 1
## 38788 816713 1
## 38789 816714 1
## 38790 816715 1
## 38791 816716 1
## 38792 816717 1
## 38793 816718 1
## 38794 816719 1
## 38795 816720 1
## 38796 816721 1
## 38797 816722 1
## 38798 816723 1
## 38799 816724 1
## 38800 816725 1
## 38801 816726 1
## 38802 816727 1
## 38803 816728 1
## 38804 816729 1
## 38805 816730 1
## 38806 816731 1
## 38807 816732 1
## 38808 816733 1
## 38809 816734 1
## 38810 816735 1
## 38811 816736 1
## 38812 816737 1
## 38813 816738 1
## 38814 816739 1
## 38815 816740 1
## 38816 816741 1
## 38817 816742 1
## 38818 816743 1
## 38819 816744 1
## 38820 816745 1
## 38821 816746 1
## 38822 816747 1
## 38823 816748 1
## 38824 816749 1
## 38825 816750 1
## 38826 816751 1
## 38827 816752 1
## 38828 816753 1
## 38829 816754 1
## 38830 816755 1
## 38831 816756 1
## 38832 816757 1
## 38833 816758 1
## 38834 816759 1
## 38835 816760 1
## 38836 816761 1
## 38837 816762 1
## 38838 816763 1
## 38839 816764 1
## 38840 816766 1
## 38841 816767 1
## 38842 816768 1
## 38843 816769 1
## 38844 816770 1
## 38845 816771 1
## 38846 816772 1
## 38847 816773 1
## 38848 816774 1
## 38849 816775 1
## 38850 816776 1
## 38851 816777 1
## 38852 816778 1
## 38853 816780 1
## 38854 816781 1
## 38855 816782 1
## 38856 816783 1
## 38857 816784 1
## 38858 816785 1
## 38859 816786 1
## 38860 816787 1
## 38861 816788 1
## 38862 816789 1
## 38863 816790 1
## 38864 816791 1
## 38865 816792 1
## 38866 816793 1
## 38867 816794 1
## 38868 816795 1
## 38869 816796 1
## 38870 816797 1
## 38871 816798 1
## 38872 816799 1
## 38873 816800 1
## 38874 816801 1
## 38875 816802 1
## 38876 816803 1
## 38877 816804 1
## 38878 816805 1
## 38879 816806 1
## 38880 816807 1
## 38881 816808 1
## 38882 816809 1
## 38883 816810 1
## 38884 816811 1
## 38885 816812 1
## 38886 816813 1
## 38887 816814 1
## 38888 816815 1
## 38889 816816 1
## 38890 816817 1
## 38891 816818 1
## 38892 816819 1
## 38893 816820 1
## 38894 816821 1
## 38895 816822 1
## 38896 816823 1
## 38897 816825 1
## 38898 816826 1
## 38899 816827 1
## 38900 816828 1
## 38901 816829 1
## 38902 816830 1
## 38903 816831 1
## 38904 816832 1
## 38905 816833 1
## 38906 816834 1
## 38907 816835 1
## 38908 816836 1
## 38909 816837 1
## 38910 816838 1
## 38911 816839 1
## 38912 816840 1
## 38913 816841 1
## 38914 816842 1
## 38915 816843 1
## 38916 816844 1
## 38917 816845 1
## 38918 816846 1
## 38919 816847 1
## 38920 816848 1
## 38921 816849 1
## 38922 816850 1
## 38923 816851 1
## 38924 816852 1
## 38925 816853 1
## 38926 816854 1
## 38927 816855 1
## 38928 816856 1
## 38929 816857 1
## 38930 816858 1
## 38931 816859 1
## 38932 816860 1
## 38933 816861 1
## 38934 816862 1
## 38935 816863 1
## 38936 816864 1
## 38937 816865 1
## 38938 816866 1
## 38939 816867 1
## 38940 816868 1
## 38941 816869 1
## 38942 816870 1
## 38943 816871 1
## 38944 816872 1
## 38945 816873 1
## 38946 816874 1
## 38947 816875 1
## 38948 816876 1
## 38949 816877 1
## 38950 816878 1
## 38951 816879 1
## 38952 816880 1
## 38953 816881 1
## 38954 816882 1
## 38955 816883 1
## 38956 816884 1
## 38957 816885 1
## 38958 816886 1
## 38959 816887 1
## 38960 816888 1
## 38961 816889 1
## 38962 816890 1
## 38963 816891 1
## 38964 816892 1
## 38965 816893 1
## 38966 816894 1
## 38967 816895 1
## 38968 816896 1
## 38969 816897 1
## 38970 816898 1
## 38971 816899 1
## 38972 816900 1
## 38973 816901 1
## 38974 816902 1
## 38975 816903 1
## 38976 816904 1
## 38977 816905 1
## 38978 816906 1
## 38979 816907 1
## 38980 816908 1
## 38981 816909 1
## 38982 816910 1
## 38983 816911 1
## 38984 816912 1
## 38985 816913 1
## 38986 816914 1
## 38987 816915 1
## 38988 816916 1
## 38989 816917 1
## 38990 816918 1
## 38991 816919 1
## 38992 816920 1
## 38993 816921 1
## 38994 816922 1
## 38995 816923 1
## 38996 816924 1
## 38997 816925 1
## 38998 816926 1
## 38999 816927 1
## 39000 816928 1
## 39001 816929 1
## 39002 816930 1
## 39003 816931 1
## 39004 816932 1
## 39005 816933 1
## 39006 816934 1
## 39007 816935 1
## 39008 816936 1
## 39009 816937 1
## 39010 816938 1
## 39011 816940 1
## 39012 816941 1
## 39013 816942 1
## 39014 816943 1
## 39015 816944 1
## 39016 816945 1
## 39017 816946 1
## 39018 816947 1
## 39019 816948 1
## 39020 816949 1
## 39021 816950 1
## 39022 816951 1
## 39023 816952 1
## 39024 816953 1
## 39025 816954 1
## 39026 816955 1
## 39027 816956 1
## 39028 816957 1
## 39029 816958 1
## 39030 816959 1
## 39031 816960 1
## 39032 816961 1
## 39033 816962 1
## 39034 816963 1
## 39035 816964 1
## 39036 816965 1
## 39037 816966 1
## 39038 816967 1
## 39039 816968 1
## 39040 816969 1
## 39041 816970 1
## 39042 816971 1
## 39043 816972 1
## 39044 816973 1
## 39045 816974 1
## 39046 816975 1
## 39047 816976 1
## 39048 816977 1
## 39049 816978 1
## 39050 816979 1
## 39051 816980 1
## 39052 816981 1
## 39053 816982 1
## 39054 816983 1
## 39055 816984 1
## 39056 816985 1
## 39057 816986 1
## 39058 816987 1
## 39059 816988 1
## 39060 816989 1
## 39061 816990 1
## 39062 816991 1
## 39063 816992 1
## 39064 816993 1
## 39065 816994 1
## 39066 816995 1
## 39067 816996 1
## 39068 816997 1
## 39069 816998 1
## 39070 817000 1
## 39071 817001 1
## 39072 817002 1
## 39073 817003 1
## 39074 817004 1
## 39075 817005 1
## 39076 817006 1
## 39077 817007 1
## 39078 817008 1
## 39079 817009 1
## 39080 817010 1
## 39081 817011 1
## 39082 817012 1
## 39083 817013 1
## 39084 817014 1
## 39085 817015 1
## 39086 817016 1
## 39087 817017 1
## 39088 817018 1
## 39089 817019 1
## 39090 817020 1
## 39091 817021 1
## 39092 817022 1
## 39093 817023 1
## 39094 817024 1
## 39095 817025 1
## 39096 817027 1
## 39097 817028 1
## 39098 817029 1
## 39099 817030 1
## 39100 817031 1
## 39101 817032 1
## 39102 817033 1
## 39103 817034 1
## 39104 817035 1
## 39105 817036 1
## 39106 817037 1
## 39107 817038 1
## 39108 817039 1
## 39109 817040 1
## 39110 817041 1
## 39111 817042 1
## 39112 817043 1
## 39113 817044 1
## 39114 817045 1
## 39115 817046 1
## 39116 817047 1
## 39117 817048 1
## 39118 817049 1
## 39119 817050 1
## 39120 817051 1
## 39121 817052 1
## 39122 817053 1
## 39123 817054 1
## 39124 817055 1
## 39125 817056 1
## 39126 817057 1
## 39127 817058 1
## 39128 817059 1
## 39129 817060 1
## 39130 817061 1
## 39131 817062 1
## 39132 817063 1
## 39133 817064 1
## 39134 817065 1
## 39135 817066 1
## 39136 817067 1
## 39137 817068 1
## 39138 817069 1
## 39139 817070 1
## 39140 817071 1
## 39141 817072 1
## 39142 817073 1
## 39143 817074 1
## 39144 817075 1
## 39145 817076 1
## 39146 817077 1
## 39147 817078 1
## 39148 817079 1
## 39149 817080 1
## 39150 817081 1
## 39151 817082 1
## 39152 817083 1
## 39153 817084 1
## 39154 817085 1
## 39155 817086 1
## 39156 817087 1
## 39157 817088 1
## 39158 817089 1
## 39159 817090 1
## 39160 817091 1
## 39161 817092 1
## 39162 817093 1
## 39163 817094 1
## 39164 817095 1
## 39165 817096 1
## 39166 817097 1
## 39167 817098 1
## 39168 817099 1
## 39169 817100 1
## 39170 817101 1
## 39171 817102 1
## 39172 817103 1
## 39173 817104 1
## 39174 817105 1
## 39175 817106 1
## 39176 817107 1
## 39177 817108 1
## 39178 817109 1
## 39179 817110 1
## 39180 817111 1
## 39181 817112 1
## 39182 817113 1
## 39183 817114 1
## 39184 817115 1
## 39185 817116 1
## 39186 817117 1
## 39187 817118 1
## 39188 817119 1
## 39189 817120 1
## 39190 817121 1
## 39191 817122 1
## 39192 817123 1
## 39193 817124 1
## 39194 817125 1
## 39195 817126 1
## 39196 817127 1
## 39197 817128 1
## 39198 817129 1
## 39199 817130 1
## 39200 817131 1
## 39201 817132 1
## 39202 817133 1
## 39203 817134 1
## 39204 817135 1
## 39205 817136 1
## 39206 817137 1
## 39207 817138 1
## 39208 817140 1
## 39209 817141 1
## 39210 817142 1
## 39211 817143 1
## 39212 817144 1
## 39213 817145 1
## 39214 817146 1
## 39215 817147 1
## 39216 817148 1
## 39217 817149 1
## 39218 817150 1
## 39219 817151 1
## 39220 817152 1
## 39221 817153 1
## 39222 817155 1
## 39223 817156 1
## 39224 817157 1
## 39225 817158 1
## 39226 817159 1
## 39227 817160 1
## 39228 817161 1
## 39229 817162 1
## 39230 817163 1
## 39231 817164 1
## 39232 817165 1
## 39233 817166 1
## 39234 817167 1
## 39235 817168 1
## 39236 817169 1
## 39237 817170 1
## 39238 817171 1
## 39239 817172 1
## 39240 817173 1
## 39241 817174 1
## 39242 817176 1
## 39243 817177 1
## 39244 817178 1
## 39245 817179 1
## 39246 817180 1
## 39247 817181 1
## 39248 817182 1
## 39249 817183 1
## 39250 817184 1
## 39251 817185 1
## 39252 817186 1
## 39253 817187 1
## 39254 817188 1
## 39255 817189 1
## 39256 817190 1
## 39257 817191 1
## 39258 817192 1
## 39259 817193 1
## 39260 817194 1
## 39261 817195 1
## 39262 817197 1
## 39263 817198 1
## 39264 817199 1
## 39265 817200 1
## 39266 817201 1
## 39267 817202 1
## 39268 817203 1
## 39269 817204 1
## 39270 817205 1
## 39271 817206 1
## 39272 817207 1
## 39273 817208 1
## 39274 817209 1
## 39275 817210 1
## 39276 817211 1
## 39277 817212 1
## 39278 817213 1
## 39279 817214 1
## 39280 817215 1
## 39281 817216 1
## 39282 817217 1
## 39283 817218 1
## 39284 817219 1
## 39285 817220 1
## 39286 817221 1
## 39287 817222 1
## 39288 817223 1
## 39289 817224 1
## 39290 817225 1
## 39291 817226 1
## 39292 817227 1
## 39293 817228 1
## 39294 817229 1
## 39295 817230 1
## 39296 817231 1
## 39297 817232 1
## 39298 817233 1
## 39299 817234 1
## 39300 817235 1
## 39301 817236 1
## 39302 817237 1
## 39303 817238 1
## 39304 817239 1
## 39305 817240 1
## 39306 817241 1
## 39307 817242 1
## 39308 817243 1
## 39309 817244 1
## 39310 817245 1
## 39311 817246 1
## 39312 817247 1
## 39313 817248 1
## 39314 817249 1
## 39315 817250 1
## 39316 817252 1
## 39317 817253 1
## 39318 817254 1
## 39319 817255 1
## 39320 817256 1
## 39321 817257 1
## 39322 817258 1
## 39323 817259 1
## 39324 817260 1
## 39325 817261 1
## 39326 817262 1
## 39327 817263 1
## 39328 817264 1
## 39329 817265 1
## 39330 817266 1
## 39331 817267 1
## 39332 817268 1
## 39333 817269 1
## 39334 817270 1
## 39335 817271 1
## 39336 817272 1
## 39337 817273 1
## 39338 817274 1
## 39339 817275 1
## 39340 817276 1
## 39341 817277 1
## 39342 817278 1
## 39343 817279 1
## 39344 817280 1
## 39345 817281 1
## 39346 817282 1
## 39347 817283 1
## 39348 817284 1
## 39349 817285 1
## 39350 817286 1
## 39351 817287 1
## 39352 817288 1
## 39353 817289 1
## 39354 817290 1
## 39355 817291 1
## 39356 817292 1
## 39357 817293 1
## 39358 817294 1
## 39359 817295 1
## 39360 817296 1
## 39361 817297 1
## 39362 817298 1
## 39363 817299 1
## 39364 817300 1
## 39365 817301 1
## 39366 817303 1
## 39367 817304 1
## 39368 817305 1
## 39369 817306 1
## 39370 817307 1
## 39371 817308 1
## 39372 817309 1
## 39373 817310 1
## 39374 817311 1
## 39375 817312 1
## 39376 817313 1
## 39377 817314 1
## 39378 817315 1
## 39379 817316 1
## 39380 817317 1
## 39381 817318 1
## 39382 817319 1
## 39383 817320 1
## 39384 817321 1
## 39385 817322 1
## 39386 817323 1
## 39387 817324 1
## 39388 817325 1
## 39389 817326 1
## 39390 817327 1
## 39391 817328 1
## 39392 817329 1
## 39393 817330 1
## 39394 817331 1
## 39395 817332 1
## 39396 817333 1
## 39397 817334 1
## 39398 817335 1
## 39399 817336 1
## 39400 817337 1
## 39401 817338 1
## 39402 817339 1
## 39403 817340 1
## 39404 817341 1
## 39405 817342 1
## 39406 817343 1
## 39407 817344 1
## 39408 817345 1
## 39409 817346 1
## 39410 817347 1
## 39411 817348 1
## 39412 817349 1
## 39413 817350 1
## 39414 817351 1
## 39415 817352 1
## 39416 817353 1
## 39417 817354 1
## 39418 817355 1
## 39419 817357 1
## 39420 817358 1
## 39421 817359 1
## 39422 817360 1
## 39423 817361 1
## 39424 817362 1
## 39425 817363 1
## 39426 817364 1
## 39427 817365 1
## 39428 817366 1
## 39429 817367 1
## 39430 817368 1
## 39431 817369 1
## 39432 817370 1
## 39433 817371 1
## 39434 817372 1
## 39435 817373 1
## 39436 817374 1
## 39437 817375 1
## 39438 817376 1
## 39439 817377 1
## 39440 817378 1
## 39441 817379 1
## 39442 817380 1
## 39443 817381 1
## 39444 817382 1
## 39445 817383 1
## 39446 817384 1
## 39447 817385 1
## 39448 817386 1
## 39449 817387 1
## 39450 817388 1
## 39451 817389 1
## 39452 817390 1
## 39453 817391 1
## 39454 817392 1
## 39455 817393 1
## 39456 817394 1
## 39457 817395 1
## 39458 817396 1
## 39459 817397 1
## 39460 817398 1
## 39461 817399 1
## 39462 817400 1
## 39463 817401 1
## 39464 817402 1
## 39465 817403 1
## 39466 817404 1
## 39467 817405 1
## 39468 817406 1
## 39469 817407 1
## 39470 817408 1
## 39471 817409 1
## 39472 817410 1
## 39473 817411 1
## 39474 817412 1
## 39475 817413 1
## 39476 817414 1
## 39477 817415 1
## 39478 817416 1
## 39479 817417 1
## 39480 817418 1
## 39481 817419 1
## 39482 817420 1
## 39483 817421 1
## 39484 817422 1
## 39485 817423 1
## 39486 817424 1
## 39487 817425 1
## 39488 817426 1
## 39489 817427 1
## 39490 817428 1
## 39491 817429 1
## 39492 817430 1
## 39493 817431 1
## 39494 817432 1
## 39495 817433 1
## 39496 817434 1
## 39497 817435 1
## 39498 817436 1
## 39499 817437 1
## 39500 817438 1
## 39501 817439 1
## 39502 817440 1
## 39503 817441 1
## 39504 817442 1
## 39505 817443 1
## 39506 817444 1
## 39507 817445 1
## 39508 817446 1
## 39509 817447 1
## 39510 817448 1
## 39511 817449 1
## 39512 817450 1
## 39513 817451 1
## 39514 817452 1
## 39515 817453 1
## 39516 817454 1
## 39517 817455 1
## 39518 817456 1
## 39519 817457 1
## 39520 817458 1
## 39521 817459 1
## 39522 817460 1
## 39523 817461 1
## 39524 817462 1
## 39525 817463 1
## 39526 817464 1
## 39527 817465 1
## 39528 817466 1
## 39529 817467 1
## 39530 817468 1
## 39531 817469 1
## 39532 817470 1
## 39533 817471 1
## 39534 817472 1
## 39535 817473 1
## 39536 817474 1
## 39537 817475 1
## 39538 817476 1
## 39539 817477 1
## 39540 817478 1
## 39541 817479 1
## 39542 817480 1
## 39543 817481 1
## 39544 817482 1
## 39545 817483 1
## 39546 817484 1
## 39547 817485 1
## 39548 817486 1
## 39549 817487 1
## 39550 817488 1
## 39551 817489 1
## 39552 817490 1
## 39553 817491 1
## 39554 817492 1
## 39555 817493 1
## 39556 817494 1
## 39557 817495 1
## 39558 817496 1
## 39559 817498 1
## 39560 817499 1
## 39561 817500 1
## 39562 817501 1
## 39563 817502 1
## 39564 817503 1
## 39565 817504 1
## 39566 817505 1
## 39567 817506 1
## 39568 817507 1
## 39569 817508 1
## 39570 817509 1
## 39571 817510 1
## 39572 817511 1
## 39573 817512 1
## 39574 817514 1
## 39575 817515 1
## 39576 817516 1
## 39577 817517 1
## 39578 817518 1
## 39579 817519 1
## 39580 817520 1
## 39581 817521 1
## 39582 817522 1
## 39583 817523 1
## 39584 817524 1
## 39585 817525 1
## 39586 817527 1
## 39587 817528 1
## 39588 817529 1
## 39589 817530 1
## 39590 817531 1
## 39591 817532 1
## 39592 817533 1
## 39593 817534 1
## 39594 817535 1
## 39595 817536 1
## 39596 817537 1
## 39597 817538 1
## 39598 817539 1
## 39599 817540 1
## 39600 817541 1
## 39601 817542 1
## 39602 817543 1
## 39603 817544 1
## 39604 817545 1
## 39605 817546 1
## 39606 817547 1
## 39607 817548 1
## 39608 817549 1
## 39609 817550 1
## 39610 817551 1
## 39611 817552 1
## 39612 817553 1
## 39613 817554 1
## 39614 817555 1
## 39615 817556 1
## 39616 817557 1
## 39617 817558 1
## 39618 817559 1
## 39619 817560 1
## 39620 817561 1
## 39621 817562 1
## 39622 817563 1
## 39623 817564 1
## 39624 817565 1
## 39625 817566 1
## 39626 817567 1
## 39627 817568 1
## 39628 817569 1
## 39629 817570 1
## 39630 817571 1
## 39631 817572 1
## 39632 817573 1
## 39633 817575 1
## 39634 817576 1
## 39635 817577 1
## 39636 817578 1
## 39637 817579 1
## 39638 817580 1
## 39639 817581 1
## 39640 817582 1
## 39641 817583 1
## 39642 817584 1
## 39643 817585 1
## 39644 817586 1
## 39645 817587 1
## 39646 817588 1
## 39647 817589 1
## 39648 817590 1
## 39649 817591 1
## 39650 817592 1
## 39651 817593 1
## 39652 817594 1
## 39653 817595 1
## 39654 817596 1
## 39655 817597 1
## 39656 817598 1
## 39657 817599 1
## 39658 817600 1
## 39659 817601 1
## 39660 817602 1
## 39661 817603 1
## 39662 817604 1
## 39663 817605 1
## 39664 817606 1
## 39665 817607 1
## 39666 817608 1
## 39667 817609 1
## 39668 817610 1
## 39669 817611 1
## 39670 817612 1
## 39671 817613 1
## 39672 817614 1
## 39673 817615 1
## 39674 817616 1
## 39675 817617 1
## 39676 817618 1
## 39677 817619 1
## 39678 817620 1
## 39679 817621 1
## 39680 817622 1
## 39681 817623 1
## 39682 817624 1
## 39683 817625 1
## 39684 817626 1
## 39685 817627 1
## 39686 817628 1
## 39687 817630 1
## 39688 817631 1
## 39689 817632 1
## 39690 817633 1
## 39691 817634 1
## 39692 817635 1
## 39693 817636 1
## 39694 817637 1
## 39695 817638 1
## 39696 817640 1
## 39697 817641 1
## 39698 817642 1
## 39699 817643 1
## 39700 817644 1
## 39701 817645 1
## 39702 817646 1
## 39703 817647 1
## 39704 817648 1
## 39705 817649 1
## 39706 817650 1
## 39707 817651 1
## 39708 817652 1
## 39709 817653 1
## 39710 817654 1
## 39711 817656 1
## 39712 817657 1
## 39713 817658 1
## 39714 817659 1
## 39715 817660 1
## 39716 817661 1
## 39717 817662 1
## 39718 817663 1
## 39719 817664 1
## 39720 817665 1
## 39721 817666 1
## 39722 817667 1
## 39723 817668 1
## 39724 817669 1
## 39725 817670 1
## 39726 817671 1
## 39727 817672 1
## 39728 817673 1
## 39729 817674 1
## 39730 817675 1
## 39731 817676 1
## 39732 817677 1
## 39733 817678 1
## 39734 817679 1
## 39735 817680 1
## 39736 817681 1
## 39737 817682 1
## 39738 817683 1
## 39739 817684 1
## 39740 817685 1
## 39741 817686 1
## 39742 817687 1
## 39743 817688 1
## 39744 817689 1
## 39745 817690 1
## 39746 817691 1
## 39747 817692 1
## 39748 817693 1
## 39749 817694 1
## 39750 817695 1
## 39751 817696 1
## 39752 817697 1
## 39753 817698 1
## 39754 817699 1
## 39755 817700 1
## 39756 817701 1
## 39757 817702 1
## 39758 817703 1
## 39759 817704 1
## 39760 817705 1
## 39761 817706 1
## 39762 817707 1
## 39763 817708 1
## 39764 817709 1
## 39765 817710 1
## 39766 817711 1
## 39767 817712 1
## 39768 817713 1
## 39769 817714 1
## 39770 817715 1
## 39771 817716 1
## 39772 817717 1
## 39773 817718 1
## 39774 817719 1
## 39775 817720 1
## 39776 817721 1
## 39777 817722 1
## 39778 817723 1
## 39779 817724 1
## 39780 817725 1
## 39781 817726 1
## 39782 817727 1
## 39783 817728 1
## 39784 817729 1
## 39785 817730 1
## 39786 817731 1
## 39787 817732 1
## 39788 817733 1
## 39789 817734 1
## 39790 817735 1
## 39791 817736 1
## 39792 817737 1
## 39793 817738 1
## 39794 817739 1
## 39795 817740 1
## 39796 817741 1
## 39797 817742 1
## 39798 817743 1
## 39799 817744 1
## 39800 817745 1
## 39801 817746 1
## 39802 817747 1
## 39803 817748 1
## 39804 817749 1
## 39805 817750 1
## 39806 817751 1
## 39807 817752 1
## 39808 817753 1
## 39809 817754 1
## 39810 817755 1
## 39811 817756 1
## 39812 817757 1
## 39813 817758 1
## 39814 817759 1
## 39815 817760 1
## 39816 817761 1
## 39817 817762 1
## 39818 817763 1
## 39819 817764 1
## 39820 817765 1
## 39821 817766 1
## 39822 817767 1
## 39823 817768 1
## 39824 817769 1
## 39825 817770 1
## 39826 817771 1
## 39827 817772 1
## 39828 817773 1
## 39829 817774 1
## 39830 817775 1
## 39831 817776 1
## 39832 817777 1
## 39833 817778 1
## 39834 817779 1
## 39835 817780 1
## 39836 817781 1
## 39837 817782 1
## 39838 817783 1
## 39839 817784 1
## 39840 817785 1
## 39841 817786 1
## 39842 817787 1
## 39843 817788 1
## 39844 817789 1
## 39845 817790 1
## 39846 817791 1
## 39847 817792 1
## 39848 817793 1
## 39849 817794 1
## 39850 817795 1
## 39851 817796 1
## 39852 817797 1
## 39853 817798 1
## 39854 817799 1
## 39855 817800 1
## 39856 817801 1
## 39857 817802 1
## 39858 817803 1
## 39859 817804 1
## 39860 817805 1
## 39861 817806 1
## 39862 817807 1
## 39863 817808 1
## 39864 817809 1
## 39865 817810 1
## 39866 817811 1
## 39867 817812 1
## 39868 817813 1
## 39869 817814 1
## 39870 817815 1
## 39871 817816 1
## 39872 817817 1
## 39873 817818 1
## 39874 817819 1
## 39875 817820 1
## 39876 817821 1
## 39877 817822 1
## 39878 817823 1
## 39879 817824 1
## 39880 817825 1
## 39881 817826 1
## 39882 817827 1
## 39883 817828 1
## 39884 817829 1
## 39885 817830 1
## 39886 817831 1
## 39887 817832 1
## 39888 817833 1
## 39889 817834 1
## 39890 817835 1
## 39891 817836 1
## 39892 817837 1
## 39893 817838 1
## 39894 817839 1
## 39895 817840 1
## 39896 817841 1
## 39897 817842 1
## 39898 817843 1
## 39899 817844 1
## 39900 817845 1
## 39901 817846 1
## 39902 817847 1
## 39903 817848 1
## 39904 817849 1
## 39905 817850 1
## 39906 817851 1
## 39907 817852 1
## 39908 817853 1
## 39909 817854 1
## 39910 817855 1
## 39911 817856 1
## 39912 817857 1
## 39913 817858 1
## 39914 817859 1
## 39915 817860 1
## 39916 817861 1
## 39917 817862 1
## 39918 817863 1
## 39919 817864 1
## 39920 817865 1
## 39921 817866 1
## 39922 817867 1
## 39923 817868 1
## 39924 817869 1
## 39925 817870 1
## 39926 817871 1
## 39927 817872 1
## 39928 817873 1
## 39929 817874 1
## 39930 817875 1
## 39931 817876 1
## 39932 817877 1
## 39933 817879 1
## 39934 817880 1
## 39935 817881 1
## 39936 817882 1
## 39937 817883 1
## 39938 817884 1
## 39939 817885 1
## 39940 817886 1
## 39941 817887 1
## 39942 817888 1
## 39943 817889 1
## 39944 817890 1
## 39945 817891 1
## 39946 817892 1
## 39947 817893 1
## 39948 817894 1
## 39949 817895 1
## 39950 817896 1
## 39951 817897 1
## 39952 817898 1
## 39953 817899 1
## 39954 817900 1
## 39955 817901 1
## 39956 817902 1
## 39957 817903 1
## 39958 817904 1
## 39959 817905 1
## 39960 817906 1
## 39961 817907 1
## 39962 817908 1
## 39963 817909 1
## 39964 817910 1
## 39965 817911 1
## 39966 817912 1
## 39967 817913 1
## 39968 817914 1
## 39969 817915 1
## 39970 817916 1
## 39971 817917 1
## 39972 817918 1
## 39973 817919 1
## 39974 817920 1
## 39975 817921 1
## 39976 817922 1
## 39977 817923 1
## 39978 817924 1
## 39979 817925 1
## 39980 817926 1
## 39981 817927 1
## 39982 817928 1
## 39983 817929 1
## 39984 817930 1
## 39985 817931 1
## 39986 817932 1
## 39987 817933 1
## 39988 817934 1
## 39989 817935 1
## 39990 817936 1
## 39991 817937 1
## 39992 817938 1
## 39993 817939 1
## 39994 817940 1
## 39995 817941 1
## 39996 817942 1
## 39997 817943 1
## 39998 817944 1
## 39999 817945 1
## 40000 817946 1
## 40001 817947 1
## 40002 817948 1
## 40003 817949 1
## 40004 817950 1
## 40005 817951 1
## 40006 817952 1
## 40007 817953 1
## 40008 817954 1
## 40009 817955 1
## 40010 817956 1
## 40011 817957 1
## 40012 817958 1
## 40013 817959 1
## 40014 817960 1
## 40015 817961 1
## 40016 817962 1
## 40017 817963 1
## 40018 817964 1
## 40019 817965 1
## 40020 817966 1
## 40021 817967 1
## 40022 817968 1
## 40023 817969 1
## 40024 817970 1
## 40025 817971 1
## 40026 817972 1
## 40027 817973 1
## 40028 817974 1
## 40029 817975 1
## 40030 817976 1
## 40031 817978 1
## 40032 817979 1
## 40033 817980 1
## 40034 817981 1
## 40035 817982 1
## 40036 817983 1
## 40037 817984 1
## 40038 817985 1
## 40039 817986 1
## 40040 817987 1
## 40041 817988 1
## 40042 817989 1
## 40043 817990 1
## 40044 817991 1
## 40045 817992 1
## 40046 817993 1
## 40047 817994 1
## 40048 817995 1
## 40049 817996 1
## 40050 817997 1
## 40051 817998 1
## 40052 817999 1
## 40053 818000 1
## 40054 818001 1
## 40055 818002 1
## 40056 818003 1
## 40057 818004 1
## 40058 818005 1
## 40059 818006 1
## 40060 818007 1
## 40061 818008 1
## 40062 818009 1
## 40063 818010 1
## 40064 818011 1
## 40065 818012 1
## 40066 818013 1
## 40067 818014 1
## 40068 818015 1
## 40069 818016 1
## 40070 818017 1
## 40071 818018 1
## 40072 818019 1
## 40073 818020 1
## 40074 818021 1
## 40075 818022 1
## 40076 818023 1
## 40077 818024 1
## 40078 818025 1
## 40079 818026 1
## 40080 818027 1
## 40081 818028 1
## 40082 818029 1
## 40083 818030 1
## 40084 818031 1
## 40085 818032 1
## 40086 818033 1
## 40087 818034 1
## 40088 818035 1
## 40089 818036 1
## 40090 818037 1
## 40091 818038 1
## 40092 818039 1
## 40093 818040 1
## 40094 818041 1
## 40095 818042 1
## 40096 818043 1
## 40097 818044 1
## 40098 818045 1
## 40099 818046 1
## 40100 818047 1
## 40101 818048 1
## 40102 818049 1
## 40103 818050 1
## 40104 818051 1
## 40105 818052 1
## 40106 818053 1
## 40107 818054 1
## 40108 818055 1
## 40109 818056 1
## 40110 818057 1
## 40111 818058 1
## 40112 818059 1
## 40113 818060 1
## 40114 818061 1
## 40115 818062 1
## 40116 818063 1
## 40117 818064 1
## 40118 818065 1
## 40119 818066 1
## 40120 818067 1
## 40121 818068 1
## 40122 818069 1
## 40123 818070 1
## 40124 818071 1
## 40125 818072 1
## 40126 818073 1
## 40127 818074 1
## 40128 818075 1
## 40129 818076 1
## 40130 818077 1
## 40131 818078 1
## 40132 818079 1
## 40133 818081 1
## 40134 818082 1
## 40135 818083 1
## 40136 818084 1
## 40137 818085 1
## 40138 818086 1
## 40139 818087 1
## 40140 818088 1
## 40141 818089 1
## 40142 818090 1
## 40143 818091 1
## 40144 818092 1
## 40145 818093 1
## 40146 818094 1
## 40147 818095 1
## 40148 818096 1
## 40149 818097 1
## 40150 818098 1
## 40151 818099 1
## 40152 818100 1
## 40153 818101 1
## 40154 818102 1
## 40155 818103 1
## 40156 818104 1
## 40157 818105 1
## 40158 818106 1
## 40159 818107 1
## 40160 818108 1
## 40161 818109 1
## 40162 818110 1
## 40163 818111 1
## 40164 818112 1
## 40165 818113 1
## 40166 818114 1
## 40167 818115 1
## 40168 818116 1
## 40169 818117 1
## 40170 818118 1
## 40171 818119 1
## 40172 818120 1
## 40173 818121 1
## 40174 818122 1
## 40175 818123 1
## 40176 818124 1
## 40177 818125 1
## 40178 818126 1
## 40179 818127 1
## 40180 818128 1
## 40181 818129 1
## 40182 818130 1
## 40183 818131 1
## 40184 818132 1
## 40185 818133 1
## 40186 818134 1
## 40187 818135 1
## 40188 818136 1
## 40189 818137 1
## 40190 818138 1
## 40191 818139 1
## 40192 818140 1
## 40193 818141 1
## 40194 818143 1
## 40195 818144 1
## 40196 818145 1
## 40197 818146 1
## 40198 818147 1
## 40199 818148 1
## 40200 818149 1
## 40201 818150 1
## 40202 818151 1
## 40203 818152 1
## 40204 818153 1
## 40205 818154 1
## 40206 818155 1
## 40207 818157 1
## 40208 818158 1
## 40209 818159 1
## 40210 818160 1
## 40211 818161 1
## 40212 818162 1
## 40213 818163 1
## 40214 818164 1
## 40215 818165 1
## 40216 818166 1
## 40217 818167 1
## 40218 818168 1
## 40219 818169 1
## 40220 818170 1
## 40221 818171 1
## 40222 818172 1
## 40223 818173 1
## 40224 818174 1
## 40225 818175 1
## 40226 818176 1
## 40227 818177 1
## 40228 818178 1
## 40229 818179 1
## 40230 818180 1
## 40231 818181 1
## 40232 818182 1
## 40233 818183 1
## 40234 818184 1
## 40235 818185 1
## 40236 818186 1
## 40237 818187 1
## 40238 818188 1
## 40239 818189 1
## 40240 818190 1
## 40241 818191 1
## 40242 818193 1
## 40243 818194 1
## 40244 818195 1
## 40245 818196 1
## 40246 818197 1
## 40247 818198 1
## 40248 818199 1
## 40249 818200 1
## 40250 818201 1
## 40251 818202 1
## 40252 818203 1
## 40253 818204 1
## 40254 818205 1
## 40255 818206 1
## 40256 818207 1
## 40257 818208 1
## 40258 818209 1
## 40259 818210 1
## 40260 818211 1
## 40261 818213 1
## 40262 818214 1
## 40263 818215 1
## 40264 818216 1
## 40265 818217 1
## 40266 818218 1
## 40267 818219 1
## 40268 818220 1
## 40269 818221 1
## 40270 818222 1
## 40271 818223 1
## 40272 818224 1
## 40273 818225 1
## 40274 818226 1
## 40275 818227 1
## 40276 818228 1
## 40277 818229 1
## 40278 818230 1
## 40279 818231 1
## 40280 818232 1
## 40281 818233 1
## 40282 818234 1
## 40283 818235 1
## 40284 818236 1
## 40285 818237 1
## 40286 818238 1
## 40287 818239 1
## 40288 818240 1
## 40289 818241 1
## 40290 818242 1
## 40291 818243 1
## 40292 818244 1
## 40293 818245 1
## 40294 818246 1
## 40295 818247 1
## 40296 818248 1
## 40297 818249 1
## 40298 818250 1
## 40299 818251 1
## 40300 818252 1
## 40301 818253 1
## 40302 818254 1
## 40303 818255 1
## 40304 818256 1
## 40305 818257 1
## 40306 818258 1
## 40307 818259 1
## 40308 818260 1
## 40309 818261 1
## 40310 818262 1
## 40311 818263 1
## 40312 818264 1
## 40313 818265 1
## 40314 818266 1
## 40315 818267 1
## 40316 818268 1
## 40317 818269 1
## 40318 818270 1
## 40319 818271 1
## 40320 818272 1
## 40321 818273 1
## 40322 818274 1
## 40323 818275 1
## 40324 818276 1
## 40325 818277 1
## 40326 818278 1
## 40327 818279 1
## 40328 818280 1
## 40329 818281 1
## 40330 818282 1
## 40331 818283 1
## 40332 818284 1
## 40333 818285 1
## 40334 818286 1
## 40335 818287 1
## 40336 818288 1
## 40337 818289 1
## 40338 818290 1
## 40339 818291 1
## 40340 818292 1
## 40341 818293 1
## 40342 818294 1
## 40343 818296 1
## 40344 818297 1
## 40345 818298 1
## 40346 818299 1
## 40347 818300 1
## 40348 818301 1
## 40349 818302 1
## 40350 818303 1
## 40351 818304 1
## 40352 818305 1
## 40353 818306 1
## 40354 818307 1
## 40355 818308 1
## 40356 818309 1
## 40357 818310 1
## 40358 818311 1
## 40359 818312 1
## 40360 818313 1
## 40361 818314 1
## 40362 818315 1
## 40363 818316 1
## 40364 818317 1
## 40365 818318 1
## 40366 818319 1
## 40367 818320 1
## 40368 818321 1
## 40369 818322 1
## 40370 818323 1
## 40371 818324 1
## 40372 818325 1
## 40373 818326 1
## 40374 818327 1
## 40375 818328 1
## 40376 818329 1
## 40377 818330 1
## 40378 818331 1
## 40379 818332 1
## 40380 818333 1
## 40381 818334 1
## 40382 818335 1
## 40383 818336 1
## 40384 818337 1
## 40385 818339 1
## 40386 818340 1
## 40387 818341 1
## 40388 818342 1
## 40389 818343 1
## 40390 818344 1
## 40391 818345 1
## 40392 818346 1
## 40393 818347 1
## 40394 818348 1
## 40395 818349 1
## 40396 818350 1
## 40397 818351 1
## 40398 818352 1
## 40399 818353 1
## 40400 818354 1
## 40401 818355 1
## 40402 818356 1
## 40403 818357 1
## 40404 818358 1
## 40405 818359 1
## 40406 818360 1
## 40407 818361 1
## 40408 818362 1
## 40409 818363 1
## 40410 818364 1
## 40411 818365 1
## 40412 818366 1
## 40413 818367 1
## 40414 818368 1
## 40415 818369 1
## 40416 818370 1
## 40417 818371 1
## 40418 818372 1
## 40419 818373 1
## 40420 818374 1
## 40421 818375 1
## 40422 818376 1
## 40423 818377 1
## 40424 818378 1
## 40425 818379 1
## 40426 818380 1
## 40427 818381 1
## 40428 818382 1
## 40429 818383 1
## 40430 818384 1
## 40431 818385 1
## 40432 818386 1
## 40433 818387 1
## 40434 818388 1
## 40435 818389 1
## 40436 818390 1
## 40437 818391 1
## 40438 818392 1
## 40439 818393 1
## 40440 818394 1
## 40441 818395 1
## 40442 818396 1
## 40443 818397 1
## 40444 818398 1
## 40445 818399 1
## 40446 818400 1
## 40447 818401 1
## 40448 818402 1
## 40449 818403 1
## 40450 818404 1
## 40451 818405 1
## 40452 818406 1
## 40453 818407 1
## 40454 818408 1
## 40455 818409 1
## 40456 818410 1
## 40457 818411 1
## 40458 818412 1
## 40459 818414 1
## 40460 818415 1
## 40461 818416 1
## 40462 818417 1
## 40463 818418 1
## 40464 818419 1
## 40465 818420 1
## 40466 818421 1
## 40467 818422 1
## 40468 818423 1
## 40469 818424 1
## 40470 818425 1
## 40471 818426 1
## 40472 818427 1
## 40473 818428 1
## 40474 818429 1
## 40475 818430 1
## 40476 818431 1
## 40477 818432 1
## 40478 818433 1
## 40479 818434 1
## 40480 818435 1
## 40481 818436 1
## 40482 818437 1
## 40483 818438 1
## 40484 818439 1
## 40485 818440 1
## 40486 818441 1
## 40487 818442 1
## 40488 818443 1
## 40489 818444 1
## 40490 818445 1
## 40491 818446 1
## 40492 818447 1
## 40493 818448 1
## 40494 818449 1
## 40495 818450 1
## 40496 818451 1
## 40497 818452 1
## 40498 818453 1
## 40499 818454 1
## 40500 818455 1
## 40501 818456 1
## 40502 818457 1
## 40503 818458 1
## 40504 818459 1
## 40505 818460 1
## 40506 818461 1
## 40507 818462 1
## 40508 818463 1
## 40509 818464 1
## 40510 818465 1
## 40511 818466 1
## 40512 818467 1
## 40513 818468 1
## 40514 818469 1
## 40515 818470 1
## 40516 818471 1
## 40517 818472 1
## 40518 818473 1
## 40519 818474 1
## 40520 818475 1
## 40521 818476 1
## 40522 818477 1
## 40523 818478 1
## 40524 818479 1
## 40525 818480 1
## 40526 818481 1
## 40527 818482 1
## 40528 818483 1
## 40529 818484 1
## 40530 818485 1
## 40531 818486 1
## 40532 818487 1
## 40533 818488 1
## 40534 818489 1
## 40535 818490 1
## 40536 818491 1
## 40537 818492 1
## 40538 818493 1
## 40539 818494 1
## 40540 818495 1
## 40541 818496 1
## 40542 818497 1
## 40543 818498 1
## 40544 818499 1
## 40545 818500 1
## 40546 818501 1
## 40547 818502 1
## 40548 818503 1
## 40549 818504 1
## 40550 818505 1
## 40551 818506 1
## 40552 818507 1
## 40553 818508 1
## 40554 818509 1
## 40555 818510 1
## 40556 818511 1
## 40557 818512 1
## 40558 818513 1
## 40559 818514 1
## 40560 818515 1
## 40561 818516 1
## 40562 818517 1
## 40563 818519 1
## 40564 818520 1
## 40565 818521 1
## 40566 818522 1
## 40567 818523 1
## 40568 818524 1
## 40569 818525 1
## 40570 818526 1
## 40571 818527 1
## 40572 818528 1
## 40573 818529 1
## 40574 818530 1
## 40575 818531 1
## 40576 818532 1
## 40577 818533 1
## 40578 818534 1
## 40579 818535 1
## 40580 818536 1
## 40581 818537 1
## 40582 818538 1
## 40583 818539 1
## 40584 818540 1
## 40585 818541 1
## 40586 818542 1
## 40587 818543 1
## 40588 818544 1
## 40589 818545 1
## 40590 818546 1
## 40591 818547 1
## 40592 818548 1
## 40593 818549 1
## 40594 818550 1
## 40595 818551 1
## 40596 818552 1
## 40597 818553 1
## 40598 818554 1
## 40599 818555 1
## 40600 818556 1
## 40601 818557 1
## 40602 818558 1
## 40603 818560 1
## 40604 818561 1
## 40605 818562 1
## 40606 818563 1
## 40607 818564 1
## 40608 818565 1
## 40609 818566 1
## 40610 818567 1
## 40611 818568 1
## 40612 818569 1
## 40613 818570 1
## 40614 818571 1
## 40615 818572 1
## 40616 818573 1
## 40617 818574 1
## 40618 818575 1
## 40619 818576 1
## 40620 818577 1
## 40621 818578 1
## 40622 818579 1
## 40623 818580 1
## 40624 818581 1
## 40625 818582 1
## 40626 818583 1
## 40627 818584 1
## 40628 818585 1
## 40629 818586 1
## 40630 818587 1
## 40631 818588 1
## 40632 818589 1
## 40633 818590 1
## 40634 818591 1
## 40635 818592 1
## 40636 818593 1
## 40637 818594 1
## 40638 818595 1
## 40639 818596 1
## 40640 818597 1
## 40641 818598 1
## 40642 818599 1
## 40643 818600 1
## 40644 818601 1
## 40645 818602 1
## 40646 818603 1
## 40647 818604 1
## 40648 818605 1
## 40649 818606 1
## 40650 818607 1
## 40651 818608 1
## 40652 818609 1
## 40653 818610 1
## 40654 818611 1
## 40655 818612 1
## 40656 818613 1
## 40657 818614 1
## 40658 818615 1
## 40659 818616 1
## 40660 818617 1
## 40661 818618 1
## 40662 818619 1
## 40663 818620 1
## 40664 818621 1
## 40665 818622 1
## 40666 818623 1
## 40667 818624 1
## 40668 818625 1
## 40669 818626 1
## 40670 818627 1
## 40671 818628 1
## 40672 818629 1
## 40673 818630 1
## 40674 818631 1
## 40675 818632 1
## 40676 818633 1
## 40677 818634 1
## 40678 818635 1
## 40679 818636 1
## 40680 818637 1
## 40681 818638 1
## 40682 818639 1
## 40683 818640 1
## 40684 818641 1
## 40685 818642 1
## 40686 818643 1
## 40687 818644 1
## 40688 818645 1
## 40689 818646 1
## 40690 818647 1
## 40691 818649 1
## 40692 818650 1
## 40693 818651 1
## 40694 818652 1
## 40695 818653 1
## 40696 818654 1
## 40697 818655 1
## 40698 818656 1
## 40699 818657 1
## 40700 818658 1
## 40701 818659 1
## 40702 818660 1
## 40703 818661 1
## 40704 818662 1
## 40705 818663 1
## 40706 818664 1
## 40707 818665 1
## 40708 818666 1
## 40709 818667 1
## 40710 818668 1
## 40711 818669 1
## 40712 818670 1
## 40713 818671 1
## 40714 818672 1
## 40715 818673 1
## 40716 818674 1
## 40717 818675 1
## 40718 818676 1
## 40719 818677 1
## 40720 818678 1
## 40721 818679 1
## 40722 818680 1
## 40723 818681 1
## 40724 818682 1
## 40725 818683 1
## 40726 818684 1
## 40727 818685 1
## 40728 818686 1
## 40729 818687 1
## 40730 818688 1
## 40731 818689 1
## 40732 818690 1
## 40733 818691 1
## 40734 818692 1
## 40735 818693 1
## 40736 818694 1
## 40737 818695 1
## 40738 818696 1
## 40739 818697 1
## 40740 818698 1
## 40741 818699 1
## 40742 818700 1
## 40743 818701 1
## 40744 818702 1
## 40745 818703 1
## 40746 818704 1
## 40747 818705 1
## 40748 818706 1
## 40749 818707 1
## 40750 818708 1
## 40751 818709 1
## 40752 818710 1
## 40753 818711 1
## 40754 818712 1
## 40755 818713 1
## 40756 818714 1
## 40757 818715 1
## 40758 818716 1
## 40759 818717 1
## 40760 818718 1
## 40761 818719 1
## 40762 818720 1
## 40763 818721 1
## 40764 818722 1
## 40765 818723 1
## 40766 818724 1
## 40767 818725 1
## 40768 818726 1
## 40769 818727 1
## 40770 818728 1
## 40771 818729 1
## 40772 818730 1
## 40773 818731 1
## 40774 818732 1
## 40775 818733 1
## 40776 818734 1
## 40777 818735 1
## 40778 818736 1
## 40779 818737 1
## 40780 818738 1
## 40781 818739 1
## 40782 818740 1
## 40783 818741 1
## 40784 818742 1
## 40785 818743 1
## 40786 818744 1
## 40787 818745 1
## 40788 818746 1
## 40789 818747 1
## 40790 818748 1
## 40791 818749 1
## 40792 818750 1
## 40793 818751 1
## 40794 818752 1
## 40795 818753 1
## 40796 818754 1
## 40797 818755 1
## 40798 818756 1
## 40799 818757 1
## 40800 818758 1
## 40801 818759 1
## 40802 818760 1
## 40803 818761 1
## 40804 818762 1
## 40805 818763 1
## 40806 818764 1
## 40807 818765 1
## 40808 818766 1
## 40809 818767 1
## 40810 818768 1
## 40811 818769 1
## 40812 818770 1
## 40813 818771 1
## 40814 818773 1
## 40815 818774 1
## 40816 818775 1
## 40817 818776 1
## 40818 818777 1
## 40819 818778 1
## 40820 818779 1
## 40821 818780 1
## 40822 818781 1
## 40823 818782 1
## 40824 818783 1
## 40825 818784 1
## 40826 818785 1
## 40827 818786 1
## 40828 818787 1
## 40829 818788 1
## 40830 818789 1
## 40831 818790 1
## 40832 818791 1
## 40833 818792 1
## 40834 818793 1
## 40835 818794 1
## 40836 818795 1
## 40837 818796 1
## 40838 818797 1
## 40839 818798 1
## 40840 818799 1
## 40841 818800 1
## 40842 818801 1
## 40843 818802 1
## 40844 818803 1
## 40845 818804 1
## 40846 818805 1
## 40847 818806 1
## 40848 818807 1
## 40849 818808 1
## 40850 818809 1
## 40851 818810 1
## 40852 818811 1
## 40853 818812 1
## 40854 818813 1
## 40855 818814 1
## 40856 818815 1
## 40857 818816 1
## 40858 818817 1
## 40859 818818 1
## 40860 818819 1
## 40861 818820 1
## 40862 818821 1
## 40863 818822 1
## 40864 818823 1
## 40865 818824 1
## 40866 818825 1
## 40867 818826 1
## 40868 818827 1
## 40869 818828 1
## 40870 818829 1
## 40871 818830 1
## 40872 818831 1
## 40873 818832 1
## 40874 818833 1
## 40875 818834 1
## 40876 818835 1
## 40877 818836 1
## 40878 818837 1
## 40879 818838 1
## 40880 818839 1
## 40881 818840 1
## 40882 818841 1
## 40883 818842 1
## 40884 818843 1
## 40885 818844 1
## 40886 818845 1
## 40887 818846 1
## 40888 818847 1
## 40889 818848 1
## 40890 818849 1
## 40891 818850 1
## 40892 818851 1
## 40893 818852 1
## 40894 818853 1
## 40895 818854 1
## 40896 818855 1
## 40897 818856 1
## 40898 818857 1
## 40899 818858 1
## 40900 818859 1
## 40901 818860 1
## 40902 818861 1
## 40903 818862 1
## 40904 818863 1
## 40905 818864 1
## 40906 818865 1
## 40907 818866 1
## 40908 818867 1
## 40909 818868 1
## 40910 818869 1
## 40911 818870 1
## 40912 818871 1
## 40913 818872 1
## 40914 818873 1
## 40915 818875 1
## 40916 818876 1
## 40917 818877 1
## 40918 818878 1
## 40919 818879 1
## 40920 818880 1
## 40921 818881 1
## 40922 818882 1
## 40923 818883 1
## 40924 818884 1
## 40925 818885 1
## 40926 818886 1
## 40927 818887 1
## 40928 818888 1
## 40929 818889 1
## 40930 818890 1
## 40931 818891 1
## 40932 818892 1
## 40933 818893 1
## 40934 818894 1
## 40935 818895 1
## 40936 818896 1
## 40937 818897 1
## 40938 818898 1
## 40939 818899 1
## 40940 818900 1
## 40941 818901 1
## 40942 818902 1
## 40943 818903 1
## 40944 818904 1
## 40945 818905 1
## 40946 818906 1
## 40947 818907 1
## 40948 818908 1
## 40949 818909 1
## 40950 818910 1
## 40951 818911 1
## 40952 818912 1
## 40953 818913 1
## 40954 818914 1
## 40955 818915 1
## 40956 818916 1
## 40957 818917 1
## 40958 818918 1
## 40959 818919 1
## 40960 818920 1
## 40961 818921 1
## 40962 818922 1
## 40963 818923 1
## 40964 818924 1
## 40965 818925 1
## 40966 818926 1
## 40967 818927 1
## 40968 818928 1
## 40969 818929 1
## 40970 818930 1
## 40971 818931 1
## 40972 818932 1
## 40973 818933 1
## 40974 818934 1
## 40975 818935 1
## 40976 818936 1
## 40977 818937 1
## 40978 818938 1
## 40979 818939 1
## 40980 818940 1
## 40981 818941 1
## 40982 818942 1
## 40983 818943 1
## 40984 818944 1
## 40985 818945 1
## 40986 818946 1
## 40987 818947 1
## 40988 818948 1
## 40989 818949 1
## 40990 818950 1
## 40991 818951 1
## 40992 818952 1
## 40993 818953 1
## 40994 818954 1
## 40995 818955 1
## 40996 818956 1
## 40997 818957 1
## 40998 818958 1
## 40999 818959 1
## 41000 818960 1
## 41001 818961 1
## 41002 818962 1
## 41003 818963 1
## 41004 818964 1
## 41005 818965 1
## 41006 818966 1
## 41007 818967 1
## 41008 818969 1
## 41009 818970 1
## 41010 818971 1
## 41011 818972 1
## 41012 818973 1
## 41013 818974 1
## 41014 818975 1
## 41015 818976 1
## 41016 818977 1
## 41017 818978 1
## 41018 818979 1
## 41019 818980 1
## 41020 818981 1
## 41021 818982 1
## 41022 818983 1
## 41023 818984 1
## 41024 818985 1
## 41025 818986 1
## 41026 818987 1
## 41027 818988 1
## 41028 818989 1
## 41029 818990 1
## 41030 818991 1
## 41031 818992 1
## 41032 818993 1
## 41033 818994 1
## 41034 818995 1
## 41035 818996 1
## 41036 818997 1
## 41037 818998 1
## 41038 818999 1
## 41039 819000 1
## 41040 819001 1
## 41041 819003 1
## 41042 819004 1
## 41043 819005 1
## 41044 819006 1
## 41045 819007 1
## 41046 819008 1
## 41047 819009 1
## 41048 819010 1
## 41049 819011 1
## 41050 819012 1
## 41051 819013 1
## 41052 819014 1
## 41053 819015 1
## 41054 819016 1
## 41055 819017 1
## 41056 819019 1
## 41057 819020 1
## 41058 819021 1
## 41059 819022 1
## 41060 819023 1
## 41061 819024 1
## 41062 819025 1
## 41063 819026 1
## 41064 819027 1
## 41065 819028 1
## 41066 819029 1
## 41067 819030 1
## 41068 819031 1
## 41069 819032 1
## 41070 819033 1
## 41071 819034 1
## 41072 819035 1
## 41073 819036 1
## 41074 819037 1
## 41075 819038 1
## 41076 819039 1
## 41077 819040 1
## 41078 819041 1
## 41079 819042 1
## 41080 819043 1
## 41081 819044 1
## 41082 819045 1
## 41083 819046 1
## 41084 819047 1
## 41085 819048 1
## 41086 819049 1
## 41087 819050 1
## 41088 819051 1
## 41089 819052 1
## 41090 819053 1
## 41091 819054 1
## 41092 819055 1
## 41093 819056 1
## 41094 819057 1
## 41095 819058 1
## 41096 819059 1
## 41097 819060 1
## 41098 819061 1
## 41099 819062 1
## 41100 819063 1
## 41101 819064 1
## 41102 819065 1
## 41103 819066 1
## 41104 819067 1
## 41105 819068 1
## 41106 819069 1
## 41107 819070 1
## 41108 819071 1
## 41109 819072 1
## 41110 819073 1
## 41111 819074 1
## 41112 819075 1
## 41113 819076 1
## 41114 819077 1
## 41115 819078 1
## 41116 819079 1
## 41117 819080 1
## 41118 819081 1
## 41119 819082 1
## 41120 819083 1
## 41121 819084 1
## 41122 819085 1
## 41123 819086 1
## 41124 819087 1
## 41125 819088 1
## 41126 819089 1
## 41127 819090 1
## 41128 819091 1
## 41129 819092 1
## 41130 819093 1
## 41131 819094 1
## 41132 819095 1
## 41133 819096 1
## 41134 819097 1
## 41135 819098 1
## 41136 819099 1
## 41137 819100 1
## 41138 819101 1
## 41139 819102 1
## 41140 819103 1
## 41141 819104 1
## 41142 819105 1
## 41143 819106 1
## 41144 819107 1
## 41145 819108 1
## 41146 819109 1
## 41147 819110 1
## 41148 819111 1
## 41149 819112 1
## 41150 819113 1
## 41151 819114 1
## 41152 819115 1
## 41153 819116 1
## 41154 819117 1
## 41155 819118 1
## 41156 819119 1
## 41157 819120 1
## 41158 819121 1
## 41159 819122 1
## 41160 819123 1
## 41161 819124 1
## 41162 819125 1
## 41163 819126 1
## 41164 819127 1
## 41165 819128 1
## 41166 819129 1
## 41167 819130 1
## 41168 819131 1
## 41169 819132 1
## 41170 819133 1
## 41171 819135 1
## 41172 819136 1
## 41173 819138 1
## 41174 819139 1
## 41175 819140 1
## 41176 819141 1
## 41177 819142 1
## 41178 819143 1
## 41179 819144 1
## 41180 819145 1
## 41181 819146 1
## 41182 819147 1
## 41183 819148 1
## 41184 819149 1
## 41185 819150 1
## 41186 819151 1
## 41187 819152 1
## 41188 819153 1
## 41189 819154 1
## 41190 819155 1
## 41191 819156 1
## 41192 819157 1
## 41193 819158 1
## 41194 819159 1
## 41195 819160 1
## 41196 819161 1
## 41197 819162 1
## 41198 819163 1
## 41199 819164 1
## 41200 819165 1
## 41201 819166 1
## 41202 819167 1
## 41203 819168 1
## 41204 819169 1
## 41205 819170 1
## 41206 819171 1
## 41207 819172 1
## 41208 819173 1
## 41209 819174 1
## 41210 819175 1
## 41211 819176 1
## 41212 819177 1
## 41213 819178 1
## 41214 819179 1
## 41215 819180 1
## 41216 819181 1
## 41217 819182 1
## 41218 819183 1
## 41219 819184 1
## 41220 819185 1
## 41221 819186 1
## 41222 819187 1
## 41223 819188 1
## 41224 819189 1
## 41225 819190 1
## 41226 819191 1
## 41227 819192 1
## 41228 819193 1
## 41229 819194 1
## 41230 819195 1
## 41231 819196 1
## 41232 819197 1
## 41233 819198 1
## 41234 819199 1
## 41235 819200 1
## 41236 819201 1
## 41237 819202 1
## 41238 819203 1
## 41239 819204 1
## 41240 819205 1
## 41241 819206 1
## 41242 819207 1
## 41243 819208 1
## 41244 819209 1
## 41245 819210 1
## 41246 819211 1
## 41247 819212 1
## 41248 819213 1
## 41249 819214 1
## 41250 819215 1
## 41251 819216 1
## 41252 819217 1
## 41253 819218 1
## 41254 819219 1
## 41255 819220 1
## 41256 819221 1
## 41257 819222 1
## 41258 819223 1
## 41259 819224 1
## 41260 819225 1
## 41261 819226 1
## 41262 819227 1
## 41263 819228 1
## 41264 819229 1
## 41265 819230 1
## 41266 819231 1
## 41267 819232 1
## 41268 819233 1
## 41269 819234 1
## 41270 819235 1
## 41271 819236 1
## 41272 819237 1
## 41273 819238 1
## 41274 819239 1
## 41275 819240 1
## 41276 819241 1
## 41277 819242 1
## 41278 819243 1
## 41279 819244 1
## 41280 819245 1
## 41281 819246 1
## 41282 819247 1
## 41283 819248 1
## 41284 819249 1
## 41285 819250 1
## 41286 819251 1
## 41287 819252 1
## 41288 819253 1
## 41289 819254 1
## 41290 819255 1
## 41291 819256 1
## 41292 819257 1
## 41293 819258 1
## 41294 819259 1
## 41295 819260 1
## 41296 819261 1
## 41297 819262 1
## 41298 819264 1
## 41299 819265 1
## 41300 819266 1
## 41301 819267 1
## 41302 819268 1
## 41303 819269 1
## 41304 819271 1
## 41305 819272 1
## 41306 819273 1
## 41307 819274 1
## 41308 819275 1
## 41309 819276 1
## 41310 819277 1
## 41311 819278 1
## 41312 819279 1
## 41313 819280 1
## 41314 819281 1
## 41315 819282 1
## 41316 819283 1
## 41317 819284 1
## 41318 819285 1
## 41319 819286 1
## 41320 819287 1
## 41321 819288 1
## 41322 819289 1
## 41323 819290 1
## 41324 819291 1
## 41325 819292 1
## 41326 819293 1
## 41327 819294 1
## 41328 819295 1
## 41329 819296 1
## 41330 819297 1
## 41331 819298 1
## 41332 819299 1
## 41333 819300 1
## 41334 819301 1
## 41335 819302 1
## 41336 819303 1
## 41337 819304 1
## 41338 819305 1
## 41339 819306 1
## 41340 819307 1
## 41341 819308 1
## 41342 819309 1
## 41343 819310 1
## 41344 819311 1
## 41345 819312 1
## 41346 819313 1
## 41347 819314 1
## 41348 819315 1
## 41349 819316 1
## 41350 819317 1
## 41351 819318 1
## 41352 819319 1
## 41353 819320 1
## 41354 819321 1
## 41355 819322 1
## 41356 819323 1
## 41357 819324 1
## 41358 819325 1
## 41359 819326 1
## 41360 819327 1
## 41361 819328 1
## 41362 819329 1
## 41363 819330 1
## 41364 819331 1
## 41365 819332 1
## 41366 819334 1
## 41367 819335 1
## 41368 819336 1
## 41369 819337 1
## 41370 819338 1
## 41371 819339 1
## 41372 819340 1
## 41373 819341 1
## 41374 819342 1
## 41375 819343 1
## 41376 819344 1
## 41377 819345 1
## 41378 819346 1
## 41379 819347 1
## 41380 819348 1
## 41381 819349 1
## 41382 819350 1
## 41383 819351 1
## 41384 819352 1
## 41385 819353 1
## 41386 819354 1
## 41387 819355 1
## 41388 819356 1
## 41389 819357 1
## 41390 819358 1
## 41391 819359 1
## 41392 819360 1
## 41393 819361 1
## 41394 819362 1
## 41395 819363 1
## 41396 819364 1
## 41397 819365 1
## 41398 819366 1
## 41399 819367 1
## 41400 819368 1
## 41401 819369 1
## 41402 819370 1
## 41403 819371 1
## 41404 819372 1
## 41405 819373 1
## 41406 819374 1
## 41407 819375 1
## 41408 819376 1
## 41409 819377 1
## 41410 819378 1
## 41411 819379 1
## 41412 819380 1
## 41413 819381 1
## 41414 819382 1
## 41415 819383 1
## 41416 819384 1
## 41417 819385 1
## 41418 819386 1
## 41419 819387 1
## 41420 819388 1
## 41421 819389 1
## 41422 819390 1
## 41423 819391 1
## 41424 819392 1
## 41425 819393 1
## 41426 819394 1
## 41427 819395 1
## 41428 819396 1
## 41429 819397 1
## 41430 819398 1
## 41431 819399 1
## 41432 819400 1
## 41433 819401 1
## 41434 819402 1
## 41435 819403 1
## 41436 819404 1
## 41437 819405 1
## 41438 819406 1
## 41439 819407 1
## 41440 819408 1
## 41441 819409 1
## 41442 819410 1
## 41443 819411 1
## 41444 819412 1
## 41445 819413 1
## 41446 819414 1
## 41447 819415 1
## 41448 819416 1
## 41449 819417 1
## 41450 819418 1
## 41451 819419 1
## 41452 819420 1
## 41453 819421 1
## 41454 819422 1
## 41455 819423 1
## 41456 819424 1
## 41457 819425 1
## 41458 819426 1
## 41459 819427 1
## 41460 819428 1
## 41461 819429 1
## 41462 819430 1
## 41463 819431 1
## 41464 819432 1
## 41465 819433 1
## 41466 819434 1
## 41467 819435 1
## 41468 819436 1
## 41469 819437 1
## 41470 819438 1
## 41471 819439 1
## 41472 819440 1
## 41473 819441 1
## 41474 819442 1
## 41475 819443 1
## 41476 819444 1
## 41477 819445 1
## 41478 819446 1
## 41479 819447 1
## 41480 819448 1
## 41481 819449 1
## 41482 819450 1
## 41483 819451 1
## 41484 819452 1
## 41485 819453 1
## 41486 819454 1
## 41487 819455 1
## 41488 819456 1
## 41489 819457 1
## 41490 819458 1
## 41491 819459 1
## 41492 819460 1
## 41493 819461 1
## 41494 819462 1
## 41495 819463 1
## 41496 819464 1
## 41497 819465 1
## 41498 819466 1
## 41499 819467 1
## 41500 819468 1
## 41501 819469 1
## 41502 819470 1
## 41503 819471 1
## 41504 819472 1
## 41505 819473 1
## 41506 819474 1
## 41507 819475 1
## 41508 819476 1
## 41509 819477 1
## 41510 819478 1
## 41511 819479 1
## 41512 819480 1
## 41513 819481 1
## 41514 819482 1
## 41515 819484 1
## 41516 819485 1
## 41517 819486 1
## 41518 819487 1
## 41519 819488 1
## 41520 819489 1
## 41521 819490 1
## 41522 819491 1
## 41523 819492 1
## 41524 819493 1
## 41525 819494 1
## 41526 819495 1
## 41527 819496 1
## 41528 819497 1
## 41529 819498 1
## 41530 819499 1
## 41531 819500 1
## 41532 819501 1
## 41533 819502 1
## 41534 819503 1
## 41535 819504 1
## 41536 819505 1
## 41537 819506 1
## 41538 819507 1
## 41539 819508 1
## 41540 819509 1
## 41541 819510 1
## 41542 819511 1
## 41543 819512 1
## 41544 819513 1
## 41545 819514 1
## 41546 819515 1
## 41547 819516 1
## 41548 819517 1
## 41549 819518 1
## 41550 819519 1
## 41551 819520 1
## 41552 819521 1
## 41553 819522 1
## 41554 819523 1
## 41555 819525 1
## 41556 819526 1
## 41557 819527 1
## 41558 819528 1
## 41559 819529 1
## 41560 819530 1
## 41561 819531 1
## 41562 819532 1
## 41563 819533 1
## 41564 819534 1
## 41565 819535 1
## 41566 819536 1
## 41567 819537 1
## 41568 819538 1
## 41569 819539 1
## 41570 819540 1
## 41571 819541 1
## 41572 819542 1
## 41573 819543 1
## 41574 819544 1
## 41575 819545 1
## 41576 819546 1
## 41577 819547 1
## 41578 819549 1
## 41579 819550 1
## 41580 819551 1
## 41581 819552 1
## 41582 819553 1
## 41583 819554 1
## 41584 819555 1
## 41585 819556 1
## 41586 819557 1
## 41587 819558 1
## 41588 819559 1
## 41589 819560 1
## 41590 819561 1
## 41591 819562 1
## 41592 819563 1
## 41593 819564 1
## 41594 819565 1
## 41595 819566 1
## 41596 819567 1
## 41597 819568 1
## 41598 819569 1
## 41599 819570 1
## 41600 819571 1
## 41601 819572 1
## 41602 819573 1
## 41603 819574 1
## 41604 819575 1
## 41605 819576 1
## 41606 819577 1
## 41607 819578 1
## 41608 819579 1
## 41609 819580 1
## 41610 819581 1
## 41611 819582 1
## 41612 819583 1
## 41613 819584 1
## 41614 819585 1
## 41615 819586 1
## 41616 819587 1
## 41617 819588 1
## 41618 819589 1
## 41619 819590 1
## 41620 819591 1
## 41621 819592 1
## 41622 819593 1
## 41623 819594 1
## 41624 819595 1
## 41625 819596 1
## 41626 819597 1
## 41627 819598 1
## 41628 819599 1
## 41629 819600 1
## 41630 819601 1
## 41631 819602 1
## 41632 819603 1
## 41633 819604 1
## 41634 819605 1
## 41635 819606 1
## 41636 819607 1
## 41637 819608 1
## 41638 819609 1
## 41639 819610 1
## 41640 819611 1
## 41641 819612 1
## 41642 819613 1
## 41643 819614 1
## 41644 819615 1
## 41645 819616 1
## 41646 819617 1
## 41647 819618 1
## 41648 819619 1
## 41649 819620 1
## 41650 819621 1
## 41651 819622 1
## 41652 819623 1
## 41653 819624 1
## 41654 819625 1
## 41655 819626 1
## 41656 819627 1
## 41657 819628 1
## 41658 819629 1
## 41659 819630 1
## 41660 819631 1
## 41661 819632 1
## 41662 819633 1
## 41663 819634 1
## 41664 819635 1
## 41665 819636 1
## 41666 819637 1
## 41667 819638 1
## 41668 819639 1
## 41669 819640 1
## 41670 819641 1
## 41671 819642 1
## 41672 819643 1
## 41673 819644 1
## 41674 819645 1
## 41675 819646 1
## 41676 819647 1
## 41677 819648 1
## 41678 819649 1
## 41679 819650 1
## 41680 819651 1
## 41681 819652 1
## 41682 819653 1
## 41683 819654 1
## 41684 819655 1
## 41685 819656 1
## 41686 819657 1
## 41687 819658 1
## 41688 819659 1
## 41689 819660 1
## 41690 819661 1
## 41691 819662 1
## 41692 819663 1
## 41693 819664 1
## 41694 819665 1
## 41695 819666 1
## 41696 819667 1
## 41697 819668 1
## 41698 819669 1
## 41699 819670 1
## 41700 819671 1
## 41701 819672 1
## 41702 819673 1
## 41703 819674 1
## 41704 819675 1
## 41705 819676 1
## 41706 819677 1
## 41707 819678 1
## 41708 819679 1
## 41709 819680 1
## 41710 819681 1
## 41711 819682 1
## 41712 819683 1
## 41713 819684 1
## 41714 819685 1
## 41715 819686 1
## 41716 819687 1
## 41717 819688 1
## 41718 819689 1
## 41719 819690 1
## 41720 819691 1
## 41721 819692 1
## 41722 819693 1
## 41723 819694 1
## 41724 819695 1
## 41725 819696 1
## 41726 819697 1
## 41727 819698 1
## 41728 819699 1
## 41729 819700 1
## 41730 819701 1
## 41731 819702 1
## 41732 819703 1
## 41733 819704 1
## 41734 819705 1
## 41735 819706 1
## 41736 819707 1
## 41737 819708 1
## 41738 819709 1
## 41739 819710 1
## 41740 819711 1
## 41741 819712 1
## 41742 819713 1
## 41743 819714 1
## 41744 819715 1
## 41745 819716 1
## 41746 819717 1
## 41747 819718 1
## 41748 819719 1
## 41749 819720 1
## 41750 819721 1
## 41751 819722 1
## 41752 819723 1
## 41753 819724 1
## 41754 819725 1
## 41755 819726 1
## 41756 819727 1
## 41757 819728 1
## 41758 819729 1
## 41759 819730 1
## 41760 819731 1
## 41761 819732 1
## 41762 819733 1
## 41763 819734 1
## 41764 819735 1
## 41765 819736 1
## 41766 819737 1
## 41767 819739 1
## 41768 819740 1
## 41769 819741 1
## 41770 819742 1
## 41771 819743 1
## 41772 819744 1
## 41773 819745 1
## 41774 819746 1
## 41775 819747 1
## 41776 819748 1
## 41777 819749 1
## 41778 819750 1
## 41779 819751 1
## 41780 819752 1
## 41781 819753 1
## 41782 819754 1
## 41783 819755 1
## 41784 819756 1
## 41785 819757 1
## 41786 819758 1
## 41787 819759 1
## 41788 819760 1
## 41789 819761 1
## 41790 819762 1
## 41791 819763 1
## 41792 819764 1
## 41793 819765 1
## 41794 819766 1
## 41795 819767 1
## 41796 819768 1
## 41797 819769 1
## 41798 819770 1
## 41799 819771 1
## 41800 819772 1
## 41801 819773 1
## 41802 819774 1
## 41803 819775 1
## 41804 819776 1
## 41805 819777 1
## 41806 819778 1
## 41807 819779 1
## 41808 819780 1
## 41809 819781 1
## 41810 819782 1
## 41811 819783 1
## 41812 819784 1
## 41813 819785 1
## 41814 819786 1
## 41815 819787 1
## 41816 819788 1
## 41817 819789 1
## 41818 819791 1
## 41819 819792 1
## 41820 819793 1
## 41821 819794 1
## 41822 819795 1
## 41823 819796 1
## 41824 819797 1
## 41825 819798 1
## 41826 819800 1
## 41827 819801 1
## 41828 819802 1
## 41829 819803 1
## 41830 819804 1
## 41831 819805 1
## 41832 819806 1
## 41833 819807 1
## 41834 819808 1
## 41835 819809 1
## 41836 819810 1
## 41837 819811 1
## 41838 819812 1
## 41839 819813 1
## 41840 819814 1
## 41841 819815 1
## 41842 819816 1
## 41843 819817 1
## 41844 819818 1
## 41845 819819 1
## 41846 819820 1
## 41847 819821 1
## 41848 819822 1
## 41849 819823 1
## 41850 819824 1
## 41851 819825 1
## 41852 819826 1
## 41853 819827 1
## 41854 819828 1
## 41855 819829 1
## 41856 819830 1
## 41857 819831 1
## 41858 819832 1
## 41859 819833 1
## 41860 819834 1
## 41861 819835 1
## 41862 819836 1
## 41863 819837 1
## 41864 819838 1
## 41865 819839 1
## 41866 819840 1
## 41867 819841 1
## 41868 819842 1
## 41869 819844 1
## 41870 819845 1
## 41871 819846 1
## 41872 819847 1
## 41873 819848 1
## 41874 819849 1
## 41875 819850 1
## 41876 819851 1
## 41877 819852 1
## 41878 819853 1
## 41879 819854 1
## 41880 819855 1
## 41881 819856 1
## 41882 819857 1
## 41883 819858 1
## 41884 819859 1
## 41885 819860 1
## 41886 819862 1
## 41887 819863 1
## 41888 819864 1
## 41889 819865 1
## 41890 819866 1
## 41891 819867 1
## 41892 819868 1
## 41893 819869 1
## 41894 819870 1
## 41895 819871 1
## 41896 819872 1
## 41897 819873 1
## 41898 819874 1
## 41899 819875 1
## 41900 819876 1
## 41901 819877 1
## 41902 819878 1
## 41903 819879 1
## 41904 819880 1
## 41905 819881 1
## 41906 819882 1
## 41907 819883 1
## 41908 819884 1
## 41909 819885 1
## 41910 819886 1
## 41911 819887 1
## 41912 819888 1
## 41913 819889 1
## 41914 819890 1
## 41915 819891 1
## 41916 819892 1
## 41917 819893 1
## 41918 819895 1
## 41919 819896 1
## 41920 819897 1
## 41921 819898 1
## 41922 819899 1
## 41923 819900 1
## 41924 819901 1
## 41925 819902 1
## 41926 819903 1
## 41927 819904 1
## 41928 819905 1
## 41929 819906 1
## 41930 819907 1
## 41931 819908 1
## 41932 819909 1
## 41933 819910 1
## 41934 819911 1
## 41935 819912 1
## 41936 819913 1
## 41937 819914 1
## 41938 819915 1
## 41939 819916 1
## 41940 819917 1
## 41941 819918 1
## 41942 819919 1
## 41943 819920 1
## 41944 819921 1
## 41945 819922 1
## 41946 819923 1
## 41947 819924 1
## 41948 819925 1
## 41949 819926 1
## 41950 819927 1
## 41951 819929 1
## 41952 819930 1
## 41953 819931 1
## 41954 819932 1
## 41955 819933 1
## 41956 819934 1
## 41957 819935 1
## 41958 819936 1
## 41959 819937 1
## 41960 819938 1
## 41961 819939 1
## 41962 819940 1
## 41963 819941 1
## 41964 819942 1
## 41965 819943 1
## 41966 819944 1
## 41967 819945 1
## 41968 819946 1
## 41969 819947 1
## 41970 819948 1
## 41971 819949 1
## 41972 819950 1
## 41973 819951 1
## 41974 819952 1
## 41975 819953 1
## 41976 819954 1
## 41977 819955 1
## 41978 819956 1
## 41979 819957 1
## 41980 819958 1
## 41981 819959 1
## 41982 819960 1
## 41983 819961 1
## 41984 819962 1
## 41985 819963 1
## 41986 819964 1
## 41987 819965 1
## 41988 819966 1
## 41989 819967 1
## 41990 819968 1
## 41991 819969 1
## 41992 819970 1
## 41993 819971 1
## 41994 819972 1
## 41995 819973 1
## 41996 819974 1
## 41997 819975 1
## 41998 819976 1
## 41999 819977 1
## 42000 819978 1
## 42001 819979 1
## 42002 819980 1
## 42003 819981 1
## 42004 819982 1
## 42005 819983 1
## 42006 819984 1
## 42007 819985 1
## 42008 819986 1
## 42009 819987 1
## 42010 819988 1
## 42011 819989 1
## 42012 819990 1
## 42013 819991 1
## 42014 819992 1
## 42015 819993 1
## 42016 819994 1
## 42017 819995 1
## 42018 819996 1
## 42019 819997 1
## 42020 819998 1
## 42021 819999 1
## 42022 820000 1
## 42023 820001 1
## 42024 820002 1
## 42025 820003 1
## 42026 820004 1
## 42027 820005 1
## 42028 820006 1
## 42029 820007 1
## 42030 820008 1
## 42031 820009 1
## 42032 820010 1
## 42033 820011 1
## 42034 820012 1
## 42035 820013 1
## 42036 820014 1
## 42037 820015 1
## 42038 820016 1
## 42039 820017 1
## 42040 820018 1
## 42041 820019 1
## 42042 820020 1
## 42043 820021 1
## 42044 820022 1
## 42045 820023 1
## 42046 820024 1
## 42047 820025 1
## 42048 820026 1
## 42049 820027 1
## 42050 820028 1
## 42051 820029 1
## 42052 820030 1
## 42053 820031 1
## 42054 820032 1
## 42055 820033 1
## 42056 820034 1
## 42057 820035 1
## 42058 820036 1
## 42059 820037 1
## 42060 820038 1
## 42061 820039 1
## 42062 820040 1
## 42063 820041 1
## 42064 820042 1
## 42065 820043 1
## 42066 820044 1
## 42067 820045 1
## 42068 820046 1
## 42069 820047 1
## 42070 820048 1
## 42071 820049 1
## 42072 820050 1
## 42073 820051 1
## 42074 820052 1
## 42075 820053 1
## 42076 820054 1
## 42077 820055 1
## 42078 820056 1
## 42079 820057 1
## 42080 820058 1
## 42081 820059 1
## 42082 820060 1
## 42083 820061 1
## 42084 820062 1
## 42085 820064 1
## 42086 820065 1
## 42087 820066 1
## 42088 820067 1
## 42089 820068 1
## 42090 820069 1
## 42091 820070 1
## 42092 820071 1
## 42093 820072 1
## 42094 820073 1
## 42095 820074 1
## 42096 820075 1
## 42097 820077 1
## 42098 820078 1
## 42099 820079 1
## 42100 820080 1
## 42101 820081 1
## 42102 820082 1
## 42103 820083 1
## 42104 820084 1
## 42105 820085 1
## 42106 820086 1
## 42107 820087 1
## 42108 820088 1
## 42109 820089 1
## 42110 820090 1
## 42111 820091 1
## 42112 820092 1
## 42113 820093 1
## 42114 820094 1
## 42115 820095 1
## 42116 820096 1
## 42117 820097 1
## 42118 820098 1
## 42119 820099 1
## 42120 820100 1
## 42121 820101 1
## 42122 820102 1
## 42123 820103 1
## 42124 820104 1
## 42125 820105 1
## 42126 820106 1
## 42127 820107 1
## 42128 820108 1
## 42129 820109 1
## 42130 820110 1
## 42131 820111 1
## 42132 820112 1
## 42133 820113 1
## 42134 820114 1
## 42135 820115 1
## 42136 820116 1
## 42137 820117 1
## 42138 820118 1
## 42139 820119 1
## 42140 820120 1
## 42141 820121 1
## 42142 820122 1
## 42143 820123 1
## 42144 820124 1
## 42145 820125 1
## 42146 820126 1
## 42147 820127 1
## 42148 820128 1
## 42149 820129 1
## 42150 820130 1
## 42151 820131 1
## 42152 820132 1
## 42153 820133 1
## 42154 820134 1
## 42155 820135 1
## 42156 820136 1
## 42157 820137 1
## 42158 820138 1
## 42159 820139 1
## 42160 820141 1
## 42161 820142 1
## 42162 820143 1
## 42163 820144 1
## 42164 820145 1
## 42165 820146 1
## 42166 820147 1
## 42167 820148 1
## 42168 820149 1
## 42169 820150 1
## 42170 820151 1
## 42171 820152 1
## 42172 820153 1
## 42173 820154 1
## 42174 820155 1
## 42175 820156 1
## 42176 820157 1
## 42177 820158 1
## 42178 820159 1
## 42179 820160 1
## 42180 820161 1
## 42181 820162 1
## 42182 820163 1
## 42183 820164 1
## 42184 820165 1
## 42185 820166 1
## 42186 820167 1
## 42187 820168 1
## 42188 820169 1
## 42189 820170 1
## 42190 820171 1
## 42191 820172 1
## 42192 820173 1
## 42193 820174 1
## 42194 820175 1
## 42195 820176 1
## 42196 820177 1
## 42197 820178 1
## 42198 820179 1
## 42199 820180 1
## 42200 820181 1
## 42201 820182 1
## 42202 820183 1
## 42203 820184 1
## 42204 820185 1
## 42205 820186 1
## 42206 820187 1
## 42207 820188 1
## 42208 820189 1
## 42209 820190 1
## 42210 820191 1
## 42211 820192 1
## 42212 820193 1
## 42213 820194 1
## 42214 820195 1
## 42215 820196 1
## 42216 820197 1
## 42217 820198 1
## 42218 820199 1
## 42219 820200 1
## 42220 820201 1
## 42221 820202 1
## 42222 820203 1
## 42223 820204 1
## 42224 820205 1
## 42225 820206 1
## 42226 820207 1
## 42227 820208 1
## 42228 820209 1
## 42229 820210 1
## 42230 820211 1
## 42231 820212 1
## 42232 820213 1
## 42233 820214 1
## 42234 820215 1
## 42235 820216 1
## 42236 820217 1
## 42237 820218 1
## 42238 820219 1
## 42239 820220 1
## 42240 820221 1
## 42241 820222 1
## 42242 820223 1
## 42243 820224 1
## 42244 820225 1
## 42245 820226 1
## 42246 820227 1
## 42247 820228 1
## 42248 820229 1
## 42249 820230 1
## 42250 820231 1
## 42251 820232 1
## 42252 820233 1
## 42253 820234 1
## 42254 820235 1
## 42255 820236 1
## 42256 820237 1
## 42257 820238 1
## 42258 820239 1
## 42259 820240 1
## 42260 820241 1
## 42261 820242 1
## 42262 820243 1
## 42263 820244 1
## 42264 820245 1
## 42265 820246 1
## 42266 820247 1
## 42267 820248 1
## 42268 820249 1
## 42269 820250 1
## 42270 820251 1
## 42271 820252 1
## 42272 820253 1
## 42273 820254 1
## 42274 820255 1
## 42275 820256 1
## 42276 820257 1
## 42277 820258 1
## 42278 820259 1
## 42279 820260 1
## 42280 820261 1
## 42281 820262 1
## 42282 820263 1
## 42283 820264 1
## 42284 820265 1
## 42285 820266 1
## 42286 820267 1
## 42287 820268 1
## 42288 820269 1
## 42289 820270 1
## 42290 820271 1
## 42291 820272 1
## 42292 820273 1
## 42293 820274 1
## 42294 820275 1
## 42295 820276 1
## 42296 820277 1
## 42297 820278 1
## 42298 820279 1
## 42299 820280 1
## 42300 820281 1
## 42301 820282 1
## 42302 820283 1
## 42303 820284 1
## 42304 820285 1
## 42305 820286 1
## 42306 820287 1
## 42307 820288 1
## 42308 820289 1
## 42309 820290 1
## 42310 820291 1
## 42311 820292 1
## 42312 820293 1
## 42313 820294 1
## 42314 820295 1
## 42315 820297 1
## 42316 820298 1
## 42317 820299 1
## 42318 820300 1
## 42319 820301 1
## 42320 820302 1
## 42321 820303 1
## 42322 820304 1
## 42323 820305 1
## 42324 820306 1
## 42325 820307 1
## 42326 820308 1
## 42327 820309 1
## 42328 820310 1
## 42329 820311 1
## 42330 820312 1
## 42331 820314 1
## 42332 820315 1
## 42333 820316 1
## 42334 820317 1
## 42335 820318 1
## 42336 820319 1
## 42337 820320 1
## 42338 820321 1
## 42339 820322 1
## 42340 820323 1
## 42341 820324 1
## 42342 820325 1
## 42343 820326 1
## 42344 820327 1
## 42345 820328 1
## 42346 820329 1
## 42347 820330 1
## 42348 820331 1
## 42349 820332 1
## 42350 820333 1
## 42351 820334 1
## 42352 820335 1
## 42353 820336 1
## 42354 820337 1
## 42355 820338 1
## 42356 820339 1
## 42357 820340 1
## 42358 820341 1
## 42359 820342 1
## 42360 820343 1
## 42361 820344 1
## 42362 820346 1
## 42363 820347 1
## 42364 820349 1
## 42365 820350 1
## 42366 820351 1
## 42367 820352 1
## 42368 820353 1
## 42369 820354 1
## 42370 820355 1
## 42371 820356 1
## 42372 820357 1
## 42373 820358 1
## 42374 820359 1
## 42375 820360 1
## 42376 820361 1
## 42377 820362 1
## 42378 820363 1
## 42379 820364 1
## 42380 820365 1
## 42381 820366 1
## 42382 820367 1
## 42383 820368 1
## 42384 820369 1
## 42385 820370 1
## 42386 820371 1
## 42387 820372 1
## 42388 820373 1
## 42389 820374 1
## 42390 820375 1
## 42391 820376 1
## 42392 820377 1
## 42393 820378 1
## 42394 820379 1
## 42395 820380 1
## 42396 820381 1
## 42397 820382 1
## 42398 820383 1
## 42399 820384 1
## 42400 820385 1
## 42401 820386 1
## 42402 820387 1
## 42403 820389 1
## 42404 820390 1
## 42405 820391 1
## 42406 820392 1
## 42407 820393 1
## 42408 820394 1
## 42409 820395 1
## 42410 820396 1
## 42411 820397 1
## 42412 820398 1
## 42413 820399 1
## 42414 820400 1
## 42415 820401 1
## 42416 820402 1
## 42417 820403 1
## 42418 820404 1
## 42419 820405 1
## 42420 820406 1
## 42421 820407 1
## 42422 820408 1
## 42423 820409 1
## 42424 820411 1
## 42425 820412 1
## 42426 820413 1
## 42427 820414 1
## 42428 820415 1
## 42429 820416 1
## 42430 820417 1
## 42431 820418 1
## 42432 820419 1
## 42433 820420 1
## 42434 820421 1
## 42435 820422 1
## 42436 820423 1
## 42437 820424 1
## 42438 820425 1
## 42439 820426 1
## 42440 820427 1
## 42441 820428 1
## 42442 820429 1
## 42443 820430 1
## 42444 820431 1
## 42445 820432 1
## 42446 820433 1
## 42447 820434 1
## 42448 820435 1
## 42449 820436 1
## 42450 820437 1
## 42451 820438 1
## 42452 820439 1
## 42453 820440 1
## 42454 820441 1
## 42455 820442 1
## 42456 820443 1
## 42457 820444 1
## 42458 820445 1
## 42459 820446 1
## 42460 820447 1
## 42461 820448 1
## 42462 820449 1
## 42463 820450 1
## 42464 820451 1
## 42465 820452 1
## 42466 820453 1
## 42467 820454 1
## 42468 820455 1
## 42469 820456 1
## 42470 820457 1
## 42471 820458 1
## 42472 820459 1
## 42473 820460 1
## 42474 820461 1
## 42475 820462 1
## 42476 820463 1
## 42477 820464 1
## 42478 820465 1
## 42479 820466 1
## 42480 820467 1
## 42481 820468 1
## 42482 820470 1
## 42483 820471 1
## 42484 820472 1
## 42485 820473 1
## 42486 820474 1
## 42487 820475 1
## 42488 820476 1
## 42489 820477 1
## 42490 820478 1
## 42491 820479 1
## 42492 820480 1
## 42493 820481 1
## 42494 820482 1
## 42495 820483 1
## 42496 820484 1
## 42497 820485 1
## 42498 820486 1
## 42499 820487 1
## 42500 820488 1
## 42501 820489 1
## 42502 820490 1
## 42503 820491 1
## 42504 820492 1
## 42505 820493 1
## 42506 820494 1
## 42507 820496 1
## 42508 820498 1
## 42509 820499 1
## 42510 820500 1
## 42511 820501 1
## 42512 820502 1
## 42513 820503 1
## 42514 820504 1
## 42515 820505 1
## 42516 820506 1
## 42517 820507 1
## 42518 820508 1
## 42519 820509 1
## 42520 820510 1
## 42521 820511 1
## 42522 820512 1
## 42523 820513 1
## 42524 820514 1
## 42525 820515 1
## 42526 820516 1
## 42527 820517 1
## 42528 820518 1
## 42529 820519 1
## 42530 820520 1
## 42531 820521 1
## 42532 820522 1
## 42533 820523 1
## 42534 820524 1
## 42535 820525 1
## 42536 820526 1
## 42537 820527 1
## 42538 820529 1
## 42539 820530 1
## 42540 820531 1
## 42541 820532 1
## 42542 820533 1
## 42543 820534 1
## 42544 820535 1
## 42545 820536 1
## 42546 820537 1
## 42547 820538 1
## 42548 820539 1
## 42549 820540 1
## 42550 820541 1
## 42551 820542 1
## 42552 820543 1
## 42553 820544 1
## 42554 820545 1
## 42555 820547 1
## 42556 820548 1
## 42557 820549 1
## 42558 820550 1
## 42559 820551 1
## 42560 820552 1
## 42561 820553 1
## 42562 820554 1
## 42563 820555 1
## 42564 820556 1
## 42565 820557 1
## 42566 820558 1
## 42567 820559 1
## 42568 820560 1
## 42569 820561 1
## 42570 820562 1
## 42571 820563 1
## 42572 820564 1
## 42573 820565 1
## 42574 820566 1
## 42575 820567 1
## 42576 820568 1
## 42577 820569 1
## 42578 820570 1
## 42579 820571 1
## 42580 820572 1
## 42581 820573 1
## 42582 820574 1
## 42583 820575 1
## 42584 820576 1
## 42585 820577 1
## 42586 820578 1
## 42587 820579 1
## 42588 820580 1
## 42589 820581 1
## 42590 820582 1
## 42591 820583 1
## 42592 820584 1
## 42593 820585 1
## 42594 820586 1
## 42595 820587 1
## 42596 820588 1
## 42597 820589 1
## 42598 820590 1
## 42599 820591 1
## 42600 820592 1
## 42601 820593 1
## 42602 820594 1
## 42603 820595 1
## 42604 820596 1
## 42605 820597 1
## 42606 820598 1
## 42607 820599 1
## 42608 820600 1
## 42609 820601 1
## 42610 820602 1
## 42611 820603 1
## 42612 820604 1
## 42613 820605 1
## 42614 820606 1
## 42615 820607 1
## 42616 820608 1
## 42617 820609 1
## 42618 820610 1
## 42619 820611 1
## 42620 820612 1
## 42621 820613 1
## 42622 820614 1
## 42623 820615 1
## 42624 820616 1
## 42625 820617 1
## 42626 820618 1
## 42627 820619 1
## 42628 820620 1
## 42629 820621 1
## 42630 820622 1
## 42631 820623 1
## 42632 820624 1
## 42633 820625 1
## 42634 820626 1
## 42635 820627 1
## 42636 820628 1
## 42637 820629 1
## 42638 820630 1
## 42639 820631 1
## 42640 820632 1
## 42641 820633 1
## 42642 820634 1
## 42643 820635 1
## 42644 820636 1
## 42645 820637 1
## 42646 820638 1
## 42647 820639 1
## 42648 820640 1
## 42649 820641 1
## 42650 820642 1
## 42651 820643 1
## 42652 820644 1
## 42653 820645 1
## 42654 820646 1
## 42655 820647 1
## 42656 820648 1
## 42657 820649 1
## 42658 820650 1
## 42659 820651 1
## 42660 820652 1
## 42661 820653 1
## 42662 820654 1
## 42663 820655 1
## 42664 820656 1
## 42665 820657 1
## 42666 820658 1
## 42667 820659 1
## 42668 820660 1
## 42669 820661 1
## 42670 820662 1
## 42671 820663 1
## 42672 820664 1
## 42673 820665 1
## 42674 820666 1
## 42675 820667 1
## 42676 820668 1
## 42677 820669 1
## 42678 820670 1
## 42679 820671 1
## 42680 820672 1
## 42681 820673 1
## 42682 820674 1
## 42683 820675 1
## 42684 820676 1
## 42685 820677 1
## 42686 820678 1
## 42687 820679 1
## 42688 820680 1
## 42689 820681 1
## 42690 820682 1
## 42691 820683 1
## 42692 820684 1
## 42693 820685 1
## 42694 820686 1
## 42695 820687 1
## 42696 820688 1
## 42697 820689 1
## 42698 820690 1
## 42699 820691 1
## 42700 820692 1
## 42701 820693 1
## 42702 820694 1
## 42703 820695 1
## 42704 820696 1
## 42705 820697 1
## 42706 820698 1
## 42707 820699 1
## 42708 820700 1
## 42709 820701 1
## 42710 820702 1
## 42711 820703 1
## 42712 820704 1
## 42713 820705 1
## 42714 820706 1
## 42715 820707 1
## 42716 820708 1
## 42717 820709 1
## 42718 820710 1
## 42719 820711 1
## 42720 820712 1
## 42721 820713 1
## 42722 820714 1
## 42723 820715 1
## 42724 820716 1
## 42725 820717 1
## 42726 820718 1
## 42727 820719 1
## 42728 820720 1
## 42729 820721 1
## 42730 820722 1
## 42731 820723 1
## 42732 820724 1
## 42733 820726 1
## 42734 820727 1
## 42735 820728 1
## 42736 820729 1
## 42737 820730 1
## 42738 820731 1
## 42739 820732 1
## 42740 820733 1
## 42741 820734 1
## 42742 820735 1
## 42743 820736 1
## 42744 820737 1
## 42745 820738 1
## 42746 820739 1
## 42747 820740 1
## 42748 820741 1
## 42749 820742 1
## 42750 820743 1
## 42751 820744 1
## 42752 820745 1
## 42753 820746 1
## 42754 820747 1
## 42755 820748 1
## 42756 820750 1
## 42757 820751 1
## 42758 820752 1
## 42759 820753 1
## 42760 820754 1
## 42761 820755 1
## 42762 820756 1
## 42763 820757 1
## 42764 820758 1
## 42765 820759 1
## 42766 820760 1
## 42767 820761 1
## 42768 820762 1
## 42769 820763 1
## 42770 820764 1
## 42771 820765 1
## 42772 820766 1
## 42773 820767 1
## 42774 820768 1
## 42775 820769 1
## 42776 820770 1
## 42777 820771 1
## 42778 820772 1
## 42779 820773 1
## 42780 820774 1
## 42781 820775 1
## 42782 820776 1
## 42783 820777 1
## 42784 820778 1
## 42785 820779 1
## 42786 820780 1
## 42787 820781 1
## 42788 820782 1
## 42789 820783 1
## 42790 820785 1
## 42791 820786 1
## 42792 820787 1
## 42793 820788 1
## 42794 820789 1
## 42795 820790 1
## 42796 820791 1
## 42797 820792 1
## 42798 820793 1
## 42799 820794 1
## 42800 820795 1
## 42801 820796 1
## 42802 820797 1
## 42803 820798 1
## 42804 820799 1
## 42805 820800 1
## 42806 820801 1
## 42807 820802 1
## 42808 820803 1
## 42809 820804 1
## 42810 820805 1
## 42811 820806 1
## 42812 820807 1
## 42813 820808 1
## 42814 820809 1
## 42815 820810 1
## 42816 820811 1
## 42817 820812 1
## 42818 820814 1
## 42819 820815 1
## 42820 820816 1
## 42821 820817 1
## 42822 820818 1
## 42823 820819 1
## 42824 820820 1
## 42825 820821 1
## 42826 820822 1
## 42827 820823 1
## 42828 820824 1
## 42829 820825 1
## 42830 820826 1
## 42831 820827 1
## 42832 820828 1
## 42833 820829 1
## 42834 820830 1
## 42835 820831 1
## 42836 820833 1
## 42837 820834 1
## 42838 820835 1
## 42839 820836 1
## 42840 820837 1
## 42841 820838 1
## 42842 820839 1
## 42843 820840 1
## 42844 820841 1
## 42845 820842 1
## 42846 820843 1
## 42847 820844 1
## 42848 820845 1
## 42849 820846 1
## 42850 820847 1
## 42851 820848 1
## 42852 820849 1
## 42853 820850 1
## 42854 820851 1
## 42855 820852 1
## 42856 820853 1
## 42857 820854 1
## 42858 820855 1
## 42859 820856 1
## 42860 820857 1
## 42861 820858 1
## 42862 820859 1
## 42863 820860 1
## 42864 820861 1
## 42865 820862 1
## 42866 820863 1
## 42867 820864 1
## 42868 820865 1
## 42869 820866 1
## 42870 820867 1
## 42871 820868 1
## 42872 820869 1
## 42873 820870 1
## 42874 820871 1
## 42875 820872 1
## 42876 820873 1
## 42877 820874 1
## 42878 820875 1
## 42879 820877 1
## 42880 820878 1
## 42881 820879 1
## 42882 820880 1
## 42883 820881 1
## 42884 820882 1
## 42885 820883 1
## 42886 820884 1
## 42887 820885 1
## 42888 820886 1
## 42889 820887 1
## 42890 820888 1
## 42891 820889 1
## 42892 820890 1
## 42893 820891 1
## 42894 820892 1
## 42895 820893 1
## 42896 820894 1
## 42897 820895 1
## 42898 820896 1
## 42899 820897 1
## 42900 820898 1
## 42901 820899 1
## 42902 820900 1
## 42903 820901 1
## 42904 820902 1
## 42905 820903 1
## 42906 820904 1
## 42907 820905 1
## 42908 820906 1
## 42909 820907 1
## 42910 820908 1
## 42911 820909 1
## 42912 820910 1
## 42913 820911 1
## 42914 820912 1
## 42915 820913 1
## 42916 820914 1
## 42917 820915 1
## 42918 820916 1
## 42919 820917 1
## 42920 820918 1
## 42921 820919 1
## 42922 820920 1
## 42923 820921 1
## 42924 820922 1
## 42925 820923 1
## 42926 820924 1
## 42927 820925 1
## 42928 820926 1
## 42929 820927 1
## 42930 820928 1
## 42931 820929 1
## 42932 820930 1
## 42933 820931 1
## 42934 820932 1
## 42935 820933 1
## 42936 820934 1
## 42937 820935 1
## 42938 820936 1
## 42939 820937 1
## 42940 820938 1
## 42941 820939 1
## 42942 820940 1
## 42943 820941 1
## 42944 820942 1
## 42945 820943 1
## 42946 820944 1
## 42947 820945 1
## 42948 820946 1
## 42949 820947 1
## 42950 820948 1
## 42951 820949 1
## 42952 820950 1
## 42953 820951 1
## 42954 820952 1
## 42955 820953 1
## 42956 820954 1
## 42957 820955 1
## 42958 820956 1
## 42959 820957 1
## 42960 820958 1
## 42961 820959 1
## 42962 820960 1
## 42963 820961 1
## 42964 820962 1
## 42965 820963 1
## 42966 820964 1
## 42967 820965 1
## 42968 820966 1
## 42969 820967 1
## 42970 820968 1
## 42971 820969 1
## 42972 820970 1
## 42973 820971 1
## 42974 820972 1
## 42975 820973 1
## 42976 820974 1
## 42977 820975 1
## 42978 820976 1
## 42979 820977 1
## 42980 820978 1
## 42981 820979 1
## 42982 820980 1
## 42983 820981 1
## 42984 820982 1
## 42985 820983 1
## 42986 820984 1
## 42987 820985 1
## 42988 820986 1
## 42989 820987 1
## 42990 820988 1
## 42991 820989 1
## 42992 820990 1
## 42993 820991 1
## 42994 820992 1
## 42995 820993 1
## 42996 820994 1
## 42997 820995 1
## 42998 820996 1
## 42999 820997 1
## 43000 820998 1
## 43001 820999 1
## 43002 821000 1
## 43003 821001 1
## 43004 821002 1
## 43005 821003 1
## 43006 821004 1
## 43007 821005 1
## 43008 821006 1
## 43009 821007 1
## 43010 821008 1
## 43011 821009 1
## 43012 821010 1
## 43013 821011 1
## 43014 821012 1
## 43015 821013 1
## 43016 821014 1
## 43017 821015 1
## 43018 821016 1
## 43019 821017 1
## 43020 821018 1
## 43021 821019 1
## 43022 821020 1
## 43023 821021 1
## 43024 821022 1
## 43025 821023 1
## 43026 821024 1
## 43027 821025 1
## 43028 821026 1
## 43029 821027 1
## 43030 821028 1
## 43031 821030 1
## 43032 821031 1
## 43033 821032 1
## 43034 821033 1
## 43035 821034 1
## 43036 821035 1
## 43037 821036 1
## 43038 821037 1
## 43039 821038 1
## 43040 821039 1
## 43041 821040 1
## 43042 821041 1
## 43043 821043 1
## 43044 821044 1
## 43045 821045 1
## 43046 821046 1
## 43047 821047 1
## 43048 821048 1
## 43049 821049 1
## 43050 821050 1
## 43051 821051 1
## 43052 821052 1
## 43053 821053 1
## 43054 821054 1
## 43055 821055 1
## 43056 821056 1
## 43057 821057 1
## 43058 821058 1
## 43059 821059 1
## 43060 821060 1
## 43061 821061 1
## 43062 821062 1
## 43063 821063 1
## 43064 821065 1
## 43065 821066 1
## 43066 821067 1
## 43067 821068 1
## 43068 821069 1
## 43069 821070 1
## 43070 821071 1
## 43071 821072 1
## 43072 821073 1
## 43073 821074 1
## 43074 821075 1
## 43075 821076 1
## 43076 821077 1
## 43077 821078 1
## 43078 821079 1
## 43079 821080 1
## 43080 821081 1
## 43081 821082 1
## 43082 821083 1
## 43083 821084 1
## 43084 821085 1
## 43085 821086 1
## 43086 821087 1
## 43087 821088 1
## 43088 821089 1
## 43089 821090 1
## 43090 821091 1
## 43091 821092 1
## 43092 821093 1
## 43093 821094 1
## 43094 821095 1
## 43095 821096 1
## 43096 821097 1
## 43097 821098 1
## 43098 821099 1
## 43099 821100 1
## 43100 821101 1
## 43101 821102 1
## 43102 821103 1
## 43103 821104 1
## 43104 821105 1
## 43105 821106 1
## 43106 821107 1
## 43107 821108 1
## 43108 821109 1
## 43109 821110 1
## 43110 821111 1
## 43111 821112 1
## 43112 821113 1
## 43113 821114 1
## 43114 821115 1
## 43115 821116 1
## 43116 821117 1
## 43117 821118 1
## 43118 821119 1
## 43119 821120 1
## 43120 821121 1
## 43121 821122 1
## 43122 821123 1
## 43123 821124 1
## 43124 821125 1
## 43125 821126 1
## 43126 821127 1
## 43127 821128 1
## 43128 821129 1
## 43129 821130 1
## 43130 821131 1
## 43131 821132 1
## 43132 821133 1
## 43133 821134 1
## 43134 821135 1
## 43135 821136 1
## 43136 821137 1
## 43137 821138 1
## 43138 821139 1
## 43139 821140 1
## 43140 821141 1
## 43141 821142 1
## 43142 821143 1
## 43143 821144 1
## 43144 821145 1
## 43145 821146 1
## 43146 821147 1
## 43147 821148 1
## 43148 821149 1
## 43149 821150 1
## 43150 821151 1
## 43151 821152 1
## 43152 821153 1
## 43153 821154 1
## 43154 821155 1
## 43155 821156 1
## 43156 821157 1
## 43157 821158 1
## 43158 821159 1
## 43159 821160 1
## 43160 821162 1
## 43161 821163 1
## 43162 821164 1
## 43163 821165 1
## 43164 821166 1
## 43165 821167 1
## 43166 821168 1
## 43167 821169 1
## 43168 821170 1
## 43169 821171 1
## 43170 821172 1
## 43171 821173 1
## 43172 821174 1
## 43173 821175 1
## 43174 821176 1
## 43175 821177 1
## 43176 821178 1
## 43177 821179 1
## 43178 821180 1
## 43179 821181 1
## 43180 821182 1
## 43181 821183 1
## 43182 821184 1
## 43183 821185 1
## 43184 821186 1
## 43185 821187 1
## 43186 821188 1
## 43187 821189 1
## 43188 821190 1
## 43189 821191 1
## 43190 821192 1
## 43191 821193 1
## 43192 821194 1
## 43193 821195 1
## 43194 821196 1
## 43195 821197 1
## 43196 821198 1
## 43197 821199 1
## 43198 821200 1
## 43199 821201 1
## 43200 821202 1
## 43201 821203 1
## 43202 821204 1
## 43203 821205 1
## 43204 821206 1
## 43205 821207 1
## 43206 821208 1
## 43207 821209 1
## 43208 821210 1
## 43209 821211 1
## 43210 821212 1
## 43211 821213 1
## 43212 821214 1
## 43213 821215 1
## 43214 821216 1
## 43215 821217 1
## 43216 821218 1
## 43217 821219 1
## 43218 821220 1
## 43219 821221 1
## 43220 821222 1
## 43221 821223 1
## 43222 821224 1
## 43223 821225 1
## 43224 821226 1
## 43225 821227 1
## 43226 821228 1
## 43227 821229 1
## 43228 821230 1
## 43229 821231 1
## 43230 821232 1
## 43231 821233 1
## 43232 821234 1
## 43233 821236 1
## 43234 821237 1
## 43235 821238 1
## 43236 821239 1
## 43237 821240 1
## 43238 821241 1
## 43239 821242 1
## 43240 821243 1
## 43241 821244 1
## 43242 821245 1
## 43243 821246 1
## 43244 821247 1
## 43245 821249 1
## 43246 821250 1
## 43247 821251 1
## 43248 821252 1
## 43249 821253 1
## 43250 821254 1
## 43251 821255 1
## 43252 821256 1
## 43253 821257 1
## 43254 821258 1
## 43255 821259 1
## 43256 821260 1
## 43257 821261 1
## 43258 821262 1
## 43259 821263 1
## 43260 821264 1
## 43261 821265 1
## 43262 821266 1
## 43263 821267 1
## 43264 821268 1
## 43265 821269 1
## 43266 821270 1
## 43267 821271 1
## 43268 821272 1
## 43269 821273 1
## 43270 821274 1
## 43271 821275 1
## 43272 821276 1
## 43273 821277 1
## 43274 821278 1
## 43275 821279 1
## 43276 821280 1
## 43277 821281 1
## 43278 821282 1
## 43279 821283 1
## 43280 821284 1
## 43281 821285 1
## 43282 821286 1
## 43283 821288 1
## 43284 821289 1
## 43285 821290 1
## 43286 821292 1
## 43287 821293 1
## 43288 821294 1
## 43289 821295 1
## 43290 821296 1
## 43291 821297 1
## 43292 821298 1
## 43293 821299 1
## 43294 821300 1
## 43295 821301 1
## 43296 821302 1
## 43297 821303 1
## 43298 821304 1
## 43299 821305 1
## 43300 821306 1
## 43301 821307 1
## 43302 821308 1
## 43303 821309 1
## 43304 821310 1
## 43305 821311 1
## 43306 821312 1
## 43307 821313 1
## 43308 821314 1
## 43309 821315 1
## 43310 821316 1
## 43311 821317 1
## 43312 821318 1
## 43313 821319 1
## 43314 821320 1
## 43315 821321 1
## 43316 821322 1
## 43317 821323 1
## 43318 821324 1
## 43319 821325 1
## 43320 821326 1
## 43321 821327 1
## 43322 821328 1
## 43323 821329 1
## 43324 821330 1
## 43325 821331 1
## 43326 821332 1
## 43327 821333 1
## 43328 821334 1
## 43329 821335 1
## 43330 821336 1
## 43331 821337 1
## 43332 821338 1
## 43333 821339 1
## 43334 821340 1
## 43335 821341 1
## 43336 821342 1
## 43337 821343 1
## 43338 821344 1
## 43339 821345 1
## 43340 821346 1
## 43341 821347 1
## 43342 821348 1
## 43343 821349 1
## 43344 821350 1
## 43345 821351 1
## 43346 821352 1
## 43347 821353 1
## 43348 821354 1
## 43349 821355 1
## 43350 821356 1
## 43351 821357 1
## 43352 821358 1
## 43353 821359 1
## 43354 821360 1
## 43355 821361 1
## 43356 821362 1
## 43357 821363 1
## 43358 821364 1
## 43359 821365 1
## 43360 821366 1
## 43361 821367 1
## 43362 821368 1
## 43363 821369 1
## 43364 821370 1
## 43365 821371 1
## 43366 821372 1
## 43367 821373 1
## 43368 821374 1
## 43369 821375 1
## 43370 821376 1
## 43371 821377 1
## 43372 821378 1
## 43373 821379 1
## 43374 821380 1
## 43375 821381 1
## 43376 821382 1
## 43377 821383 1
## 43378 821384 1
## 43379 821385 1
## 43380 821386 1
## 43381 821387 1
## 43382 821388 1
## 43383 821389 1
## 43384 821390 1
## 43385 821391 1
## 43386 821392 1
## 43387 821393 1
## 43388 821394 1
## 43389 821395 1
## 43390 821396 1
## 43391 821397 1
## 43392 821398 1
## 43393 821399 1
## 43394 821400 1
## 43395 821401 1
## 43396 821402 1
## 43397 821403 1
## 43398 821404 1
## 43399 821405 1
## 43400 821406 1
## 43401 821407 1
## 43402 821408 1
## 43403 821409 1
## 43404 821410 1
## 43405 821411 1
## 43406 821412 1
## 43407 821413 1
## 43408 821414 1
## 43409 821415 1
## 43410 821416 1
## 43411 821417 1
## 43412 821418 1
## 43413 821419 1
## 43414 821420 1
## 43415 821421 1
## 43416 821422 1
## 43417 821423 1
## 43418 821424 1
## 43419 821425 1
## 43420 821426 1
## 43421 821427 1
## 43422 821428 1
## 43423 821429 1
## 43424 821430 1
## 43425 821431 1
## 43426 821432 1
## 43427 821433 1
## 43428 821434 1
## 43429 821437 1
## 43430 821438 1
## 43431 821439 1
## 43432 821440 1
## 43433 821441 1
## 43434 821442 1
## 43435 821443 1
## 43436 821444 1
## 43437 821445 1
## 43438 821446 1
## 43439 821447 1
## 43440 821448 1
## 43441 821449 1
## 43442 821450 1
## 43443 821451 1
## 43444 821452 1
## 43445 821453 1
## 43446 821454 1
## 43447 821455 1
## 43448 821456 1
## 43449 821457 1
## 43450 821458 1
## 43451 821460 1
## 43452 821461 1
## 43453 821462 1
## 43454 821463 1
## 43455 821464 1
## 43456 821465 1
## 43457 821466 1
## 43458 821467 1
## 43459 821468 1
## 43460 821469 1
## 43461 821470 1
## 43462 821471 1
## 43463 821472 1
## 43464 821473 1
## 43465 821474 1
## 43466 821475 1
## 43467 821476 1
## 43468 821477 1
## 43469 821478 1
## 43470 821479 1
## 43471 821480 1
## 43472 821481 1
## 43473 821482 1
## 43474 821483 1
## 43475 821484 1
## 43476 821485 1
## 43477 821486 1
## 43478 821487 1
## 43479 821488 1
## 43480 821490 1
## 43481 821491 1
## 43482 821492 1
## 43483 821493 1
## 43484 821494 1
## 43485 821496 1
## 43486 821497 1
## 43487 821498 1
## 43488 821499 1
## 43489 821500 1
## 43490 821501 1
## 43491 821502 1
## 43492 821503 1
## 43493 821504 1
## 43494 821505 1
## 43495 821506 1
## 43496 821507 1
## 43497 821508 1
## 43498 821509 1
## 43499 821510 1
## 43500 821511 1
## 43501 821512 1
## 43502 821513 1
## 43503 821514 1
## 43504 821516 1
## 43505 821517 1
## 43506 821518 1
## 43507 821519 1
## 43508 821520 1
## 43509 821521 1
## 43510 821522 1
## 43511 821523 1
## 43512 821524 1
## 43513 821525 1
## 43514 821526 1
## 43515 821527 1
## 43516 821528 1
## 43517 821529 1
## 43518 821530 1
## 43519 821531 1
## 43520 821532 1
## 43521 821533 1
## 43522 821534 1
## 43523 821535 1
## 43524 821536 1
## 43525 821537 1
## 43526 821538 1
## 43527 821539 1
## 43528 821540 1
## 43529 821541 1
## 43530 821542 1
## 43531 821543 1
## 43532 821544 1
## 43533 821545 1
## 43534 821546 1
## 43535 821547 1
## 43536 821548 1
## 43537 821549 1
## 43538 821550 1
## 43539 821551 1
## 43540 821552 1
## 43541 821553 1
## 43542 821554 1
## 43543 821555 1
## 43544 821556 1
## 43545 821557 1
## 43546 821558 1
## 43547 821559 1
## 43548 821560 1
## 43549 821561 1
## 43550 821562 1
## 43551 821563 1
## 43552 821564 1
## 43553 821565 1
## 43554 821566 1
## 43555 821567 1
## 43556 821568 1
## 43557 821569 1
## 43558 821570 1
## 43559 821571 1
## 43560 821572 1
## 43561 821573 1
## 43562 821574 1
## 43563 821575 1
## 43564 821576 1
## 43565 821577 1
## 43566 821578 1
## 43567 821579 1
## 43568 821580 1
## 43569 821581 1
## 43570 821582 1
## 43571 821583 1
## 43572 821585 1
## 43573 821586 1
## 43574 821587 1
## 43575 821588 1
## 43576 821589 1
## 43577 821590 1
## 43578 821591 1
## 43579 821593 1
## 43580 821594 1
## 43581 821595 1
## 43582 821596 1
## 43583 821597 1
## 43584 821598 1
## 43585 821599 1
## 43586 821600 1
## 43587 821601 1
## 43588 821602 1
## 43589 821603 1
## 43590 821604 1
## 43591 821605 1
## 43592 821606 1
## 43593 821607 1
## 43594 821608 1
## 43595 821609 1
## 43596 821610 1
## 43597 821611 1
## 43598 821612 1
## 43599 821613 1
## 43600 821614 1
## 43601 821616 1
## 43602 821617 1
## 43603 821618 1
## 43604 821619 1
## 43605 821620 1
## 43606 821621 1
## 43607 821622 1
## 43608 821623 1
## 43609 821624 1
## 43610 821625 1
## 43611 821626 1
## 43612 821627 1
## 43613 821628 1
## 43614 821629 1
## 43615 821630 1
## 43616 821631 1
## 43617 821632 1
## 43618 821633 1
## 43619 821634 1
## 43620 821635 1
## 43621 821636 1
## 43622 821637 1
## 43623 821638 1
## 43624 821639 1
## 43625 821640 1
## 43626 821641 1
## 43627 821642 1
## 43628 821643 1
## 43629 821644 1
## 43630 821645 1
## 43631 821646 1
## 43632 821647 1
## 43633 821648 1
## 43634 821650 1
## 43635 821651 1
## 43636 821652 1
## 43637 821653 1
## 43638 821654 1
## 43639 821655 1
## 43640 821656 1
## 43641 821657 1
## 43642 821658 1
## 43643 821659 1
## 43644 821660 1
## 43645 821661 1
## 43646 821662 1
## 43647 821663 1
## 43648 821664 1
## 43649 821665 1
## 43650 821666 1
## 43651 821667 1
## 43652 821668 1
## 43653 821669 1
## 43654 821670 1
## 43655 821671 1
## 43656 821672 1
## 43657 821673 1
## 43658 821674 1
## 43659 821675 1
## 43660 821676 1
## 43661 821677 1
## 43662 821679 1
## 43663 821680 1
## 43664 821681 1
## 43665 821682 1
## 43666 821683 1
## 43667 821684 1
## 43668 821685 1
## 43669 821686 1
## 43670 821687 1
## 43671 821688 1
## 43672 821689 1
## 43673 821690 1
## 43674 821691 1
## 43675 821692 1
## 43676 821693 1
## 43677 821694 1
## 43678 821695 1
## 43679 821696 1
## 43680 821697 1
## 43681 821698 1
## 43682 821699 1
## 43683 821700 1
## 43684 821701 1
## 43685 821702 1
## 43686 821703 1
## 43687 821704 1
## 43688 821705 1
## 43689 821706 1
## 43690 821707 1
## 43691 821708 1
## 43692 821709 1
## 43693 821710 1
## 43694 821711 1
## 43695 821712 1
## 43696 821713 1
## 43697 821714 1
## 43698 821715 1
## 43699 821716 1
## 43700 821717 1
## 43701 821718 1
## 43702 821719 1
## 43703 821720 1
## 43704 821721 1
## 43705 821722 1
## 43706 821724 1
## 43707 821725 1
## 43708 821726 1
## 43709 821727 1
## 43710 821728 1
## 43711 821729 1
## 43712 821730 1
## 43713 821731 1
## 43714 821732 1
## 43715 821734 1
## 43716 821735 1
## 43717 821736 1
## 43718 821737 1
## 43719 821738 1
## 43720 821739 1
## 43721 821740 1
## 43722 821741 1
## 43723 821742 1
## 43724 821743 1
## 43725 821744 1
## 43726 821745 1
## 43727 821746 1
## 43728 821747 1
## 43729 821748 1
## 43730 821749 1
## 43731 821750 1
## 43732 821751 1
## 43733 821752 1
## 43734 821753 1
## 43735 821754 1
## 43736 821755 1
## 43737 821756 1
## 43738 821757 1
## 43739 821758 1
## 43740 821759 1
## 43741 821760 1
## 43742 821761 1
## 43743 821762 1
## 43744 821763 1
## 43745 821764 1
## 43746 821765 1
## 43747 821766 1
## 43748 821767 1
## 43749 821768 1
## 43750 821769 1
## 43751 821770 1
## 43752 821771 1
## 43753 821772 1
## 43754 821773 1
## 43755 821774 1
## 43756 821775 1
## 43757 821776 1
## 43758 821777 1
## 43759 821778 1
## 43760 821779 1
## 43761 821780 1
## 43762 821781 1
## 43763 821782 1
## 43764 821783 1
## 43765 821784 1
## 43766 821785 1
## 43767 821786 1
## 43768 821787 1
## 43769 821788 1
## 43770 821789 1
## 43771 821790 1
## 43772 821791 1
## 43773 821792 1
## 43774 821793 1
## 43775 821794 1
## 43776 821795 1
## 43777 821796 1
## 43778 821797 1
## 43779 821798 1
## 43780 821799 1
## 43781 821800 1
## 43782 821801 1
## 43783 821802 1
## 43784 821803 1
## 43785 821804 1
## 43786 821805 1
## 43787 821806 1
## 43788 821807 1
## 43789 821808 1
## 43790 821809 1
## 43791 821810 1
## 43792 821811 1
## 43793 821812 1
## 43794 821813 1
## 43795 821814 1
## 43796 821815 1
## 43797 821816 1
## 43798 821817 1
## 43799 821818 1
## 43800 821819 1
## 43801 821820 1
## 43802 821822 1
## 43803 821823 1
## 43804 821824 1
## 43805 821825 1
## 43806 821826 1
## 43807 821827 1
## 43808 821828 1
## 43809 821829 1
## 43810 821830 1
## 43811 821831 1
## 43812 821832 1
## 43813 821833 1
## 43814 821834 1
## 43815 821835 1
## 43816 821836 1
## 43817 821837 1
## 43818 821838 1
## 43819 821839 1
## 43820 821840 1
## 43821 821841 1
## 43822 821842 1
## 43823 821843 1
## 43824 821844 1
## 43825 821845 1
## 43826 821846 1
## 43827 821847 1
## 43828 821848 1
## 43829 821849 1
## 43830 821850 1
## 43831 821851 1
## 43832 821852 1
## 43833 821853 1
## 43834 821854 1
## 43835 821855 1
## 43836 821856 1
## 43837 821857 1
## 43838 821858 1
## 43839 821859 1
## 43840 821860 1
## 43841 821861 1
## 43842 821862 1
## 43843 821863 1
## 43844 821864 1
## 43845 821865 1
## 43846 821866 1
## 43847 821867 1
## 43848 821868 1
## 43849 821869 1
## 43850 821870 1
## 43851 821871 1
## 43852 821872 1
## 43853 821873 1
## 43854 821874 1
## 43855 821875 1
## 43856 821876 1
## 43857 821877 1
## 43858 821878 1
## 43859 821879 1
## 43860 821880 1
## 43861 821881 1
## 43862 821882 1
## 43863 821883 1
## 43864 821884 1
## 43865 821885 1
## 43866 821886 1
## 43867 821887 1
## 43868 821888 1
## 43869 821889 1
## 43870 821890 1
## 43871 821891 1
## 43872 821892 1
## 43873 821893 1
## 43874 821894 1
## 43875 821895 1
## 43876 821896 1
## 43877 821897 1
## 43878 821898 1
## 43879 821900 1
## 43880 821901 1
## 43881 821902 1
## 43882 821903 1
## 43883 821904 1
## 43884 821905 1
## 43885 821906 1
## 43886 821907 1
## 43887 821908 1
## 43888 821909 1
## 43889 821910 1
## 43890 821911 1
## 43891 821913 1
## 43892 821914 1
## 43893 821915 1
## 43894 821916 1
## 43895 821917 1
## 43896 821918 1
## 43897 821919 1
## 43898 821920 1
## 43899 821921 1
## 43900 821922 1
## 43901 821923 1
## 43902 821924 1
## 43903 821925 1
## 43904 821926 1
## 43905 821927 1
## 43906 821928 1
## 43907 821929 1
## 43908 821930 1
## 43909 821931 1
## 43910 821932 1
## 43911 821933 1
## 43912 821934 1
## 43913 821935 1
## 43914 821936 1
## 43915 821937 1
## 43916 821938 1
## 43917 821939 1
## 43918 821940 1
## 43919 821941 1
## 43920 821942 1
## 43921 821943 1
## 43922 821944 1
## 43923 821945 1
## 43924 821946 1
## 43925 821947 1
## 43926 821948 1
## 43927 821949 1
## 43928 821951 1
## 43929 821953 1
## 43930 821954 1
## 43931 821955 1
## 43932 821956 1
## 43933 821957 1
## 43934 821958 1
## 43935 821960 1
## 43936 821961 1
## 43937 821962 1
## 43938 821963 1
## 43939 821964 1
## 43940 821965 1
## 43941 821966 1
## 43942 821967 1
## 43943 821968 1
## 43944 821969 1
## 43945 821970 1
## 43946 821971 1
## 43947 821972 1
## 43948 821973 1
## 43949 821974 1
## 43950 821975 1
## 43951 821976 1
## 43952 821977 1
## 43953 821978 1
## 43954 821980 1
## 43955 821981 1
## 43956 821982 1
## 43957 821983 1
## 43958 821984 1
## 43959 821985 1
## 43960 821986 1
## 43961 821987 1
## 43962 821988 1
## 43963 821989 1
## 43964 821990 1
## 43965 821991 1
## 43966 821992 1
## 43967 821993 1
## 43968 821994 1
## 43969 821995 1
## 43970 821996 1
## 43971 821997 1
## 43972 821998 1
## 43973 821999 1
## 43974 822000 1
## 43975 822002 1
## 43976 822003 1
## 43977 822004 1
## 43978 822005 1
## 43979 822006 1
## 43980 822007 1
## 43981 822008 1
## 43982 822009 1
## 43983 822010 1
## 43984 822011 1
## 43985 822012 1
## 43986 822013 1
## 43987 822014 1
## 43988 822015 1
## 43989 822016 1
## 43990 822017 1
## 43991 822018 1
## 43992 822019 1
## 43993 822020 1
## 43994 822021 1
## 43995 822022 1
## 43996 822023 1
## 43997 822024 1
## 43998 822025 1
## 43999 822026 1
## 44000 822027 1
## 44001 822028 1
## 44002 822029 1
## 44003 822030 1
## 44004 822031 1
## 44005 822032 1
## 44006 822033 1
## 44007 822034 1
## 44008 822035 1
## 44009 822036 1
## 44010 822037 1
## 44011 822038 1
## 44012 822039 1
## 44013 822040 1
## 44014 822041 1
## 44015 822042 1
## 44016 822043 1
## 44017 822044 1
## 44018 822045 1
## 44019 822046 1
## 44020 822047 1
## 44021 822048 1
## 44022 822049 1
## 44023 822050 1
## 44024 822051 1
## 44025 822052 1
## 44026 822053 1
## 44027 822054 1
## 44028 822055 1
## 44029 822056 1
## 44030 822057 1
## 44031 822059 1
## 44032 822060 1
## 44033 822061 1
## 44034 822062 1
## 44035 822063 1
## 44036 822064 1
## 44037 822065 1
## 44038 822066 1
## 44039 822067 1
## 44040 822068 1
## 44041 822069 1
## 44042 822070 1
## 44043 822071 1
## 44044 822072 1
## 44045 822073 1
## 44046 822074 1
## 44047 822075 1
## 44048 822076 1
## 44049 822077 1
## 44050 822078 1
## 44051 822079 1
## 44052 822080 1
## 44053 822081 1
## 44054 822082 1
## 44055 822083 1
## 44056 822084 1
## 44057 822085 1
## 44058 822086 1
## 44059 822087 1
## 44060 822088 1
## 44061 822089 1
## 44062 822090 1
## 44063 822091 1
## 44064 822092 1
## 44065 822093 1
## 44066 822094 1
## 44067 822095 1
## 44068 822096 1
## 44069 822097 1
## 44070 822098 1
## 44071 822099 1
## 44072 822100 1
## 44073 822101 1
## 44074 822102 1
## 44075 822103 1
## 44076 822104 1
## 44077 822105 1
## 44078 822106 1
## 44079 822107 1
## 44080 822108 1
## 44081 822109 1
## 44082 822110 1
## 44083 822111 1
## 44084 822112 1
## 44085 822113 1
## 44086 822114 1
## 44087 822115 1
## 44088 822116 1
## 44089 822117 1
## 44090 822119 1
## 44091 822120 1
## 44092 822121 1
## 44093 822122 1
## 44094 822123 1
## 44095 822124 1
## 44096 822125 1
## 44097 822126 1
## 44098 822127 1
## 44099 822128 1
## 44100 822129 1
## 44101 822130 1
## 44102 822131 1
## 44103 822132 1
## 44104 822133 1
## 44105 822134 1
## 44106 822135 1
## 44107 822136 1
## 44108 822137 1
## 44109 822138 1
## 44110 822139 1
## 44111 822140 1
## 44112 822141 1
## 44113 822142 1
## 44114 822143 1
## 44115 822144 1
## 44116 822145 1
## 44117 822146 1
## 44118 822147 1
## 44119 822148 1
## 44120 822149 1
## 44121 822150 1
## 44122 822151 1
## 44123 822152 1
## 44124 822153 1
## 44125 822154 1
## 44126 822155 1
## 44127 822156 1
## 44128 822157 1
## 44129 822158 1
## 44130 822159 1
## 44131 822160 1
## 44132 822161 1
## 44133 822162 1
## 44134 822163 1
## 44135 822164 1
## 44136 822165 1
## 44137 822166 1
## 44138 822167 1
## 44139 822168 1
## 44140 822169 1
## 44141 822170 1
## 44142 822171 1
## 44143 822172 1
## 44144 822173 1
## 44145 822174 1
## 44146 822175 1
## 44147 822176 1
## 44148 822177 1
## 44149 822178 1
## 44150 822179 1
## 44151 822180 1
## 44152 822181 1
## 44153 822182 1
## 44154 822183 1
## 44155 822184 1
## 44156 822185 1
## 44157 822186 1
## 44158 822187 1
## 44159 822188 1
## 44160 822189 1
## 44161 822190 1
## 44162 822191 1
## 44163 822192 1
## 44164 822193 1
## 44165 822194 1
## 44166 822195 1
## 44167 822196 1
## 44168 822197 1
## 44169 822198 1
## 44170 822199 1
## 44171 822200 1
## 44172 822201 1
## 44173 822202 1
## 44174 822203 1
## 44175 822204 1
## 44176 822205 1
## 44177 822206 1
## 44178 822208 1
## 44179 822209 1
## 44180 822210 1
## 44181 822211 1
## 44182 822212 1
## 44183 822213 1
## 44184 822214 1
## 44185 822215 1
## 44186 822216 1
## 44187 822217 1
## 44188 822218 1
## 44189 822219 1
## 44190 822220 1
## 44191 822221 1
## 44192 822222 1
## 44193 822223 1
## 44194 822224 1
## 44195 822225 1
## 44196 822226 1
## 44197 822227 1
## 44198 822228 1
## 44199 822229 1
## 44200 822230 1
## 44201 822231 1
## 44202 822232 1
## 44203 822233 1
## 44204 822234 1
## 44205 822235 1
## 44206 822236 1
## 44207 822237 1
## 44208 822238 1
## 44209 822240 1
## 44210 822241 1
## 44211 822242 1
## 44212 822243 1
## 44213 822244 1
## 44214 822245 1
## 44215 822246 1
## 44216 822247 1
## 44217 822248 1
## 44218 822249 1
## 44219 822250 1
## 44220 822251 1
## 44221 822252 1
## 44222 822253 1
## 44223 822254 1
## 44224 822255 1
## 44225 822256 1
## 44226 822257 1
## 44227 822258 1
## 44228 822259 1
## 44229 822260 1
## 44230 822261 1
## 44231 822262 1
## 44232 822263 1
## 44233 822264 1
## 44234 822265 1
## 44235 822266 1
## 44236 822267 1
## 44237 822268 1
## 44238 822269 1
## 44239 822270 1
## 44240 822271 1
## 44241 822272 1
## 44242 822273 1
## 44243 822274 1
## 44244 822275 1
## 44245 822276 1
## 44246 822277 1
## 44247 822278 1
## 44248 822279 1
## 44249 822280 1
## 44250 822281 1
## 44251 822282 1
## 44252 822283 1
## 44253 822284 1
## 44254 822285 1
## 44255 822286 1
## 44256 822287 1
## 44257 822288 1
## 44258 822289 1
## 44259 822290 1
## 44260 822291 1
## 44261 822292 1
## 44262 822293 1
## 44263 822294 1
## 44264 822295 1
## 44265 822296 1
## 44266 822297 1
## 44267 822298 1
## 44268 822299 1
## 44269 822300 1
## 44270 822301 1
## 44271 822302 1
## 44272 822303 1
## 44273 822304 1
## 44274 822305 1
## 44275 822306 1
## 44276 822307 1
## 44277 822308 1
## 44278 822309 1
## 44279 822310 1
## 44280 822311 1
## 44281 822312 1
## 44282 822313 1
## 44283 822314 1
## 44284 822315 1
## 44285 822316 1
## 44286 822317 1
## 44287 822318 1
## 44288 822319 1
## 44289 822320 1
## 44290 822321 1
## 44291 822322 1
## 44292 822323 1
## 44293 822324 1
## 44294 822325 1
## 44295 822326 1
## 44296 822327 1
## 44297 822328 1
## 44298 822329 1
## 44299 822330 1
## 44300 822331 1
## 44301 822332 1
## 44302 822333 1
## 44303 822335 1
## 44304 822336 1
## 44305 822337 1
## 44306 822338 1
## 44307 822339 1
## 44308 822340 1
## 44309 822341 1
## 44310 822342 1
## 44311 822343 1
## 44312 822344 1
## 44313 822345 1
## 44314 822346 1
## 44315 822347 1
## 44316 822348 1
## 44317 822349 1
## 44318 822350 1
## 44319 822351 1
## 44320 822352 1
## 44321 822353 1
## 44322 822354 1
## 44323 822355 1
## 44324 822356 1
## 44325 822357 1
## 44326 822358 1
## 44327 822359 1
## 44328 822360 1
## 44329 822361 1
## 44330 822362 1
## 44331 822363 1
## 44332 822364 1
## 44333 822365 1
## 44334 822366 1
## 44335 822367 1
## 44336 822368 1
## 44337 822369 1
## 44338 822370 1
## 44339 822371 1
## 44340 822372 1
## 44341 822373 1
## 44342 822374 1
## 44343 822375 1
## 44344 822376 1
## 44345 822377 1
## 44346 822378 1
## 44347 822379 1
## 44348 822381 1
## 44349 822382 1
## 44350 822383 1
## 44351 822384 1
## 44352 822385 1
## 44353 822386 1
## 44354 822387 1
## 44355 822388 1
## 44356 822389 1
## 44357 822390 1
## 44358 822391 1
## 44359 822392 1
## 44360 822393 1
## 44361 822394 1
## 44362 822395 1
## 44363 822396 1
## 44364 822397 1
## 44365 822398 1
## 44366 822399 1
## 44367 822400 1
## 44368 822401 1
## 44369 822402 1
## 44370 822403 1
## 44371 822404 1
## 44372 822405 1
## 44373 822406 1
## 44374 822407 1
## 44375 822408 1
## 44376 822409 1
## 44377 822410 1
## 44378 822411 1
## 44379 822412 1
## 44380 822413 1
## 44381 822414 1
## 44382 822415 1
## 44383 822416 1
## 44384 822417 1
## 44385 822418 1
## 44386 822419 1
## 44387 822420 1
## 44388 822421 1
## 44389 822422 1
## 44390 822423 1
## 44391 822424 1
## 44392 822425 1
## 44393 822426 1
## 44394 822427 1
## 44395 822428 1
## 44396 822429 1
## 44397 822430 1
## 44398 822431 1
## 44399 822432 1
## 44400 822433 1
## 44401 822434 1
## 44402 822435 1
## 44403 822436 1
## 44404 822437 1
## 44405 822438 1
## 44406 822439 1
## 44407 822440 1
## 44408 822441 1
## 44409 822442 1
## 44410 822443 1
## 44411 822444 1
## 44412 822445 1
## 44413 822446 1
## 44414 822447 1
## 44415 822448 1
## 44416 822449 1
## 44417 822450 1
## 44418 822451 1
## 44419 822452 1
## 44420 822453 1
## 44421 822454 1
## 44422 822455 1
## 44423 822456 1
## 44424 822457 1
## 44425 822458 1
## 44426 822459 1
## 44427 822460 1
## 44428 822461 1
## 44429 822462 1
## 44430 822463 1
## 44431 822464 1
## 44432 822465 1
## 44433 822466 1
## 44434 822467 1
## 44435 822468 1
## 44436 822469 1
## 44437 822470 1
## 44438 822471 1
## 44439 822472 1
## 44440 822473 1
## 44441 822474 1
## 44442 822475 1
## 44443 822476 1
## 44444 822477 1
## 44445 822478 1
## 44446 822479 1
## 44447 822480 1
## 44448 822481 1
## 44449 822482 1
## 44450 822483 1
## 44451 822484 1
## 44452 822485 1
## 44453 822486 1
## 44454 822487 1
## 44455 822488 1
## 44456 822489 1
## 44457 822490 1
## 44458 822491 1
## 44459 822492 1
## 44460 822493 1
## 44461 822494 1
## 44462 822495 1
## 44463 822496 1
## 44464 822497 1
## 44465 822498 1
## 44466 822499 1
## 44467 822500 1
## 44468 822501 1
## 44469 822502 1
## 44470 822503 1
## 44471 822504 1
## 44472 822506 1
## 44473 822507 1
## 44474 822508 1
## 44475 822509 1
## 44476 822511 1
## 44477 822512 1
## 44478 822513 1
## 44479 822514 1
## 44480 822515 1
## 44481 822516 1
## 44482 822517 1
## 44483 822518 1
## 44484 822519 1
## 44485 822520 1
## 44486 822521 1
## 44487 822522 1
## 44488 822523 1
## 44489 822524 1
## 44490 822525 1
## 44491 822526 1
## 44492 822527 1
## 44493 822528 1
## 44494 822529 1
## 44495 822530 1
## 44496 822531 1
## 44497 822532 1
## 44498 822533 1
## 44499 822534 1
## 44500 822535 1
## 44501 822536 1
## 44502 822537 1
## 44503 822539 1
## 44504 822540 1
## 44505 822541 1
## 44506 822542 1
## 44507 822543 1
## 44508 822544 1
## 44509 822546 1
## 44510 822547 1
## 44511 822548 1
## 44512 822549 1
## 44513 822550 1
## 44514 822551 1
## 44515 822553 1
## 44516 822554 1
## 44517 822555 1
## 44518 822556 1
## 44519 822557 1
## 44520 822558 1
## 44521 822559 1
## 44522 822560 1
## 44523 822561 1
## 44524 822562 1
## 44525 822563 1
## 44526 822564 1
## 44527 822565 1
## 44528 822566 1
## 44529 822567 1
## 44530 822568 1
## 44531 822569 1
## 44532 822570 1
## 44533 822571 1
## 44534 822572 1
## 44535 822573 1
## 44536 822574 1
## 44537 822575 1
## 44538 822576 1
## 44539 822577 1
## 44540 822578 1
## 44541 822579 1
## 44542 822580 1
## 44543 822581 1
## 44544 822582 1
## 44545 822583 1
## 44546 822584 1
## 44547 822585 1
## 44548 822586 1
## 44549 822587 1
## 44550 822588 1
## 44551 822589 1
## 44552 822590 1
## 44553 822591 1
## 44554 822592 1
## 44555 822593 1
## 44556 822594 1
## 44557 822595 1
## 44558 822596 1
## 44559 822597 1
## 44560 822598 1
## 44561 822599 1
## 44562 822600 1
## 44563 822601 1
## 44564 822602 1
## 44565 822603 1
## 44566 822604 1
## 44567 822605 1
## 44568 822606 1
## 44569 822607 1
## 44570 822608 1
## 44571 822609 1
## 44572 822611 1
## 44573 822612 1
## 44574 822613 1
## 44575 822614 1
## 44576 822615 1
## 44577 822616 1
## 44578 822617 1
## 44579 822618 1
## 44580 822619 1
## 44581 822620 1
## 44582 822621 1
## 44583 822622 1
## 44584 822623 1
## 44585 822624 1
## 44586 822625 1
## 44587 822626 1
## 44588 822627 1
## 44589 822628 1
## 44590 822629 1
## 44591 822630 1
## 44592 822631 1
## 44593 822632 1
## 44594 822633 1
## 44595 822634 1
## 44596 822635 1
## 44597 822636 1
## 44598 822637 1
## 44599 822638 1
## 44600 822639 1
## 44601 822640 1
## 44602 822641 1
## 44603 822642 1
## 44604 822643 1
## 44605 822644 1
## 44606 822645 1
## 44607 822646 1
## 44608 822647 1
## 44609 822648 1
## 44610 822649 1
## 44611 822650 1
## 44612 822651 1
## 44613 822652 1
## 44614 822653 1
## 44615 822654 1
## 44616 822656 1
## 44617 822657 1
## 44618 822658 1
## 44619 822659 1
## 44620 822660 1
## 44621 822661 1
## 44622 822662 1
## 44623 822663 1
## 44624 822664 1
## 44625 822665 1
## 44626 822666 1
## 44627 822667 1
## 44628 822668 1
## 44629 822669 1
## 44630 822670 1
## 44631 822671 1
## 44632 822672 1
## 44633 822673 1
## 44634 822674 1
## 44635 822675 1
## 44636 822676 1
## 44637 822677 1
## 44638 822678 1
## 44639 822679 1
## 44640 822680 1
## 44641 822681 1
## 44642 822682 1
## 44643 822684 1
## 44644 822685 1
## 44645 822686 1
## 44646 822687 1
## 44647 822688 1
## 44648 822689 1
## 44649 822690 1
## 44650 822691 1
## 44651 822692 1
## 44652 822693 1
## 44653 822694 1
## 44654 822695 1
## 44655 822696 1
## 44656 822697 1
## 44657 822698 1
## 44658 822699 1
## 44659 822700 1
## 44660 822701 1
## 44661 822702 1
## 44662 822703 1
## 44663 822704 1
## 44664 822705 1
## 44665 822706 1
## 44666 822707 1
## 44667 822708 1
## 44668 822709 1
## 44669 822710 1
## 44670 822711 1
## 44671 822712 1
## 44672 822713 1
## 44673 822714 1
## 44674 822715 1
## 44675 822716 1
## 44676 822717 1
## 44677 822718 1
## 44678 822719 1
## 44679 822720 1
## 44680 822721 1
## 44681 822722 1
## 44682 822723 1
## 44683 822724 1
## 44684 822725 1
## 44685 822726 1
## 44686 822727 1
## 44687 822728 1
## 44688 822729 1
## 44689 822730 1
## 44690 822731 1
## 44691 822732 1
## 44692 822733 1
## 44693 822734 1
## 44694 822735 1
## 44695 822736 1
## 44696 822737 1
## 44697 822738 1
## 44698 822739 1
## 44699 822740 1
## 44700 822741 1
## 44701 822742 1
## 44702 822743 1
## 44703 822744 1
## 44704 822745 1
## 44705 822746 1
## 44706 822747 1
## 44707 822748 1
## 44708 822749 1
## 44709 822750 1
## 44710 822751 1
## 44711 822752 1
## 44712 822753 1
## 44713 822754 1
## 44714 822755 1
## 44715 822756 1
## 44716 822757 1
## 44717 822758 1
## 44718 822759 1
## 44719 822760 1
## 44720 822761 1
## 44721 822762 1
## 44722 822763 1
## 44723 822764 1
## 44724 822765 1
## 44725 822766 1
## 44726 822767 1
## 44727 822768 1
## 44728 822769 1
## 44729 822770 1
## 44730 822771 1
## 44731 822772 1
## 44732 822773 1
## 44733 822774 1
## 44734 822775 1
## 44735 822776 1
## 44736 822777 1
## 44737 822778 1
## 44738 822779 1
## 44739 822780 1
## 44740 822781 1
## 44741 822782 1
## 44742 822783 1
## 44743 822784 1
## 44744 822786 1
## 44745 822788 1
## 44746 822789 1
## 44747 822790 1
## 44748 822791 1
## 44749 822792 1
## 44750 822793 1
## 44751 822794 1
## 44752 822795 1
## 44753 822796 1
## 44754 822797 1
## 44755 822798 1
## 44756 822799 1
## 44757 822800 1
## 44758 822801 1
## 44759 822802 1
## 44760 822803 1
## 44761 822804 1
## 44762 822805 1
## 44763 822806 1
## 44764 822807 1
## 44765 822808 1
## 44766 822809 1
## 44767 822810 1
## 44768 822811 1
## 44769 822812 1
## 44770 822813 1
## 44771 822814 1
## 44772 822815 1
## 44773 822816 1
## 44774 822817 1
## 44775 822818 1
## 44776 822819 1
## 44777 822820 1
## 44778 822821 1
## 44779 822822 1
## 44780 822823 1
## 44781 822824 1
## 44782 822825 1
## 44783 822826 1
## 44784 822827 1
## 44785 822828 1
## 44786 822829 1
## 44787 822830 1
## 44788 822831 1
## 44789 822832 1
## 44790 822833 1
## 44791 822834 1
## 44792 822835 1
## 44793 822836 1
## 44794 822837 1
## 44795 822838 1
## 44796 822839 1
## 44797 822840 1
## 44798 822841 1
## 44799 822842 1
## 44800 822843 1
## 44801 822844 1
## 44802 822845 1
## 44803 822846 1
## 44804 822847 1
## 44805 822848 1
## 44806 822849 1
## 44807 822850 1
## 44808 822851 1
## 44809 822852 1
## 44810 822853 1
## 44811 822854 1
## 44812 822855 1
## 44813 822856 1
## 44814 822857 1
## 44815 822858 1
## 44816 822859 1
## 44817 822860 1
## 44818 822861 1
## 44819 822862 1
## 44820 822863 1
## 44821 822864 1
## 44822 822865 1
## 44823 822866 1
## 44824 822867 1
## 44825 822868 1
## 44826 822869 1
## 44827 822870 1
## 44828 822871 1
## 44829 822872 1
## 44830 822873 1
## 44831 822874 1
## 44832 822875 1
## 44833 822876 1
## 44834 822877 1
## 44835 822878 1
## 44836 822879 1
## 44837 822880 1
## 44838 822881 1
## 44839 822882 1
## 44840 822883 1
## 44841 822884 1
## 44842 822885 1
## 44843 822886 1
## 44844 822887 1
## 44845 822888 1
## 44846 822889 1
## 44847 822890 1
## 44848 822891 1
## 44849 822892 1
## 44850 822893 1
## 44851 822894 1
## 44852 822895 1
## 44853 822896 1
## 44854 822897 1
## 44855 822898 1
## 44856 822899 1
## 44857 822900 1
## 44858 822901 1
## 44859 822902 1
## 44860 822903 1
## 44861 822904 1
## 44862 822905 1
## 44863 822906 1
## 44864 822907 1
## 44865 822908 1
## 44866 822909 1
## 44867 822910 1
## 44868 822911 1
## 44869 822913 1
## 44870 822914 1
## 44871 822915 1
## 44872 822916 1
## 44873 822917 1
## 44874 822918 1
## 44875 822920 1
## 44876 822921 1
## 44877 822922 1
## 44878 822923 1
## 44879 822924 1
## 44880 822925 1
## 44881 822926 1
## 44882 822927 1
## 44883 822928 1
## 44884 822929 1
## 44885 822930 1
## 44886 822931 1
## 44887 822932 1
## 44888 822933 1
## 44889 822934 1
## 44890 822935 1
## 44891 822936 1
## 44892 822937 1
## 44893 822938 1
## 44894 822939 1
## 44895 822940 1
## 44896 822941 1
## 44897 822942 1
## 44898 822943 1
## 44899 822944 1
## 44900 822945 1
## 44901 822946 1
## 44902 822947 1
## 44903 822948 1
## 44904 822949 1
## 44905 822950 1
## 44906 822952 1
## 44907 822953 1
## 44908 822954 1
## 44909 822955 1
## 44910 822956 1
## 44911 822957 1
## 44912 822958 1
## 44913 822959 1
## 44914 822960 1
## 44915 822961 1
## 44916 822962 1
## 44917 822963 1
## 44918 822964 1
## 44919 822965 1
## 44920 822966 1
## 44921 822967 1
## 44922 822968 1
## 44923 822969 1
## 44924 822970 1
## 44925 822971 1
## 44926 822972 1
## 44927 822973 1
## 44928 822974 1
## 44929 822975 1
## 44930 822976 1
## 44931 822977 1
## 44932 822978 1
## 44933 822979 1
## 44934 822980 1
## 44935 822981 1
## 44936 822982 1
## 44937 822983 1
## 44938 822984 1
## 44939 822985 1
## 44940 822986 1
## 44941 822988 1
## 44942 822989 1
## 44943 822990 1
## 44944 822991 1
## 44945 822992 1
## 44946 822993 1
## 44947 822994 1
## 44948 822995 1
## 44949 822996 1
## 44950 822997 1
## 44951 822998 1
## 44952 822999 1
## 44953 823000 1
## 44954 823001 1
## 44955 823002 1
## 44956 823003 1
## 44957 823004 1
## 44958 823005 1
## 44959 823006 1
## 44960 823007 1
## 44961 823008 1
## 44962 823009 1
## 44963 823010 1
## 44964 823011 1
## 44965 823012 1
## 44966 823013 1
## 44967 823014 1
## 44968 823015 1
## 44969 823016 1
## 44970 823017 1
## 44971 823018 1
## 44972 823019 1
## 44973 823020 1
## 44974 823021 1
## 44975 823022 1
## 44976 823023 1
## 44977 823024 1
## 44978 823025 1
## 44979 823026 1
## 44980 823027 1
## 44981 823028 1
## 44982 823029 1
## 44983 823030 1
## 44984 823031 1
## 44985 823032 1
## 44986 823033 1
## 44987 823034 1
## 44988 823035 1
## 44989 823036 1
## 44990 823037 1
## 44991 823038 1
## 44992 823039 1
## 44993 823040 1
## 44994 823041 1
## 44995 823042 1
## 44996 823043 1
## 44997 823044 1
## 44998 823045 1
## 44999 823046 1
## 45000 823047 1
## 45001 823048 1
## 45002 823049 1
## 45003 823050 1
## 45004 823051 1
## 45005 823052 1
## 45006 823053 1
## 45007 823054 1
## 45008 823055 1
## 45009 823056 1
## 45010 823057 1
## 45011 823058 1
## 45012 823059 1
## 45013 823060 1
## 45014 823061 1
## 45015 823062 1
## 45016 823063 1
## 45017 823064 1
## 45018 823065 1
## 45019 823066 1
## 45020 823067 1
## 45021 823068 1
## 45022 823069 1
## 45023 823070 1
## 45024 823071 1
## 45025 823072 1
## 45026 823073 1
## 45027 823074 1
## 45028 823075 1
## 45029 823076 1
## 45030 823077 1
## 45031 823078 1
## 45032 823079 1
## 45033 823080 1
## 45034 823081 1
## 45035 823082 1
## 45036 823083 1
## 45037 823084 1
## 45038 823085 1
## 45039 823086 1
## 45040 823087 1
## 45041 823088 1
## 45042 823089 1
## 45043 823090 1
## 45044 823091 1
## 45045 823092 1
## 45046 823093 1
## 45047 823094 1
## 45048 823095 1
## 45049 823096 1
## 45050 823097 1
## 45051 823098 1
## 45052 823099 1
## 45053 823100 1
## 45054 823101 1
## 45055 823102 1
## 45056 823103 1
## 45057 823104 1
## 45058 823105 1
## 45059 823106 1
## 45060 823107 1
## 45061 823108 1
## 45062 823109 1
## 45063 823110 1
## 45064 823111 1
## 45065 823112 1
## 45066 823113 1
## 45067 823114 1
## 45068 823115 1
## 45069 823116 1
## 45070 823117 1
## 45071 823119 1
## 45072 823120 1
## 45073 823121 1
## 45074 823122 1
## 45075 823123 1
## 45076 823124 1
## 45077 823125 1
## 45078 823126 1
## 45079 823127 1
## 45080 823128 1
## 45081 823129 1
## 45082 823130 1
## 45083 823131 1
## 45084 823132 1
## 45085 823133 1
## 45086 823134 1
## 45087 823135 1
## 45088 823136 1
## 45089 823137 1
## 45090 823138 1
## 45091 823139 1
## 45092 823140 1
## 45093 823141 1
## 45094 823142 1
## 45095 823143 1
## 45096 823144 1
## 45097 823145 1
## 45098 823146 1
## 45099 823147 1
## 45100 823148 1
## 45101 823149 1
## 45102 823150 1
## 45103 823151 1
## 45104 823152 1
## 45105 823153 1
## 45106 823154 1
## 45107 823155 1
## 45108 823156 1
## 45109 823157 1
## 45110 823158 1
## 45111 823159 1
## 45112 823161 1
## 45113 823162 1
## 45114 823163 1
## 45115 823164 1
## 45116 823165 1
## 45117 823166 1
## 45118 823167 1
## 45119 823168 1
## 45120 823169 1
## 45121 823170 1
## 45122 823171 1
## 45123 823172 1
## 45124 823173 1
## 45125 823174 1
## 45126 823175 1
## 45127 823176 1
## 45128 823177 1
## 45129 823178 1
## 45130 823179 1
## 45131 823180 1
## 45132 823181 1
## 45133 823182 1
## 45134 823183 1
## 45135 823184 1
## 45136 823185 1
## 45137 823186 1
## 45138 823187 1
## 45139 823188 1
## 45140 823189 1
## 45141 823190 1
## 45142 823191 1
## 45143 823192 1
## 45144 823193 1
## 45145 823194 1
## 45146 823195 1
## 45147 823196 1
## 45148 823197 1
## 45149 823198 1
## 45150 823199 1
## 45151 823200 1
## 45152 823201 1
## 45153 823202 1
## 45154 823203 1
## 45155 823204 1
## 45156 823205 1
## 45157 823206 1
## 45158 823207 1
## 45159 823208 1
## 45160 823209 1
## 45161 823210 1
## 45162 823211 1
## 45163 823212 1
## 45164 823213 1
## 45165 823214 1
## 45166 823215 1
## 45167 823216 1
## 45168 823217 1
## 45169 823218 1
## 45170 823219 1
## 45171 823220 1
## 45172 823221 1
## 45173 823222 1
## 45174 823223 1
## 45175 823224 1
## 45176 823225 1
## 45177 823226 1
## 45178 823227 1
## 45179 823228 1
## 45180 823229 1
## 45181 823230 1
## 45182 823231 1
## 45183 823232 1
## 45184 823233 1
## 45185 823234 1
## 45186 823235 1
## 45187 823236 1
## 45188 823237 1
## 45189 823238 1
## 45190 823239 1
## 45191 823240 1
## 45192 823241 1
## 45193 823242 1
## 45194 823243 1
## 45195 823244 1
## 45196 823245 1
## 45197 823246 1
## 45198 823247 1
## 45199 823248 1
## 45200 823249 1
## 45201 823250 1
## 45202 823251 1
## 45203 823252 1
## 45204 823253 1
## 45205 823254 1
## 45206 823255 1
## 45207 823256 1
## 45208 823257 1
## 45209 823258 1
## 45210 823259 1
## 45211 823260 1
## 45212 823261 1
## 45213 823262 1
## 45214 823263 1
## 45215 823264 1
## 45216 823265 1
## 45217 823266 1
## 45218 823267 1
## 45219 823268 1
## 45220 823269 1
## 45221 823270 1
## 45222 823271 1
## 45223 823272 1
## 45224 823273 1
## 45225 823274 1
## 45226 823275 1
## 45227 823276 1
## 45228 823277 1
## 45229 823278 1
## 45230 823279 1
## 45231 823280 1
## 45232 823281 1
## 45233 823282 1
## 45234 823283 1
## 45235 823284 1
## 45236 823285 1
## 45237 823286 1
## 45238 823287 1
## 45239 823288 1
## 45240 823289 1
## 45241 823290 1
## 45242 823291 1
## 45243 823292 1
## 45244 823293 1
## 45245 823294 1
## 45246 823295 1
## 45247 823296 1
## 45248 823297 1
## 45249 823298 1
## 45250 823299 1
## 45251 823300 1
## 45252 823301 1
## 45253 823302 1
## 45254 823303 1
## 45255 823304 1
## 45256 823305 1
## 45257 823306 1
## 45258 823307 1
## 45259 823308 1
## 45260 823309 1
## 45261 823310 1
## 45262 823311 1
## 45263 823312 1
## 45264 823313 1
## 45265 823314 1
## 45266 823315 1
## 45267 823316 1
## 45268 823317 1
## 45269 823318 1
## 45270 823319 1
## 45271 823320 1
## 45272 823321 1
## 45273 823322 1
## 45274 823323 1
## 45275 823324 1
## 45276 823325 1
## 45277 823326 1
## 45278 823328 1
## 45279 823329 1
## 45280 823330 1
## 45281 823331 1
## 45282 823332 1
## 45283 823333 1
## 45284 823334 1
## 45285 823335 1
## 45286 823336 1
## 45287 823337 1
## 45288 823338 1
## 45289 823339 1
## 45290 823340 1
## 45291 823341 1
## 45292 823342 1
## 45293 823343 1
## 45294 823344 1
## 45295 823345 1
## 45296 823346 1
## 45297 823347 1
## 45298 823349 1
## 45299 823350 1
## 45300 823351 1
## 45301 823352 1
## 45302 823353 1
## 45303 823354 1
## 45304 823355 1
## 45305 823356 1
## 45306 823357 1
## 45307 823358 1
## 45308 823359 1
## 45309 823360 1
## 45310 823361 1
## 45311 823362 1
## 45312 823363 1
## 45313 823364 1
## 45314 823365 1
## 45315 823366 1
## 45316 823367 1
## 45317 823368 1
## 45318 823369 1
## 45319 823370 1
## 45320 823371 1
## 45321 823372 1
## 45322 823373 1
## 45323 823374 1
## 45324 823375 1
## 45325 823376 1
## 45326 823377 1
## 45327 823378 1
## 45328 823379 1
## 45329 823380 1
## 45330 823381 1
## 45331 823382 1
## 45332 823383 1
## 45333 823384 1
## 45334 823385 1
## 45335 823386 1
## 45336 823387 1
## 45337 823388 1
## 45338 823389 1
## 45339 823390 1
## 45340 823391 1
## 45341 823392 1
## 45342 823393 1
## 45343 823394 1
## 45344 823395 1
## 45345 823396 1
## 45346 823397 1
## 45347 823398 1
## 45348 823399 1
## 45349 823401 1
## 45350 823402 1
## 45351 823403 1
## 45352 823404 1
## 45353 823405 1
## 45354 823406 1
## 45355 823407 1
## 45356 823408 1
## 45357 823409 1
## 45358 823410 1
## 45359 823411 1
## 45360 823412 1
## 45361 823413 1
## 45362 823414 1
## 45363 823415 1
## 45364 823416 1
## 45365 823417 1
## 45366 823418 1
## 45367 823419 1
## 45368 823420 1
## 45369 823421 1
## 45370 823422 1
## 45371 823423 1
## 45372 823424 1
## 45373 823425 1
## 45374 823426 1
## 45375 823427 1
## 45376 823428 1
## 45377 823429 1
## 45378 823430 1
## 45379 823431 1
## 45380 823432 1
## 45381 823433 1
## 45382 823434 1
## 45383 823435 1
## 45384 823436 1
## 45385 823437 1
## 45386 823438 1
## 45387 823439 1
## 45388 823440 1
## 45389 823442 1
## 45390 823443 1
## 45391 823444 1
## 45392 823445 1
## 45393 823446 1
## 45394 823447 1
## 45395 823448 1
## 45396 823449 1
## 45397 823450 1
## 45398 823451 1
## 45399 823452 1
## 45400 823453 1
## 45401 823454 1
## 45402 823455 1
## 45403 823456 1
## 45404 823457 1
## 45405 823458 1
## 45406 823459 1
## 45407 823460 1
## 45408 823461 1
## 45409 823462 1
## 45410 823463 1
## 45411 823464 1
## 45412 823465 1
## 45413 823466 1
## 45414 823467 1
## 45415 823468 1
## 45416 823469 1
## 45417 823470 1
## 45418 823471 1
## 45419 823472 1
## 45420 823474 1
## 45421 823475 1
## 45422 823476 1
## 45423 823477 1
## 45424 823478 1
## 45425 823479 1
## 45426 823480 1
## 45427 823481 1
## 45428 823482 1
## 45429 823483 1
## 45430 823484 1
## 45431 823485 1
## 45432 823486 1
## 45433 823487 1
## 45434 823488 1
## 45435 823489 1
## 45436 823490 1
## 45437 823491 1
## 45438 823492 1
## 45439 823493 1
## 45440 823494 1
## 45441 823496 1
## 45442 823497 1
## 45443 823498 1
## 45444 823499 1
## 45445 823500 1
## 45446 823501 1
## 45447 823502 1
## 45448 823503 1
## 45449 823504 1
## 45450 823505 1
## 45451 823506 1
## 45452 823507 1
## 45453 823508 1
## 45454 823509 1
## 45455 823510 1
## 45456 823512 1
## 45457 823513 1
## 45458 823514 1
## 45459 823515 1
## 45460 823516 1
## 45461 823517 1
## 45462 823518 1
## 45463 823519 1
## 45464 823520 1
## 45465 823521 1
## 45466 823522 1
## 45467 823523 1
## 45468 823524 1
## 45469 823525 1
## 45470 823526 1
## 45471 823527 1
## 45472 823528 1
## 45473 823529 1
## 45474 823530 1
## 45475 823531 1
## 45476 823532 1
## 45477 823533 1
## 45478 823534 1
## 45479 823535 1
## 45480 823536 1
## 45481 823537 1
## 45482 823538 1
## 45483 823539 1
## 45484 823540 1
## 45485 823541 1
## 45486 823542 1
## 45487 823543 1
## 45488 823544 1
## 45489 823545 1
## 45490 823546 1
## 45491 823547 1
## 45492 823548 1
## 45493 823549 1
## 45494 823550 1
## 45495 823551 1
## 45496 823552 1
## 45497 823553 1
## 45498 823554 1
## 45499 823555 1
## 45500 823556 1
## 45501 823557 1
## 45502 823558 1
## 45503 823559 1
## 45504 823560 1
## 45505 823561 1
## 45506 823562 1
## 45507 823563 1
## 45508 823564 1
## 45509 823565 1
## 45510 823566 1
## 45511 823567 1
## 45512 823568 1
## 45513 823569 1
## 45514 823570 1
## 45515 823571 1
## 45516 823572 1
## 45517 823573 1
## 45518 823574 1
## 45519 823575 1
## 45520 823576 1
## 45521 823577 1
## 45522 823578 1
## 45523 823579 1
## 45524 823580 1
## 45525 823581 1
## 45526 823582 1
## 45527 823583 1
## 45528 823584 1
## 45529 823585 1
## 45530 823586 1
## 45531 823587 1
## 45532 823588 1
## 45533 823589 1
## 45534 823590 1
## 45535 823591 1
## 45536 823592 1
## 45537 823593 1
## 45538 823594 1
## 45539 823595 1
## 45540 823597 1
## 45541 823598 1
## 45542 823599 1
## 45543 823600 1
## 45544 823601 1
## 45545 823602 1
## 45546 823603 1
## 45547 823604 1
## 45548 823605 1
## 45549 823606 1
## 45550 823607 1
## 45551 823608 1
## 45552 823609 1
## 45553 823610 1
## 45554 823611 1
## 45555 823612 1
## 45556 823613 1
## 45557 823614 1
## 45558 823615 1
## 45559 823616 1
## 45560 823617 1
## 45561 823618 1
## 45562 823619 1
## 45563 823620 1
## 45564 823621 1
## 45565 823623 1
## 45566 823624 1
## 45567 823625 1
## 45568 823626 1
## 45569 823627 1
## 45570 823628 1
## 45571 823629 1
## 45572 823630 1
## 45573 823631 1
## 45574 823632 1
## 45575 823633 1
## 45576 823634 1
## 45577 823635 1
## 45578 823636 1
## 45579 823637 1
## 45580 823638 1
## 45581 823639 1
## 45582 823640 1
## 45583 823641 1
## 45584 823642 1
## 45585 823643 1
## 45586 823644 1
## 45587 823645 1
## 45588 823646 1
## 45589 823647 1
## 45590 823648 1
## 45591 823649 1
## 45592 823650 1
## 45593 823651 1
## 45594 823652 1
## 45595 823653 1
## 45596 823654 1
## 45597 823655 1
## 45598 823656 1
## 45599 823657 1
## 45600 823658 1
## 45601 823659 1
## 45602 823660 1
## 45603 823661 1
## 45604 823662 1
## 45605 823663 1
## 45606 823664 1
## 45607 823665 1
## 45608 823666 1
## 45609 823667 1
## 45610 823668 1
## 45611 823669 1
## 45612 823670 1
## 45613 823671 1
## 45614 823672 1
## 45615 823673 1
## 45616 823674 1
## 45617 823675 1
## 45618 823676 1
## 45619 823677 1
## 45620 823678 1
## 45621 823679 1
## 45622 823680 1
## 45623 823681 1
## 45624 823682 1
## 45625 823683 1
## 45626 823684 1
## 45627 823685 1
## 45628 823686 1
## 45629 823687 1
## 45630 823688 1
## 45631 823689 1
## 45632 823690 1
## 45633 823691 1
## 45634 823692 1
## 45635 823693 1
## 45636 823694 1
## 45637 823695 1
## 45638 823696 1
## 45639 823697 1
## 45640 823698 1
## 45641 823699 1
## 45642 823700 1
## 45643 823701 1
## 45644 823702 1
## 45645 823703 1
## 45646 823704 1
## 45647 823705 1
## 45648 823706 1
## 45649 823707 1
## 45650 823708 1
## 45651 823709 1
## 45652 823710 1
## 45653 823711 1
## 45654 823712 1
## 45655 823713 1
## 45656 823714 1
## 45657 823715 1
## 45658 823716 1
## 45659 823717 1
## 45660 823718 1
## 45661 823719 1
## 45662 823720 1
## 45663 823721 1
## 45664 823722 1
## 45665 823723 1
## 45666 823724 1
## 45667 823725 1
## 45668 823726 1
## 45669 823727 1
## 45670 823728 1
## 45671 823729 1
## 45672 823730 1
## 45673 823731 1
## 45674 823732 1
## 45675 823733 1
## 45676 823734 1
## 45677 823735 1
## 45678 823736 1
## 45679 823737 1
## 45680 823738 1
## 45681 823739 1
## 45682 823740 1
## 45683 823741 1
## 45684 823742 1
## 45685 823743 1
## 45686 823744 1
## 45687 823745 1
## 45688 823746 1
## 45689 823747 1
## 45690 823748 1
## 45691 823749 1
## 45692 823750 1
## 45693 823751 1
## 45694 823752 1
## 45695 823753 1
## 45696 823754 1
## 45697 823755 1
## 45698 823756 1
## 45699 823757 1
## 45700 823758 1
## 45701 823759 1
## 45702 823761 1
## 45703 823762 1
## 45704 823763 1
## 45705 823764 1
## 45706 823765 1
## 45707 823766 1
## 45708 823767 1
## 45709 823768 1
## 45710 823769 1
## 45711 823770 1
## 45712 823771 1
## 45713 823772 1
## 45714 823773 1
## 45715 823774 1
## 45716 823775 1
## 45717 823776 1
## 45718 823777 1
## 45719 823778 1
## 45720 823780 1
## 45721 823781 1
## 45722 823782 1
## 45723 823783 1
## 45724 823784 1
## 45725 823785 1
## 45726 823786 1
## 45727 823787 1
## 45728 823788 1
## 45729 823789 1
## 45730 823790 1
## 45731 823791 1
## 45732 823792 1
## 45733 823793 1
## 45734 823794 1
## 45735 823795 1
## 45736 823796 1
## 45737 823797 1
## 45738 823798 1
## 45739 823799 1
## 45740 823800 1
## 45741 823801 1
## 45742 823802 1
## 45743 823803 1
## 45744 823804 1
## 45745 823805 1
## 45746 823806 1
## 45747 823807 1
## 45748 823808 1
## 45749 823809 1
## 45750 823810 1
## 45751 823811 1
## 45752 823812 1
## 45753 823814 1
## 45754 823815 1
## 45755 823816 1
## 45756 823817 1
## 45757 823818 1
## 45758 823819 1
## 45759 823820 1
## 45760 823821 1
## 45761 823822 1
## 45762 823823 1
## 45763 823824 1
## 45764 823825 1
## 45765 823826 1
## 45766 823827 1
## 45767 823828 1
## 45768 823829 1
## 45769 823830 1
## 45770 823831 1
## 45771 823832 1
## 45772 823833 1
## 45773 823834 1
## 45774 823835 1
## 45775 823836 1
## 45776 823837 1
## 45777 823838 1
## 45778 823839 1
## 45779 823840 1
## 45780 823841 1
## 45781 823842 1
## 45782 823843 1
## 45783 823844 1
## 45784 823845 1
## 45785 823846 1
## 45786 823847 1
## 45787 823849 1
## 45788 823850 1
## 45789 823851 1
## 45790 823852 1
## 45791 823853 1
## 45792 823854 1
## 45793 823855 1
## 45794 823856 1
## 45795 823857 1
## 45796 823858 1
## 45797 823859 1
## 45798 823860 1
## 45799 823862 1
## 45800 823863 1
## 45801 823864 1
## 45802 823865 1
## 45803 823866 1
## 45804 823867 1
## 45805 823868 1
## 45806 823869 1
## 45807 823870 1
## 45808 823871 1
## 45809 823872 1
## 45810 823873 1
## 45811 823874 1
## 45812 823875 1
## 45813 823876 1
## 45814 823877 1
## 45815 823878 1
## 45816 823879 1
## 45817 823880 1
## 45818 823881 1
## 45819 823882 1
## 45820 823883 1
## 45821 823884 1
## 45822 823885 1
## 45823 823886 1
## 45824 823887 1
## 45825 823888 1
## 45826 823889 1
## 45827 823890 1
## 45828 823891 1
## 45829 823892 1
## 45830 823893 1
## 45831 823894 1
## 45832 823895 1
## 45833 823896 1
## 45834 823897 1
## 45835 823898 1
## 45836 823899 1
## 45837 823900 1
## 45838 823901 1
## 45839 823902 1
## 45840 823903 1
## 45841 823904 1
## 45842 823905 1
## 45843 823906 1
## 45844 823907 1
## 45845 823908 1
## 45846 823909 1
## 45847 823910 1
## 45848 823911 1
## 45849 823912 1
## 45850 823913 1
## 45851 823914 1
## 45852 823915 1
## 45853 823916 1
## 45854 823917 1
## 45855 823918 1
## 45856 823919 1
## 45857 823920 1
## 45858 823921 1
## 45859 823922 1
## 45860 823923 1
## 45861 823924 1
## 45862 823925 1
## 45863 823926 1
## 45864 823927 1
## 45865 823928 1
## 45866 823929 1
## 45867 823930 1
## 45868 823931 1
## 45869 823932 1
## 45870 823933 1
## 45871 823934 1
## 45872 823935 1
## 45873 823936 1
## 45874 823937 1
## 45875 823939 1
## 45876 823940 1
## 45877 823941 1
## 45878 823942 1
## 45879 823943 1
## 45880 823944 1
## 45881 823945 1
## 45882 823946 1
## 45883 823947 1
## 45884 823948 1
## 45885 823949 1
## 45886 823950 1
## 45887 823951 1
## 45888 823952 1
## 45889 823953 1
## 45890 823954 1
## 45891 823955 1
## 45892 823956 1
## 45893 823957 1
## 45894 823958 1
## 45895 823959 1
## 45896 823960 1
## 45897 823961 1
## 45898 823962 1
## 45899 823963 1
## 45900 823964 1
## 45901 823965 1
## 45902 823966 1
## 45903 823967 1
## 45904 823968 1
## 45905 823969 1
## 45906 823970 1
## 45907 823971 1
## 45908 823972 1
## 45909 823973 1
## 45910 823974 1
## 45911 823975 1
## 45912 823976 1
## 45913 823977 1
## 45914 823978 1
## 45915 823979 1
## 45916 823980 1
## 45917 823981 1
## 45918 823982 1
## 45919 823984 1
## 45920 823985 1
## 45921 823986 1
## 45922 823987 1
## 45923 823988 1
## 45924 823989 1
## 45925 823990 1
## 45926 823991 1
## 45927 823992 1
## 45928 823993 1
## 45929 823994 1
## 45930 823995 1
## 45931 823996 1
## 45932 823997 1
## 45933 823998 1
## 45934 823999 1
## 45935 824000 1
## 45936 824001 1
## 45937 824002 1
## 45938 824003 1
## 45939 824004 1
## 45940 824005 1
## 45941 824006 1
## 45942 824007 1
## 45943 824008 1
## 45944 824009 1
## 45945 824010 1
## 45946 824011 1
## 45947 824012 1
## 45948 824013 1
## 45949 824014 1
## 45950 824015 1
## 45951 824016 1
## 45952 824017 1
## 45953 824018 1
## 45954 824019 1
## 45955 824020 1
## 45956 824021 1
## 45957 824022 1
## 45958 824023 1
## 45959 824024 1
## 45960 824025 1
## 45961 824026 1
## 45962 824027 1
## 45963 824028 1
## 45964 824029 1
## 45965 824030 1
## 45966 824031 1
## 45967 824032 1
## 45968 824033 1
## 45969 824034 1
## 45970 824035 1
## 45971 824036 1
## 45972 824037 1
## 45973 824038 1
## 45974 824039 1
## 45975 824040 1
## 45976 824041 1
## 45977 824042 1
## 45978 824043 1
## 45979 824044 1
## 45980 824045 1
## 45981 824046 1
## 45982 824047 1
## 45983 824048 1
## 45984 824049 1
## 45985 824050 1
## 45986 824051 1
## 45987 824052 1
## 45988 824053 1
## 45989 824054 1
## 45990 824055 1
## 45991 824056 1
## 45992 824057 1
## 45993 824058 1
## 45994 824059 1
## 45995 824060 1
## 45996 824061 1
## 45997 824062 1
## 45998 824063 1
## 45999 824064 1
## 46000 824065 1
## 46001 824066 1
## 46002 824067 1
## 46003 824068 1
## 46004 824069 1
## 46005 824070 1
## 46006 824071 1
## 46007 824072 1
## 46008 824073 1
## 46009 824074 1
## 46010 824075 1
## 46011 824076 1
## 46012 824077 1
## 46013 824078 1
## 46014 824079 1
## 46015 824080 1
## 46016 824081 1
## 46017 824082 1
## 46018 824083 1
## 46019 824084 1
## 46020 824085 1
## 46021 824086 1
## 46022 824087 1
## 46023 824088 1
## 46024 824089 1
## 46025 824090 1
## 46026 824091 1
## 46027 824092 1
## 46028 824093 1
## 46029 824094 1
## 46030 824095 1
## 46031 824096 1
## 46032 824097 1
## 46033 824098 1
## 46034 824099 1
## 46035 824100 1
## 46036 824101 1
## 46037 824102 1
## 46038 824104 1
## 46039 824105 1
## 46040 824106 1
## 46041 824107 1
## 46042 824108 1
## 46043 824109 1
## 46044 824110 1
## 46045 824111 1
## 46046 824112 1
## 46047 824113 1
## 46048 824114 1
## 46049 824115 1
## 46050 824116 1
## 46051 824117 1
## 46052 824118 1
## 46053 824119 1
## 46054 824120 1
## 46055 824121 1
## 46056 824122 1
## 46057 824123 1
## 46058 824124 1
## 46059 824125 1
## 46060 824126 1
## 46061 824127 1
## 46062 824128 1
## 46063 824129 1
## 46064 824130 1
## 46065 824131 1
## 46066 824132 1
## 46067 824133 1
## 46068 824134 1
## 46069 824135 1
## 46070 824136 1
## 46071 824137 1
## 46072 824138 1
## 46073 824139 1
## 46074 824140 1
## 46075 824141 1
## 46076 824142 1
## 46077 824143 1
## 46078 824144 1
## 46079 824145 1
## 46080 824146 1
## 46081 824147 1
## 46082 824148 1
## 46083 824149 1
## 46084 824150 1
## 46085 824151 1
## 46086 824152 1
## 46087 824153 1
## 46088 824154 1
## 46089 824155 1
## 46090 824156 1
## 46091 824157 1
## 46092 824158 1
## 46093 824159 1
## 46094 824160 1
## 46095 824161 1
## 46096 824162 1
## 46097 824163 1
## 46098 824164 1
## 46099 824165 1
## 46100 824166 1
## 46101 824167 1
## 46102 824168 1
## 46103 824169 1
## 46104 824170 1
## 46105 824171 1
## 46106 824172 1
## 46107 824173 1
## 46108 824174 1
## 46109 824175 1
## 46110 824176 1
## 46111 824177 1
## 46112 824178 1
## 46113 824179 1
## 46114 824180 1
## 46115 824182 1
## 46116 824183 1
## 46117 824184 1
## 46118 824185 1
## 46119 824186 1
## 46120 824187 1
## 46121 824188 1
## 46122 824189 1
## 46123 824190 1
## 46124 824191 1
## 46125 824192 1
## 46126 824193 1
## 46127 824194 1
## 46128 824195 1
## 46129 824196 1
## 46130 824197 1
## 46131 824198 1
## 46132 824199 1
## 46133 824200 1
## 46134 824201 1
## 46135 824202 1
## 46136 824203 1
## 46137 824204 1
## 46138 824205 1
## 46139 824206 1
## 46140 824207 1
## 46141 824208 1
## 46142 824209 1
## 46143 824210 1
## 46144 824211 1
## 46145 824212 1
## 46146 824213 1
## 46147 824214 1
## 46148 824215 1
## 46149 824216 1
## 46150 824217 1
## 46151 824219 1
## 46152 824220 1
## 46153 824221 1
## 46154 824222 1
## 46155 824223 1
## 46156 824224 1
## 46157 824225 1
## 46158 824226 1
## 46159 824227 1
## 46160 824228 1
## 46161 824229 1
## 46162 824230 1
## 46163 824231 1
## 46164 824232 1
## 46165 824233 1
## 46166 824234 1
## 46167 824235 1
## 46168 824236 1
## 46169 824237 1
## 46170 824238 1
## 46171 824239 1
## 46172 824240 1
## 46173 824241 1
## 46174 824242 1
## 46175 824243 1
## 46176 824244 1
## 46177 824245 1
## 46178 824246 1
## 46179 824247 1
## 46180 824248 1
## 46181 824249 1
## 46182 824250 1
## 46183 824251 1
## 46184 824252 1
## 46185 824253 1
## 46186 824254 1
## 46187 824255 1
## 46188 824256 1
## 46189 824257 1
## 46190 824258 1
## 46191 824259 1
## 46192 824260 1
## 46193 824261 1
## 46194 824262 1
## 46195 824263 1
## 46196 824264 1
## 46197 824265 1
## 46198 824266 1
## 46199 824267 1
## 46200 824268 1
## 46201 824269 1
## 46202 824270 1
## 46203 824271 1
## 46204 824272 1
## 46205 824273 1
## 46206 824274 1
## 46207 824275 1
## 46208 824276 1
## 46209 824277 1
## 46210 824278 1
## 46211 824279 1
## 46212 824280 1
## 46213 824281 1
## 46214 824282 1
## 46215 824283 1
## 46216 824284 1
## 46217 824285 1
## 46218 824286 1
## 46219 824287 1
## 46220 824288 1
## 46221 824289 1
## 46222 824290 1
## 46223 824291 1
## 46224 824292 1
## 46225 824293 1
## 46226 824294 1
## 46227 824295 1
## 46228 824297 1
## 46229 824298 1
## 46230 824299 1
## 46231 824300 1
## 46232 824301 1
## 46233 824302 1
## 46234 824303 1
## 46235 824304 1
## 46236 824305 1
## 46237 824306 1
## 46238 824307 1
## 46239 824308 1
## 46240 824309 1
## 46241 824310 1
## 46242 824311 1
## 46243 824312 1
## 46244 824313 1
## 46245 824314 1
## 46246 824315 1
## 46247 824316 1
## 46248 824317 1
## 46249 824318 1
## 46250 824319 1
## 46251 824320 1
## 46252 824321 1
## 46253 824322 1
## 46254 824323 1
## 46255 824324 1
## 46256 824325 1
## 46257 824326 1
## 46258 824327 1
## 46259 824328 1
## 46260 824329 1
## 46261 824330 1
## 46262 824331 1
## 46263 824332 1
## 46264 824333 1
## 46265 824334 1
## 46266 824335 1
## 46267 824336 1
## 46268 824337 1
## 46269 824338 1
## 46270 824339 1
## 46271 824340 1
## 46272 824341 1
## 46273 824342 1
## 46274 824343 1
## 46275 824344 1
## 46276 824345 1
## 46277 824346 1
## 46278 824347 1
## 46279 824348 1
## 46280 824349 1
## 46281 824350 1
## 46282 824351 1
## 46283 824352 1
## 46284 824353 1
## 46285 824354 1
## 46286 824355 1
## 46287 824356 1
## 46288 824357 1
## 46289 824358 1
## 46290 824359 1
## 46291 824360 1
## 46292 824361 1
## 46293 824362 1
## 46294 824363 1
## 46295 824364 1
## 46296 824365 1
## 46297 824366 1
## 46298 824367 1
## 46299 824368 1
## 46300 824369 1
## 46301 824370 1
## 46302 824371 1
## 46303 824372 1
## 46304 824373 1
## 46305 824374 1
## 46306 824375 1
## 46307 824376 1
## 46308 824377 1
## 46309 824378 1
## 46310 824379 1
## 46311 824380 1
## 46312 824381 1
## 46313 824382 1
## 46314 824383 1
## 46315 824384 1
## 46316 824385 1
## 46317 824386 1
## 46318 824387 1
## 46319 824388 1
## 46320 824389 1
## 46321 824390 1
## 46322 824391 1
## 46323 824392 1
## 46324 824393 1
## 46325 824394 1
## 46326 824395 1
## 46327 824396 1
## 46328 824397 1
## 46329 824398 1
## 46330 824399 1
## 46331 824400 1
## 46332 824401 1
## 46333 824402 1
## 46334 824403 1
## 46335 824404 1
## 46336 824405 1
## 46337 824406 1
## 46338 824407 1
## 46339 824408 1
## 46340 824409 1
## 46341 824410 1
## 46342 824412 1
## 46343 824414 1
## 46344 824415 1
## 46345 824416 1
## 46346 824418 1
## 46347 824419 1
## 46348 824420 1
## 46349 824421 1
## 46350 824422 1
## 46351 824423 1
## 46352 824424 1
## 46353 824425 1
## 46354 824426 1
## 46355 824427 1
## 46356 824428 1
## 46357 824429 1
## 46358 824430 1
## 46359 824432 1
## 46360 824433 1
## 46361 824434 1
## 46362 824435 1
## 46363 824436 1
## 46364 824437 1
## 46365 824438 1
## 46366 824439 1
## 46367 824440 1
## 46368 824441 1
## 46369 824442 1
## 46370 824443 1
## 46371 824444 1
## 46372 824445 1
## 46373 824446 1
## 46374 824447 1
## 46375 824448 1
## 46376 824449 1
## 46377 824450 1
## 46378 824451 1
## 46379 824452 1
## 46380 824453 1
## 46381 824454 1
## 46382 824455 1
## 46383 824456 1
## 46384 824457 1
## 46385 824458 1
## 46386 824459 1
## 46387 824460 1
## 46388 824461 1
## 46389 824462 1
## 46390 824463 1
## 46391 824464 1
## 46392 824465 1
## 46393 824466 1
## 46394 824467 1
## 46395 824468 1
## 46396 824469 1
## 46397 824470 1
## 46398 824471 1
## 46399 824472 1
## 46400 824473 1
## 46401 824474 1
## 46402 824475 1
## 46403 824476 1
## 46404 824477 1
## 46405 824478 1
## 46406 824479 1
## 46407 824480 1
## 46408 824481 1
## 46409 824482 1
## 46410 824483 1
## 46411 824484 1
## 46412 824486 1
## 46413 824487 1
## 46414 824488 1
## 46415 824489 1
## 46416 824490 1
## 46417 824491 1
## 46418 824492 1
## 46419 824493 1
## 46420 824494 1
## 46421 824495 1
## 46422 824496 1
## 46423 824497 1
## 46424 824498 1
## 46425 824499 1
## 46426 824500 1
## 46427 824501 1
## 46428 824502 1
## 46429 824503 1
## 46430 824504 1
## 46431 824505 1
## 46432 824506 1
## 46433 824507 1
## 46434 824508 1
## 46435 824509 1
## 46436 824510 1
## 46437 824511 1
## 46438 824512 1
## 46439 824513 1
## 46440 824514 1
## 46441 824515 1
## 46442 824516 1
## 46443 824517 1
## 46444 824518 1
## 46445 824519 1
## 46446 824520 1
## 46447 824521 1
## 46448 824522 1
## 46449 824523 1
## 46450 824524 1
## 46451 824525 1
## 46452 824526 1
## 46453 824527 1
## 46454 824528 1
## 46455 824529 1
## 46456 824530 1
## 46457 824531 1
## 46458 824532 1
## 46459 824533 1
## 46460 824534 1
## 46461 824535 1
## 46462 824536 1
## 46463 824537 1
## 46464 824538 1
## 46465 824539 1
## 46466 824540 1
## 46467 824541 1
## 46468 824542 1
## 46469 824543 1
## 46470 824544 1
## 46471 824545 1
## 46472 824546 1
## 46473 824547 1
## 46474 824548 1
## 46475 824550 1
## 46476 824551 1
## 46477 824552 1
## 46478 824553 1
## 46479 824554 1
## 46480 824555 1
## 46481 824556 1
## 46482 824557 1
## 46483 824558 1
## 46484 824559 1
## 46485 824560 1
## 46486 824561 1
## 46487 824562 1
## 46488 824563 1
## 46489 824564 1
## 46490 824565 1
## 46491 824566 1
## 46492 824567 1
## 46493 824568 1
## 46494 824569 1
## 46495 824570 1
## 46496 824571 1
## 46497 824572 1
## 46498 824573 1
## 46499 824574 1
## 46500 824575 1
## 46501 824576 1
## 46502 824577 1
## 46503 824578 1
## 46504 824579 1
## 46505 824580 1
## 46506 824581 1
## 46507 824583 1
## 46508 824584 1
## 46509 824585 1
## 46510 824586 1
## 46511 824587 1
## 46512 824588 1
## 46513 824589 1
## 46514 824590 1
## 46515 824591 1
## 46516 824592 1
## 46517 824593 1
## 46518 824594 1
## 46519 824595 1
## 46520 824596 1
## 46521 824597 1
## 46522 824598 1
## 46523 824599 1
## 46524 824600 1
## 46525 824601 1
## 46526 824602 1
## 46527 824603 1
## 46528 824604 1
## 46529 824605 1
## 46530 824606 1
## 46531 824607 1
## 46532 824608 1
## 46533 824609 1
## 46534 824610 1
## 46535 824611 1
## 46536 824612 1
## 46537 824614 1
## 46538 824615 1
## 46539 824616 1
## 46540 824617 1
## 46541 824618 1
## 46542 824619 1
## 46543 824620 1
## 46544 824621 1
## 46545 824622 1
## 46546 824623 1
## 46547 824624 1
## 46548 824625 1
## 46549 824626 1
## 46550 824627 1
## 46551 824628 1
## 46552 824629 1
## 46553 824630 1
## 46554 824631 1
## 46555 824632 1
## 46556 824633 1
## 46557 824634 1
## 46558 824635 1
## 46559 824636 1
## 46560 824637 1
## 46561 824638 1
## 46562 824639 1
## 46563 824640 1
## 46564 824641 1
## 46565 824642 1
## 46566 824643 1
## 46567 824644 1
## 46568 824645 1
## 46569 824646 1
## 46570 824648 1
## 46571 824649 1
## 46572 824650 1
## 46573 824651 1
## 46574 824652 1
## 46575 824653 1
## 46576 824654 1
## 46577 824655 1
## 46578 824657 1
## 46579 824658 1
## 46580 824659 1
## 46581 824660 1
## 46582 824661 1
## 46583 824662 1
## 46584 824663 1
## 46585 824664 1
## 46586 824665 1
## 46587 824666 1
## 46588 824667 1
## 46589 824668 1
## 46590 824669 1
## 46591 824670 1
## 46592 824671 1
## 46593 824672 1
## 46594 824673 1
## 46595 824674 1
## 46596 824675 1
## 46597 824676 1
## 46598 824677 1
## 46599 824678 1
## 46600 824679 1
## 46601 824680 1
## 46602 824681 1
## 46603 824682 1
## 46604 824683 1
## 46605 824684 1
## 46606 824685 1
## 46607 824686 1
## 46608 824687 1
## 46609 824689 1
## 46610 824690 1
## 46611 824691 1
## 46612 824692 1
## 46613 824693 1
## 46614 824694 1
## 46615 824695 1
## 46616 824696 1
## 46617 824697 1
## 46618 824698 1
## 46619 824699 1
## 46620 824700 1
## 46621 824701 1
## 46622 824702 1
## 46623 824703 1
## 46624 824704 1
## 46625 824705 1
## 46626 824706 1
## 46627 824707 1
## 46628 824708 1
## 46629 824709 1
## 46630 824710 1
## 46631 824711 1
## 46632 824712 1
## 46633 824713 1
## 46634 824714 1
## 46635 824715 1
## 46636 824716 1
## 46637 824717 1
## 46638 824718 1
## 46639 824719 1
## 46640 824720 1
## 46641 824721 1
## 46642 824722 1
## 46643 824723 1
## 46644 824724 1
## 46645 824725 1
## 46646 824726 1
## 46647 824727 1
## 46648 824728 1
## 46649 824729 1
## 46650 824730 1
## 46651 824731 1
## 46652 824732 1
## 46653 824733 1
## 46654 824734 1
## 46655 824735 1
## 46656 824736 1
## 46657 824737 1
## 46658 824738 1
## 46659 824740 1
## 46660 824741 1
## 46661 824742 1
## 46662 824743 1
## 46663 824744 1
## 46664 824746 1
## 46665 824747 1
## 46666 824748 1
## 46667 824749 1
## 46668 824750 1
## 46669 824751 1
## 46670 824752 1
## 46671 824753 1
## 46672 824754 1
## 46673 824755 1
## 46674 824756 1
## 46675 824757 1
## 46676 824758 1
## 46677 824759 1
## 46678 824760 1
## 46679 824761 1
## 46680 824762 1
## 46681 824763 1
## 46682 824764 1
## 46683 824765 1
## 46684 824766 1
## 46685 824767 1
## 46686 824768 1
## 46687 824769 1
## 46688 824770 1
## 46689 824771 1
## 46690 824772 1
## 46691 824773 1
## 46692 824774 1
## 46693 824775 1
## 46694 824776 1
## 46695 824777 1
## 46696 824778 1
## 46697 824779 1
## 46698 824780 1
## 46699 824781 1
## 46700 824782 1
## 46701 824783 1
## 46702 824784 1
## 46703 824785 1
## 46704 824786 1
## 46705 824787 1
## 46706 824788 1
## 46707 824789 1
## 46708 824790 1
## 46709 824791 1
## 46710 824792 1
## 46711 824793 1
## 46712 824794 1
## 46713 824795 1
## 46714 824796 1
## 46715 824797 1
## 46716 824798 1
## 46717 824799 1
## 46718 824800 1
## 46719 824801 1
## 46720 824802 1
## 46721 824803 1
## 46722 824804 1
## 46723 824805 1
## 46724 824806 1
## 46725 824807 1
## 46726 824808 1
## 46727 824809 1
## 46728 824810 1
## 46729 824811 1
## 46730 824812 1
## 46731 824813 1
## 46732 824814 1
## 46733 824815 1
## 46734 824816 1
## 46735 824817 1
## 46736 824818 1
## 46737 824819 1
## 46738 824820 1
## 46739 824821 1
## 46740 824822 1
## 46741 824823 1
## 46742 824824 1
## 46743 824825 1
## 46744 824826 1
## 46745 824827 1
## 46746 824828 1
## 46747 824829 1
## 46748 824830 1
## 46749 824831 1
## 46750 824832 1
## 46751 824833 1
## 46752 824834 1
## 46753 824835 1
## 46754 824836 1
## 46755 824837 1
## 46756 824838 1
## 46757 824839 1
## 46758 824840 1
## 46759 824841 1
## 46760 824842 1
## 46761 824843 1
## 46762 824844 1
## 46763 824845 1
## 46764 824846 1
## 46765 824847 1
## 46766 824848 1
## 46767 824849 1
## 46768 824850 1
## 46769 824851 1
## 46770 824852 1
## 46771 824853 1
## 46772 824854 1
## 46773 824855 1
## 46774 824856 1
## 46775 824857 1
## 46776 824858 1
## 46777 824859 1
## 46778 824860 1
## 46779 824861 1
## 46780 824862 1
## 46781 824863 1
## 46782 824864 1
## 46783 824865 1
## 46784 824866 1
## 46785 824867 1
## 46786 824868 1
## 46787 824869 1
## 46788 824870 1
## 46789 824871 1
## 46790 824872 1
## 46791 824873 1
## 46792 824874 1
## 46793 824875 1
## 46794 824876 1
## 46795 824877 1
## 46796 824878 1
## 46797 824879 1
## 46798 824880 1
## 46799 824881 1
## 46800 824882 1
## 46801 824883 1
## 46802 824884 1
## 46803 824885 1
## 46804 824886 1
## 46805 824887 1
## 46806 824888 1
## 46807 824889 1
## 46808 824890 1
## 46809 824891 1
## 46810 824892 1
## 46811 824893 1
## 46812 824894 1
## 46813 824895 1
## 46814 824896 1
## 46815 824897 1
## 46816 824898 1
## 46817 824899 1
## 46818 824900 1
## 46819 824901 1
## 46820 824902 1
## 46821 824903 1
## 46822 824904 1
## 46823 824905 1
## 46824 824906 1
## 46825 824907 1
## 46826 824908 1
## 46827 824909 1
## 46828 824910 1
## 46829 824911 1
## 46830 824912 1
## 46831 824913 1
## 46832 824914 1
## 46833 824915 1
## 46834 824916 1
## 46835 824917 1
## 46836 824918 1
## 46837 824919 1
## 46838 824921 1
## 46839 824922 1
## 46840 824923 1
## 46841 824924 1
## 46842 824925 1
## 46843 824926 1
## 46844 824927 1
## 46845 824928 1
## 46846 824929 1
## 46847 824930 1
## 46848 824931 1
## 46849 824932 1
## 46850 824933 1
## 46851 824935 1
## 46852 824936 1
## 46853 824937 1
## 46854 824938 1
## 46855 824939 1
## 46856 824940 1
## 46857 824941 1
## 46858 824942 1
## 46859 824943 1
## 46860 824944 1
## 46861 824945 1
## 46862 824946 1
## 46863 824947 1
## 46864 824948 1
## 46865 824949 1
## 46866 824950 1
## 46867 824951 1
## 46868 824952 1
## 46869 824953 1
## 46870 824954 1
## 46871 824955 1
## 46872 824956 1
## 46873 824957 1
## 46874 824958 1
## 46875 824959 1
## 46876 824960 1
## 46877 824961 1
## 46878 824962 1
## 46879 824963 1
## 46880 824964 1
## 46881 824965 1
## 46882 824966 1
## 46883 824967 1
## 46884 824968 1
## 46885 824969 1
## 46886 824970 1
## 46887 824971 1
## 46888 824972 1
## 46889 824973 1
## 46890 824974 1
## 46891 824975 1
## 46892 824976 1
## 46893 824977 1
## 46894 824978 1
## 46895 824979 1
## 46896 824980 1
## 46897 824981 1
## 46898 824982 1
## 46899 824983 1
## 46900 824984 1
## 46901 824985 1
## 46902 824986 1
## 46903 824987 1
## 46904 824988 1
## 46905 824989 1
## 46906 824990 1
## 46907 824991 1
## 46908 824992 1
## 46909 824993 1
## 46910 824994 1
## 46911 824995 1
## 46912 824996 1
## 46913 824997 1
## 46914 824998 1
## 46915 824999 1
## 46916 825000 1
## 46917 825001 1
## 46918 825002 1
## 46919 825003 1
## 46920 825004 1
## 46921 825005 1
## 46922 825006 1
## 46923 825007 1
## 46924 825008 1
## 46925 825009 1
## 46926 825010 1
## 46927 825011 1
## 46928 825012 1
## 46929 825013 1
## 46930 825014 1
## 46931 825015 1
## 46932 825016 1
## 46933 825017 1
## 46934 825018 1
## 46935 825019 1
## 46936 825020 1
## 46937 825021 1
## 46938 825022 1
## 46939 825023 1
## 46940 825024 1
## 46941 825025 1
## 46942 825026 1
## 46943 825027 1
## 46944 825028 1
## 46945 825029 1
## 46946 825030 1
## 46947 825031 1
## 46948 825032 1
## 46949 825033 1
## 46950 825034 1
## 46951 825035 1
## 46952 825036 1
## 46953 825037 1
## 46954 825038 1
## 46955 825039 1
## 46956 825040 1
## 46957 825041 1
## 46958 825042 1
## 46959 825043 1
## 46960 825044 1
## 46961 825045 1
## 46962 825046 1
## 46963 825047 1
## 46964 825048 1
## 46965 825049 1
## 46966 825050 1
## 46967 825051 1
## 46968 825052 1
## 46969 825053 1
## 46970 825054 1
## 46971 825055 1
## 46972 825056 1
## 46973 825057 1
## 46974 825058 1
## 46975 825059 1
## 46976 825060 1
## 46977 825061 1
## 46978 825062 1
## 46979 825063 1
## 46980 825064 1
## 46981 825065 1
## 46982 825066 1
## 46983 825067 1
## 46984 825068 1
## 46985 825069 1
## 46986 825070 1
## 46987 825071 1
## 46988 825072 1
## 46989 825073 1
## 46990 825074 1
## 46991 825075 1
## 46992 825076 1
## 46993 825077 1
## 46994 825078 1
## 46995 825079 1
## 46996 825080 1
## 46997 825081 1
## 46998 825082 1
## 46999 825083 1
## 47000 825084 1
## 47001 825085 1
## 47002 825086 1
## 47003 825087 1
## 47004 825088 1
## 47005 825089 1
## 47006 825090 1
## 47007 825091 1
## 47008 825092 1
## 47009 825093 1
## 47010 825094 1
## 47011 825095 1
## 47012 825096 1
## 47013 825097 1
## 47014 825098 1
## 47015 825099 1
## 47016 825100 1
## 47017 825101 1
## 47018 825102 1
## 47019 825103 1
## 47020 825104 1
## 47021 825105 1
## 47022 825106 1
## 47023 825107 1
## 47024 825108 1
## 47025 825109 1
## 47026 825110 1
## 47027 825111 1
## 47028 825112 1
## 47029 825113 1
## 47030 825114 1
## 47031 825115 1
## 47032 825116 1
## 47033 825117 1
## 47034 825118 1
## 47035 825119 1
## 47036 825120 1
## 47037 825121 1
## 47038 825122 1
## 47039 825123 1
## 47040 825124 1
## 47041 825125 1
## 47042 825126 1
## 47043 825127 1
## 47044 825128 1
## 47045 825129 1
## 47046 825130 1
## 47047 825131 1
## 47048 825132 1
## 47049 825133 1
## 47050 825134 1
## 47051 825135 1
## 47052 825136 1
## 47053 825137 1
## 47054 825138 1
## 47055 825139 1
## 47056 825140 1
## 47057 825141 1
## 47058 825142 1
## 47059 825143 1
## 47060 825144 1
## 47061 825145 1
## 47062 825146 1
## 47063 825147 1
## 47064 825148 1
## 47065 825149 1
## 47066 825150 1
## 47067 825151 1
## 47068 825152 1
## 47069 825153 1
## 47070 825154 1
## 47071 825155 1
## 47072 825156 1
## 47073 825157 1
## 47074 825158 1
## 47075 825159 1
## 47076 825160 1
## 47077 825161 1
## 47078 825162 1
## 47079 825163 1
## 47080 825164 1
## 47081 825165 1
## 47082 825166 1
## 47083 825167 1
## 47084 825168 1
## 47085 825169 1
## 47086 825170 1
## 47087 825171 1
## 47088 825172 1
## 47089 825173 1
## 47090 825174 1
## 47091 825175 1
## 47092 825176 1
## 47093 825177 1
## 47094 825178 1
## 47095 825179 1
## 47096 825180 1
## 47097 825181 1
## 47098 825182 1
## 47099 825183 1
## 47100 825184 1
## 47101 825185 1
## 47102 825186 1
## 47103 825187 1
## 47104 825188 1
## 47105 825189 1
## 47106 825190 1
## 47107 825191 1
## 47108 825192 1
## 47109 825193 1
## 47110 825194 1
## 47111 825195 1
## 47112 825196 1
## 47113 825197 1
## 47114 825198 1
## 47115 825199 1
## 47116 825200 1
## 47117 825201 1
## 47118 825202 1
## 47119 825203 1
## 47120 825204 1
## 47121 825206 1
## 47122 825207 1
## 47123 825208 1
## 47124 825209 1
## 47125 825210 1
## 47126 825211 1
## 47127 825212 1
## 47128 825213 1
## 47129 825214 1
## 47130 825215 1
## 47131 825216 1
## 47132 825217 1
## 47133 825218 1
## 47134 825219 1
## 47135 825220 1
## 47136 825221 1
## 47137 825222 1
## 47138 825223 1
## 47139 825224 1
## 47140 825225 1
## 47141 825226 1
## 47142 825227 1
## 47143 825228 1
## 47144 825229 1
## 47145 825230 1
## 47146 825231 1
## 47147 825232 1
## 47148 825233 1
## 47149 825234 1
## 47150 825235 1
## 47151 825236 1
## 47152 825237 1
## 47153 825239 1
## 47154 825240 1
## 47155 825241 1
## 47156 825242 1
## 47157 825243 1
## 47158 825244 1
## 47159 825245 1
## 47160 825246 1
## 47161 825247 1
## 47162 825248 1
## 47163 825249 1
## 47164 825250 1
## 47165 825251 1
## 47166 825252 1
## 47167 825253 1
## 47168 825254 1
## 47169 825255 1
## 47170 825256 1
## 47171 825258 1
## 47172 825259 1
## 47173 825260 1
## 47174 825261 1
## 47175 825262 1
## 47176 825263 1
## 47177 825264 1
## 47178 825265 1
## 47179 825266 1
## 47180 825267 1
## 47181 825268 1
## 47182 825269 1
## 47183 825270 1
## 47184 825271 1
## 47185 825272 1
## 47186 825273 1
## 47187 825274 1
## 47188 825275 1
## 47189 825276 1
## 47190 825277 1
## 47191 825278 1
## 47192 825279 1
## 47193 825280 1
## 47194 825281 1
## 47195 825282 1
## 47196 825283 1
## 47197 825284 1
## 47198 825285 1
## 47199 825286 1
## 47200 825287 1
## 47201 825288 1
## 47202 825289 1
## 47203 825290 1
## 47204 825291 1
## 47205 825292 1
## 47206 825293 1
## 47207 825294 1
## 47208 825295 1
## 47209 825296 1
## 47210 825297 1
## 47211 825298 1
## 47212 825299 1
## 47213 825300 1
## 47214 825301 1
## 47215 825303 1
## 47216 825304 1
## 47217 825305 1
## 47218 825306 1
## 47219 825307 1
## 47220 825308 1
## 47221 825309 1
## 47222 825310 1
## 47223 825311 1
## 47224 825312 1
## 47225 825313 1
## 47226 825314 1
## 47227 825315 1
## 47228 825316 1
## 47229 825318 1
## 47230 825319 1
## 47231 825320 1
## 47232 825321 1
## 47233 825322 1
## 47234 825323 1
## 47235 825324 1
## 47236 825325 1
## 47237 825326 1
## 47238 825327 1
## 47239 825328 1
## 47240 825329 1
## 47241 825330 1
## 47242 825331 1
## 47243 825332 1
## 47244 825333 1
## 47245 825334 1
## 47246 825335 1
## 47247 825336 1
## 47248 825337 1
## 47249 825338 1
## 47250 825339 1
## 47251 825340 1
## 47252 825341 1
## 47253 825342 1
## 47254 825343 1
## 47255 825344 1
## 47256 825345 1
## 47257 825346 1
## 47258 825347 1
## 47259 825348 1
## 47260 825349 1
## 47261 825350 1
## 47262 825351 1
## 47263 825352 1
## 47264 825353 1
## 47265 825354 1
## 47266 825355 1
## 47267 825356 1
## 47268 825357 1
## 47269 825359 1
## 47270 825360 1
## 47271 825361 1
## 47272 825362 1
## 47273 825363 1
## 47274 825364 1
## 47275 825365 1
## 47276 825367 1
## 47277 825368 1
## 47278 825369 1
## 47279 825370 1
## 47280 825371 1
## 47281 825372 1
## 47282 825373 1
## 47283 825374 1
## 47284 825375 1
## 47285 825376 1
## 47286 825377 1
## 47287 825378 1
## 47288 825379 1
## 47289 825380 1
## 47290 825381 1
## 47291 825382 1
## 47292 825383 1
## 47293 825384 1
## 47294 825385 1
## 47295 825386 1
## 47296 825387 1
## 47297 825388 1
## 47298 825389 1
## 47299 825390 1
## 47300 825391 1
## 47301 825392 1
## 47302 825393 1
## 47303 825394 1
## 47304 825395 1
## 47305 825396 1
## 47306 825397 1
## 47307 825398 1
## 47308 825399 1
## 47309 825400 1
## 47310 825401 1
## 47311 825402 1
## 47312 825403 1
## 47313 825404 1
## 47314 825405 1
## 47315 825406 1
## 47316 825407 1
## 47317 825408 1
## 47318 825409 1
## 47319 825410 1
## 47320 825411 1
## 47321 825412 1
## 47322 825413 1
## 47323 825414 1
## 47324 825415 1
## 47325 825416 1
## 47326 825417 1
## 47327 825418 1
## 47328 825419 1
## 47329 825420 1
## 47330 825421 1
## 47331 825422 1
## 47332 825423 1
## 47333 825424 1
## 47334 825425 1
## 47335 825426 1
## 47336 825427 1
## 47337 825428 1
## 47338 825429 1
## 47339 825430 1
## 47340 825431 1
## 47341 825432 1
## 47342 825433 1
## 47343 825434 1
## 47344 825435 1
## 47345 825436 1
## 47346 825437 1
## 47347 825438 1
## 47348 825439 1
## 47349 825440 1
## 47350 825441 1
## 47351 825442 1
## 47352 825443 1
## 47353 825444 1
## 47354 825445 1
## 47355 825446 1
## 47356 825447 1
## 47357 825448 1
## 47358 825449 1
## 47359 825450 1
## 47360 825451 1
## 47361 825452 1
## 47362 825453 1
## 47363 825454 1
## 47364 825455 1
## 47365 825456 1
## 47366 825458 1
## 47367 825459 1
## 47368 825460 1
## 47369 825461 1
## 47370 825462 1
## 47371 825463 1
## 47372 825464 1
## 47373 825465 1
## 47374 825466 1
## 47375 825467 1
## 47376 825468 1
## 47377 825469 1
## 47378 825470 1
## 47379 825471 1
## 47380 825472 1
## 47381 825473 1
## 47382 825474 1
## 47383 825475 1
## 47384 825476 1
## 47385 825477 1
## 47386 825478 1
## 47387 825479 1
## 47388 825480 1
## 47389 825481 1
## 47390 825482 1
## 47391 825483 1
## 47392 825484 1
## 47393 825485 1
## 47394 825486 1
## 47395 825487 1
## 47396 825489 1
## 47397 825490 1
## 47398 825491 1
## 47399 825492 1
## 47400 825493 1
## 47401 825494 1
## 47402 825495 1
## 47403 825496 1
## 47404 825497 1
## 47405 825498 1
## 47406 825499 1
## 47407 825500 1
## 47408 825501 1
## 47409 825502 1
## 47410 825503 1
## 47411 825504 1
## 47412 825505 1
## 47413 825506 1
## 47414 825507 1
## 47415 825508 1
## 47416 825509 1
## 47417 825510 1
## 47418 825511 1
## 47419 825512 1
## 47420 825513 1
## 47421 825514 1
## 47422 825515 1
## 47423 825516 1
## 47424 825517 1
## 47425 825518 1
## 47426 825519 1
## 47427 825520 1
## 47428 825521 1
## 47429 825522 1
## 47430 825523 1
## 47431 825524 1
## 47432 825525 1
## 47433 825526 1
## 47434 825527 1
## 47435 825528 1
## 47436 825529 1
## 47437 825530 1
## 47438 825531 1
## 47439 825532 1
## 47440 825533 1
## 47441 825534 1
## 47442 825535 1
## 47443 825536 1
## 47444 825537 1
## 47445 825538 1
## 47446 825539 1
## 47447 825540 1
## 47448 825541 1
## 47449 825542 1
## 47450 825543 1
## 47451 825544 1
## 47452 825545 1
## 47453 825546 1
## 47454 825547 1
## 47455 825548 1
## 47456 825549 1
## 47457 825550 1
## 47458 825551 1
## 47459 825552 1
## 47460 825553 1
## 47461 825554 1
## 47462 825555 1
## 47463 825556 1
## 47464 825557 1
## 47465 825558 1
## 47466 825559 1
## 47467 825560 1
## 47468 825561 1
## 47469 825562 1
## 47470 825563 1
## 47471 825564 1
## 47472 825565 1
## 47473 825566 1
## 47474 825567 1
## 47475 825568 1
## 47476 825569 1
## 47477 825570 1
## 47478 825571 1
## 47479 825572 1
## 47480 825573 1
## 47481 825574 1
## 47482 825575 1
## 47483 825576 1
## 47484 825577 1
## 47485 825578 1
## 47486 825579 1
## 47487 825580 1
## 47488 825581 1
## 47489 825583 1
## 47490 825584 1
## 47491 825585 1
## 47492 825586 1
## 47493 825587 1
## 47494 825588 1
## 47495 825589 1
## 47496 825590 1
## 47497 825591 1
## 47498 825592 1
## 47499 825593 1
## 47500 825594 1
## 47501 825595 1
## 47502 825596 1
## 47503 825597 1
## 47504 825598 1
## 47505 825599 1
## 47506 825600 1
## 47507 825601 1
## 47508 825602 1
## 47509 825603 1
## 47510 825604 1
## 47511 825605 1
## 47512 825606 1
## 47513 825607 1
## 47514 825608 1
## 47515 825609 1
## 47516 825610 1
## 47517 825611 1
## 47518 825612 1
## 47519 825613 1
## 47520 825614 1
## 47521 825615 1
## 47522 825616 1
## 47523 825617 1
## 47524 825618 1
## 47525 825619 1
## 47526 825620 1
## 47527 825621 1
## 47528 825622 1
## 47529 825623 1
## 47530 825624 1
## 47531 825625 1
## 47532 825626 1
## 47533 825627 1
## 47534 825628 1
## 47535 825629 1
## 47536 825630 1
## 47537 825631 1
## 47538 825632 1
## 47539 825633 1
## 47540 825634 1
## 47541 825635 1
## 47542 825636 1
## 47543 825637 1
## 47544 825638 1
## 47545 825639 1
## 47546 825640 1
## 47547 825641 1
## 47548 825642 1
## 47549 825643 1
## 47550 825644 1
## 47551 825645 1
## 47552 825646 1
## 47553 825647 1
## 47554 825648 1
## 47555 825649 1
## 47556 825650 1
## 47557 825651 1
## 47558 825652 1
## 47559 825653 1
## 47560 825654 1
## 47561 825655 1
## 47562 825656 1
## 47563 825657 1
## 47564 825658 1
## 47565 825659 1
## 47566 825660 1
## 47567 825661 1
## 47568 825662 1
## 47569 825663 1
## 47570 825664 1
## 47571 825665 1
## 47572 825666 1
## 47573 825667 1
## 47574 825668 1
## 47575 825669 1
## 47576 825670 1
## 47577 825671 1
## 47578 825672 1
## 47579 825673 1
## 47580 825674 1
## 47581 825675 1
## 47582 825676 1
## 47583 825677 1
## 47584 825678 1
## 47585 825679 1
## 47586 825680 1
## 47587 825681 1
## 47588 825682 1
## 47589 825683 1
## 47590 825684 1
## 47591 825685 1
## 47592 825686 1
## 47593 825687 1
## 47594 825688 1
## 47595 825689 1
## 47596 825690 1
## 47597 825691 1
## 47598 825692 1
## 47599 825693 1
## 47600 825694 1
## 47601 825695 1
## 47602 825696 1
## 47603 825697 1
## 47604 825698 1
## 47605 825699 1
## 47606 825700 1
## 47607 825701 1
## 47608 825702 1
## 47609 825703 1
## 47610 825704 1
## 47611 825705 1
## 47612 825706 1
## 47613 825707 1
## 47614 825708 1
## 47615 825709 1
## 47616 825710 1
## 47617 825711 1
## 47618 825712 1
## 47619 825713 1
## 47620 825714 1
## 47621 825715 1
## 47622 825716 1
## 47623 825717 1
## 47624 825718 1
## 47625 825719 1
## 47626 825720 1
## 47627 825721 1
## 47628 825722 1
## 47629 825723 1
## 47630 825724 1
## 47631 825725 1
## 47632 825726 1
## 47633 825727 1
## 47634 825728 1
## 47635 825729 1
## 47636 825730 1
## 47637 825731 1
## 47638 825732 1
## 47639 825733 1
## 47640 825734 1
## 47641 825735 1
## 47642 825736 1
## 47643 825737 1
## 47644 825738 1
## 47645 825739 1
## 47646 825740 1
## 47647 825741 1
## 47648 825742 1
## 47649 825743 1
## 47650 825744 1
## 47651 825745 1
## 47652 825746 1
## 47653 825747 1
## 47654 825748 1
## 47655 825749 1
## 47656 825750 1
## 47657 825751 1
## 47658 825752 1
## 47659 825753 1
## 47660 825754 1
## 47661 825755 1
## 47662 825756 1
## 47663 825757 1
## 47664 825759 1
## 47665 825760 1
## 47666 825761 1
## 47667 825763 1
## 47668 825764 1
## 47669 825765 1
## 47670 825766 1
## 47671 825767 1
## 47672 825768 1
## 47673 825769 1
## 47674 825770 1
## 47675 825771 1
## 47676 825772 1
## 47677 825773 1
## 47678 825774 1
## 47679 825775 1
## 47680 825776 1
## 47681 825777 1
## 47682 825778 1
## 47683 825779 1
## 47684 825780 1
## 47685 825781 1
## 47686 825782 1
## 47687 825783 1
## 47688 825784 1
## 47689 825785 1
## 47690 825786 1
## 47691 825787 1
## 47692 825788 1
## 47693 825789 1
## 47694 825790 1
## 47695 825791 1
## 47696 825792 1
## 47697 825793 1
## 47698 825794 1
## 47699 825795 1
## 47700 825796 1
## 47701 825797 1
## 47702 825798 1
## 47703 825799 1
## 47704 825800 1
## 47705 825801 1
## 47706 825802 1
## 47707 825803 1
## 47708 825804 1
## 47709 825805 1
## 47710 825806 1
## 47711 825807 1
## 47712 825808 1
## 47713 825809 1
## 47714 825810 1
## 47715 825811 1
## 47716 825812 1
## 47717 825813 1
## 47718 825814 1
## 47719 825815 1
## 47720 825816 1
## 47721 825817 1
## 47722 825818 1
## 47723 825819 1
## 47724 825820 1
## 47725 825821 1
## 47726 825822 1
## 47727 825823 1
## 47728 825824 1
## 47729 825825 1
## 47730 825826 1
## 47731 825827 1
## 47732 825828 1
## 47733 825829 1
## 47734 825830 1
## 47735 825831 1
## 47736 825832 1
## 47737 825833 1
## 47738 825834 1
## 47739 825835 1
## 47740 825836 1
## 47741 825837 1
## 47742 825838 1
## 47743 825839 1
## 47744 825840 1
## 47745 825841 1
## 47746 825842 1
## 47747 825843 1
## 47748 825845 1
## 47749 825846 1
## 47750 825847 1
## 47751 825848 1
## 47752 825849 1
## 47753 825850 1
## 47754 825851 1
## 47755 825852 1
## 47756 825853 1
## 47757 825854 1
## 47758 825855 1
## 47759 825856 1
## 47760 825857 1
## 47761 825858 1
## 47762 825859 1
## 47763 825860 1
## 47764 825861 1
## 47765 825862 1
## 47766 825863 1
## 47767 825864 1
## 47768 825865 1
## 47769 825866 1
## 47770 825867 1
## 47771 825868 1
## 47772 825869 1
## 47773 825871 1
## 47774 825872 1
## 47775 825873 1
## 47776 825874 1
## 47777 825875 1
## 47778 825876 1
## 47779 825877 1
## 47780 825878 1
## 47781 825879 1
## 47782 825880 1
## 47783 825881 1
## 47784 825882 1
## 47785 825883 1
## 47786 825884 1
## 47787 825885 1
## 47788 825886 1
## 47789 825887 1
## 47790 825888 1
## 47791 825889 1
## 47792 825890 1
## 47793 825891 1
## 47794 825892 1
## 47795 825893 1
## 47796 825894 1
## 47797 825895 1
## 47798 825896 1
## 47799 825897 1
## 47800 825898 1
## 47801 825899 1
## 47802 825900 1
## 47803 825901 1
## 47804 825902 1
## 47805 825903 1
## 47806 825904 1
## 47807 825905 1
## 47808 825906 1
## 47809 825907 1
## 47810 825908 1
## 47811 825909 1
## 47812 825910 1
## 47813 825911 1
## 47814 825912 1
## 47815 825913 1
## 47816 825914 1
## 47817 825915 1
## 47818 825916 1
## 47819 825917 1
## 47820 825918 1
## 47821 825919 1
## 47822 825920 1
## 47823 825922 1
## 47824 825923 1
## 47825 825924 1
## 47826 825925 1
## 47827 825926 1
## 47828 825927 1
## 47829 825928 1
## 47830 825929 1
## 47831 825930 1
## 47832 825931 1
## 47833 825932 1
## 47834 825934 1
## 47835 825935 1
## 47836 825936 1
## 47837 825937 1
## 47838 825938 1
## 47839 825939 1
## 47840 825940 1
## 47841 825941 1
## 47842 825942 1
## 47843 825943 1
## 47844 825944 1
## 47845 825945 1
## 47846 825946 1
## 47847 825947 1
## 47848 825948 1
## 47849 825949 1
## 47850 825951 1
## 47851 825952 1
## 47852 825953 1
## 47853 825954 1
## 47854 825955 1
## 47855 825956 1
## 47856 825957 1
## 47857 825958 1
## 47858 825959 1
## 47859 825960 1
## 47860 825961 1
## 47861 825962 1
## 47862 825963 1
## 47863 825964 1
## 47864 825966 1
## 47865 825967 1
## 47866 825968 1
## 47867 825969 1
## 47868 825970 1
## 47869 825971 1
## 47870 825972 1
## 47871 825973 1
## 47872 825974 1
## 47873 825975 1
## 47874 825976 1
## 47875 825977 1
## 47876 825978 1
## 47877 825979 1
## 47878 825980 1
## 47879 825981 1
## 47880 825982 1
## 47881 825983 1
## 47882 825984 1
## 47883 825985 1
## 47884 825986 1
## 47885 825987 1
## 47886 825988 1
## 47887 825989 1
## 47888 825990 1
## 47889 825991 1
## 47890 825992 1
## 47891 825993 1
## 47892 825994 1
## 47893 825995 1
## 47894 825996 1
## 47895 825998 1
## 47896 825999 1
## 47897 826000 1
## 47898 826001 1
## 47899 826002 1
## 47900 826003 1
## 47901 826004 1
## 47902 826005 1
## 47903 826006 1
## 47904 826007 1
## 47905 826008 1
## 47906 826009 1
## 47907 826010 1
## 47908 826011 1
## 47909 826012 1
## 47910 826013 1
## 47911 826014 1
## 47912 826015 1
## 47913 826016 1
## 47914 826017 1
## 47915 826018 1
## 47916 826019 1
## 47917 826020 1
## 47918 826021 1
## 47919 826022 1
## 47920 826023 1
## 47921 826024 1
## 47922 826025 1
## 47923 826026 1
## 47924 826028 1
## 47925 826029 1
## 47926 826031 1
## 47927 826032 1
## 47928 826033 1
## 47929 826034 1
## 47930 826035 1
## 47931 826036 1
## 47932 826037 1
## 47933 826038 1
## 47934 826039 1
## 47935 826040 1
## 47936 826041 1
## 47937 826042 1
## 47938 826043 1
## 47939 826044 1
## 47940 826045 1
## 47941 826046 1
## 47942 826047 1
## 47943 826048 1
## 47944 826049 1
## 47945 826050 1
## 47946 826051 1
## 47947 826052 1
## 47948 826054 1
## 47949 826055 1
## 47950 826056 1
## 47951 826057 1
## 47952 826058 1
## 47953 826059 1
## 47954 826060 1
## 47955 826061 1
## 47956 826062 1
## 47957 826063 1
## 47958 826064 1
## 47959 826065 1
## 47960 826066 1
## 47961 826067 1
## 47962 826068 1
## 47963 826069 1
## 47964 826070 1
## 47965 826071 1
## 47966 826072 1
## 47967 826073 1
## 47968 826074 1
## 47969 826075 1
## 47970 826076 1
## 47971 826077 1
## 47972 826078 1
## 47973 826079 1
## 47974 826080 1
## 47975 826081 1
## 47976 826082 1
## 47977 826083 1
## 47978 826084 1
## 47979 826085 1
## 47980 826086 1
## 47981 826087 1
## 47982 826088 1
## 47983 826089 1
## 47984 826090 1
## 47985 826091 1
## 47986 826093 1
## 47987 826094 1
## 47988 826095 1
## 47989 826096 1
## 47990 826097 1
## 47991 826098 1
## 47992 826099 1
## 47993 826100 1
## 47994 826101 1
## 47995 826102 1
## 47996 826103 1
## 47997 826104 1
## 47998 826105 1
## 47999 826106 1
## 48000 826107 1
## 48001 826108 1
## 48002 826109 1
## 48003 826110 1
## 48004 826111 1
## 48005 826112 1
## 48006 826113 1
## 48007 826114 1
## 48008 826115 1
## 48009 826116 1
## 48010 826117 1
## 48011 826118 1
## 48012 826119 1
## 48013 826120 1
## 48014 826121 1
## 48015 826122 1
## 48016 826123 1
## 48017 826124 1
## 48018 826125 1
## 48019 826126 1
## 48020 826127 1
## 48021 826128 1
## 48022 826129 1
## 48023 826130 1
## 48024 826131 1
## 48025 826132 1
## 48026 826133 1
## 48027 826134 1
## 48028 826135 1
## 48029 826136 1
## 48030 826137 1
## 48031 826138 1
## 48032 826139 1
## 48033 826140 1
## 48034 826141 1
## 48035 826142 1
## 48036 826143 1
## 48037 826144 1
## 48038 826145 1
## 48039 826146 1
## 48040 826147 1
## 48041 826148 1
## 48042 826149 1
## 48043 826150 1
## 48044 826151 1
## 48045 826152 1
## 48046 826153 1
## 48047 826154 1
## 48048 826155 1
## 48049 826156 1
## 48050 826157 1
## 48051 826158 1
## 48052 826159 1
## 48053 826160 1
## 48054 826161 1
## 48055 826162 1
## 48056 826163 1
## 48057 826164 1
## 48058 826165 1
## 48059 826166 1
## 48060 826167 1
## 48061 826168 1
## 48062 826169 1
## 48063 826170 1
## 48064 826171 1
## 48065 826172 1
## 48066 826173 1
## 48067 826174 1
## 48068 826175 1
## 48069 826176 1
## 48070 826177 1
## 48071 826178 1
## 48072 826179 1
## 48073 826180 1
## 48074 826181 1
## 48075 826182 1
## 48076 826183 1
## 48077 826184 1
## 48078 826185 1
## 48079 826186 1
## 48080 826187 1
## 48081 826188 1
## 48082 826190 1
## 48083 826191 1
## 48084 826192 1
## 48085 826193 1
## 48086 826194 1
## 48087 826195 1
## 48088 826196 1
## 48089 826197 1
## 48090 826198 1
## 48091 826199 1
## 48092 826200 1
## 48093 826201 1
## 48094 826202 1
## 48095 826203 1
## 48096 826204 1
## 48097 826205 1
## 48098 826206 1
## 48099 826207 1
## 48100 826208 1
## 48101 826209 1
## 48102 826210 1
## 48103 826211 1
## 48104 826212 1
## 48105 826213 1
## 48106 826214 1
## 48107 826215 1
## 48108 826216 1
## 48109 826217 1
## 48110 826218 1
## 48111 826219 1
## 48112 826220 1
## 48113 826221 1
## 48114 826222 1
## 48115 826223 1
## 48116 826224 1
## 48117 826225 1
## 48118 826227 1
## 48119 826228 1
## 48120 826229 1
## 48121 826230 1
## 48122 826231 1
## 48123 826232 1
## 48124 826233 1
## 48125 826234 1
## 48126 826235 1
## 48127 826236 1
## 48128 826237 1
## 48129 826238 1
## 48130 826239 1
## 48131 826240 1
## 48132 826241 1
## 48133 826242 1
## 48134 826243 1
## 48135 826244 1
## 48136 826245 1
## 48137 826247 1
## 48138 826248 1
## 48139 826249 1
## 48140 826250 1
## 48141 826251 1
## 48142 826252 1
## 48143 826253 1
## 48144 826254 1
## 48145 826255 1
## 48146 826256 1
## 48147 826257 1
## 48148 826258 1
## 48149 826259 1
## 48150 826260 1
## 48151 826261 1
## 48152 826262 1
## 48153 826263 1
## 48154 826264 1
## 48155 826265 1
## 48156 826266 1
## 48157 826267 1
## 48158 826268 1
## 48159 826269 1
## 48160 826270 1
## 48161 826271 1
## 48162 826272 1
## 48163 826273 1
## 48164 826274 1
## 48165 826275 1
## 48166 826276 1
## 48167 826277 1
## 48168 826278 1
## 48169 826279 1
## 48170 826280 1
## 48171 826281 1
## 48172 826282 1
## 48173 826283 1
## 48174 826284 1
## 48175 826285 1
## 48176 826286 1
## 48177 826287 1
## 48178 826288 1
## 48179 826289 1
## 48180 826290 1
## 48181 826291 1
## 48182 826292 1
## 48183 826293 1
## 48184 826294 1
## 48185 826295 1
## 48186 826296 1
## 48187 826297 1
## 48188 826298 1
## 48189 826299 1
## 48190 826300 1
## 48191 826301 1
## 48192 826302 1
## 48193 826303 1
## 48194 826304 1
## 48195 826305 1
## 48196 826306 1
## 48197 826307 1
## 48198 826308 1
## 48199 826309 1
## 48200 826310 1
## 48201 826311 1
## 48202 826312 1
## 48203 826313 1
## 48204 826314 1
## 48205 826315 1
## 48206 826316 1
## 48207 826317 1
## 48208 826318 1
## 48209 826319 1
## 48210 826320 1
## 48211 826321 1
## 48212 826322 1
## 48213 826323 1
## 48214 826324 1
## 48215 826325 1
## 48216 826326 1
## 48217 826327 1
## 48218 826328 1
## 48219 826329 1
## 48220 826330 1
## 48221 826331 1
## 48222 826332 1
## 48223 826333 1
## 48224 826334 1
## 48225 826336 1
## 48226 826337 1
## 48227 826338 1
## 48228 826339 1
## 48229 826340 1
## 48230 826341 1
## 48231 826342 1
## 48232 826343 1
## 48233 826344 1
## 48234 826345 1
## 48235 826346 1
## 48236 826347 1
## 48237 826348 1
## 48238 826349 1
## 48239 826350 1
## 48240 826351 1
## 48241 826352 1
## 48242 826353 1
## 48243 826354 1
## 48244 826355 1
## 48245 826356 1
## 48246 826357 1
## 48247 826358 1
## 48248 826359 1
## 48249 826360 1
## 48250 826361 1
## 48251 826362 1
## 48252 826363 1
## 48253 826364 1
## 48254 826365 1
## 48255 826366 1
## 48256 826367 1
## 48257 826368 1
## 48258 826369 1
## 48259 826370 1
## 48260 826371 1
## 48261 826372 1
## 48262 826373 1
## 48263 826374 1
## 48264 826375 1
## 48265 826376 1
## 48266 826377 1
## 48267 826378 1
## 48268 826379 1
## 48269 826380 1
## 48270 826381 1
## 48271 826382 1
## 48272 826383 1
## 48273 826384 1
## 48274 826385 1
## 48275 826386 1
## 48276 826387 1
## 48277 826388 1
## 48278 826389 1
## 48279 826390 1
## 48280 826391 1
## 48281 826392 1
## 48282 826393 1
## 48283 826394 1
## 48284 826395 1
## 48285 826396 1
## 48286 826397 1
## 48287 826398 1
## 48288 826399 1
## 48289 826400 1
## 48290 826401 1
## 48291 826402 1
## 48292 826403 1
## 48293 826404 1
## 48294 826405 1
## 48295 826406 1
## 48296 826407 1
## 48297 826408 1
## 48298 826409 1
## 48299 826410 1
## 48300 826411 1
## 48301 826412 1
## 48302 826413 1
## 48303 826414 1
## 48304 826415 1
## 48305 826416 1
## 48306 826417 1
## 48307 826418 1
## 48308 826419 1
## 48309 826420 1
## 48310 826421 1
## 48311 826422 1
## 48312 826423 1
## 48313 826424 1
## 48314 826425 1
## 48315 826426 1
## 48316 826427 1
## 48317 826428 1
## 48318 826429 1
## 48319 826430 1
## 48320 826431 1
## 48321 826432 1
## 48322 826433 1
## 48323 826434 1
## 48324 826435 1
## 48325 826436 1
## 48326 826437 1
## 48327 826438 1
## 48328 826439 1
## 48329 826440 1
## 48330 826441 1
## 48331 826442 1
## 48332 826443 1
## 48333 826444 1
## 48334 826445 1
## 48335 826446 1
## 48336 826447 1
## 48337 826448 1
## 48338 826449 1
## 48339 826450 1
## 48340 826451 1
## 48341 826452 1
## 48342 826453 1
## 48343 826454 1
## 48344 826455 1
## 48345 826456 1
## 48346 826457 1
## 48347 826458 1
## 48348 826459 1
## 48349 826460 1
## 48350 826461 1
## 48351 826462 1
## 48352 826463 1
## 48353 826464 1
## 48354 826465 1
## 48355 826466 1
## 48356 826467 1
## 48357 826468 1
## 48358 826469 1
## 48359 826470 1
## 48360 826471 1
## 48361 826472 1
## 48362 826473 1
## 48363 826474 1
## 48364 826475 1
## 48365 826476 1
## 48366 826477 1
## 48367 826478 1
## 48368 826479 1
## 48369 826480 1
## 48370 826481 1
## 48371 826482 1
## 48372 826483 1
## 48373 826484 1
## 48374 826485 1
## 48375 826486 1
## 48376 826487 1
## 48377 826488 1
## 48378 826489 1
## 48379 826490 1
## 48380 826491 1
## 48381 826492 1
## 48382 826493 1
## 48383 826494 1
## 48384 826495 1
## 48385 826496 1
## 48386 826497 1
## 48387 826498 1
## 48388 826499 1
## 48389 826500 1
## 48390 826501 1
## 48391 826502 1
## 48392 826503 1
## 48393 826504 1
## 48394 826505 1
## 48395 826506 1
## 48396 826507 1
## 48397 826508 1
## 48398 826509 1
## 48399 826510 1
## 48400 826511 1
## 48401 826512 1
## 48402 826513 1
## 48403 826514 1
## 48404 826515 1
## 48405 826516 1
## 48406 826517 1
## 48407 826518 1
## 48408 826519 1
## 48409 826520 1
## 48410 826521 1
## 48411 826522 1
## 48412 826523 1
## 48413 826524 1
## 48414 826525 1
## 48415 826526 1
## 48416 826527 1
## 48417 826528 1
## 48418 826529 1
## 48419 826530 1
## 48420 826531 1
## 48421 826532 1
## 48422 826533 1
## 48423 826534 1
## 48424 826535 1
## 48425 826536 1
## 48426 826537 1
## 48427 826538 1
## 48428 826539 1
## 48429 826540 1
## 48430 826541 1
## 48431 826542 1
## 48432 826543 1
## 48433 826544 1
## 48434 826545 1
## 48435 826547 1
## 48436 826548 1
## 48437 826549 1
## 48438 826550 1
## 48439 826551 1
## 48440 826552 1
## 48441 826553 1
## 48442 826554 1
## 48443 826555 1
## 48444 826556 1
## 48445 826557 1
## 48446 826558 1
## 48447 826559 1
## 48448 826560 1
## 48449 826561 1
## 48450 826562 1
## 48451 826563 1
## 48452 826564 1
## 48453 826565 1
## 48454 826566 1
## 48455 826568 1
## 48456 826569 1
## 48457 826570 1
## 48458 826571 1
## 48459 826572 1
## 48460 826573 1
## 48461 826574 1
## 48462 826575 1
## 48463 826577 1
## 48464 826578 1
## 48465 826579 1
## 48466 826580 1
## 48467 826581 1
## 48468 826582 1
## 48469 826583 1
## 48470 826584 1
## 48471 826585 1
## 48472 826586 1
## 48473 826587 1
## 48474 826588 1
## 48475 826589 1
## 48476 826590 1
## 48477 826591 1
## 48478 826592 1
## 48479 826593 1
## 48480 826594 1
## 48481 826595 1
## 48482 826596 1
## 48483 826597 1
## 48484 826598 1
## 48485 826599 1
## 48486 826600 1
## 48487 826601 1
## 48488 826602 1
## 48489 826603 1
## 48490 826604 1
## 48491 826605 1
## 48492 826606 1
## 48493 826607 1
## 48494 826608 1
## 48495 826610 1
## 48496 826611 1
## 48497 826612 1
## 48498 826613 1
## 48499 826614 1
## 48500 826615 1
## 48501 826616 1
## 48502 826617 1
## 48503 826618 1
## 48504 826619 1
## 48505 826620 1
## 48506 826621 1
## 48507 826622 1
## 48508 826623 1
## 48509 826624 1
## 48510 826625 1
## 48511 826626 1
## 48512 826627 1
## 48513 826628 1
## 48514 826629 1
## 48515 826630 1
## 48516 826631 1
## 48517 826632 1
## 48518 826633 1
## 48519 826634 1
## 48520 826635 1
## 48521 826636 1
## 48522 826637 1
## 48523 826638 1
## 48524 826639 1
## 48525 826640 1
## 48526 826641 1
## 48527 826642 1
## 48528 826643 1
## 48529 826644 1
## 48530 826645 1
## 48531 826646 1
## 48532 826647 1
## 48533 826648 1
## 48534 826649 1
## 48535 826650 1
## 48536 826651 1
## 48537 826652 1
## 48538 826653 1
## 48539 826654 1
## 48540 826655 1
## 48541 826656 1
## 48542 826657 1
## 48543 826658 1
## 48544 826659 1
## 48545 826660 1
## 48546 826661 1
## 48547 826662 1
## 48548 826663 1
## 48549 826664 1
## 48550 826665 1
## 48551 826666 1
## 48552 826667 1
## 48553 826668 1
## 48554 826669 1
## 48555 826670 1
## 48556 826671 1
## 48557 826672 1
## 48558 826673 1
## 48559 826674 1
## 48560 826675 1
## 48561 826676 1
## 48562 826677 1
## 48563 826678 1
## 48564 826679 1
## 48565 826680 1
## 48566 826681 1
## 48567 826682 1
## 48568 826683 1
## 48569 826684 1
## 48570 826685 1
## 48571 826686 1
## 48572 826687 1
## 48573 826688 1
## 48574 826689 1
## 48575 826690 1
## 48576 826691 1
## 48577 826692 1
## 48578 826693 1
## 48579 826695 1
## 48580 826696 1
## 48581 826697 1
## 48582 826698 1
## 48583 826699 1
## 48584 826700 1
## 48585 826701 1
## 48586 826702 1
## 48587 826703 1
## 48588 826704 1
## 48589 826705 1
## 48590 826706 1
## 48591 826707 1
## 48592 826708 1
## 48593 826709 1
## 48594 826710 1
## 48595 826711 1
## 48596 826712 1
## 48597 826713 1
## 48598 826714 1
## 48599 826715 1
## 48600 826716 1
## 48601 826717 1
## 48602 826718 1
## 48603 826719 1
## 48604 826720 1
## 48605 826721 1
## 48606 826722 1
## 48607 826723 1
## 48608 826724 1
## 48609 826725 1
## 48610 826726 1
## 48611 826727 1
## 48612 826728 1
## 48613 826729 1
## 48614 826730 1
## 48615 826731 1
## 48616 826732 1
## 48617 826733 1
## 48618 826734 1
## 48619 826735 1
## 48620 826736 1
## 48621 826737 1
## 48622 826738 1
## 48623 826739 1
## 48624 826740 1
## 48625 826741 1
## 48626 826742 1
## 48627 826743 1
## 48628 826744 1
## 48629 826745 1
## 48630 826746 1
## 48631 826747 1
## 48632 826748 1
## 48633 826749 1
## 48634 826750 1
## 48635 826751 1
## 48636 826752 1
## 48637 826753 1
## 48638 826754 1
## 48639 826755 1
## 48640 826756 1
## 48641 826757 1
## 48642 826758 1
## 48643 826759 1
## 48644 826760 1
## 48645 826761 1
## 48646 826762 1
## 48647 826763 1
## 48648 826764 1
## 48649 826765 1
## 48650 826766 1
## 48651 826767 1
## 48652 826768 1
## 48653 826769 1
## 48654 826770 1
## 48655 826771 1
## 48656 826772 1
## 48657 826773 1
## 48658 826774 1
## 48659 826775 1
## 48660 826776 1
## 48661 826777 1
## 48662 826778 1
## 48663 826779 1
## 48664 826780 1
## 48665 826781 1
## 48666 826782 1
## 48667 826783 1
## 48668 826784 1
## 48669 826785 1
## 48670 826786 1
## 48671 826787 1
## 48672 826788 1
## 48673 826789 1
## 48674 826790 1
## 48675 826791 1
## 48676 826792 1
## 48677 826793 1
## 48678 826794 1
## 48679 826795 1
## 48680 826796 1
## 48681 826797 1
## 48682 826798 1
## 48683 826799 1
## 48684 826800 1
## 48685 826801 1
## 48686 826802 1
## 48687 826804 1
## 48688 826805 1
## 48689 826806 1
## 48690 826807 1
## 48691 826808 1
## 48692 826809 1
## 48693 826810 1
## 48694 826811 1
## 48695 826812 1
## 48696 826813 1
## 48697 826814 1
## 48698 826815 1
## 48699 826816 1
## 48700 826817 1
## 48701 826818 1
## 48702 826819 1
## 48703 826820 1
## 48704 826821 1
## 48705 826822 1
## 48706 826823 1
## 48707 826824 1
## 48708 826825 1
## 48709 826826 1
## 48710 826827 1
## 48711 826828 1
## 48712 826830 1
## 48713 826831 1
## 48714 826832 1
## 48715 826833 1
## 48716 826834 1
## 48717 826835 1
## 48718 826836 1
## 48719 826837 1
## 48720 826838 1
## 48721 826839 1
## 48722 826840 1
## 48723 826841 1
## 48724 826842 1
## 48725 826843 1
## 48726 826844 1
## 48727 826846 1
## 48728 826847 1
## 48729 826848 1
## 48730 826849 1
## 48731 826850 1
## 48732 826851 1
## 48733 826852 1
## 48734 826853 1
## 48735 826854 1
## 48736 826855 1
## 48737 826856 1
## 48738 826857 1
## 48739 826858 1
## 48740 826859 1
## 48741 826860 1
## 48742 826861 1
## 48743 826862 1
## 48744 826863 1
## 48745 826864 1
## 48746 826865 1
## 48747 826866 1
## 48748 826867 1
## 48749 826868 1
## 48750 826869 1
## 48751 826870 1
## 48752 826871 1
## 48753 826872 1
## 48754 826873 1
## 48755 826874 1
## 48756 826875 1
## 48757 826876 1
## 48758 826877 1
## 48759 826878 1
## 48760 826879 1
## 48761 826880 1
## 48762 826881 1
## 48763 826882 1
## 48764 826883 1
## 48765 826884 1
## 48766 826885 1
## 48767 826886 1
## 48768 826887 1
## 48769 826888 1
## 48770 826889 1
## 48771 826890 1
## 48772 826892 1
## 48773 826893 1
## 48774 826894 1
## 48775 826895 1
## 48776 826896 1
## 48777 826897 1
## 48778 826898 1
## 48779 826899 1
## 48780 826900 1
## 48781 826901 1
## 48782 826902 1
## 48783 826903 1
## 48784 826904 1
## 48785 826905 1
## 48786 826906 1
## 48787 826907 1
## 48788 826908 1
## 48789 826909 1
## 48790 826910 1
## 48791 826911 1
## 48792 826912 1
## 48793 826913 1
## 48794 826914 1
## 48795 826915 1
## 48796 826916 1
## 48797 826917 1
## 48798 826918 1
## 48799 826919 1
## 48800 826920 1
## 48801 826921 1
## 48802 826922 1
## 48803 826923 1
## 48804 826924 1
## 48805 826925 1
## 48806 826926 1
## 48807 826927 1
## 48808 826928 1
## 48809 826929 1
## 48810 826930 1
## 48811 826931 1
## 48812 826932 1
## 48813 826933 1
## 48814 826934 1
## 48815 826935 1
## 48816 826936 1
## 48817 826937 1
## 48818 826938 1
## 48819 826939 1
## 48820 826940 1
## 48821 826941 1
## 48822 826942 1
## 48823 826943 1
## 48824 826944 1
## 48825 826945 1
## 48826 826946 1
## 48827 826947 1
## 48828 826948 1
## 48829 826949 1
## 48830 826950 1
## 48831 826951 1
## 48832 826952 1
## 48833 826953 1
## 48834 826954 1
## 48835 826955 1
## 48836 826956 1
## 48837 826957 1
## 48838 826958 1
## 48839 826959 1
## 48840 826960 1
## 48841 826961 1
## 48842 826962 1
## 48843 826963 1
## 48844 826964 1
## 48845 826965 1
## 48846 826966 1
## 48847 826967 1
## 48848 826968 1
## 48849 826969 1
## 48850 826970 1
## 48851 826971 1
## 48852 826972 1
## 48853 826973 1
## 48854 826974 1
## 48855 826975 1
## 48856 826976 1
## 48857 826977 1
## 48858 826978 1
## 48859 826979 1
## 48860 826980 1
## 48861 826981 1
## 48862 826982 1
## 48863 826983 1
## 48864 826984 1
## 48865 826985 1
## 48866 826986 1
## 48867 826987 1
## 48868 826988 1
## 48869 826989 1
## 48870 826990 1
## 48871 826991 1
## 48872 826992 1
## 48873 826993 1
## 48874 826994 1
## 48875 826995 1
## 48876 826996 1
## 48877 826997 1
## 48878 826998 1
## 48879 826999 1
## 48880 827000 1
## 48881 827001 1
## 48882 827002 1
## 48883 827003 1
## 48884 827005 1
## 48885 827006 1
## 48886 827007 1
## 48887 827008 1
## 48888 827009 1
## 48889 827010 1
## 48890 827012 1
## 48891 827013 1
## 48892 827014 1
## 48893 827015 1
## 48894 827016 1
## 48895 827017 1
## 48896 827018 1
## 48897 827019 1
## 48898 827020 1
## 48899 827021 1
## 48900 827022 1
## 48901 827023 1
## 48902 827024 1
## 48903 827025 1
## 48904 827026 1
## 48905 827027 1
## 48906 827028 1
## 48907 827029 1
## 48908 827030 1
## 48909 827031 1
## 48910 827032 1
## 48911 827034 1
## 48912 827035 1
## 48913 827036 1
## 48914 827037 1
## 48915 827038 1
## 48916 827039 1
## 48917 827040 1
## 48918 827041 1
## 48919 827042 1
## 48920 827043 1
## 48921 827044 1
## 48922 827045 1
## 48923 827046 1
## 48924 827047 1
## 48925 827048 1
## 48926 827049 1
## 48927 827050 1
## 48928 827051 1
## 48929 827052 1
## 48930 827053 1
## 48931 827054 1
## 48932 827055 1
## 48933 827056 1
## 48934 827057 1
## 48935 827058 1
## 48936 827059 1
## 48937 827060 1
## 48938 827061 1
## 48939 827062 1
## 48940 827063 1
## 48941 827064 1
## 48942 827065 1
## 48943 827066 1
## 48944 827067 1
## 48945 827068 1
## 48946 827069 1
## 48947 827070 1
## 48948 827071 1
## 48949 827072 1
## 48950 827073 1
## 48951 827074 1
## 48952 827075 1
## 48953 827077 1
## 48954 827078 1
## 48955 827079 1
## 48956 827080 1
## 48957 827081 1
## 48958 827082 1
## 48959 827084 1
## 48960 827085 1
## 48961 827086 1
## 48962 827087 1
## 48963 827088 1
## 48964 827089 1
## 48965 827091 1
## 48966 827092 1
## 48967 827093 1
## 48968 827095 1
## 48969 827096 1
## 48970 827097 1
## 48971 827098 1
## 48972 827099 1
## 48973 827100 1
## 48974 827101 1
## 48975 827102 1
## 48976 827103 1
## 48977 827104 1
## 48978 827105 1
## 48979 827106 1
## 48980 827107 1
## 48981 827108 1
## 48982 827109 1
## 48983 827110 1
## 48984 827111 1
## 48985 827112 1
## 48986 827113 1
## 48987 827114 1
## 48988 827115 1
## 48989 827116 1
## 48990 827117 1
## 48991 827118 1
## 48992 827119 1
## 48993 827120 1
## 48994 827121 1
## 48995 827122 1
## 48996 827123 1
## 48997 827124 1
## 48998 827126 1
## 48999 827127 1
## 49000 827128 1
## 49001 827129 1
## 49002 827130 1
## 49003 827131 1
## 49004 827132 1
## 49005 827133 1
## 49006 827134 1
## 49007 827135 1
## 49008 827136 1
## 49009 827137 1
## 49010 827138 1
## 49011 827139 1
## 49012 827140 1
## 49013 827141 1
## 49014 827142 1
## 49015 827143 1
## 49016 827144 1
## 49017 827145 1
## 49018 827146 1
## 49019 827147 1
## 49020 827148 1
## 49021 827149 1
## 49022 827150 1
## 49023 827151 1
## 49024 827152 1
## 49025 827153 1
## 49026 827154 1
## 49027 827155 1
## 49028 827156 1
## 49029 827157 1
## 49030 827158 1
## 49031 827159 1
## 49032 827160 1
## 49033 827161 1
## 49034 827162 1
## 49035 827163 1
## 49036 827164 1
## 49037 827165 1
## 49038 827166 1
## 49039 827167 1
## 49040 827168 1
## 49041 827169 1
## 49042 827170 1
## 49043 827171 1
## 49044 827172 1
## 49045 827173 1
## 49046 827174 1
## 49047 827175 1
## 49048 827176 1
## 49049 827177 1
## 49050 827178 1
## 49051 827179 1
## 49052 827180 1
## 49053 827181 1
## 49054 827182 1
## 49055 827183 1
## 49056 827185 1
## 49057 827186 1
## 49058 827187 1
## 49059 827188 1
## 49060 827189 1
## 49061 827190 1
## 49062 827191 1
## 49063 827192 1
## 49064 827193 1
## 49065 827194 1
## 49066 827195 1
## 49067 827196 1
## 49068 827197 1
## 49069 827198 1
## 49070 827199 1
## 49071 827200 1
## 49072 827201 1
## 49073 827202 1
## 49074 827203 1
## 49075 827204 1
## 49076 827205 1
## 49077 827206 1
## 49078 827207 1
## 49079 827208 1
## 49080 827209 1
## 49081 827210 1
## 49082 827211 1
## 49083 827212 1
## 49084 827213 1
## 49085 827214 1
## 49086 827215 1
## 49087 827216 1
## 49088 827217 1
## 49089 827218 1
## 49090 827219 1
## 49091 827220 1
## 49092 827221 1
## 49093 827222 1
## 49094 827223 1
## 49095 827225 1
## 49096 827226 1
## 49097 827227 1
## 49098 827228 1
## 49099 827229 1
## 49100 827230 1
## 49101 827231 1
## 49102 827232 1
## 49103 827233 1
## 49104 827234 1
## 49105 827235 1
## 49106 827236 1
## 49107 827237 1
## 49108 827238 1
## 49109 827239 1
## 49110 827240 1
## 49111 827241 1
## 49112 827242 1
## 49113 827243 1
## 49114 827244 1
## 49115 827245 1
## 49116 827246 1
## 49117 827247 1
## 49118 827248 1
## 49119 827249 1
## 49120 827250 1
## 49121 827251 1
## 49122 827252 1
## 49123 827253 1
## 49124 827254 1
## 49125 827255 1
## 49126 827256 1
## 49127 827257 1
## 49128 827258 1
## 49129 827259 1
## 49130 827260 1
## 49131 827261 1
## 49132 827262 1
## 49133 827263 1
## 49134 827264 1
## 49135 827265 1
## 49136 827266 1
## 49137 827267 1
## 49138 827268 1
## 49139 827269 1
## 49140 827270 1
## 49141 827272 1
## 49142 827273 1
## 49143 827274 1
## 49144 827275 1
## 49145 827276 1
## 49146 827277 1
## 49147 827278 1
## 49148 827279 1
## 49149 827280 1
## 49150 827281 1
## 49151 827282 1
## 49152 827283 1
## 49153 827284 1
## 49154 827285 1
## 49155 827286 1
## 49156 827287 1
## 49157 827288 1
## 49158 827289 1
## 49159 827290 1
## 49160 827291 1
## 49161 827292 1
## 49162 827293 1
## 49163 827294 1
## 49164 827295 1
## 49165 827297 1
## 49166 827298 1
## 49167 827299 1
## 49168 827300 1
## 49169 827301 1
## 49170 827302 1
## 49171 827303 1
## 49172 827304 1
## 49173 827305 1
## 49174 827306 1
## 49175 827308 1
## 49176 827309 1
## 49177 827310 1
## 49178 827311 1
## 49179 827312 1
## 49180 827313 1
## 49181 827314 1
## 49182 827315 1
## 49183 827316 1
## 49184 827317 1
## 49185 827318 1
## 49186 827319 1
## 49187 827320 1
## 49188 827321 1
## 49189 827322 1
## 49190 827323 1
## 49191 827324 1
## 49192 827325 1
## 49193 827326 1
## 49194 827327 1
## 49195 827329 1
## 49196 827330 1
## 49197 827331 1
## 49198 827332 1
## 49199 827333 1
## 49200 827334 1
## 49201 827335 1
## 49202 827336 1
## 49203 827337 1
## 49204 827338 1
## 49205 827339 1
## 49206 827340 1
## 49207 827341 1
## 49208 827342 1
## 49209 827343 1
## 49210 827344 1
## 49211 827345 1
## 49212 827346 1
## 49213 827347 1
## 49214 827348 1
## 49215 827349 1
## 49216 827350 1
## 49217 827351 1
## 49218 827352 1
## 49219 827353 1
## 49220 827354 1
## 49221 827355 1
## 49222 827356 1
## 49223 827357 1
## 49224 827358 1
## 49225 827359 1
## 49226 827360 1
## 49227 827361 1
## 49228 827362 1
## 49229 827363 1
## 49230 827364 1
## 49231 827365 1
## 49232 827366 1
## 49233 827367 1
## 49234 827368 1
## 49235 827369 1
## 49236 827370 1
## 49237 827371 1
## 49238 827372 1
## 49239 827373 1
## 49240 827374 1
## 49241 827375 1
## 49242 827376 1
## 49243 827377 1
## 49244 827378 1
## 49245 827379 1
## 49246 827380 1
## 49247 827381 1
## 49248 827382 1
## 49249 827383 1
## 49250 827384 1
## 49251 827385 1
## 49252 827386 1
## 49253 827387 1
## 49254 827388 1
## 49255 827389 1
## 49256 827390 1
## 49257 827391 1
## 49258 827392 1
## 49259 827393 1
## 49260 827394 1
## 49261 827395 1
## 49262 827396 1
## 49263 827397 1
## 49264 827398 1
## 49265 827399 1
## 49266 827401 1
## 49267 827402 1
## 49268 827403 1
## 49269 827404 1
## 49270 827405 1
## 49271 827406 1
## 49272 827407 1
## 49273 827408 1
## 49274 827409 1
## 49275 827410 1
## 49276 827411 1
## 49277 827412 1
## 49278 827413 1
## 49279 827414 1
## 49280 827415 1
## 49281 827416 1
## 49282 827417 1
## 49283 827418 1
## 49284 827419 1
## 49285 827420 1
## 49286 827421 1
## 49287 827422 1
## 49288 827423 1
## 49289 827424 1
## 49290 827425 1
## 49291 827426 1
## 49292 827427 1
## 49293 827428 1
## 49294 827429 1
## 49295 827430 1
## 49296 827431 1
## 49297 827432 1
## 49298 827433 1
## 49299 827434 1
## 49300 827435 1
## 49301 827436 1
## 49302 827437 1
## 49303 827438 1
## 49304 827439 1
## 49305 827440 1
## 49306 827441 1
## 49307 827442 1
## 49308 827443 1
## 49309 827444 1
## 49310 827445 1
## 49311 827446 1
## 49312 827447 1
## 49313 827448 1
## 49314 827449 1
## 49315 827450 1
## 49316 827451 1
## 49317 827452 1
## 49318 827453 1
## 49319 827454 1
## 49320 827455 1
## 49321 827456 1
## 49322 827457 1
## 49323 827458 1
## 49324 827459 1
## 49325 827460 1
## 49326 827461 1
## 49327 827462 1
## 49328 827463 1
## 49329 827464 1
## 49330 827465 1
## 49331 827466 1
## 49332 827467 1
## 49333 827468 1
## 49334 827469 1
## 49335 827470 1
## 49336 827471 1
## 49337 827472 1
## 49338 827473 1
## 49339 827474 1
## 49340 827475 1
## 49341 827476 1
## 49342 827477 1
## 49343 827478 1
## 49344 827479 1
## 49345 827480 1
## 49346 827481 1
## 49347 827482 1
## 49348 827483 1
## 49349 827484 1
## 49350 827485 1
## 49351 827486 1
## 49352 827487 1
## 49353 827488 1
## 49354 827489 1
## 49355 827490 1
## 49356 827491 1
## 49357 827492 1
## 49358 827493 1
## 49359 827494 1
## 49360 827495 1
## 49361 827496 1
## 49362 827497 1
## 49363 827498 1
## 49364 827499 1
## 49365 827500 1
## 49366 827501 1
## 49367 827502 1
## 49368 827503 1
## 49369 827504 1
## 49370 827505 1
## 49371 827506 1
## 49372 827507 1
## 49373 827508 1
## 49374 827509 1
## 49375 827510 1
## 49376 827511 1
## 49377 827512 1
## 49378 827513 1
## 49379 827514 1
## 49380 827515 1
## 49381 827516 1
## 49382 827517 1
## 49383 827518 1
## 49384 827519 1
## 49385 827520 1
## 49386 827521 1
## 49387 827522 1
## 49388 827523 1
## 49389 827525 1
## 49390 827526 1
## 49391 827527 1
## 49392 827528 1
## 49393 827529 1
## 49394 827530 1
## 49395 827531 1
## 49396 827532 1
## 49397 827533 1
## 49398 827534 1
## 49399 827535 1
## 49400 827536 1
## 49401 827537 1
## 49402 827538 1
## 49403 827539 1
## 49404 827540 1
## 49405 827541 1
## 49406 827542 1
## 49407 827543 1
## 49408 827544 1
## 49409 827545 1
## 49410 827546 1
## 49411 827547 1
## 49412 827548 1
## 49413 827549 1
## 49414 827550 1
## 49415 827552 1
## 49416 827553 1
## 49417 827554 1
## 49418 827555 1
## 49419 827556 1
## 49420 827557 1
## 49421 827558 1
## 49422 827559 1
## 49423 827560 1
## 49424 827561 1
## 49425 827562 1
## 49426 827563 1
## 49427 827564 1
## 49428 827565 1
## 49429 827566 1
## 49430 827567 1
## 49431 827568 1
## 49432 827570 1
## 49433 827571 1
## 49434 827572 1
## 49435 827573 1
## 49436 827574 1
## 49437 827575 1
## 49438 827576 1
## 49439 827577 1
## 49440 827578 1
## 49441 827579 1
## 49442 827580 1
## 49443 827581 1
## 49444 827582 1
## 49445 827583 1
## 49446 827584 1
## 49447 827585 1
## 49448 827586 1
## 49449 827587 1
## 49450 827588 1
## 49451 827589 1
## 49452 827590 1
## 49453 827591 1
## 49454 827592 1
## 49455 827593 1
## 49456 827595 1
## 49457 827596 1
## 49458 827597 1
## 49459 827598 1
## 49460 827599 1
## 49461 827600 1
## 49462 827602 1
## 49463 827603 1
## 49464 827604 1
## 49465 827606 1
## 49466 827607 1
## 49467 827608 1
## 49468 827609 1
## 49469 827610 1
## 49470 827611 1
## 49471 827612 1
## 49472 827613 1
## 49473 827614 1
## 49474 827615 1
## 49475 827617 1
## 49476 827618 1
## 49477 827620 1
## 49478 827621 1
## 49479 827622 1
## 49480 827623 1
## 49481 827624 1
## 49482 827625 1
## 49483 827626 1
## 49484 827627 1
## 49485 827628 1
## 49486 827629 1
## 49487 827630 1
## 49488 827631 1
## 49489 827632 1
## 49490 827633 1
## 49491 827634 1
## 49492 827635 1
## 49493 827636 1
## 49494 827637 1
## 49495 827638 1
## 49496 827639 1
## 49497 827640 1
## 49498 827641 1
## 49499 827642 1
## 49500 827643 1
## 49501 827644 1
## 49502 827645 1
## 49503 827646 1
## 49504 827647 1
## 49505 827648 1
## 49506 827649 1
## 49507 827650 1
## 49508 827651 1
## 49509 827652 1
## 49510 827653 1
## 49511 827654 1
## 49512 827655 1
## 49513 827656 1
## 49514 827657 1
## 49515 827658 1
## 49516 827659 1
## 49517 827660 1
## 49518 827661 1
## 49519 827662 1
## 49520 827663 1
## 49521 827664 1
## 49522 827665 1
## 49523 827666 1
## 49524 827667 1
## 49525 827668 1
## 49526 827669 1
## 49527 827670 1
## 49528 827671 1
## 49529 827672 1
## 49530 827673 1
## 49531 827674 1
## 49532 827675 1
## 49533 827676 1
## 49534 827677 1
## 49535 827678 1
## 49536 827679 1
## 49537 827680 1
## 49538 827681 1
## 49539 827682 1
## 49540 827683 1
## 49541 827684 1
## 49542 827685 1
## 49543 827686 1
## 49544 827687 1
## 49545 827688 1
## 49546 827689 1
## 49547 827690 1
## 49548 827691 1
## 49549 827692 1
## 49550 827693 1
## 49551 827694 1
## 49552 827695 1
## 49553 827696 1
## 49554 827697 1
## 49555 827698 1
## 49556 827699 1
## 49557 827700 1
## 49558 827701 1
## 49559 827702 1
## 49560 827703 1
## 49561 827704 1
## 49562 827705 1
## 49563 827706 1
## 49564 827707 1
## 49565 827708 1
## 49566 827709 1
## 49567 827710 1
## 49568 827711 1
## 49569 827712 1
## 49570 827713 1
## 49571 827714 1
## 49572 827716 1
## 49573 827717 1
## 49574 827718 1
## 49575 827719 1
## 49576 827720 1
## 49577 827722 1
## 49578 827723 1
## 49579 827724 1
## 49580 827725 1
## 49581 827726 1
## 49582 827727 1
## 49583 827728 1
## 49584 827729 1
## 49585 827730 1
## 49586 827731 1
## 49587 827733 1
## 49588 827734 1
## 49589 827735 1
## 49590 827736 1
## 49591 827737 1
## 49592 827738 1
## 49593 827739 1
## 49594 827740 1
## 49595 827741 1
## 49596 827742 1
## 49597 827743 1
## 49598 827744 1
## 49599 827745 1
## 49600 827746 1
## 49601 827747 1
## 49602 827748 1
## 49603 827749 1
## 49604 827750 1
## 49605 827751 1
## 49606 827752 1
## 49607 827753 1
## 49608 827754 1
## 49609 827755 1
## 49610 827756 1
## 49611 827757 1
## 49612 827758 1
## 49613 827759 1
## 49614 827760 1
## 49615 827761 1
## 49616 827762 1
## 49617 827763 1
## 49618 827764 1
## 49619 827765 1
## 49620 827766 1
## 49621 827767 1
## 49622 827768 1
## 49623 827769 1
## 49624 827770 1
## 49625 827771 1
## 49626 827772 1
## 49627 827773 1
## 49628 827774 1
## 49629 827775 1
## 49630 827776 1
## 49631 827777 1
## 49632 827778 1
## 49633 827779 1
## 49634 827780 1
## 49635 827781 1
## 49636 827782 1
## 49637 827783 1
## 49638 827784 1
## 49639 827785 1
## 49640 827786 1
## 49641 827787 1
## 49642 827788 1
## 49643 827789 1
## 49644 827790 1
## 49645 827791 1
## 49646 827792 1
## 49647 827793 1
## 49648 827794 1
## 49649 827795 1
## 49650 827796 1
## 49651 827797 1
## 49652 827798 1
## 49653 827799 1
## 49654 827800 1
## 49655 827801 1
## 49656 827802 1
## 49657 827803 1
## 49658 827804 1
## 49659 827805 1
## 49660 827806 1
## 49661 827807 1
## 49662 827808 1
## 49663 827809 1
## 49664 827810 1
## 49665 827811 1
## 49666 827812 1
## 49667 827813 1
## 49668 827814 1
## 49669 827815 1
## 49670 827816 1
## 49671 827817 1
## 49672 827818 1
## 49673 827819 1
## 49674 827820 1
## 49675 827821 1
## 49676 827822 1
## 49677 827823 1
## 49678 827824 1
## 49679 827825 1
## 49680 827826 1
## 49681 827827 1
## 49682 827828 1
## 49683 827829 1
## 49684 827830 1
## 49685 827831 1
## 49686 827832 1
## 49687 827833 1
## 49688 827834 1
## 49689 827835 1
## 49690 827836 1
## 49691 827837 1
## 49692 827839 1
## 49693 827840 1
## 49694 827841 1
## 49695 827842 1
## 49696 827843 1
## 49697 827844 1
## 49698 827845 1
## 49699 827846 1
## 49700 827847 1
## 49701 827848 1
## 49702 827849 1
## 49703 827850 1
## 49704 827851 1
## 49705 827854 1
## 49706 827855 1
## 49707 827856 1
## 49708 827857 1
## 49709 827858 1
## 49710 827859 1
## 49711 827860 1
## 49712 827861 1
## 49713 827862 1
## 49714 827863 1
## 49715 827864 1
## 49716 827865 1
## 49717 827866 1
## 49718 827867 1
## 49719 827868 1
## 49720 827869 1
## 49721 827870 1
## 49722 827871 1
## 49723 827872 1
## 49724 827873 1
## 49725 827874 1
## 49726 827875 1
## 49727 827876 1
## 49728 827877 1
## 49729 827878 1
## 49730 827879 1
## 49731 827880 1
## 49732 827881 1
## 49733 827882 1
## 49734 827883 1
## 49735 827884 1
## 49736 827885 1
## 49737 827886 1
## 49738 827887 1
## 49739 827888 1
## 49740 827889 1
## 49741 827890 1
## 49742 827891 1
## 49743 827892 1
## 49744 827893 1
## 49745 827894 1
## 49746 827895 1
## 49747 827896 1
## 49748 827897 1
## 49749 827898 1
## 49750 827899 1
## 49751 827900 1
## 49752 827901 1
## 49753 827902 1
## 49754 827903 1
## 49755 827904 1
## 49756 827905 1
## 49757 827906 1
## 49758 827907 1
## 49759 827908 1
## 49760 827909 1
## 49761 827910 1
## 49762 827911 1
## 49763 827912 1
## 49764 827913 1
## 49765 827914 1
## 49766 827915 1
## 49767 827916 1
## 49768 827917 1
## 49769 827918 1
## 49770 827919 1
## 49771 827920 1
## 49772 827921 1
## 49773 827922 1
## 49774 827923 1
## 49775 827924 1
## 49776 827925 1
## 49777 827926 1
## 49778 827927 1
## 49779 827928 1
## 49780 827929 1
## 49781 827930 1
## 49782 827931 1
## 49783 827932 1
## 49784 827933 1
## 49785 827934 1
## 49786 827935 1
## 49787 827936 1
## 49788 827937 1
## 49789 827938 1
## 49790 827939 1
## 49791 827940 1
## 49792 827941 1
## 49793 827942 1
## 49794 827943 1
## 49795 827944 1
## 49796 827945 1
## 49797 827946 1
## 49798 827947 1
## 49799 827948 1
## 49800 827949 1
## 49801 827950 1
## 49802 827951 1
## 49803 827952 1
## 49804 827953 1
## 49805 827954 1
## 49806 827955 1
## 49807 827956 1
## 49808 827957 1
## 49809 827958 1
## 49810 827959 1
## 49811 827960 1
## 49812 827961 1
## 49813 827962 1
## 49814 827963 1
## 49815 827964 1
## 49816 827965 1
## 49817 827966 1
## 49818 827967 1
## 49819 827968 1
## 49820 827969 1
## 49821 827972 1
## 49822 827973 1
## 49823 827974 1
## 49824 827975 1
## 49825 827976 1
## 49826 827977 1
## 49827 827978 1
## 49828 827979 1
## 49829 827980 1
## 49830 827981 1
## 49831 827982 1
## 49832 827983 1
## 49833 827984 1
## 49834 827986 1
## 49835 827987 1
## 49836 827988 1
## 49837 827989 1
## 49838 827990 1
## 49839 827991 1
## 49840 827992 1
## 49841 827993 1
## 49842 827994 1
## 49843 827995 1
## 49844 827996 1
## 49845 827997 1
## 49846 827998 1
## 49847 827999 1
## 49848 828000 1
## 49849 828001 1
## 49850 828003 1
## 49851 828004 1
## 49852 828005 1
## 49853 828006 1
## 49854 828007 1
## 49855 828008 1
## 49856 828009 1
## 49857 828010 1
## 49858 828011 1
## 49859 828012 1
## 49860 828013 1
## 49861 828014 1
## 49862 828015 1
## 49863 828016 1
## 49864 828017 1
## 49865 828018 1
## 49866 828019 1
## 49867 828020 1
## 49868 828021 1
## 49869 828022 1
## 49870 828023 1
## 49871 828024 1
## 49872 828025 1
## 49873 828026 1
## 49874 828027 1
## 49875 828028 1
## 49876 828029 1
## 49877 828030 1
## 49878 828031 1
## 49879 828032 1
## 49880 828033 1
## 49881 828034 1
## 49882 828035 1
## 49883 828036 1
## 49884 828037 1
## 49885 828038 1
## 49886 828039 1
## 49887 828040 1
## 49888 828041 1
## 49889 828042 1
## 49890 828043 1
## 49891 828044 1
## 49892 828045 1
## 49893 828046 1
## 49894 828047 1
## 49895 828048 1
## 49896 828049 1
## 49897 828050 1
## 49898 828051 1
## 49899 828052 1
## 49900 828053 1
## 49901 828054 1
## 49902 828055 1
## 49903 828056 1
## 49904 828057 1
## 49905 828058 1
## 49906 828059 1
## 49907 828060 1
## 49908 828061 1
## 49909 828062 1
## 49910 828063 1
## 49911 828064 1
## 49912 828065 1
## 49913 828066 1
## 49914 828067 1
## 49915 828068 1
## 49916 828069 1
## 49917 828070 1
## 49918 828071 1
## 49919 828072 1
## 49920 828073 1
## 49921 828074 1
## 49922 828075 1
## 49923 828076 1
## 49924 828077 1
## 49925 828078 1
## 49926 828079 1
## 49927 828080 1
## 49928 828081 1
## 49929 828082 1
## 49930 828083 1
## 49931 828084 1
## 49932 828085 1
## 49933 828086 1
## 49934 828088 1
## 49935 828089 1
## 49936 828090 1
## 49937 828091 1
## 49938 828092 1
## 49939 828093 1
## 49940 828094 1
## 49941 828095 1
## 49942 828096 1
## 49943 828097 1
## 49944 828098 1
## 49945 828099 1
## 49946 828100 1
## 49947 828102 1
## 49948 828103 1
## 49949 828104 1
## 49950 828105 1
## 49951 828106 1
## 49952 828107 1
## 49953 828108 1
## 49954 828109 1
## 49955 828110 1
## 49956 828111 1
## 49957 828112 1
## 49958 828113 1
## 49959 828114 1
## 49960 828115 1
## 49961 828116 1
## 49962 828117 1
## 49963 828118 1
## 49964 828119 1
## 49965 828120 1
## 49966 828121 1
## 49967 828122 1
## 49968 828123 1
## 49969 828124 1
## 49970 828125 1
## 49971 828126 1
## 49972 828127 1
## 49973 828128 1
## 49974 828129 1
## 49975 828130 1
## 49976 828131 1
## 49977 828132 1
## 49978 828133 1
## 49979 828134 1
## 49980 828135 1
## 49981 828136 1
## 49982 828137 1
## 49983 828138 1
## 49984 828139 1
## 49985 828142 1
## 49986 828143 1
## 49987 828144 1
## 49988 828145 1
## 49989 828146 1
## 49990 828147 1
## 49991 828148 1
## 49992 828149 1
## 49993 828150 1
## 49994 828151 1
## 49995 828152 1
## 49996 828153 1
## 49997 828154 1
## 49998 828155 1
## 49999 828156 1
## [ reached 'max' / getOption("max.print") -- omitted 79319 rows ]
# count(db, BillReviewALE, sort=TRUE)
# count(db, Hospital, sort=TRUE)
# count(db, PhysicianOutpatient, sort=TRUE)
# # (db, Rx, sort=TRUE)
# (db, TotalPaid, sort=TRUE)
# count(db, TotalReserves, sort=TRUE)
# count(db, TotalRecovery, sort=TRUE)
# count(db, IndemnityPaid, sort=TRUE)
# count(db, OtherPaid, sort=TRUE)
count(db, ClaimStatus, sort=TRUE)## ClaimStatus n
## 1 C 129318
## IncidentDate n
## 1 28/01/2004 74
## 2 01/02/2010 62
## 3 17/04/1996 61
## 4 15/04/1996 59
## 5 30/04/1996 56
## 6 01/05/1996 55
## 7 10/07/1999 55
## 8 18/04/1996 55
## 9 22/04/1996 55
## 10 20/05/1996 54
## 11 31/01/2000 54
## 12 14/05/1996 53
## 13 26/01/2000 53
## 14 01/02/2000 52
## 15 02/04/1996 52
## 16 10/07/1997 51
## 17 16/04/1996 51
## 18 18/07/2006 50
## 19 27/01/2004 50
## 20 07/05/1996 49
## 21 13/10/1997 49
## 22 15/09/2004 49
## 23 26/08/1996 48
## 24 02/05/1996 47
## 25 06/05/1996 47
## 26 10/06/2010 47
## 27 15/05/1996 47
## 28 23/07/1997 47
## 29 07/01/2002 46
## 30 11/09/1996 46
## 31 12/01/2011 46
## 32 13/05/1996 46
## 33 13/05/1998 46
## 34 17/07/2000 46
## 35 29/04/1996 46
## 36 29/07/1996 46
## 37 03/08/2006 45
## 38 06/11/1997 45
## 39 17/06/1996 45
## 40 21/07/2005 45
## 41 21/10/1996 45
## 42 24/06/2008 45
## 43 25/07/1996 45
## 44 01/10/1996 44
## 45 10/04/1996 44
## 46 22/01/2008 44
## 47 25/04/1996 44
## 48 01/04/1996 43
## 49 10/03/1998 43
## 50 11/04/1996 43
## 51 12/08/2003 43
## 52 14/06/2006 43
## 53 24/04/1996 43
## 54 26/04/1996 43
## 55 01/08/2000 42
## 56 02/08/1996 42
## 57 07/10/1997 42
## 58 17/05/1996 42
## 59 19/07/2000 42
## 60 21/07/1997 42
## 61 22/07/1996 42
## 62 22/07/2005 42
## 63 29/04/2002 42
## 64 04/04/1996 41
## 65 09/05/1996 41
## 66 10/09/1996 41
## 67 11/01/2011 41
## 68 11/06/1997 41
## 69 16/05/1996 41
## 70 18/02/2003 41
## 71 23/09/1996 41
## 72 28/07/1997 41
## 73 05/08/2003 40
## 74 10/08/2004 40
## 75 11/03/1997 40
## 76 16/07/1997 40
## 77 18/09/1996 40
## 78 20/10/1997 40
## 79 21/06/2006 40
## 80 23/04/1996 40
## 81 24/03/1998 40
## 82 25/09/2002 40
## 83 26/02/1997 40
## 84 31/07/1996 40
## 85 01/04/2003 39
## 86 03/08/2000 39
## 87 03/09/1996 39
## 88 06/08/1996 39
## 89 06/09/1996 39
## 90 08/05/1996 39
## 91 09/07/1997 39
## 92 09/09/1996 39
## 93 10/02/1997 39
## 94 10/06/2008 39
## 95 11/03/1998 39
## 96 13/06/1996 39
## 97 14/03/1997 39
## 98 15/10/1996 39
## 99 16/06/2011 39
## 100 17/02/2003 39
## 101 20/09/1999 39
## 102 20/10/1999 39
## 103 26/06/2000 39
## 104 30/07/2012 39
## 105 01/06/2011 38
## 106 02/08/2006 38
## 107 02/10/2001 38
## 108 03/05/1996 38
## 109 08/06/2004 38
## 110 10/06/1996 38
## 111 13/03/2000 38
## 112 15/05/2000 38
## 113 16/07/2003 38
## 114 16/08/2000 38
## 115 16/09/1996 38
## 116 18/05/2006 38
## 117 18/06/1996 38
## 118 19/04/1996 38
## 119 20/02/1998 38
## 120 20/04/2004 38
## 121 20/06/1996 38
## 122 22/03/2006 38
## 123 22/10/1996 38
## 124 25/07/2005 38
## 125 27/03/2007 38
## 126 01/02/2001 37
## 127 02/02/2012 37
## 128 02/04/2001 37
## 129 03/02/2010 37
## 130 03/04/1996 37
## 131 03/12/1997 37
## 132 04/03/2004 37
## 133 04/06/2003 37
## 134 05/08/2013 37
## 135 05/09/1996 37
## 136 06/02/1996 37
## 137 06/10/2004 37
## 138 07/07/1997 37
## 139 07/10/1996 37
## 140 11/07/2006 37
## 141 12/07/2001 37
## 142 12/07/2006 37
## 143 12/08/1996 37
## 144 13/06/2005 37
## 145 13/06/2006 37
## 146 13/08/1996 37
## 147 14/04/1997 37
## 148 15/02/2000 37
## 149 15/03/2007 37
## 150 15/07/1996 37
## 151 16/07/1996 37
## 152 17/04/1997 37
## 153 17/05/2006 37
## 154 17/12/1997 37
## 155 18/05/1998 37
## 156 18/07/2001 37
## 157 19/08/1996 37
## 158 20/09/2005 37
## 159 21/01/1997 37
## 160 21/05/1996 37
## 161 21/06/2001 37
## 162 22/06/2005 37
## 163 23/05/2006 37
## 164 24/06/2004 37
## 165 24/09/1996 37
## 166 25/06/1996 37
## 167 26/07/1999 37
## 168 28/07/2008 37
## 169 29/07/2009 37
## 170 30/07/1996 37
## 171 01/03/2001 36
## 172 01/06/1999 36
## 173 01/10/1997 36
## 174 01/11/1996 36
## 175 02/07/1996 36
## 176 02/09/1997 36
## 177 03/03/2009 36
## 178 05/06/1997 36
## 179 06/07/1999 36
## 180 07/11/1996 36
## 181 08/07/1996 36
## 182 10/07/2013 36
## 183 13/06/2003 36
## 184 13/07/2005 36
## 185 14/02/2006 36
## 186 15/01/1997 36
## 187 15/01/1998 36
## 188 16/06/2010 36
## 189 16/12/2005 36
## 190 17/02/2004 36
## 191 18/06/2001 36
## 192 19/03/2009 36
## 193 20/02/2001 36
## 194 20/03/1998 36
## 195 20/05/1997 36
## 196 21/08/1996 36
## 197 22/05/2000 36
## 198 22/07/2003 36
## 199 22/08/1996 36
## 200 22/08/2001 36
## 201 23/08/1996 36
## 202 24/06/2009 36
## 203 24/07/2000 36
## 204 24/10/2007 36
## 205 25/10/2000 36
## 206 27/08/1997 36
## 207 28/05/1997 36
## 208 28/06/1999 36
## 209 28/09/2005 36
## 210 29/01/2004 36
## 211 29/10/1996 36
## 212 30/09/1996 36
## 213 01/04/2004 35
## 214 01/05/2007 35
## 215 01/11/2006 35
## 216 02/02/2000 35
## 217 02/06/2003 35
## 218 02/07/1997 35
## 219 03/03/1998 35
## 220 03/04/2002 35
## 221 04/06/1996 35
## 222 05/06/1996 35
## 223 06/06/1996 35
## 224 06/09/2000 35
## 225 07/05/1997 35
## 226 07/08/1996 35
## 227 08/04/1998 35
## 228 08/05/2007 35
## 229 08/06/2000 35
## 230 08/08/2005 35
## 231 10/05/1996 35
## 232 10/09/2003 35
## 233 11/06/2013 35
## 234 12/05/2010 35
## 235 13/06/2001 35
## 236 13/08/1997 35
## 237 14/01/2002 35
## 238 14/08/2001 35
## 239 16/04/2002 35
## 240 16/05/2007 35
## 241 16/08/2010 35
## 242 16/12/1996 35
## 243 17/03/2004 35
## 244 18/03/1998 35
## 245 20/01/1998 35
## 246 20/01/1999 35
## 247 21/10/1997 35
## 248 22/09/1997 35
## 249 24/08/2009 35
## 250 24/10/1997 35
## 251 24/10/2001 35
## 252 25/03/1998 35
## 253 26/09/1996 35
## 254 26/09/1997 35
## 255 27/06/1996 35
## 256 27/06/2007 35
## 257 30/10/2000 35
## 258 31/10/2000 35
## 259 01/06/1998 34
## 260 01/08/1997 34
## 261 01/12/2004 34
## 262 02/11/2011 34
## 263 03/04/1997 34
## 264 03/10/1996 34
## 265 04/03/1997 34
## 266 06/07/2000 34
## 267 06/11/1996 34
## 268 07/07/1999 34
## 269 08/04/1996 34
## 270 10/07/2003 34
## 271 11/06/1998 34
## 272 12/04/1996 34
## 273 12/05/1997 34
## 274 12/07/2007 34
## 275 12/09/1996 34
## 276 13/09/1996 34
## 277 14/03/2006 34
## 278 14/10/1996 34
## 279 15/05/2006 34
## 280 15/08/2006 34
## 281 16/05/2000 34
## 282 17/06/2004 34
## 283 18/03/1997 34
## 284 18/06/1997 34
## 285 18/08/2004 34
## 286 18/08/2008 34
## 287 19/04/2006 34
## 288 20/06/2012 34
## 289 20/08/2013 34
## 290 22/05/1996 34
## 291 23/06/1997 34
## 292 23/07/2001 34
## 293 24/09/1998 34
## 294 25/08/1997 34
## 295 26/02/2002 34
## 296 26/09/2005 34
## 297 27/08/2012 34
## 298 27/09/2000 34
## 299 28/09/1998 34
## 300 29/06/1999 34
## 301 29/06/2004 34
## 302 29/10/1997 34
## 303 30/05/2002 34
## 304 30/08/2006 34
## 305 31/07/2000 34
## 306 01/03/2005 33
## 307 01/05/2000 33
## 308 01/06/2006 33
## 309 01/07/1996 33
## 310 01/08/1996 33
## 311 01/08/2013 33
## 312 01/10/2003 33
## 313 01/12/1997 33
## 314 02/10/2012 33
## 315 03/03/2008 33
## 316 03/10/2002 33
## 317 04/05/1998 33
## 318 04/06/2007 33
## 319 04/08/2003 33
## 320 04/10/2001 33
## 321 06/07/2004 33
## 322 07/07/2000 33
## 323 08/01/1998 33
## 324 08/01/2002 33
## 325 08/06/2009 33
## 326 08/06/2010 33
## 327 08/10/1997 33
## 328 09/02/2009 33
## 329 09/05/2000 33
## 330 09/11/1999 33
## 331 11/10/2005 33
## 332 12/06/2000 33
## 333 13/08/2002 33
## 334 14/03/2001 33
## 335 14/11/2000 33
## 336 15/03/2006 33
## 337 15/12/2003 33
## 338 16/08/2007 33
## 339 17/08/2006 33
## 340 17/09/1997 33
## 341 18/08/1999 33
## 342 18/09/2012 33
## 343 19/07/2006 33
## 344 19/09/2005 33
## 345 20/05/2009 33
## 346 20/06/2006 33
## 347 20/07/2010 33
## 348 20/10/2003 33
## 349 21/03/2001 33
## 350 22/01/1997 33
## 351 22/08/2007 33
## 352 23/02/2004 33
## 353 23/04/1997 33
## 354 23/04/2003 33
## 355 24/03/1997 33
## 356 24/05/1996 33
## 357 24/05/2005 33
## 358 25/06/2013 33
## 359 26/01/1998 33
## 360 26/04/2005 33
## 361 27/03/1996 33
## 362 27/04/1998 33
## 363 28/03/1996 33
## 364 29/05/1996 33
## 365 29/08/2001 33
## 366 29/10/2001 33
## 367 30/04/2003 33
## 368 30/06/1999 33
## 369 31/05/2007 33
## 370 01/05/2003 32
## 371 01/07/2005 32
## 372 01/08/2006 32
## 373 01/08/2007 32
## 374 01/10/2001 32
## 375 01/12/2006 32
## 376 02/02/2010 32
## 377 02/03/2006 32
## 378 02/12/2002 32
## 379 03/05/2001 32
## 380 03/05/2004 32
## 381 03/08/1998 32
## 382 05/03/1998 32
## 383 05/04/2005 32
## 384 05/05/2010 32
## 385 05/06/2006 32
## 386 06/05/1997 32
## 387 06/05/2009 32
## 388 07/05/2001 32
## 389 07/05/2012 32
## 390 07/08/2000 32
## 391 08/02/2000 32
## 392 08/08/1996 32
## 393 08/09/2003 32
## 394 10/03/2004 32
## 395 10/03/2009 32
## 396 10/08/2000 32
## 397 11/04/2006 32
## 398 11/04/2013 32
## 399 11/09/1997 32
## 400 11/10/2006 32
## 401 12/05/2003 32
## 402 12/05/2005 32
## 403 12/06/1996 32
## 404 12/08/2002 32
## 405 12/10/2005 32
## 406 13/01/2011 32
## 407 13/03/1997 32
## 408 13/06/2000 32
## 409 13/07/2000 32
## 410 14/06/2005 32
## 411 14/08/2003 32
## 412 15/06/2000 32
## 413 15/09/1997 32
## 414 15/09/2005 32
## 415 15/11/2011 32
## 416 16/05/2013 32
## 417 16/08/2006 32
## 418 16/09/2013 32
## 419 16/10/2007 32
## 420 16/11/1999 32
## 421 17/04/2002 32
## 422 17/08/2005 32
## 423 17/09/1996 32
## 424 19/01/2005 32
## 425 19/03/1997 32
## 426 19/03/2013 32
## 427 19/06/1996 32
## 428 19/06/2007 32
## 429 19/08/2003 32
## 430 19/09/2007 32
## 431 19/10/2009 32
## 432 20/07/1998 32
## 433 20/07/1999 32
## 434 20/07/2000 32
## 435 20/07/2005 32
## 436 20/08/1996 32
## 437 20/08/2007 32
## 438 20/09/2006 32
## 439 20/09/2010 32
## 440 21/12/2009 32
## 441 22/02/2000 32
## 442 22/08/2000 32
## 443 22/09/2004 32
## 444 22/10/2001 32
## 445 23/07/2003 32
## 446 23/08/2000 32
## 447 23/09/1997 32
## 448 23/09/2010 32
## 449 24/04/2006 32
## 450 24/06/1996 32
## 451 24/06/1997 32
## 452 24/08/2005 32
## 453 24/09/2003 32
## 454 24/09/2007 32
## 455 25/09/1996 32
## 456 26/09/2000 32
## 457 27/07/1999 32
## 458 28/02/2002 32
## 459 28/05/1996 32
## 460 28/05/1998 32
## 461 28/05/2002 32
## 462 29/01/1997 32
## 463 29/11/2000 32
## 464 31/10/1997 32
## 465 01/02/2006 31
## 466 01/04/2008 31
## 467 01/06/2005 31
## 468 01/09/2004 31
## 469 02/06/1997 31
## 470 02/08/1999 31
## 471 03/02/2000 31
## 472 04/01/2006 31
## 473 04/04/1997 31
## 474 04/08/1997 31
## 475 04/09/1997 31
## 476 05/08/1997 31
## 477 05/11/2008 31
## 478 06/05/1998 31
## 479 06/06/2013 31
## 480 06/09/2007 31
## 481 06/10/1997 31
## 482 07/08/2006 31
## 483 07/09/2000 31
## 484 08/08/2000 31
## 485 08/08/2001 31
## 486 08/08/2006 31
## 487 08/12/2000 31
## 488 09/04/1996 31
## 489 09/07/2007 31
## 490 09/08/2000 31
## 491 09/08/2005 31
## 492 09/10/1996 31
## 493 10/02/1998 31
## 494 10/04/2002 31
## 495 10/05/2005 31
## 496 10/09/2001 31
## 497 10/09/2007 31
## 498 10/10/1997 31
## 499 10/10/2001 31
## 500 11/01/1996 31
## 501 11/06/2004 31
## 502 11/10/1999 31
## 503 12/01/1999 31
## 504 12/05/1999 31
## 505 12/08/1999 31
## 506 12/11/1996 31
## 507 13/01/1997 31
## 508 13/07/2006 31
## 509 13/10/2004 31
## 510 15/08/2000 31
## 511 15/12/1999 31
## 512 15/12/2005 31
## 513 16/01/2001 31
## 514 16/08/2001 31
## 515 16/12/2010 31
## 516 17/07/1996 31
## 517 17/07/2006 31
## 518 17/08/2000 31
## 519 17/08/2004 31
## 520 17/10/2005 31
## 521 17/11/2011 31
## 522 18/05/2011 31
## 523 18/07/2012 31
## 524 18/12/2002 31
## 525 19/04/2004 31
## 526 19/05/1998 31
## 527 19/08/1999 31
## 528 19/09/2002 31
## 529 20/02/1997 31
## 530 20/03/2007 31
## 531 20/06/2007 31
## 532 20/08/2004 31
## 533 21/02/2002 31
## 534 21/03/2000 31
## 535 21/05/2001 31
## 536 21/08/2006 31
## 537 21/10/2013 31
## 538 22/04/2013 31
## 539 22/07/1997 31
## 540 23/03/2000 31
## 541 23/05/2001 31
## 542 23/09/1999 31
## 543 24/01/2000 31
## 544 24/07/1996 31
## 545 24/07/2007 31
## 546 25/01/2006 31
## 547 25/03/2002 31
## 548 25/04/2006 31
## 549 25/09/1997 31
## 550 26/03/1998 31
## 551 26/03/2001 31
## 552 26/06/2002 31
## 553 26/07/1996 31
## 554 26/10/2010 31
## 555 27/02/2003 31
## 556 27/07/2000 31
## 557 27/08/2004 31
## 558 27/08/2008 31
## 559 28/10/2002 31
## 560 29/03/2006 31
## 561 29/06/2006 31
## 562 29/07/1997 31
## 563 30/06/1997 31
## 564 30/07/2001 31
## 565 31/03/1998 31
## 566 31/07/2012 31
## 567 01/04/1998 30
## 568 01/07/1997 30
## 569 01/09/1998 30
## 570 01/10/2009 30
## 571 01/11/2005 30
## 572 02/02/2009 30
## 573 02/03/1998 30
## 574 02/04/1998 30
## 575 02/05/1997 30
## 576 02/10/1996 30
## 577 02/11/2000 30
## 578 02/11/2010 30
## 579 03/05/2000 30
## 580 03/06/1996 30
## 581 03/07/1997 30
## 582 03/09/2002 30
## 583 03/10/2012 30
## 584 04/10/2002 30
## 585 05/04/2002 30
## 586 05/08/2004 30
## 587 05/09/2006 30
## 588 05/11/2003 30
## 589 05/11/2013 30
## 590 05/12/2001 30
## 591 06/05/2005 30
## 592 06/08/2003 30
## 593 06/09/2006 30
## 594 07/04/2003 30
## 595 07/04/2004 30
## 596 08/01/2001 30
## 597 08/09/1999 30
## 598 09/02/2006 30
## 599 09/06/1998 30
## 600 09/06/2005 30
## 601 09/09/2004 30
## 602 09/10/2013 30
## 603 10/06/2002 30
## 604 10/07/2007 30
## 605 10/10/1996 30
## 606 10/11/1997 30
## 607 11/06/2001 30
## 608 11/07/2001 30
## 609 11/10/1996 30
## 610 12/03/1997 30
## 611 12/06/2012 30
## 612 12/08/1997 30
## 613 12/09/2000 30
## 614 12/09/2012 30
## 615 12/11/2003 30
## 616 12/12/2002 30
## 617 13/04/2010 30
## 618 13/05/2008 30
## 619 14/04/2009 30
## 620 14/05/1998 30
## 621 14/05/2007 30
## 622 14/07/2004 30
## 623 15/06/2006 30
## 624 15/06/2010 30
## 625 15/08/1997 30
## 626 15/09/2000 30
## 627 16/02/2005 30
## 628 16/05/1997 30
## 629 16/06/1998 30
## 630 16/08/1999 30
## 631 16/10/2008 30
## 632 17/05/2007 30
## 633 17/06/1997 30
## 634 17/06/1999 30
## 635 17/08/1998 30
## 636 17/09/2003 30
## 637 18/02/2004 30
## 638 18/02/2013 30
## 639 18/08/2005 30
## 640 18/10/1999 30
## 641 19/10/2004 30
## 642 20/10/2010 30
## 643 21/01/1998 30
## 644 21/01/2013 30
## 645 21/02/1997 30
## 646 21/02/2007 30
## 647 21/04/2009 30
## 648 21/06/1996 30
## 649 21/06/2004 30
## 650 21/07/1999 30
## 651 22/03/2004 30
## 652 22/05/2006 30
## 653 22/10/1997 30
## 654 23/03/1998 30
## 655 23/03/2005 30
## 656 23/03/2006 30
## 657 23/04/2007 30
## 658 23/06/1999 30
## 659 23/07/2007 30
## 660 24/01/2001 30
## 661 24/01/2002 30
## 662 24/02/1997 30
## 663 24/08/2000 30
## 664 25/04/2001 30
## 665 25/06/2008 30
## 666 25/07/2006 30
## 667 25/07/2007 30
## 668 25/08/2004 30
## 669 25/08/2005 30
## 670 26/01/2004 30
## 671 26/02/2001 30
## 672 26/06/2006 30
## 673 27/01/2000 30
## 674 27/02/2013 30
## 675 27/04/2005 30
## 676 27/06/2000 30
## 677 27/06/2006 30
## 678 27/08/2001 30
## 679 27/10/1999 30
## 680 28/07/2004 30
## 681 28/08/1996 30
## 682 28/10/2003 30
## 683 29/01/1998 30
## 684 29/08/1996 30
## 685 29/09/1997 30
## 686 30/01/2006 30
## 687 30/09/1997 30
## 688 30/09/1998 30
## 689 30/10/1996 30
## 690 31/07/1997 30
## 691 01/02/2002 29
## 692 01/02/2011 29
## 693 01/04/1997 29
## 694 01/07/2009 29
## 695 01/08/2005 29
## 696 01/10/2008 29
## 697 01/11/2007 29
## 698 02/02/2005 29
## 699 02/03/1999 29
## 700 02/04/1997 29
## 701 02/05/2007 29
## 702 02/07/1999 29
## 703 03/02/1998 29
## 704 03/04/2000 29
## 705 03/04/2009 29
## 706 03/05/2006 29
## 707 03/06/2010 29
## 708 03/08/2004 29
## 709 03/09/1997 29
## 710 03/10/2006 29
## 711 03/11/2011 29
## 712 04/01/2005 29
## 713 04/05/2006 29
## 714 04/06/1997 29
## 715 04/08/2008 29
## 716 04/09/2008 29
## 717 04/12/2000 29
## 718 05/02/2009 29
## 719 05/05/2009 29
## 720 05/06/2000 29
## 721 05/08/2008 29
## 722 05/08/2009 29
## 723 05/10/2004 29
## 724 06/04/1998 29
## 725 06/04/2006 29
## 726 06/05/2013 29
## 727 06/06/1997 29
## 728 06/08/2007 29
## 729 06/11/2000 29
## 730 07/01/1998 29
## 731 07/01/2009 29
## 732 07/02/1996 29
## 733 07/08/2013 29
## 734 07/09/2004 29
## 735 08/02/2006 29
## 736 08/04/1997 29
## 737 08/06/2007 29
## 738 08/07/2002 29
## 739 08/08/2013 29
## 740 08/09/1998 29
## 741 08/10/1998 29
## 742 09/01/1998 29
## 743 09/09/2002 29
## 744 09/10/2000 29
## 745 10/05/2007 29
## 746 10/07/2002 29
## 747 10/08/2005 29
## 748 10/10/2007 29
## 749 11/05/2000 29
## 750 11/07/2012 29
## 751 11/08/2005 29
## 752 12/01/1998 29
## 753 12/03/2001 29
## 754 12/07/2010 29
## 755 12/08/2013 29
## 756 12/12/1996 29
## 757 13/05/1997 29
## 758 13/05/2004 29
## 759 13/05/2005 29
## 760 13/08/2003 29
## 761 13/08/2008 29
## 762 13/09/2004 29
## 763 13/10/1998 29
## 764 13/11/2000 29
## 765 14/05/2001 29
## 766 14/06/2010 29
## 767 14/06/2012 29
## 768 14/07/2008 29
## 769 14/09/2001 29
## 770 14/09/2005 29
## 771 14/09/2006 29
## 772 14/10/1997 29
## 773 15/01/2013 29
## 774 15/05/2001 29
## 775 15/05/2003 29
## 776 15/05/2013 29
## 777 15/07/1997 29
## 778 16/01/1998 29
## 779 16/03/1998 29
## 780 16/04/2008 29
## 781 16/07/2002 29
## 782 16/07/2007 29
## 783 16/07/2013 29
## 784 16/08/2005 29
## 785 16/08/2011 29
## 786 16/10/2000 29
## 787 16/11/1998 29
## 788 16/11/2004 29
## 789 17/02/1998 29
## 790 17/03/1997 29
## 791 17/03/2011 29
## 792 17/06/1998 29
## 793 17/06/2008 29
## 794 17/07/2003 29
## 795 17/09/2008 29
## 796 18/01/2005 29
## 797 18/02/1998 29
## 798 18/02/2002 29
## 799 18/04/2000 29
## 800 18/04/2001 29
## 801 18/06/2008 29
## 802 18/08/2000 29
## 803 18/08/2003 29
## 804 18/08/2010 29
## 805 18/11/1999 29
## 806 19/02/2003 29
## 807 19/05/2003 29
## 808 19/05/2004 29
## 809 20/03/2002 29
## 810 20/04/2006 29
## 811 20/05/2005 29
## 812 20/06/2000 29
## 813 20/08/2003 29
## 814 21/01/2009 29
## 815 21/06/1999 29
## 816 21/09/2009 29
## 817 22/05/2002 29
## 818 22/07/1998 29
## 819 22/09/2006 29
## 820 23/01/2003 29
## 821 23/05/1996 29
## 822 23/05/2007 29
## 823 23/06/2004 29
## 824 23/06/2008 29
## 825 23/07/1999 29
## 826 24/02/1998 29
## 827 24/08/1998 29
## 828 24/08/2004 29
## 829 24/08/2006 29
## 830 24/09/2001 29
## 831 24/10/2002 29
## 832 25/01/2013 29
## 833 25/02/2008 29
## 834 25/04/2005 29
## 835 25/06/1997 29
## 836 25/06/2007 29
## 837 25/09/2000 29
## 838 25/10/2005 29
## 839 26/02/2008 29
## 840 26/07/2004 29
## 841 26/08/2004 29
## 842 27/08/1996 29
## 843 27/09/1996 29
## 844 28/07/2010 29
## 845 28/08/2000 29
## 846 28/08/2006 29
## 847 28/09/2000 29
## 848 28/09/2011 29
## 849 29/03/2007 29
## 850 29/05/2002 29
## 851 29/09/2005 29
## 852 30/03/2004 29
## 853 30/04/2012 29
## 854 30/08/2001 29
## 855 30/09/1999 29
## 856 31/05/2011 29
## 857 31/07/1998 29
## 858 31/10/2001 29
## 859 01/04/2002 28
## 860 01/06/2001 28
## 861 01/06/2009 28
## 862 01/07/1999 28
## 863 01/08/2001 28
## 864 01/09/2006 28
## 865 01/11/2001 28
## 866 01/11/2012 28
## 867 02/01/1997 28
## 868 02/02/1999 28
## 869 02/07/2007 28
## 870 02/09/2008 28
## 871 02/09/2010 28
## 872 02/10/1998 28
## 873 02/11/2004 28
## 874 03/01/2005 28
## 875 03/03/1997 28
## 876 03/04/2012 28
## 877 04/02/2013 28
## 878 04/03/1998 28
## 879 04/06/2001 28
## 880 04/08/2010 28
## 881 04/11/2008 28
## 882 05/03/2001 28
## 883 05/04/1996 28
## 884 05/05/2000 28
## 885 05/06/1998 28
## 886 05/07/2001 28
## 887 05/12/2000 28
## 888 05/12/2005 28
## 889 06/01/2000 28
## 890 06/04/2005 28
## 891 06/06/2006 28
## 892 06/08/1997 28
## 893 06/08/2009 28
## 894 07/06/2006 28
## 895 07/08/2002 28
## 896 07/12/1998 28
## 897 07/12/2000 28
## 898 08/01/1997 28
## 899 08/02/2005 28
## 900 08/04/2002 28
## 901 08/10/2007 28
## 902 09/01/2001 28
## 903 09/02/2004 28
## 904 09/03/2006 28
## 905 09/04/1997 28
## 906 09/04/2001 28
## 907 09/07/1996 28
## 908 09/08/1996 28
## 909 09/09/1997 28
## 910 09/09/2003 28
## 911 09/12/1996 28
## 912 10/06/1999 28
## 913 10/06/2003 28
## 914 10/09/2008 28
## 915 11/01/2005 28
## 916 11/03/2002 28
## 917 11/03/2004 28
## 918 11/12/1996 28
## 919 12/04/2010 28
## 920 12/06/1997 28
## 921 12/06/2006 28
## 922 12/07/2000 28
## 923 12/09/2007 28
## 924 12/09/2011 28
## 925 12/10/2010 28
## 926 12/11/2013 28
## 927 13/01/2000 28
## 928 13/02/1998 28
## 929 13/02/2006 28
## 930 13/03/2008 28
## 931 13/05/1999 28
## 932 13/06/2011 28
## 933 13/08/2001 28
## 934 13/11/1997 28
## 935 14/03/2002 28
## 936 14/05/1997 28
## 937 14/05/2002 28
## 938 14/05/2008 28
## 939 14/05/2009 28
## 940 14/06/1999 28
## 941 14/07/2006 28
## 942 14/08/2000 28
## 943 14/08/2006 28
## 944 14/10/2003 28
## 945 15/01/2002 28
## 946 15/01/2003 28
## 947 15/02/2010 28
## 948 15/04/1998 28
## 949 15/06/1999 28
## 950 15/06/2007 28
## 951 15/07/2003 28
## 952 15/08/2005 28
## 953 15/08/2012 28
## 954 15/10/2008 28
## 955 16/02/2006 28
## 956 16/04/2003 28
## 957 16/06/2005 28
## 958 16/06/2008 28
## 959 16/08/1996 28
## 960 16/09/1997 28
## 961 16/11/2006 28
## 962 16/12/1999 28
## 963 17/05/1999 28
## 964 17/07/2002 28
## 965 17/08/2009 28
## 966 18/06/1998 28
## 967 18/07/1996 28
## 968 18/10/2000 28
## 969 18/11/1996 28
## 970 19/05/2009 28
## 971 19/07/1999 28
## 972 19/10/2005 28
## 973 20/02/2013 28
## 974 20/06/2001 28
## 975 20/07/2004 28
## 976 20/08/1997 28
## 977 20/08/2001 28
## 978 20/08/2002 28
## 979 20/10/2005 28
## 980 20/11/1996 28
## 981 21/08/2001 28
## 982 21/08/2008 28
## 983 22/04/2002 28
## 984 22/04/2009 28
## 985 22/05/1997 28
## 986 22/09/2003 28
## 987 23/02/1998 28
## 988 23/02/2012 28
## 989 24/01/1997 28
## 990 24/04/2002 28
## 991 24/07/2003 28
## 992 24/07/2006 28
## 993 24/10/2013 28
## 994 25/01/2005 28
## 995 25/04/2007 28
## 996 25/06/2002 28
## 997 25/09/2013 28
## 998 26/01/2011 28
## 999 26/03/2002 28
## 1000 26/09/2007 28
## 1001 26/11/2012 28
## 1002 27/01/1998 28
## 1003 27/02/2007 28
## 1004 27/06/2002 28
## 1005 27/06/2012 28
## 1006 27/07/2005 28
## 1007 27/09/1999 28
## 1008 27/09/2001 28
## 1009 27/11/2006 28
## 1010 28/01/1999 28
## 1011 28/02/2000 28
## 1012 28/05/2008 28
## 1013 28/07/2000 28
## 1014 28/09/2006 28
## 1015 28/10/2004 28
## 1016 29/03/1999 28
## 1017 29/04/1998 28
## 1018 29/06/2000 28
## 1019 29/08/2000 28
## 1020 29/08/2006 28
## 1021 29/09/1999 28
## 1022 30/07/1998 28
## 1023 30/07/2008 28
## 1024 30/08/1996 28
## 1025 30/09/2004 28
## 1026 30/11/1999 28
## 1027 01/04/2013 27
## 1028 01/05/2002 27
## 1029 01/06/2004 27
## 1030 01/07/2003 27
## 1031 01/07/2008 27
## 1032 01/09/2005 27
## 1033 01/11/1999 27
## 1034 01/11/2000 27
## 1035 01/11/2004 27
## 1036 02/02/2007 27
## 1037 02/03/2011 27
## 1038 02/05/2002 27
## 1039 02/05/2006 27
## 1040 02/06/2008 27
## 1041 02/08/2010 27
## 1042 02/09/2003 27
## 1043 02/09/2009 27
## 1044 02/12/1996 27
## 1045 03/02/2004 27
## 1046 03/08/1999 27
## 1047 03/10/2001 27
## 1048 03/11/1997 27
## 1049 04/01/2002 27
## 1050 04/01/2012 27
## 1051 04/02/2002 27
## 1052 04/03/2002 27
## 1053 04/05/2005 27
## 1054 04/08/1999 27
## 1055 04/08/2004 27
## 1056 04/08/2009 27
## 1057 04/10/2007 27
## 1058 04/11/1996 27
## 1059 04/11/2009 27
## 1060 05/03/2007 27
## 1061 05/08/1998 27
## 1062 05/09/2007 27
## 1063 05/10/1999 27
## 1064 06/01/2005 27
## 1065 06/02/2001 27
## 1066 06/02/2006 27
## 1067 06/05/1999 27
## 1068 06/06/2001 27
## 1069 06/07/1998 27
## 1070 06/08/1999 27
## 1071 06/09/2001 27
## 1072 06/10/2011 27
## 1073 07/03/2000 27
## 1074 07/03/2002 27
## 1075 07/05/1998 27
## 1076 07/05/2003 27
## 1077 07/05/2007 27
## 1078 07/06/1999 27
## 1079 07/06/2005 27
## 1080 07/11/2005 27
## 1081 07/12/2004 27
## 1082 08/01/1996 27
## 1083 08/03/1999 27
## 1084 08/03/2000 27
## 1085 08/03/2005 27
## 1086 08/07/1999 27
## 1087 08/07/2010 27
## 1088 08/10/2012 27
## 1089 09/04/1999 27
## 1090 09/05/2005 27
## 1091 09/05/2013 27
## 1092 09/07/2013 27
## 1093 09/08/2004 27
## 1094 09/10/1997 27
## 1095 09/10/2008 27
## 1096 09/12/2009 27
## 1097 10/01/2000 27
## 1098 10/02/2004 27
## 1099 10/02/2010 27
## 1100 10/04/2000 27
## 1101 10/04/2003 27
## 1102 10/05/1999 27
## 1103 10/07/2000 27
## 1104 10/07/2006 27
## 1105 10/08/1999 27
## 1106 10/10/2000 27
## 1107 11/01/2001 27
## 1108 11/02/2008 27
## 1109 11/02/2013 27
## 1110 11/03/1999 27
## 1111 11/07/2000 27
## 1112 11/07/2003 27
## 1113 11/07/2013 27
## 1114 11/09/2006 27
## 1115 11/09/2008 27
## 1116 11/10/2010 27
## 1117 11/12/2008 27
## 1118 12/01/2006 27
## 1119 12/04/2006 27
## 1120 12/06/2003 27
## 1121 12/07/1996 27
## 1122 12/07/2011 27
## 1123 12/08/2010 27
## 1124 13/01/2010 27
## 1125 13/02/2004 27
## 1126 13/02/2008 27
## 1127 13/03/2006 27
## 1128 13/04/2004 27
## 1129 13/06/1997 27
## 1130 13/09/2000 27
## 1131 13/12/2000 27
## 1132 14/02/2014 27
## 1133 14/05/2003 27
## 1134 14/07/2005 27
## 1135 14/08/2002 27
## 1136 14/10/2004 27
## 1137 14/10/2013 27
## 1138 15/06/1998 27
## 1139 15/06/2004 27
## 1140 15/07/1998 27
## 1141 15/07/1999 27
## 1142 15/08/2002 27
## 1143 15/09/2010 27
## 1144 15/09/2011 27
## 1145 16/01/2007 27
## 1146 16/05/2002 27
## 1147 16/07/1999 27
## 1148 16/07/2001 27
## 1149 16/08/2004 27
## 1150 17/01/2001 27
## 1151 17/02/2005 27
## 1152 17/05/2001 27
## 1153 17/09/2002 27
## 1154 17/09/2007 27
## 1155 17/10/2000 27
## 1156 17/10/2003 27
## 1157 17/11/2003 27
## 1158 18/12/1996 27
## 1159 19/02/1997 27
## 1160 19/04/2001 27
## 1161 19/05/1997 27
## 1162 19/05/2005 27
## 1163 20/04/1999 27
## 1164 20/04/2009 27
## 1165 20/08/1999 27
## 1166 20/08/2012 27
## 1167 20/09/1996 27
## 1168 20/10/2004 27
## 1169 20/11/1997 27
## 1170 20/11/2001 27
## 1171 21/04/2010 27
## 1172 21/05/1999 27
## 1173 21/07/2004 27
## 1174 21/08/1998 27
## 1175 21/09/2011 27
## 1176 22/04/1997 27
## 1177 22/05/1998 27
## 1178 22/05/2013 27
## 1179 22/06/2000 27
## 1180 22/06/2006 27
## 1181 23/01/2006 27
## 1182 23/05/2011 27
## 1183 23/06/2010 27
## 1184 23/09/1998 27
## 1185 24/01/2006 27
## 1186 24/07/1997 27
## 1187 24/07/2001 27
## 1188 24/07/2013 27
## 1189 24/10/2006 27
## 1190 25/01/2000 27
## 1191 25/02/1998 27
## 1192 25/03/2003 27
## 1193 25/06/2003 27
## 1194 25/07/2001 27
## 1195 26/05/1998 27
## 1196 26/05/2009 27
## 1197 26/05/2010 27
## 1198 26/07/2010 27
## 1199 26/10/2001 27
## 1200 27/03/2000 27
## 1201 27/03/2001 27
## 1202 27/03/2002 27
## 1203 27/07/2004 27
## 1204 27/07/2011 27
## 1205 27/10/2004 27
## 1206 28/01/1997 27
## 1207 28/01/2000 27
## 1208 28/01/2002 27
## 1209 28/04/1997 27
## 1210 28/04/2010 27
## 1211 28/06/2000 27
## 1212 28/06/2001 27
## 1213 28/07/2003 27
## 1214 28/08/2001 27
## 1215 29/05/1997 27
## 1216 29/06/2011 27
## 1217 29/07/2010 27
## 1218 29/10/2012 27
## 1219 30/01/1997 27
## 1220 30/01/2002 27
## 1221 30/03/2000 27
## 1222 30/04/2004 27
## 1223 30/08/1999 27
## 1224 30/08/2000 27
## 1225 30/08/2011 27
## 1226 30/10/2008 27
## 1227 30/12/1997 27
## 1228 31/03/2009 27
## 1229 31/05/1996 27
## 1230 01/03/2012 26
## 1231 01/05/2006 26
## 1232 01/05/2008 26
## 1233 01/07/1998 26
## 1234 01/08/2011 26
## 1235 01/09/2009 26
## 1236 01/10/2007 26
## 1237 01/12/1999 26
## 1238 01/12/2005 26
## 1239 02/02/1996 26
## 1240 02/02/2004 26
## 1241 02/02/2006 26
## 1242 02/04/2002 26
## 1243 02/04/2008 26
## 1244 02/06/2006 26
## 1245 02/11/1999 26
## 1246 03/01/2006 26
## 1247 03/02/1997 26
## 1248 03/02/2006 26
## 1249 03/04/2001 26
## 1250 03/06/2009 26
## 1251 03/08/2005 26
## 1252 03/09/2013 26
## 1253 03/10/2000 26
## 1254 04/01/1999 26
## 1255 04/02/2003 26
## 1256 04/02/2004 26
## 1257 04/03/2014 26
## 1258 04/04/2001 26
## 1259 04/04/2006 26
## 1260 04/09/2007 26
## 1261 04/10/1999 26
## 1262 04/10/2005 26
## 1263 05/03/2002 26
## 1264 05/08/2005 26
## 1265 05/12/1997 26
## 1266 06/03/2000 26
## 1267 06/03/2003 26
## 1268 06/05/2003 26
## 1269 06/07/2009 26
## 1270 06/10/2005 26
## 1271 06/12/1999 26
## 1272 06/12/2000 26
## 1273 07/03/2005 26
## 1274 07/04/2011 26
## 1275 07/06/2000 26
## 1276 07/07/2004 26
## 1277 07/10/2013 26
## 1278 07/11/2001 26
## 1279 08/04/2004 26
## 1280 08/05/2000 26
## 1281 08/06/2011 26
## 1282 08/08/2002 26
## 1283 08/09/2006 26
## 1284 08/11/2011 26
## 1285 09/01/2002 26
## 1286 09/02/2012 26
## 1287 09/03/2004 26
## 1288 09/07/2001 26
## 1289 09/08/2013 26
## 1290 10/02/2005 26
## 1291 10/02/2006 26
## 1292 10/05/2000 26
## 1293 10/08/2006 26
## 1294 11/04/2001 26
## 1295 11/06/2002 26
## 1296 11/07/2002 26
## 1297 11/07/2008 26
## 1298 11/08/2008 26
## 1299 11/08/2010 26
## 1300 11/09/2012 26
## 1301 12/01/2009 26
## 1302 12/02/2002 26
## 1303 12/03/2012 26
## 1304 12/04/1999 26
## 1305 12/05/1998 26
## 1306 12/05/2011 26
## 1307 12/06/2007 26
## 1308 12/09/1997 26
## 1309 12/11/1997 26
## 1310 13/01/2004 26
## 1311 13/02/1997 26
## 1312 13/03/1998 26
## 1313 13/06/2007 26
## 1314 13/11/1996 26
## 1315 14/01/1998 26
## 1316 14/01/2004 26
## 1317 14/04/1998 26
## 1318 14/06/2000 26
## 1319 14/07/2011 26
## 1320 14/08/1996 26
## 1321 14/12/2011 26
## 1322 15/02/2006 26
## 1323 15/03/2012 26
## 1324 15/08/1996 26
## 1325 15/10/2001 26
## 1326 15/10/2003 26
## 1327 15/11/2004 26
## 1328 16/05/2006 26
## 1329 16/06/2003 26
## 1330 16/09/2002 26
## 1331 16/12/1997 26
## 1332 16/12/2004 26
## 1333 16/12/2008 26
## 1334 17/02/1997 26
## 1335 17/02/2010 26
## 1336 17/04/2000 26
## 1337 17/05/2010 26
## 1338 18/03/2005 26
## 1339 18/04/2002 26
## 1340 18/07/2000 26
## 1341 18/09/1997 26
## 1342 18/10/2007 26
## 1343 18/10/2012 26
## 1344 18/12/1997 26
## 1345 19/01/2010 26
## 1346 19/04/2000 26
## 1347 19/06/2000 26
## 1348 19/06/2002 26
## 1349 19/06/2006 26
## 1350 19/10/2010 26
## 1351 19/11/2002 26
## 1352 19/11/2003 26
## 1353 20/03/1997 26
## 1354 20/08/1998 26
## 1355 20/09/2000 26
## 1356 20/09/2001 26
## 1357 20/11/2002 26
## 1358 21/03/2007 26
## 1359 21/05/1998 26
## 1360 21/05/2012 26
## 1361 21/07/1998 26
## 1362 21/08/1997 26
## 1363 21/09/2005 26
## 1364 22/01/2001 26
## 1365 22/02/2006 26
## 1366 22/03/2005 26
## 1367 22/04/2004 26
## 1368 22/06/2009 26
## 1369 22/08/2002 26
## 1370 23/01/2001 26
## 1371 23/02/2005 26
## 1372 23/04/2002 26
## 1373 23/06/1998 26
## 1374 23/06/2006 26
## 1375 23/08/2001 26
## 1376 23/09/2003 26
## 1377 23/11/2010 26
## 1378 24/03/2003 26
## 1379 24/04/2003 26
## 1380 24/05/2004 26
## 1381 24/05/2006 26
## 1382 24/08/2011 26
## 1383 25/01/2001 26
## 1384 25/03/2008 26
## 1385 25/05/2005 26
## 1386 25/08/2003 26
## 1387 25/09/2003 26
## 1388 26/03/1996 26
## 1389 26/04/2002 26
## 1390 26/04/2007 26
## 1391 26/06/1997 26
## 1392 26/07/2001 26
## 1393 26/08/2008 26
## 1394 26/09/2006 26
## 1395 26/10/1998 26
## 1396 27/04/2004 26
## 1397 27/05/2004 26
## 1398 28/01/2013 26
## 1399 28/03/2005 26
## 1400 28/03/2012 26
## 1401 28/04/2003 26
## 1402 28/06/2004 26
## 1403 28/06/2006 26
## 1404 29/01/2001 26
## 1405 29/03/2005 26
## 1406 29/06/2007 26
## 1407 29/11/2005 26
## 1408 30/01/1998 26
## 1409 30/01/2004 26
## 1410 30/01/2012 26
## 1411 30/04/2001 26
## 1412 30/05/2000 26
## 1413 30/05/2013 26
## 1414 30/11/2005 26
## 1415 31/01/1997 26
## 1416 31/03/2004 26
## 1417 31/03/2005 26
## 1418 31/05/2000 26
## 1419 31/05/2002 26
## 1420 31/07/2001 26
## 1421 31/07/2003 26
## 1422 31/07/2007 26
## 1423 01/02/2012 25
## 1424 01/03/1999 25
## 1425 01/06/2000 25
## 1426 01/07/2010 25
## 1427 01/08/2002 25
## 1428 01/10/1999 25
## 1429 01/11/2002 25
## 1430 02/01/2001 25
## 1431 02/01/2008 25
## 1432 02/02/2011 25
## 1433 02/07/2008 25
## 1434 02/07/2012 25
## 1435 02/08/2001 25
## 1436 03/01/2013 25
## 1437 03/03/2004 25
## 1438 03/04/1998 25
## 1439 03/05/1999 25
## 1440 03/05/2005 25
## 1441 03/06/1997 25
## 1442 03/06/2002 25
## 1443 03/06/2005 25
## 1444 03/06/2008 25
## 1445 03/07/2000 25
## 1446 03/09/2004 25
## 1447 03/10/2005 25
## 1448 04/02/1997 25
## 1449 04/04/2003 25
## 1450 04/05/2004 25
## 1451 04/06/2004 25
## 1452 04/06/2013 25
## 1453 04/10/2006 25
## 1454 04/11/1997 25
## 1455 04/12/2007 25
## 1456 05/01/2002 25
## 1457 05/02/1996 25
## 1458 05/02/2003 25
## 1459 05/04/2007 25
## 1460 05/04/2010 25
## 1461 05/05/1998 25
## 1462 05/05/2006 25
## 1463 05/07/2005 25
## 1464 05/08/2002 25
## 1465 05/09/2012 25
## 1466 05/10/2005 25
## 1467 05/11/1997 25
## 1468 05/11/2007 25
## 1469 05/12/1996 25
## 1470 06/02/2013 25
## 1471 06/03/2002 25
## 1472 06/05/2002 25
## 1473 06/06/2002 25
## 1474 06/07/2010 25
## 1475 06/08/2004 25
## 1476 06/09/2013 25
## 1477 06/10/1999 25
## 1478 06/10/2000 25
## 1479 06/10/2003 25
## 1480 07/01/1999 25
## 1481 07/01/2004 25
## 1482 07/02/2013 25
## 1483 07/04/2010 25
## 1484 07/05/2002 25
## 1485 07/06/2010 25
## 1486 07/09/2005 25
## 1487 07/11/2000 25
## 1488 07/11/2008 25
## 1489 07/12/2005 25
## 1490 08/02/2001 25
## 1491 08/05/2001 25
## 1492 08/06/2006 25
## 1493 08/07/1997 25
## 1494 08/07/2003 25
## 1495 08/07/2009 25
## 1496 08/09/2005 25
## 1497 08/10/2001 25
## 1498 08/12/1997 25
## 1499 09/01/2003 25
## 1500 09/02/2001 25
## 1501 09/04/2003 25
## 1502 09/06/1999 25
## 1503 09/08/2001 25
## 1504 09/08/2010 25
## 1505 09/08/2012 25
## 1506 09/10/2001 25
## 1507 09/10/2009 25
## 1508 09/12/1998 25
## 1509 10/01/1997 25
## 1510 10/03/2003 25
## 1511 10/05/2004 25
## 1512 10/05/2010 25
## 1513 10/07/1996 25
## 1514 10/09/2004 25
## 1515 10/09/2013 25
## 1516 10/10/2012 25
## 1517 10/11/2009 25
## 1518 10/12/2001 25
## 1519 11/01/2006 25
## 1520 11/05/2007 25
## 1521 11/07/1996 25
## 1522 11/07/2005 25
## 1523 11/09/2003 25
## 1524 11/09/2007 25
## 1525 12/01/2001 25
## 1526 12/04/2004 25
## 1527 12/04/2013 25
## 1528 12/05/2004 25
## 1529 12/05/2006 25
## 1530 12/06/1998 25
## 1531 12/06/2002 25
## 1532 12/07/2005 25
## 1533 12/08/2008 25
## 1534 12/09/2001 25
## 1535 12/09/2002 25
## 1536 12/10/2004 25
## 1537 12/11/2002 25
## 1538 13/05/2013 25
## 1539 13/07/2010 25
## 1540 13/09/2005 25
## 1541 14/01/2003 25
## 1542 14/03/2000 25
## 1543 14/06/1996 25
## 1544 14/06/2011 25
## 1545 14/07/2000 25
## 1546 14/08/1997 25
## 1547 14/09/1999 25
## 1548 14/09/2009 25
## 1549 15/01/2004 25
## 1550 15/03/2005 25
## 1551 15/04/1997 25
## 1552 15/04/2009 25
## 1553 15/12/1997 25
## 1554 15/12/2009 25
## 1555 16/03/2000 25
## 1556 16/06/2004 25
## 1557 16/09/2003 25
## 1558 16/09/2004 25
## 1559 16/10/2012 25
## 1560 17/02/1999 25
## 1561 17/04/2007 25
## 1562 17/06/2003 25
## 1563 17/07/1998 25
## 1564 17/07/2001 25
## 1565 17/07/2007 25
## 1566 17/07/2013 25
## 1567 17/09/1998 25
## 1568 17/10/1997 25
## 1569 17/10/2012 25
## 1570 17/12/2004 25
## 1571 18/01/2006 25
## 1572 18/05/2005 25
## 1573 18/06/2009 25
## 1574 18/07/2003 25
## 1575 18/10/1996 25
## 1576 18/11/1997 25
## 1577 18/11/2002 25
## 1578 19/01/2006 25
## 1579 19/04/2010 25
## 1580 19/05/2010 25
## 1581 19/06/2001 25
## 1582 19/06/2003 25
## 1583 19/07/2001 25
## 1584 19/08/2004 25
## 1585 19/08/2008 25
## 1586 19/09/2003 25
## 1587 19/11/1997 25
## 1588 20/01/2004 25
## 1589 20/01/2005 25
## 1590 20/03/2000 25
## 1591 20/04/2000 25
## 1592 20/05/2003 25
## 1593 20/06/2003 25
## 1594 21/02/2000 25
## 1595 21/02/2006 25
## 1596 21/02/2011 25
## 1597 21/03/2005 25
## 1598 21/04/1998 25
## 1599 21/05/2008 25
## 1600 21/06/2005 25
## 1601 21/09/2000 25
## 1602 22/05/2012 25
## 1603 22/06/1999 25
## 1604 22/07/2002 25
## 1605 22/08/2011 25
## 1606 22/09/2005 25
## 1607 22/11/1999 25
## 1608 23/01/1998 25
## 1609 23/03/2009 25
## 1610 23/05/2012 25
## 1611 23/06/2003 25
## 1612 23/07/1996 25
## 1613 23/07/2002 25
## 1614 23/08/2011 25
## 1615 24/01/2005 25
## 1616 24/04/2000 25
## 1617 24/04/2001 25
## 1618 24/04/2012 25
## 1619 24/05/2001 25
## 1620 24/09/1999 25
## 1621 25/01/2007 25
## 1622 25/07/2000 25
## 1623 25/09/2001 25
## 1624 25/11/1996 25
## 1625 26/01/2006 25
## 1626 26/03/2007 25
## 1627 26/04/2006 25
## 1628 26/06/1996 25
## 1629 26/06/2008 25
## 1630 27/01/2009 25
## 1631 27/04/2009 25
## 1632 27/04/2012 25
## 1633 27/05/2003 25
## 1634 27/08/2003 25
## 1635 27/10/1997 25
## 1636 27/11/2001 25
## 1637 28/03/2006 25
## 1638 28/04/2009 25
## 1639 28/06/2011 25
## 1640 28/07/1999 25
## 1641 28/08/2013 25
## 1642 28/11/2000 25
## 1643 28/12/2004 25
## 1644 29/01/2007 25
## 1645 29/04/2003 25
## 1646 29/09/2004 25
## 1647 29/11/2004 25
## 1648 30/01/2003 25
## 1649 30/03/2005 25
## 1650 30/06/2005 25
## 1651 30/10/2013 25
## 1652 31/01/2014 25
## 1653 31/05/2001 25
## 1654 31/08/1999 25
## 1655 31/10/2007 25
## 1656 01/02/1999 24
## 1657 01/03/2000 24
## 1658 01/03/2007 24
## 1659 01/12/2011 24
## 1660 02/05/2005 24
## 1661 02/06/2009 24
## 1662 02/12/1997 24
## 1663 02/12/2004 24
## 1664 03/01/2001 24
## 1665 03/01/2008 24
## 1666 03/02/2003 24
## 1667 03/04/2006 24
## 1668 03/09/1998 24
## 1669 03/12/2004 24
## 1670 04/01/2007 24
## 1671 04/02/1999 24
## 1672 04/02/2010 24
## 1673 04/06/2008 24
## 1674 04/08/1998 24
## 1675 04/09/2002 24
## 1676 04/10/2000 24
## 1677 04/10/2004 24
## 1678 05/03/1997 24
## 1679 05/03/2008 24
## 1680 05/04/2001 24
## 1681 05/05/1997 24
## 1682 05/11/2012 24
## 1683 05/12/2011 24
## 1684 06/01/1998 24
## 1685 06/02/1998 24
## 1686 06/05/2010 24
## 1687 06/06/2008 24
## 1688 06/11/2008 24
## 1689 07/06/2001 24
## 1690 07/07/2010 24
## 1691 07/08/1997 24
## 1692 07/08/2008 24
## 1693 07/10/1998 24
## 1694 08/05/2012 24
## 1695 08/08/2011 24
## 1696 08/09/2004 24
## 1697 08/11/1996 24
## 1698 09/01/1996 24
## 1699 09/02/1999 24
## 1700 09/02/2000 24
## 1701 09/06/2000 24
## 1702 09/06/2008 24
## 1703 09/06/2010 24
## 1704 09/07/2008 24
## 1705 09/08/2007 24
## 1706 09/10/2012 24
## 1707 09/11/1998 24
## 1708 09/11/2004 24
## 1709 09/11/2005 24
## 1710 10/01/2008 24
## 1711 10/04/2006 24
## 1712 10/04/2007 24
## 1713 10/04/2013 24
## 1714 10/06/2004 24
## 1715 10/06/2013 24
## 1716 10/09/1997 24
## 1717 10/10/2002 24
## 1718 10/10/2005 24
## 1719 10/10/2006 24
## 1720 10/11/1999 24
## 1721 10/11/2004 24
## 1722 10/12/2009 24
## 1723 10/12/2012 24
## 1724 11/01/2002 24
## 1725 11/02/1997 24
## 1726 11/05/2006 24
## 1727 11/07/1997 24
## 1728 11/08/1997 24
## 1729 11/08/2004 24
## 1730 11/09/2000 24
## 1731 11/09/2002 24
## 1732 11/12/2007 24
## 1733 12/02/1997 24
## 1734 12/02/2013 24
## 1735 12/03/2002 24
## 1736 12/03/2007 24
## 1737 12/04/2000 24
## 1738 12/05/2009 24
## 1739 12/06/2008 24
## 1740 12/07/2004 24
## 1741 12/08/1998 24
## 1742 12/09/2006 24
## 1743 12/12/2007 24
## 1744 13/04/1999 24
## 1745 13/05/2009 24
## 1746 13/06/2002 24
## 1747 13/06/2012 24
## 1748 13/07/2009 24
## 1749 13/09/2011 24
## 1750 13/10/2010 24
## 1751 13/12/1996 24
## 1752 13/12/2006 24
## 1753 13/12/2007 24
## 1754 14/01/1999 24
## 1755 14/01/2008 24
## 1756 14/01/2011 24
## 1757 14/02/2011 24
## 1758 14/04/1999 24
## 1759 14/07/2003 24
## 1760 14/08/2012 24
## 1761 14/09/2010 24
## 1762 14/11/2011 24
## 1763 14/12/1998 24
## 1764 14/12/2005 24
## 1765 15/02/2001 24
## 1766 15/03/2000 24
## 1767 15/03/2001 24
## 1768 15/06/2005 24
## 1769 15/07/2008 24
## 1770 15/07/2013 24
## 1771 15/08/2007 24
## 1772 15/08/2011 24
## 1773 15/08/2013 24
## 1774 15/10/2004 24
## 1775 15/10/2007 24
## 1776 15/11/2001 24
## 1777 15/11/2005 24
## 1778 16/02/2000 24
## 1779 16/02/2004 24
## 1780 16/02/2009 24
## 1781 16/02/2012 24
## 1782 16/03/2009 24
## 1783 16/04/2007 24
## 1784 16/05/2005 24
## 1785 16/06/2000 24
## 1786 16/06/2006 24
## 1787 16/11/2005 24
## 1788 16/12/2009 24
## 1789 17/01/2006 24
## 1790 17/02/2000 24
## 1791 17/03/1999 24
## 1792 17/04/1998 24
## 1793 17/05/2002 24
## 1794 17/06/2009 24
## 1795 17/07/2008 24
## 1796 17/08/2010 24
## 1797 17/09/1999 24
## 1798 17/11/2000 24
## 1799 17/11/2004 24
## 1800 18/02/2009 24
## 1801 18/04/2012 24
## 1802 18/05/2004 24
## 1803 18/06/2002 24
## 1804 18/07/1997 24
## 1805 18/07/2002 24
## 1806 18/07/2005 24
## 1807 18/08/2011 24
## 1808 18/09/2006 24
## 1809 18/09/2008 24
## 1810 18/10/2004 24
## 1811 18/11/2003 24
## 1812 18/11/2010 24
## 1813 18/12/2000 24
## 1814 19/03/2008 24
## 1815 19/04/2005 24
## 1816 19/06/2008 24
## 1817 19/07/1996 24
## 1818 19/07/2012 24
## 1819 19/09/2000 24
## 1820 19/11/2001 24
## 1821 19/11/2008 24
## 1822 20/01/2009 24
## 1823 20/03/2013 24
## 1824 20/04/2005 24
## 1825 20/05/2004 24
## 1826 20/09/2007 24
## 1827 20/11/2000 24
## 1828 21/01/2010 24
## 1829 21/03/2012 24
## 1830 21/04/2003 24
## 1831 21/05/2013 24
## 1832 21/08/2007 24
## 1833 21/08/2013 24
## 1834 21/09/1998 24
## 1835 21/09/1999 24
## 1836 21/10/2010 24
## 1837 22/01/2007 24
## 1838 22/03/2000 24
## 1839 22/04/2003 24
## 1840 22/04/2010 24
## 1841 22/05/2008 24
## 1842 22/06/2001 24
## 1843 22/06/2004 24
## 1844 22/07/2004 24
## 1845 22/07/2008 24
## 1846 23/01/1997 24
## 1847 23/01/2007 24
## 1848 23/02/2000 24
## 1849 23/04/2004 24
## 1850 23/04/2012 24
## 1851 23/05/2000 24
## 1852 23/07/2008 24
## 1853 23/07/2010 24
## 1854 23/08/2004 24
## 1855 23/08/2007 24
## 1856 23/10/2001 24
## 1857 23/10/2007 24
## 1858 24/02/2014 24
## 1859 24/03/2004 24
## 1860 24/03/2006 24
## 1861 24/06/1999 24
## 1862 24/06/2013 24
## 1863 24/09/1997 24
## 1864 24/10/2000 24
## 1865 25/04/2008 24
## 1866 25/05/1999 24
## 1867 25/06/2001 24
## 1868 25/06/2012 24
## 1869 25/07/2011 24
## 1870 25/09/2006 24
## 1871 25/10/2011 24
## 1872 26/01/2005 24
## 1873 26/03/2008 24
## 1874 26/04/2004 24
## 1875 26/07/2000 24
## 1876 26/07/2005 24
## 1877 26/08/1997 24
## 1878 26/08/2013 24
## 1879 26/09/2012 24
## 1880 26/09/2013 24
## 1881 27/01/2003 24
## 1882 27/01/2010 24
## 1883 27/01/2011 24
## 1884 27/05/1997 24
## 1885 27/05/1998 24
## 1886 27/06/2008 24
## 1887 27/08/1998 24
## 1888 27/10/2008 24
## 1889 28/02/2008 24
## 1890 28/02/2012 24
## 1891 28/03/2007 24
## 1892 28/04/1999 24
## 1893 28/08/1997 24
## 1894 28/08/2012 24
## 1895 28/09/1999 24
## 1896 28/09/2004 24
## 1897 28/09/2009 24
## 1898 28/09/2010 24
## 1899 29/03/2000 24
## 1900 29/05/2001 24
## 1901 29/06/1998 24
## 1902 29/07/2003 24
## 1903 29/08/2005 24
## 1904 29/12/1997 24
## 1905 30/03/2006 24
## 1906 30/04/2002 24
## 1907 30/05/2008 24
## 1908 30/06/2004 24
## 1909 30/10/2006 24
## 1910 30/11/2000 24
## 1911 30/11/2009 24
## 1912 31/10/1996 24
## 1913 01/04/2005 23
## 1914 01/05/1997 23
## 1915 01/05/2001 23
## 1916 01/05/2013 23
## 1917 01/07/2002 23
## 1918 01/09/1999 23
## 1919 01/10/2004 23
## 1920 01/10/2010 23
## 1921 01/12/2009 23
## 1922 02/01/2002 23
## 1923 02/03/2000 23
## 1924 02/04/2003 23
## 1925 02/06/2000 23
## 1926 02/07/1998 23
## 1927 02/08/2005 23
## 1928 02/08/2007 23
## 1929 02/10/2007 23
## 1930 02/12/2009 23
## 1931 03/01/2000 23
## 1932 03/04/2008 23
## 1933 03/08/2009 23
## 1934 03/11/2003 23
## 1935 04/02/2000 23
## 1936 04/03/2003 23
## 1937 04/04/2005 23
## 1938 04/05/2011 23
## 1939 04/06/1999 23
## 1940 04/08/2006 23
## 1941 04/10/1996 23
## 1942 05/05/2003 23
## 1943 05/05/2008 23
## 1944 05/05/2011 23
## 1945 05/06/2001 23
## 1946 05/06/2002 23
## 1947 05/08/1999 23
## 1948 05/10/2011 23
## 1949 05/11/2009 23
## 1950 05/12/2013 23
## 1951 06/03/1998 23
## 1952 06/04/2009 23
## 1953 06/05/2008 23
## 1954 06/06/2003 23
## 1955 06/06/2005 23
## 1956 06/07/2001 23
## 1957 06/07/2005 23
## 1958 06/09/2011 23
## 1959 06/10/2010 23
## 1960 06/12/2005 23
## 1961 07/02/2005 23
## 1962 07/02/2008 23
## 1963 07/03/2006 23
## 1964 07/03/2012 23
## 1965 07/03/2013 23
## 1966 07/04/2000 23
## 1967 07/05/2008 23
## 1968 07/06/2002 23
## 1969 07/07/1998 23
## 1970 07/08/2012 23
## 1971 07/09/1996 23
## 1972 07/12/1999 23
## 1973 08/01/2003 23
## 1974 08/03/2001 23
## 1975 08/03/2007 23
## 1976 08/04/2013 23
## 1977 08/07/2004 23
## 1978 08/07/2013 23
## 1979 08/10/1996 23
## 1980 08/11/2000 23
## 1981 08/12/2004 23
## 1982 08/12/2011 23
## 1983 09/01/2004 23
## 1984 09/01/2008 23
## 1985 09/03/1998 23
## 1986 09/05/1997 23
## 1987 09/05/2006 23
## 1988 09/05/2012 23
## 1989 09/06/1997 23
## 1990 09/10/2002 23
## 1991 09/12/2003 23
## 1992 10/01/2006 23
## 1993 10/03/2008 23
## 1994 10/03/2010 23
## 1995 10/04/2012 23
## 1996 10/05/2001 23
## 1997 10/06/1998 23
## 1998 10/07/2012 23
## 1999 10/08/2012 23
## 2000 10/12/1996 23
## 2001 11/01/1999 23
## 2002 11/03/2010 23
## 2003 11/04/2002 23
## 2004 11/04/2007 23
## 2005 11/05/2011 23
## 2006 11/08/1999 23
## 2007 11/08/2000 23
## 2008 11/08/2003 23
## 2009 11/10/2000 23
## 2010 11/12/1997 23
## 2011 12/01/2000 23
## 2012 12/02/1998 23
## 2013 12/03/2013 23
## 2014 12/05/2008 23
## 2015 12/06/2009 23
## 2016 12/08/2004 23
## 2017 12/09/2005 23
## 2018 12/10/2000 23
## 2019 12/10/2011 23
## 2020 12/10/2012 23
## 2021 13/01/1998 23
## 2022 13/02/2003 23
## 2023 13/03/2007 23
## 2024 13/04/2000 23
## 2025 13/07/1998 23
## 2026 13/08/1999 23
## 2027 13/08/2009 23
## 2028 13/08/2013 23
## 2029 13/09/1999 23
## 2030 13/09/2012 23
## 2031 13/10/1999 23
## 2032 13/11/2002 23
## 2033 13/11/2008 23
## 2034 13/11/2012 23
## 2035 13/12/2004 23
## 2036 13/12/2005 23
## 2037 14/02/2001 23
## 2038 14/02/2005 23
## 2039 14/02/2012 23
## 2040 14/04/2005 23
## 2041 14/09/2011 23
## 2042 14/11/2007 23
## 2043 15/02/2002 23
## 2044 15/02/2005 23
## 2045 15/05/1997 23
## 2046 15/06/2012 23
## 2047 15/07/2009 23
## 2048 15/07/2011 23
## 2049 15/09/1996 23
## 2050 15/09/2003 23
## 2051 15/10/2010 23
## 2052 15/10/2013 23
## 2053 15/11/2006 23
## 2054 15/11/2007 23
## 2055 15/12/2004 23
## 2056 16/02/1999 23
## 2057 16/02/2011 23
## 2058 16/06/2009 23
## 2059 16/07/2010 23
## 2060 16/09/1998 23
## 2061 16/09/2005 23
## 2062 16/12/2002 23
## 2063 17/01/2013 23
## 2064 17/03/1998 23
## 2065 17/03/2006 23
## 2066 17/04/2001 23
## 2067 17/04/2006 23
## 2068 17/04/2012 23
## 2069 17/05/2005 23
## 2070 17/06/2010 23
## 2071 17/08/1999 23
## 2072 17/09/2009 23
## 2073 17/10/2002 23
## 2074 18/02/2008 23
## 2075 18/03/2013 23
## 2076 18/04/1997 23
## 2077 18/08/1997 23
## 2078 18/09/2001 23
## 2079 18/11/1998 23
## 2080 18/12/2008 23
## 2081 19/01/2000 23
## 2082 19/02/2004 23
## 2083 19/07/2005 23
## 2084 19/07/2011 23
## 2085 19/08/1997 23
## 2086 19/08/1998 23
## 2087 19/08/2010 23
## 2088 19/09/2001 23
## 2089 20/02/2012 23
## 2090 20/03/2012 23
## 2091 20/05/1998 23
## 2092 20/05/2008 23
## 2093 20/06/2013 23
## 2094 20/10/2008 23
## 2095 21/02/2008 23
## 2096 21/04/2005 23
## 2097 21/05/2002 23
## 2098 21/07/2006 23
## 2099 21/08/2003 23
## 2100 21/09/2001 23
## 2101 21/10/2008 23
## 2102 22/01/2003 23
## 2103 22/01/2004 23
## 2104 22/02/1999 23
## 2105 22/02/2005 23
## 2106 22/04/2008 23
## 2107 22/09/1999 23
## 2108 22/09/2010 23
## 2109 23/02/2006 23
## 2110 23/02/2011 23
## 2111 23/03/2007 23
## 2112 23/04/1999 23
## 2113 23/04/2001 23
## 2114 23/05/2013 23
## 2115 23/07/2004 23
## 2116 23/08/2005 23
## 2117 23/08/2010 23
## 2118 23/09/2004 23
## 2119 23/10/1997 23
## 2120 23/10/2000 23
## 2121 23/10/2013 23
## 2122 23/11/1999 23
## 2123 24/01/2011 23
## 2124 24/02/2009 23
## 2125 24/03/1999 23
## 2126 24/05/2007 23
## 2127 24/06/2002 23
## 2128 24/07/2008 23
## 2129 24/09/2008 23
## 2130 25/01/2011 23
## 2131 25/02/2010 23
## 2132 25/03/1996 23
## 2133 25/03/2004 23
## 2134 25/04/2013 23
## 2135 25/05/2011 23
## 2136 25/07/2013 23
## 2137 25/08/1998 23
## 2138 25/08/2008 23
## 2139 25/08/2009 23
## 2140 25/10/2001 23
## 2141 25/10/2002 23
## 2142 26/02/1998 23
## 2143 26/02/2009 23
## 2144 26/04/2012 23
## 2145 26/05/1999 23
## 2146 26/08/1999 23
## 2147 26/08/2009 23
## 2148 26/09/2011 23
## 2149 26/10/2000 23
## 2150 26/11/2001 23
## 2151 27/02/2001 23
## 2152 27/05/2009 23
## 2153 27/06/1997 23
## 2154 27/08/2007 23
## 2155 27/09/2005 23
## 2156 27/09/2006 23
## 2157 27/10/2006 23
## 2158 27/12/2010 23
## 2159 28/01/1998 23
## 2160 28/02/2013 23
## 2161 28/06/2002 23
## 2162 28/06/2010 23
## 2163 28/06/2013 23
## 2164 28/07/1998 23
## 2165 28/07/2005 23
## 2166 28/08/2007 23
## 2167 28/09/2012 23
## 2168 29/01/2002 23
## 2169 29/06/2009 23
## 2170 29/07/1999 23
## 2171 29/08/2012 23
## 2172 29/09/2003 23
## 2173 29/09/2008 23
## 2174 29/09/2009 23
## 2175 29/09/2010 23
## 2176 30/01/2013 23
## 2177 30/04/1998 23
## 2178 30/04/2007 23
## 2179 30/05/1996 23
## 2180 30/07/2009 23
## 2181 30/08/2004 23
## 2182 30/08/2005 23
## 2183 30/09/2003 23
## 2184 30/09/2009 23
## 2185 30/09/2010 23
## 2186 31/03/2010 23
## 2187 31/07/2006 23
## 2188 31/07/2008 23
## 2189 31/08/2011 23
## 2190 01/03/2004 22
## 2191 01/03/2006 22
## 2192 01/04/2010 22
## 2193 01/08/2008 22
## 2194 01/10/2002 22
## 2195 01/12/1998 22
## 2196 01/12/2010 22
## 2197 02/02/1998 22
## 2198 02/04/2004 22
## 2199 02/05/2003 22
## 2200 02/05/2011 22
## 2201 02/06/1998 22
## 2202 02/07/2001 22
## 2203 02/07/2004 22
## 2204 02/07/2013 22
## 2205 02/09/1999 22
## 2206 02/10/1997 22
## 2207 02/11/2006 22
## 2208 02/12/1998 22
## 2209 02/12/1999 22
## 2210 03/04/2007 22
## 2211 03/06/2003 22
## 2212 03/07/1996 22
## 2213 03/07/2002 22
## 2214 03/07/2006 22
## 2215 03/09/2010 22
## 2216 03/10/2003 22
## 2217 03/10/2007 22
## 2218 03/10/2013 22
## 2219 03/12/2012 22
## 2220 04/01/2000 22
## 2221 04/01/2001 22
## 2222 04/02/2005 22
## 2223 04/03/2008 22
## 2224 04/03/2009 22
## 2225 04/03/2010 22
## 2226 04/04/2011 22
## 2227 04/06/2009 22
## 2228 04/09/2013 22
## 2229 04/11/2010 22
## 2230 04/11/2013 22
## 2231 04/12/2001 22
## 2232 04/12/2003 22
## 2233 04/12/2008 22
## 2234 05/02/1998 22
## 2235 05/02/2008 22
## 2236 05/02/2013 22
## 2237 05/03/1999 22
## 2238 05/04/2004 22
## 2239 05/06/2008 22
## 2240 05/06/2012 22
## 2241 05/09/2000 22
## 2242 05/09/2002 22
## 2243 05/10/2006 22
## 2244 05/11/2002 22
## 2245 05/11/2010 22
## 2246 06/03/2008 22
## 2247 06/03/2013 22
## 2248 06/07/2006 22
## 2249 06/08/2001 22
## 2250 06/08/2012 22
## 2251 06/09/2005 22
## 2252 06/10/1998 22
## 2253 06/10/2009 22
## 2254 06/12/2006 22
## 2255 07/01/2010 22
## 2256 07/02/2000 22
## 2257 07/02/2001 22
## 2258 07/02/2012 22
## 2259 07/04/1997 22
## 2260 07/04/2009 22
## 2261 07/06/2012 22
## 2262 07/10/2002 22
## 2263 07/10/2010 22
## 2264 07/11/2012 22
## 2265 07/12/2007 22
## 2266 08/01/1999 22
## 2267 08/01/2004 22
## 2268 08/01/2007 22
## 2269 08/01/2008 22
## 2270 08/03/2006 22
## 2271 08/03/2011 22
## 2272 08/05/1997 22
## 2273 08/06/2005 22
## 2274 08/09/1997 22
## 2275 08/10/2013 22
## 2276 08/11/1999 22
## 2277 08/12/1999 22
## 2278 08/12/2005 22
## 2279 09/01/1997 22
## 2280 09/01/2012 22
## 2281 09/05/2011 22
## 2282 09/06/2003 22
## 2283 09/07/2012 22
## 2284 09/10/2003 22
## 2285 10/06/1997 22
## 2286 10/09/2002 22
## 2287 10/10/2013 22
## 2288 11/01/2000 22
## 2289 11/01/2008 22
## 2290 11/02/2002 22
## 2291 11/02/2003 22
## 2292 11/03/2008 22
## 2293 11/03/2013 22
## 2294 11/05/2004 22
## 2295 11/05/2009 22
## 2296 11/06/1996 22
## 2297 11/06/2008 22
## 2298 11/06/2010 22
## 2299 11/07/2007 22
## 2300 11/12/2006 22
## 2301 12/02/2001 22
## 2302 12/02/2004 22
## 2303 12/04/2005 22
## 2304 12/04/2007 22
## 2305 12/06/2001 22
## 2306 12/07/1999 22
## 2307 12/07/2013 22
## 2308 12/08/2005 22
## 2309 12/09/2003 22
## 2310 12/10/2006 22
## 2311 12/11/1999 22
## 2312 13/01/1999 22
## 2313 13/01/2006 22
## 2314 13/02/2001 22
## 2315 13/04/2006 22
## 2316 13/09/2006 22
## 2317 13/09/2007 22
## 2318 13/12/2012 22
## 2319 14/05/1999 22
## 2320 14/06/2001 22
## 2321 14/06/2007 22
## 2322 14/06/2013 22
## 2323 14/08/2008 22
## 2324 14/09/1998 22
## 2325 14/09/2000 22
## 2326 14/10/2009 22
## 2327 14/11/2012 22
## 2328 14/12/1999 22
## 2329 14/12/2000 22
## 2330 14/12/2004 22
## 2331 15/01/2010 22
## 2332 15/02/2013 22
## 2333 15/03/2013 22
## 2334 15/05/2002 22
## 2335 15/08/2001 22
## 2336 15/10/1997 22
## 2337 15/10/1999 22
## 2338 15/11/1999 22
## 2339 15/11/2000 22
## 2340 16/04/2010 22
## 2341 16/07/2004 22
## 2342 16/10/2002 22
## 2343 16/10/2006 22
## 2344 16/11/2001 22
## 2345 16/11/2011 22
## 2346 16/12/2003 22
## 2347 17/01/1997 22
## 2348 17/03/2003 22
## 2349 17/04/2013 22
## 2350 17/06/2011 22
## 2351 17/06/2013 22
## 2352 17/09/2001 22
## 2353 17/10/2001 22
## 2354 17/10/2013 22
## 2355 17/11/1998 22
## 2356 17/11/2005 22
## 2357 17/11/2010 22
## 2358 18/01/2000 22
## 2359 18/01/2001 22
## 2360 18/02/2010 22
## 2361 18/03/2004 22
## 2362 18/04/2006 22
## 2363 18/04/2008 22
## 2364 18/05/2000 22
## 2365 18/07/2007 22
## 2366 18/08/1998 22
## 2367 18/10/2001 22
## 2368 18/11/2004 22
## 2369 18/12/2001 22
## 2370 18/12/2013 22
## 2371 19/02/2008 22
## 2372 19/03/2004 22
## 2373 19/03/2007 22
## 2374 19/03/2014 22
## 2375 19/05/2008 22
## 2376 19/05/2011 22
## 2377 19/06/1997 22
## 2378 19/07/2010 22
## 2379 19/08/2002 22
## 2380 20/01/2000 22
## 2381 20/03/2001 22
## 2382 20/03/2003 22
## 2383 20/04/2011 22
## 2384 20/05/2010 22
## 2385 20/07/2006 22
## 2386 20/09/2004 22
## 2387 20/11/2003 22
## 2388 20/11/2013 22
## 2389 21/05/1997 22
## 2390 21/05/2003 22
## 2391 21/07/2010 22
## 2392 21/08/2000 22
## 2393 21/10/1999 22
## 2394 21/11/2000 22
## 2395 22/01/1998 22
## 2396 22/01/2002 22
## 2397 22/07/2010 22
## 2398 22/08/2005 22
## 2399 22/08/2013 22
## 2400 22/09/1998 22
## 2401 23/01/2002 22
## 2402 23/03/2004 22
## 2403 23/04/2013 22
## 2404 23/05/1997 22
## 2405 23/06/2009 22
## 2406 23/07/1998 22
## 2407 23/07/2013 22
## 2408 23/08/1999 22
## 2409 23/09/2009 22
## 2410 23/10/1996 22
## 2411 23/11/1998 22
## 2412 24/01/2003 22
## 2413 24/01/2008 22
## 2414 24/02/2011 22
## 2415 24/04/2007 22
## 2416 24/08/1999 22
## 2417 24/09/2002 22
## 2418 24/09/2010 22
## 2419 24/10/2003 22
## 2420 25/01/2002 22
## 2421 25/02/1997 22
## 2422 25/03/1997 22
## 2423 25/03/1999 22
## 2424 25/04/2000 22
## 2425 25/06/1998 22
## 2426 25/07/1997 22
## 2427 25/07/2002 22
## 2428 25/07/2012 22
## 2429 25/09/2007 22
## 2430 25/09/2012 22
## 2431 26/01/2009 22
## 2432 26/02/2004 22
## 2433 26/03/2003 22
## 2434 26/03/2013 22
## 2435 26/04/2001 22
## 2436 26/06/2012 22
## 2437 26/07/2012 22
## 2438 26/08/2005 22
## 2439 26/09/2008 22
## 2440 27/01/2005 22
## 2441 27/02/2006 22
## 2442 27/03/1997 22
## 2443 27/03/1998 22
## 2444 27/03/2003 22
## 2445 27/03/2012 22
## 2446 27/06/2001 22
## 2447 27/06/2005 22
## 2448 27/09/2011 22
## 2449 27/11/2007 22
## 2450 28/02/2007 22
## 2451 28/02/2011 22
## 2452 28/03/2001 22
## 2453 28/04/2005 22
## 2454 28/05/2009 22
## 2455 28/10/1998 22
## 2456 28/10/2010 22
## 2457 28/11/2001 22
## 2458 29/03/1996 22
## 2459 29/03/2011 22
## 2460 29/04/1997 22
## 2461 29/07/2004 22
## 2462 29/08/1997 22
## 2463 29/08/2007 22
## 2464 29/10/1998 22
## 2465 29/10/2008 22
## 2466 29/11/1999 22
## 2467 30/01/2001 22
## 2468 30/03/2001 22
## 2469 30/04/1997 22
## 2470 30/05/2012 22
## 2471 30/07/2003 22
## 2472 30/08/2007 22
## 2473 30/09/2002 22
## 2474 31/01/2005 22
## 2475 31/03/1997 22
## 2476 31/03/2006 22
## 2477 31/05/2005 22
## 2478 31/05/2006 22
## 2479 01/02/2005 21
## 2480 01/02/2008 21
## 2481 01/10/2000 21
## 2482 01/10/2012 21
## 2483 01/12/2000 21
## 2484 02/02/2001 21
## 2485 02/06/1999 21
## 2486 02/08/2000 21
## 2487 02/08/2011 21
## 2488 02/08/2012 21
## 2489 02/09/2004 21
## 2490 02/10/2002 21
## 2491 02/11/2001 21
## 2492 02/11/2009 21
## 2493 02/12/2011 21
## 2494 03/02/1999 21
## 2495 03/02/2005 21
## 2496 03/05/2013 21
## 2497 03/07/2012 21
## 2498 03/09/2003 21
## 2499 04/02/1996 21
## 2500 04/02/1998 21
## 2501 04/03/2005 21
## 2502 04/04/2008 21
## 2503 04/05/2001 21
## 2504 04/05/2010 21
## 2505 04/06/1998 21
## 2506 04/11/1999 21
## 2507 04/11/2002 21
## 2508 04/11/2011 21
## 2509 04/12/2006 21
## 2510 05/01/1999 21
## 2511 05/01/2000 21
## 2512 05/01/2006 21
## 2513 05/02/2002 21
## 2514 05/03/2003 21
## 2515 05/03/2004 21
## 2516 05/04/2000 21
## 2517 05/06/2013 21
## 2518 05/07/1996 21
## 2519 05/07/2006 21
## 2520 05/07/2011 21
## 2521 05/08/1996 21
## 2522 05/09/2013 21
## 2523 05/10/2000 21
## 2524 05/11/1999 21
## 2525 05/12/2006 21
## 2526 06/01/1997 21
## 2527 06/01/2003 21
## 2528 06/01/2014 21
## 2529 06/02/1997 21
## 2530 06/02/2003 21
## 2531 06/02/2008 21
## 2532 06/03/1997 21
## 2533 06/03/2009 21
## 2534 06/03/2012 21
## 2535 06/04/2004 21
## 2536 06/05/2004 21
## 2537 06/08/1998 21
## 2538 06/08/2008 21
## 2539 06/12/1996 21
## 2540 06/12/2010 21
## 2541 07/01/1997 21
## 2542 07/01/2008 21
## 2543 07/04/2006 21
## 2544 07/05/1999 21
## 2545 07/05/2013 21
## 2546 07/07/2005 21
## 2547 07/09/1999 21
## 2548 07/09/2001 21
## 2549 07/10/2011 21
## 2550 07/11/2007 21
## 2551 07/12/2012 21
## 2552 08/03/1996 21
## 2553 08/05/2008 21
## 2554 08/05/2009 21
## 2555 08/06/2012 21
## 2556 08/07/1998 21
## 2557 08/07/2008 21
## 2558 08/08/2008 21
## 2559 08/11/2001 21
## 2560 08/11/2010 21
## 2561 09/01/2006 21
## 2562 09/04/2002 21
## 2563 09/04/2013 21
## 2564 09/06/2004 21
## 2565 09/06/2009 21
## 2566 09/07/1998 21
## 2567 09/07/1999 21
## 2568 09/07/2003 21
## 2569 09/09/2005 21
## 2570 09/09/2010 21
## 2571 09/09/2011 21
## 2572 09/09/2013 21
## 2573 09/11/2007 21
## 2574 09/12/2008 21
## 2575 09/12/2013 21
## 2576 10/01/2001 21
## 2577 10/01/2014 21
## 2578 10/02/1999 21
## 2579 10/02/2011 21
## 2580 10/03/1999 21
## 2581 10/04/2001 21
## 2582 10/09/1998 21
## 2583 10/11/2003 21
## 2584 10/12/2002 21
## 2585 10/12/2008 21
## 2586 11/03/2014 21
## 2587 11/04/2005 21
## 2588 11/04/2008 21
## 2589 11/05/1999 21
## 2590 11/05/2005 21
## 2591 11/06/2003 21
## 2592 11/06/2012 21
## 2593 11/08/2009 21
## 2594 12/01/2012 21
## 2595 12/02/1999 21
## 2596 12/02/2003 21
## 2597 12/02/2009 21
## 2598 12/03/1998 21
## 2599 12/04/2002 21
## 2600 12/05/2000 21
## 2601 12/08/2011 21
## 2602 12/10/1998 21
## 2603 12/10/2001 21
## 2604 12/12/1997 21
## 2605 12/12/2006 21
## 2606 13/02/2002 21
## 2607 13/03/1996 21
## 2608 13/05/2010 21
## 2609 13/06/2013 21
## 2610 13/07/2011 21
## 2611 13/08/2007 21
## 2612 13/10/2003 21
## 2613 13/10/2008 21
## 2614 13/12/1999 21
## 2615 13/12/2001 21
## 2616 13/12/2002 21
## 2617 14/02/2008 21
## 2618 14/03/2003 21
## 2619 14/05/2013 21
## 2620 14/08/2007 21
## 2621 14/10/2008 21
## 2622 15/03/1999 21
## 2623 15/03/2011 21
## 2624 15/06/2009 21
## 2625 15/07/2010 21
## 2626 15/10/2009 21
## 2627 16/02/2010 21
## 2628 16/04/1999 21
## 2629 16/05/2011 21
## 2630 16/06/1997 21
## 2631 16/11/2012 21
## 2632 17/02/2009 21
## 2633 17/03/2000 21
## 2634 17/03/2009 21
## 2635 17/03/2010 21
## 2636 17/05/2013 21
## 2637 17/06/2002 21
## 2638 17/07/1997 21
## 2639 17/07/2012 21
## 2640 17/10/2007 21
## 2641 17/12/2008 21
## 2642 18/01/2007 21
## 2643 18/02/2000 21
## 2644 18/06/2004 21
## 2645 18/06/2012 21
## 2646 18/09/2000 21
## 2647 18/09/2009 21
## 2648 18/10/2010 21
## 2649 18/12/2007 21
## 2650 18/12/2012 21
## 2651 19/02/1998 21
## 2652 19/02/2013 21
## 2653 19/05/2000 21
## 2654 19/08/2009 21
## 2655 19/09/1996 21
## 2656 19/09/1997 21
## 2657 19/09/2013 21
## 2658 19/11/1996 21
## 2659 19/11/1999 21
## 2660 19/12/2005 21
## 2661 20/01/2011 21
## 2662 20/02/2008 21
## 2663 20/02/2014 21
## 2664 20/04/1998 21
## 2665 20/04/2007 21
## 2666 20/05/1999 21
## 2667 20/05/2002 21
## 2668 20/06/2002 21
## 2669 20/06/2008 21
## 2670 20/06/2011 21
## 2671 20/07/2011 21
## 2672 20/09/2012 21
## 2673 20/12/1999 21
## 2674 21/01/1999 21
## 2675 21/03/1997 21
## 2676 21/06/2011 21
## 2677 21/07/2003 21
## 2678 21/07/2008 21
## 2679 21/10/2003 21
## 2680 21/11/2013 21
## 2681 21/12/2005 21
## 2682 22/01/2013 21
## 2683 22/01/2014 21
## 2684 22/03/1999 21
## 2685 22/04/1999 21
## 2686 22/06/2007 21
## 2687 22/07/1999 21
## 2688 22/09/2008 21
## 2689 22/10/2008 21
## 2690 22/10/2009 21
## 2691 23/01/2004 21
## 2692 23/02/1999 21
## 2693 23/02/2001 21
## 2694 23/09/2011 21
## 2695 23/10/2003 21
## 2696 23/11/2009 21
## 2697 24/02/1999 21
## 2698 24/03/2000 21
## 2699 24/04/2013 21
## 2700 24/05/2000 21
## 2701 24/07/2002 21
## 2702 24/08/2010 21
## 2703 24/11/2003 21
## 2704 25/01/1999 21
## 2705 25/01/2008 21
## 2706 25/02/1999 21
## 2707 25/02/2002 21
## 2708 25/03/2010 21
## 2709 25/04/1997 21
## 2710 25/05/2006 21
## 2711 25/06/2010 21
## 2712 25/07/2008 21
## 2713 25/08/2010 21
## 2714 25/10/2007 21
## 2715 26/03/1997 21
## 2716 26/03/2009 21
## 2717 26/04/2000 21
## 2718 26/04/2010 21
## 2719 26/05/2004 21
## 2720 26/05/2005 21
## 2721 26/06/2009 21
## 2722 26/07/2007 21
## 2723 26/09/2003 21
## 2724 26/10/1999 21
## 2725 26/10/2009 21
## 2726 27/03/2006 21
## 2727 27/03/2008 21
## 2728 27/03/2013 21
## 2729 27/05/1999 21
## 2730 27/05/2005 21
## 2731 27/06/2013 21
## 2732 27/10/2005 21
## 2733 27/10/2011 21
## 2734 27/11/2002 21
## 2735 28/01/2003 21
## 2736 28/01/2005 21
## 2737 28/03/2011 21
## 2738 28/04/1998 21
## 2739 28/04/2008 21
## 2740 28/10/1999 21
## 2741 29/01/2014 21
## 2742 29/04/2008 21
## 2743 29/07/2002 21
## 2744 29/08/2002 21
## 2745 29/08/2013 21
## 2746 29/09/1998 21
## 2747 29/09/2011 21
## 2748 29/10/2009 21
## 2749 29/11/2011 21
## 2750 30/01/2008 21
## 2751 30/04/2008 21
## 2752 30/07/2002 21
## 2753 30/09/2008 21
## 2754 31/07/2002 21
## 2755 31/08/2007 21
## 2756 31/08/2009 21
## 2757 31/08/2010 21
## 2758 31/10/2003 21
## 2759 31/10/2005 21
## 2760 31/10/2013 21
## 2761 01/03/2010 20
## 2762 01/05/2012 20
## 2763 01/07/2004 20
## 2764 01/11/2011 20
## 2765 02/03/2004 20
## 2766 02/03/2009 20
## 2767 02/04/2013 20
## 2768 02/05/2000 20
## 2769 02/05/2001 20
## 2770 02/06/2004 20
## 2771 02/06/2005 20
## 2772 02/07/2000 20
## 2773 02/10/2006 20
## 2774 02/11/1998 20
## 2775 02/11/2005 20
## 2776 03/01/1997 20
## 2777 03/03/2010 20
## 2778 03/05/2007 20
## 2779 03/06/2013 20
## 2780 03/08/1995 20
## 2781 03/08/2010 20
## 2782 03/09/1999 20
## 2783 03/11/2005 20
## 2784 03/12/2007 20
## 2785 04/01/2011 20
## 2786 04/01/2013 20
## 2787 04/02/2008 20
## 2788 04/03/1999 20
## 2789 04/04/2002 20
## 2790 04/04/2007 20
## 2791 04/05/2009 20
## 2792 04/09/1996 20
## 2793 04/11/1998 20
## 2794 04/12/1996 20
## 2795 04/12/2002 20
## 2796 04/12/2012 20
## 2797 05/01/1998 20
## 2798 05/01/2009 20
## 2799 05/01/2011 20
## 2800 05/02/1997 20
## 2801 05/02/2001 20
## 2802 05/02/2007 20
## 2803 05/08/2010 20
## 2804 05/10/1998 20
## 2805 05/11/1996 20
## 2806 06/01/2006 20
## 2807 06/01/2011 20
## 2808 06/02/2004 20
## 2809 06/02/2007 20
## 2810 06/03/2001 20
## 2811 06/03/2006 20
## 2812 06/04/1996 20
## 2813 06/04/2000 20
## 2814 06/07/2011 20
## 2815 06/07/2012 20
## 2816 06/08/2013 20
## 2817 06/11/2002 20
## 2818 06/12/2012 20
## 2819 07/01/2003 20
## 2820 07/02/1997 20
## 2821 07/02/2002 20
## 2822 07/02/2006 20
## 2823 07/04/1998 20
## 2824 07/05/2010 20
## 2825 07/06/2004 20
## 2826 07/07/2011 20
## 2827 07/08/2001 20
## 2828 07/10/2003 20
## 2829 08/02/2007 20
## 2830 08/02/2012 20
## 2831 08/03/2012 20
## 2832 08/05/1998 20
## 2833 08/05/2002 20
## 2834 08/05/2003 20
## 2835 08/05/2006 20
## 2836 08/08/1997 20
## 2837 08/10/2002 20
## 2838 08/10/2003 20
## 2839 08/10/2008 20
## 2840 08/10/2009 20
## 2841 08/11/2004 20
## 2842 08/11/2005 20
## 2843 09/02/1996 20
## 2844 09/02/1998 20
## 2845 09/02/2010 20
## 2846 09/03/2001 20
## 2847 09/03/2005 20
## 2848 09/03/2010 20
## 2849 09/03/2011 20
## 2850 09/04/2008 20
## 2851 09/05/2001 20
## 2852 09/05/2003 20
## 2853 09/05/2007 20
## 2854 09/05/2008 20
## 2855 09/07/2009 20
## 2856 09/08/1999 20
## 2857 09/08/2006 20
## 2858 09/08/2011 20
## 2859 09/09/2009 20
## 2860 09/10/2006 20
## 2861 09/11/2000 20
## 2862 10/01/2007 20
## 2863 10/02/2000 20
## 2864 10/02/2003 20
## 2865 10/07/1998 20
## 2866 10/07/2001 20
## 2867 10/08/2011 20
## 2868 10/10/2011 20
## 2869 11/01/2013 20
## 2870 11/04/2000 20
## 2871 11/04/2012 20
## 2872 11/05/1998 20
## 2873 11/05/2010 20
## 2874 11/06/1999 20
## 2875 11/08/2006 20
## 2876 11/10/2004 20
## 2877 11/10/2012 20
## 2878 11/12/2001 20
## 2879 12/01/1996 20
## 2880 12/01/2007 20
## 2881 12/02/2010 20
## 2882 12/03/1999 20
## 2883 12/03/2003 20
## 2884 12/10/2009 20
## 2885 12/11/1998 20
## 2886 12/12/2000 20
## 2887 13/01/2005 20
## 2888 13/02/2013 20
## 2889 13/04/1996 20
## 2890 13/04/2005 20
## 2891 13/05/2003 20
## 2892 13/07/1999 20
## 2893 13/08/1998 20
## 2894 13/08/2004 20
## 2895 13/08/2010 20
## 2896 13/09/2001 20
## 2897 13/11/2003 20
## 2898 13/11/2006 20
## 2899 14/01/2005 20
## 2900 14/02/2000 20
## 2901 14/02/2013 20
## 2902 14/03/2012 20
## 2903 14/04/1996 20
## 2904 14/04/2004 20
## 2905 14/04/2010 20
## 2906 14/04/2011 20
## 2907 14/05/2012 20
## 2908 14/11/1997 20
## 2909 14/12/2009 20
## 2910 15/03/2004 20
## 2911 15/04/2004 20
## 2912 15/05/2008 20
## 2913 15/07/2002 20
## 2914 15/09/1998 20
## 2915 15/12/1998 20
## 2916 15/12/2000 20
## 2917 15/12/2011 20
## 2918 16/03/2005 20
## 2919 16/04/1997 20
## 2920 16/04/2004 20
## 2921 16/04/2009 20
## 2922 16/04/2013 20
## 2923 16/05/2003 20
## 2924 16/07/2009 20
## 2925 16/08/2012 20
## 2926 16/09/2011 20
## 2927 17/02/2006 20
## 2928 17/04/2008 20
## 2929 17/11/2008 20
## 2930 17/12/1996 20
## 2931 17/12/1999 20
## 2932 17/12/2003 20
## 2933 18/01/2011 20
## 2934 18/02/1997 20
## 2935 18/02/1999 20
## 2936 18/03/2009 20
## 2937 18/04/2005 20
## 2938 18/04/2007 20
## 2939 18/05/1996 20
## 2940 18/05/2001 20
## 2941 18/06/2003 20
## 2942 18/06/2013 20
## 2943 18/07/2008 20
## 2944 18/09/2002 20
## 2945 18/11/2005 20
## 2946 19/02/2009 20
## 2947 19/02/2014 20
## 2948 19/03/2001 20
## 2949 19/04/1999 20
## 2950 19/04/2012 20
## 2951 19/05/2006 20
## 2952 19/06/2012 20
## 2953 19/06/2013 20
## 2954 19/07/2004 20
## 2955 19/09/2012 20
## 2956 19/10/2011 20
## 2957 19/11/2004 20
## 2958 19/11/2013 20
## 2959 19/12/2007 20
## 2960 20/02/2004 20
## 2961 20/02/2007 20
## 2962 20/03/2006 20
## 2963 20/03/2008 20
## 2964 20/05/2011 20
## 2965 20/06/1997 20
## 2966 20/08/2009 20
## 2967 20/09/2002 20
## 2968 20/09/2011 20
## 2969 21/03/1996 20
## 2970 21/03/2006 20
## 2971 21/04/2004 20
## 2972 21/06/2007 20
## 2973 21/06/2010 20
## 2974 21/08/2002 20
## 2975 21/10/2004 20
## 2976 21/11/1996 20
## 2977 22/01/2010 20
## 2978 22/02/2007 20
## 2979 22/03/2002 20
## 2980 22/03/2012 20
## 2981 22/05/2003 20
## 2982 22/07/2009 20
## 2983 22/07/2013 20
## 2984 22/08/1995 20
## 2985 22/08/2003 20
## 2986 22/08/2006 20
## 2987 22/09/2009 20
## 2988 22/10/1998 20
## 2989 22/10/2002 20
## 2990 22/10/2007 20
## 2991 22/12/2004 20
## 2992 23/03/2011 20
## 2993 23/03/2012 20
## 2994 23/04/2008 20
## 2995 23/06/2005 20
## 2996 23/07/2012 20
## 2997 23/09/2013 20
## 2998 23/10/2002 20
## 2999 24/02/2000 20
## 3000 24/02/2003 20
## 3001 24/02/2004 20
## 3002 24/02/2012 20
## 3003 24/04/2008 20
## 3004 24/05/1999 20
## 3005 24/05/2010 20
## 3006 24/05/2011 20
## 3007 24/07/2009 20
## 3008 24/08/2007 20
## 3009 24/10/1996 20
## 3010 24/11/1997 20
## 3011 24/11/1999 20
## 3012 25/04/2002 20
## 3013 25/05/2012 20
## 3014 25/06/2004 20
## 3015 25/09/1998 20
## 3016 26/05/2011 20
## 3017 26/06/1998 20
## 3018 26/06/2007 20
## 3019 26/08/2002 20
## 3020 26/10/2011 20
## 3021 26/11/1996 20
## 3022 26/11/2002 20
## 3023 27/01/1997 20
## 3024 27/02/1997 20
## 3025 27/02/2002 20
## 3026 27/02/2008 20
## 3027 27/04/2011 20
## 3028 27/08/2013 20
## 3029 27/09/2002 20
## 3030 27/09/2007 20
## 3031 27/10/2003 20
## 3032 28/01/2008 20
## 3033 28/02/2001 20
## 3034 28/02/2005 20
## 3035 28/02/2006 20
## 3036 28/03/2000 20
## 3037 28/06/2005 20
## 3038 28/06/2007 20
## 3039 28/06/2012 20
## 3040 28/08/1998 20
## 3041 28/08/2009 20
## 3042 28/09/2007 20
## 3043 28/10/1996 20
## 3044 28/11/2005 20
## 3045 29/02/2000 20
## 3046 29/04/2009 20
## 3047 29/05/2003 20
## 3048 29/05/2013 20
## 3049 29/10/2007 20
## 3050 29/11/2010 20
## 3051 30/01/2014 20
## 3052 30/05/2006 20
## 3053 30/06/2000 20
## 3054 30/06/2003 20
## 3055 30/06/2011 20
## 3056 30/10/2007 20
## 3057 30/11/1998 20
## 3058 30/11/2004 20
## 3059 30/11/2010 20
## 3060 31/01/2011 20
## 3061 31/01/2012 20
## 3062 31/03/2003 20
## 3063 31/08/2000 20
## 3064 01/06/2012 19
## 3065 01/08/2003 19
## 3066 01/09/2000 19
## 3067 01/10/1998 19
## 3068 02/05/2013 19
## 3069 02/08/2004 19
## 3070 02/09/1998 19
## 3071 02/10/2000 19
## 3072 02/10/2013 19
## 3073 03/03/1999 19
## 3074 03/03/2000 19
## 3075 03/04/2013 19
## 3076 03/05/2010 19
## 3077 03/06/1999 19
## 3078 03/07/2001 19
## 3079 03/07/2007 19
## 3080 03/08/2011 19
## 3081 03/11/1999 19
## 3082 03/12/2003 19
## 3083 04/01/1996 19
## 3084 04/05/2000 19
## 3085 04/06/2002 19
## 3086 04/06/2010 19
## 3087 04/08/2005 19
## 3088 04/09/2001 19
## 3089 04/10/2011 19
## 3090 04/10/2012 19
## 3091 04/11/2004 19
## 3092 04/12/1998 19
## 3093 05/01/2001 19
## 3094 05/01/2004 19
## 3095 05/01/2005 19
## 3096 05/03/2009 19
## 3097 05/04/2006 19
## 3098 05/05/2005 19
## 3099 05/07/2000 19
## 3100 05/08/2011 19
## 3101 05/09/2001 19
## 3102 05/10/2001 19
## 3103 05/10/2012 19
## 3104 05/11/1998 19
## 3105 05/12/2007 19
## 3106 05/12/2008 19
## 3107 06/01/1999 19
## 3108 06/01/2004 19
## 3109 06/04/2010 19
## 3110 06/06/2007 19
## 3111 06/10/2008 19
## 3112 06/11/2001 19
## 3113 06/12/2001 19
## 3114 07/02/2003 19
## 3115 07/03/1997 19
## 3116 07/04/2008 19
## 3117 07/06/2011 19
## 3118 07/08/1998 19
## 3119 07/09/2007 19
## 3120 07/09/2012 19
## 3121 07/11/1997 19
## 3122 07/11/2002 19
## 3123 08/01/2009 19
## 3124 08/01/2013 19
## 3125 08/01/2014 19
## 3126 08/02/2002 19
## 3127 08/02/2010 19
## 3128 08/02/2011 19
## 3129 08/03/2010 19
## 3130 08/04/1999 19
## 3131 08/04/2008 19
## 3132 08/05/2013 19
## 3133 08/06/1999 19
## 3134 08/09/2000 19
## 3135 08/09/2009 19
## 3136 08/10/2004 19
## 3137 08/11/2006 19
## 3138 08/11/2012 19
## 3139 09/02/2005 19
## 3140 09/02/2007 19
## 3141 09/04/2009 19
## 3142 09/07/2002 19
## 3143 09/10/2007 19
## 3144 09/12/2004 19
## 3145 10/01/2002 19
## 3146 10/01/2005 19
## 3147 10/01/2012 19
## 3148 10/03/2000 19
## 3149 10/04/1997 19
## 3150 10/05/2002 19
## 3151 10/05/2006 19
## 3152 10/06/2011 19
## 3153 10/07/2008 19
## 3154 10/08/2009 19
## 3155 10/09/2009 19
## 3156 10/09/2010 19
## 3157 10/12/2003 19
## 3158 11/01/2007 19
## 3159 11/03/1996 19
## 3160 11/03/2005 19
## 3161 11/08/2011 19
## 3162 11/10/2011 19
## 3163 11/11/1997 19
## 3164 11/12/2002 19
## 3165 11/12/2012 19
## 3166 12/03/1996 19
## 3167 12/04/2011 19
## 3168 12/08/2009 19
## 3169 12/10/2007 19
## 3170 12/12/2001 19
## 3171 12/12/2008 19
## 3172 13/01/2003 19
## 3173 13/04/2007 19
## 3174 13/06/2008 19
## 3175 13/09/2002 19
## 3176 13/10/2006 19
## 3177 13/10/2009 19
## 3178 13/11/2007 19
## 3179 14/01/2013 19
## 3180 14/03/2005 19
## 3181 14/04/2003 19
## 3182 14/04/2008 19
## 3183 14/07/1998 19
## 3184 14/07/1999 19
## 3185 14/07/2010 19
## 3186 14/09/2012 19
## 3187 14/10/2002 19
## 3188 14/10/2010 19
## 3189 14/11/2006 19
## 3190 15/01/2009 19
## 3191 15/02/2007 19
## 3192 15/02/2011 19
## 3193 15/03/2010 19
## 3194 15/04/1999 19
## 3195 15/04/2003 19
## 3196 15/04/2010 19
## 3197 15/04/2011 19
## 3198 15/05/2007 19
## 3199 15/05/2012 19
## 3200 15/06/2001 19
## 3201 15/07/2004 19
## 3202 15/08/2003 19
## 3203 15/09/1999 19
## 3204 15/11/2002 19
## 3205 16/01/2009 19
## 3206 16/04/1998 19
## 3207 16/04/2001 19
## 3208 16/05/2001 19
## 3209 16/07/2008 19
## 3210 16/08/2013 19
## 3211 16/10/1998 19
## 3212 16/10/2013 19
## 3213 16/11/2009 19
## 3214 16/11/2010 19
## 3215 17/01/2002 19
## 3216 17/10/1996 19
## 3217 17/10/2006 19
## 3218 17/11/1999 19
## 3219 17/12/2001 19
## 3220 17/12/2012 19
## 3221 18/02/2014 19
## 3222 18/03/2011 19
## 3223 18/06/1999 19
## 3224 18/06/2007 19
## 3225 18/08/2006 19
## 3226 18/10/2005 19
## 3227 18/11/2009 19
## 3228 18/11/2013 19
## 3229 18/12/2006 19
## 3230 19/01/2001 19
## 3231 19/03/2002 19
## 3232 19/03/2003 19
## 3233 19/03/2010 19
## 3234 19/03/2012 19
## 3235 19/04/2007 19
## 3236 19/07/2007 19
## 3237 19/10/2000 19
## 3238 19/11/2007 19
## 3239 20/01/2006 19
## 3240 20/02/2006 19
## 3241 20/03/2014 19
## 3242 20/07/2012 19
## 3243 20/10/2006 19
## 3244 20/12/2007 19
## 3245 21/01/2005 19
## 3246 21/04/2011 19
## 3247 21/06/2002 19
## 3248 21/06/2013 19
## 3249 21/10/1998 19
## 3250 21/10/2002 19
## 3251 21/12/2004 19
## 3252 22/01/1996 19
## 3253 22/02/2002 19
## 3254 22/02/2012 19
## 3255 22/06/1998 19
## 3256 22/10/2013 19
## 3257 22/11/1996 19
## 3258 22/11/2010 19
## 3259 22/11/2013 19
## 3260 23/02/2009 19
## 3261 23/05/2003 19
## 3262 23/08/2013 19
## 3263 24/09/2013 19
## 3264 24/10/2005 19
## 3265 24/10/2012 19
## 3266 25/02/2000 19
## 3267 25/02/2003 19
## 3268 25/04/2003 19
## 3269 25/06/1999 19
## 3270 25/06/2009 19
## 3271 25/08/2011 19
## 3272 25/08/2012 19
## 3273 25/10/2006 19
## 3274 26/02/1999 19
## 3275 26/03/2012 19
## 3276 26/04/1999 19
## 3277 26/08/2003 19
## 3278 26/11/2007 19
## 3279 27/04/2000 19
## 3280 27/04/2006 19
## 3281 27/07/2006 19
## 3282 27/08/1999 19
## 3283 27/08/2009 19
## 3284 27/09/2004 19
## 3285 27/09/2013 19
## 3286 27/11/2013 19
## 3287 28/01/2014 19
## 3288 28/04/2000 19
## 3289 28/05/2013 19
## 3290 29/01/1999 19
## 3291 29/03/2001 19
## 3292 29/03/2004 19
## 3293 29/04/2013 19
## 3294 29/07/1998 19
## 3295 29/10/2004 19
## 3296 30/01/2007 19
## 3297 30/01/2009 19
## 3298 30/03/1998 19
## 3299 30/03/1999 19
## 3300 30/04/1999 19
## 3301 30/05/2007 19
## 3302 30/06/2006 19
## 3303 30/07/2013 19
## 3304 30/10/2003 19
## 3305 30/11/2001 19
## 3306 30/11/2011 19
## 3307 31/01/2006 19
## 3308 31/03/2000 19
## 3309 31/03/2011 19
## 3310 31/07/2013 19
## 3311 31/08/2001 19
## 3312 31/08/2006 19
## 3313 31/10/2011 19
## 3314 01/02/2007 18
## 3315 01/03/2002 18
## 3316 01/03/2011 18
## 3317 01/04/2009 18
## 3318 01/04/2011 18
## 3319 01/07/2013 18
## 3320 01/08/2012 18
## 3321 01/09/2010 18
## 3322 01/12/2003 18
## 3323 01/12/2008 18
## 3324 02/01/1998 18
## 3325 02/03/2005 18
## 3326 02/04/2007 18
## 3327 02/04/2012 18
## 3328 02/06/2010 18
## 3329 02/08/2013 18
## 3330 02/10/2008 18
## 3331 02/12/2003 18
## 3332 03/03/2006 18
## 3333 03/05/2003 18
## 3334 03/06/2004 18
## 3335 03/10/2011 18
## 3336 03/11/1995 18
## 3337 03/11/2009 18
## 3338 04/04/2000 18
## 3339 04/04/2013 18
## 3340 04/06/2012 18
## 3341 04/08/2011 18
## 3342 04/10/2010 18
## 3343 04/11/2003 18
## 3344 05/01/2012 18
## 3345 05/03/2010 18
## 3346 05/06/1995 18
## 3347 05/06/2003 18
## 3348 05/07/2007 18
## 3349 06/02/2009 18
## 3350 06/06/2012 18
## 3351 06/12/2002 18
## 3352 06/12/2004 18
## 3353 07/02/2007 18
## 3354 07/03/2007 18
## 3355 07/03/2011 18
## 3356 07/07/2008 18
## 3357 07/08/2007 18
## 3358 07/10/1999 18
## 3359 07/10/2005 18
## 3360 08/04/2009 18
## 3361 08/04/2010 18
## 3362 08/07/2005 18
## 3363 08/08/2007 18
## 3364 08/08/2012 18
## 3365 08/12/2006 18
## 3366 08/12/2008 18
## 3367 09/01/2014 18
## 3368 09/03/2000 18
## 3369 09/08/2002 18
## 3370 09/09/1999 18
## 3371 09/09/2008 18
## 3372 09/11/2006 18
## 3373 09/12/1999 18
## 3374 09/12/2005 18
## 3375 09/12/2010 18
## 3376 10/01/2013 18
## 3377 10/03/2005 18
## 3378 10/06/2005 18
## 3379 10/06/2009 18
## 3380 10/08/2010 18
## 3381 10/09/1999 18
## 3382 10/11/2008 18
## 3383 11/02/1998 18
## 3384 11/04/2011 18
## 3385 11/07/2011 18
## 3386 11/08/1998 18
## 3387 11/09/2001 18
## 3388 12/01/2010 18
## 3389 12/07/2012 18
## 3390 12/11/2004 18
## 3391 12/11/2009 18
## 3392 12/12/2012 18
## 3393 13/02/2007 18
## 3394 13/03/2001 18
## 3395 13/03/2013 18
## 3396 13/04/2011 18
## 3397 13/07/2004 18
## 3398 13/07/2007 18
## 3399 13/10/2000 18
## 3400 13/11/2009 18
## 3401 13/12/1997 18
## 3402 13/12/2010 18
## 3403 13/12/2011 18
## 3404 14/01/1997 18
## 3405 14/01/2010 18
## 3406 14/03/2011 18
## 3407 14/03/2013 18
## 3408 14/06/2002 18
## 3409 14/07/1997 18
## 3410 14/08/2013 18
## 3411 14/09/2004 18
## 3412 14/09/2007 18
## 3413 14/10/2011 18
## 3414 14/11/2001 18
## 3415 14/11/2013 18
## 3416 14/12/2006 18
## 3417 14/12/2012 18
## 3418 15/02/1999 18
## 3419 15/02/2012 18
## 3420 15/04/2002 18
## 3421 15/10/1998 18
## 3422 15/11/1996 18
## 3423 16/01/1997 18
## 3424 16/02/2003 18
## 3425 16/02/2007 18
## 3426 16/03/1999 18
## 3427 16/03/2004 18
## 3428 16/03/2006 18
## 3429 16/05/2012 18
## 3430 16/08/2002 18
## 3431 16/10/1996 18
## 3432 16/12/1998 18
## 3433 17/01/1996 18
## 3434 17/02/2011 18
## 3435 17/03/2005 18
## 3436 17/05/2000 18
## 3437 17/05/2012 18
## 3438 17/08/2001 18
## 3439 17/08/2007 18
## 3440 17/08/2012 18
## 3441 17/09/2004 18
## 3442 17/11/1997 18
## 3443 17/12/2007 18
## 3444 18/01/2002 18
## 3445 18/03/1996 18
## 3446 18/03/1999 18
## 3447 18/03/2008 18
## 3448 18/03/2010 18
## 3449 18/05/2010 18
## 3450 18/07/2013 18
## 3451 18/09/2003 18
## 3452 18/10/2011 18
## 3453 19/01/1999 18
## 3454 19/06/1998 18
## 3455 19/12/1996 18
## 3456 20/01/2010 18
## 3457 20/02/2002 18
## 3458 20/03/2009 18
## 3459 20/07/2001 18
## 3460 20/07/2007 18
## 3461 20/07/2009 18
## 3462 20/11/1998 18
## 3463 20/12/2012 18
## 3464 21/02/2001 18
## 3465 21/04/1997 18
## 3466 21/06/2000 18
## 3467 21/08/2012 18
## 3468 21/09/2007 18
## 3469 21/09/2010 18
## 3470 21/11/1997 18
## 3471 22/01/1999 18
## 3472 22/05/2007 18
## 3473 22/06/1996 18
## 3474 22/08/1997 18
## 3475 22/10/2003 18
## 3476 23/01/2012 18
## 3477 23/03/1999 18
## 3478 23/05/2005 18
## 3479 23/10/2012 18
## 3480 23/11/2004 18
## 3481 24/02/2010 18
## 3482 24/03/2008 18
## 3483 24/06/2003 18
## 3484 24/06/2005 18
## 3485 24/09/2009 18
## 3486 25/01/2012 18
## 3487 25/02/2009 18
## 3488 25/03/2013 18
## 3489 25/04/2012 18
## 3490 25/05/2010 18
## 3491 25/10/1999 18
## 3492 25/10/2012 18
## 3493 26/03/2004 18
## 3494 26/03/2014 18
## 3495 26/04/2011 18
## 3496 26/07/2006 18
## 3497 26/09/2002 18
## 3498 27/01/2014 18
## 3499 27/03/2009 18
## 3500 27/04/2010 18
## 3501 27/06/2011 18
## 3502 27/07/1992 18
## 3503 27/07/2009 18
## 3504 27/11/2000 18
## 3505 27/11/2012 18
## 3506 28/04/2004 18
## 3507 28/04/2006 18
## 3508 28/06/1996 18
## 3509 28/07/2006 18
## 3510 28/07/2011 18
## 3511 28/08/2003 18
## 3512 29/03/2012 18
## 3513 29/04/2004 18
## 3514 29/04/2005 18
## 3515 29/05/2007 18
## 3516 30/03/2009 18
## 3517 30/05/2001 18
## 3518 30/05/2003 18
## 3519 30/07/1999 18
## 3520 30/07/2010 18
## 3521 30/08/2013 18
## 3522 30/09/2005 18
## 3523 30/10/2001 18
## 3524 30/10/2002 18
## 3525 30/12/1996 18
## 3526 31/01/2001 18
## 3527 31/01/2002 18
## 3528 31/01/2010 18
## 3529 31/03/1999 18
## 3530 31/03/2008 18
## 3531 31/12/1997 18
## 3532 01/01/1998 17
## 3533 01/04/1999 17
## 3534 01/06/2007 17
## 3535 01/06/2010 17
## 3536 01/09/1996 17
## 3537 02/01/2007 17
## 3538 02/03/2010 17
## 3539 02/04/2009 17
## 3540 02/06/2013 17
## 3541 02/09/2011 17
## 3542 02/12/2005 17
## 3543 02/12/2013 17
## 3544 03/01/2011 17
## 3545 03/01/2012 17
## 3546 03/02/2012 17
## 3547 03/03/2003 17
## 3548 03/06/1998 17
## 3549 03/11/1998 17
## 3550 03/11/2006 17
## 3551 03/12/1999 17
## 3552 03/12/2001 17
## 3553 04/01/2008 17
## 3554 04/03/1996 17
## 3555 04/03/2013 17
## 3556 04/05/1997 17
## 3557 04/09/1998 17
## 3558 04/09/2003 17
## 3559 05/01/2007 17
## 3560 05/02/2004 17
## 3561 05/05/1999 17
## 3562 05/05/2004 17
## 3563 05/06/2007 17
## 3564 05/07/2012 17
## 3565 05/07/2013 17
## 3566 05/10/2010 17
## 3567 05/12/2012 17
## 3568 06/03/2007 17
## 3569 06/03/2014 17
## 3570 06/04/2001 17
## 3571 06/04/2011 17
## 3572 06/05/2006 17
## 3573 06/06/2000 17
## 3574 06/07/2007 17
## 3575 06/12/2007 17
## 3576 07/01/2005 17
## 3577 07/01/2013 17
## 3578 07/02/2011 17
## 3579 07/04/1999 17
## 3580 07/04/2005 17
## 3581 07/05/2004 17
## 3582 07/06/1996 17
## 3583 07/07/2003 17
## 3584 07/07/2006 17
## 3585 07/10/2004 17
## 3586 07/10/2008 17
## 3587 07/11/2006 17
## 3588 07/12/2001 17
## 3589 08/02/1999 17
## 3590 08/02/2013 17
## 3591 08/03/2002 17
## 3592 08/04/2011 17
## 3593 08/06/1998 17
## 3594 08/08/2003 17
## 3595 08/09/2008 17
## 3596 08/09/2010 17
## 3597 08/09/2011 17
## 3598 08/11/2002 17
## 3599 08/11/2007 17
## 3600 09/02/2011 17
## 3601 09/04/2007 17
## 3602 09/05/2002 17
## 3603 09/06/2006 17
## 3604 09/09/1998 17
## 3605 09/11/2011 17
## 3606 09/12/1997 17
## 3607 09/12/2002 17
## 3608 10/01/2003 17
## 3609 10/02/2009 17
## 3610 10/03/1997 17
## 3611 10/04/2008 17
## 3612 10/05/2011 17
## 3613 10/05/2012 17
## 3614 10/07/2009 17
## 3615 10/08/1996 17
## 3616 10/08/1998 17
## 3617 10/09/2012 17
## 3618 10/11/2011 17
## 3619 10/12/1998 17
## 3620 10/12/2013 17
## 3621 11/01/2010 17
## 3622 11/02/2009 17
## 3623 11/04/1997 17
## 3624 11/04/2003 17
## 3625 11/06/2009 17
## 3626 11/09/2013 17
## 3627 11/10/2002 17
## 3628 12/01/2004 17
## 3629 12/02/1996 17
## 3630 12/03/2009 17
## 3631 12/04/2001 17
## 3632 12/07/2002 17
## 3633 12/10/1999 17
## 3634 12/11/2008 17
## 3635 12/12/2011 17
## 3636 12/12/2013 17
## 3637 13/01/2012 17
## 3638 13/02/1996 17
## 3639 13/02/2012 17
## 3640 13/03/2002 17
## 3641 13/03/2003 17
## 3642 13/05/2011 17
## 3643 13/09/2013 17
## 3644 14/01/2009 17
## 3645 14/02/1997 17
## 3646 14/03/2014 17
## 3647 14/05/2004 17
## 3648 14/06/2004 17
## 3649 14/10/2005 17
## 3650 14/12/2007 17
## 3651 15/05/1998 17
## 3652 16/01/2003 17
## 3653 16/03/2007 17
## 3654 16/08/1997 17
## 3655 16/09/1999 17
## 3656 16/09/2010 17
## 3657 16/10/2003 17
## 3658 17/01/2003 17
## 3659 17/02/2012 17
## 3660 17/09/2012 17
## 3661 18/01/2013 17
## 3662 18/03/2002 17
## 3663 18/03/2003 17
## 3664 18/05/1999 17
## 3665 18/05/2007 17
## 3666 18/09/2007 17
## 3667 18/10/2002 17
## 3668 19/03/1996 17
## 3669 19/04/2013 17
## 3670 19/10/1999 17
## 3671 19/10/2001 17
## 3672 19/10/2006 17
## 3673 19/10/2012 17
## 3674 19/11/1998 17
## 3675 20/01/2002 17
## 3676 20/05/2013 17
## 3677 20/06/2005 17
## 3678 20/10/2011 17
## 3679 20/11/2008 17
## 3680 20/12/2005 17
## 3681 20/12/2006 17
## 3682 20/12/2011 17
## 3683 21/02/2013 17
## 3684 21/03/2003 17
## 3685 21/03/2013 17
## 3686 21/07/2011 17
## 3687 21/10/2005 17
## 3688 21/11/2008 17
## 3689 21/12/1996 17
## 3690 21/12/1998 17
## 3691 21/12/2000 17
## 3692 22/03/2001 17
## 3693 22/07/2011 17
## 3694 22/08/2012 17
## 3695 22/12/1999 17
## 3696 23/01/1996 17
## 3697 23/01/2014 17
## 3698 23/02/2007 17
## 3699 23/03/2001 17
## 3700 23/08/1995 17
## 3701 23/08/2006 17
## 3702 23/08/2012 17
## 3703 23/10/1998 17
## 3704 24/01/2014 17
## 3705 24/03/2009 17
## 3706 24/05/2002 17
## 3707 24/05/2012 17
## 3708 24/10/2008 17
## 3709 25/01/2010 17
## 3710 25/05/2001 17
## 3711 25/05/2004 17
## 3712 25/05/2007 17
## 3713 25/07/2004 17
## 3714 25/08/1999 17
## 3715 25/09/2008 17
## 3716 25/10/1996 17
## 3717 25/11/1997 17
## 3718 26/01/2001 17
## 3719 26/06/2003 17
## 3720 26/07/2011 17
## 3721 26/07/2013 17
## 3722 26/09/1999 17
## 3723 26/10/2004 17
## 3724 27/02/1996 17
## 3725 27/02/2012 17
## 3726 27/04/2007 17
## 3727 27/05/2010 17
## 3728 27/07/2007 17
## 3729 27/07/2010 17
## 3730 27/10/2000 17
## 3731 27/12/2000 17
## 3732 28/01/2010 17
## 3733 28/03/2002 17
## 3734 28/03/2013 17
## 3735 28/04/2011 17
## 3736 28/05/2003 17
## 3737 28/07/2009 17
## 3738 28/08/2002 17
## 3739 28/09/2001 17
## 3740 28/10/1997 17
## 3741 28/10/2008 17
## 3742 28/10/2009 17
## 3743 28/11/2011 17
## 3744 29/02/2008 17
## 3745 29/03/2010 17
## 3746 29/05/2008 17
## 3747 29/05/2012 17
## 3748 29/07/2005 17
## 3749 29/07/2013 17
## 3750 29/08/2008 17
## 3751 29/10/2002 17
## 3752 29/10/2013 17
## 3753 30/06/1998 17
## 3754 30/06/2008 17
## 3755 30/06/2009 17
## 3756 30/07/1997 17
## 3757 30/07/2004 17
## 3758 30/08/2012 17
## 3759 30/09/2013 17
## 3760 30/11/2012 17
## 3761 31/01/2008 17
## 3762 31/05/2013 17
## 3763 31/10/2002 17
## 3764 31/12/1996 17
## 3765 01/01/2005 16
## 3766 01/02/1996 16
## 3767 01/03/1996 16
## 3768 01/05/1998 16
## 3769 01/10/2013 16
## 3770 01/11/2013 16
## 3771 02/01/2009 16
## 3772 02/07/2009 16
## 3773 02/10/2003 16
## 3774 02/12/2010 16
## 3775 03/01/2002 16
## 3776 03/03/2005 16
## 3777 03/04/2003 16
## 3778 03/05/2011 16
## 3779 03/06/2011 16
## 3780 03/07/2008 16
## 3781 03/08/2012 16
## 3782 03/09/2009 16
## 3783 03/10/1999 16
## 3784 03/10/2008 16
## 3785 03/11/2004 16
## 3786 03/11/2008 16
## 3787 03/11/2010 16
## 3788 03/12/1996 16
## 3789 03/12/2010 16
## 3790 04/12/1997 16
## 3791 05/02/1999 16
## 3792 05/02/2010 16
## 3793 05/04/1999 16
## 3794 05/04/2012 16
## 3795 05/09/1997 16
## 3796 05/10/2007 16
## 3797 06/01/2010 16
## 3798 06/02/2012 16
## 3799 06/04/1999 16
## 3800 06/08/2010 16
## 3801 06/10/1996 16
## 3802 06/10/2006 16
## 3803 06/11/1998 16
## 3804 06/11/2013 16
## 3805 07/01/2000 16
## 3806 07/01/2014 16
## 3807 07/03/1996 16
## 3808 07/07/2009 16
## 3809 07/08/2009 16
## 3810 07/09/2006 16
## 3811 07/09/2011 16
## 3812 07/11/2003 16
## 3813 08/01/2010 16
## 3814 08/06/2001 16
## 3815 08/07/2011 16
## 3816 08/08/1998 16
## 3817 08/12/2010 16
## 3818 09/01/2007 16
## 3819 09/04/2012 16
## 3820 09/06/1995 16
## 3821 09/07/2010 16
## 3822 10/08/2007 16
## 3823 10/10/2003 16
## 3824 10/11/1998 16
## 3825 10/11/2005 16
## 3826 10/12/2007 16
## 3827 11/02/2004 16
## 3828 11/02/2005 16
## 3829 11/02/2010 16
## 3830 11/03/2003 16
## 3831 11/05/1996 16
## 3832 11/05/2012 16
## 3833 11/06/2007 16
## 3834 11/09/2009 16
## 3835 11/10/2001 16
## 3836 11/11/1998 16
## 3837 11/12/2000 16
## 3838 12/01/2005 16
## 3839 12/03/2010 16
## 3840 12/11/2001 16
## 3841 12/12/2003 16
## 3842 13/01/2009 16
## 3843 13/05/2002 16
## 3844 13/08/2012 16
## 3845 13/11/1998 16
## 3846 13/11/2001 16
## 3847 13/11/2013 16
## 3848 13/12/2013 16
## 3849 14/02/2002 16
## 3850 14/03/2007 16
## 3851 14/04/2000 16
## 3852 14/07/1996 16
## 3853 14/08/1998 16
## 3854 14/09/1996 16
## 3855 14/10/1999 16
## 3856 14/11/1996 16
## 3857 14/11/2002 16
## 3858 14/11/2003 16
## 3859 15/01/2014 16
## 3860 15/04/2008 16
## 3861 15/05/2009 16
## 3862 15/06/2011 16
## 3863 15/09/2006 16
## 3864 15/09/2008 16
## 3865 15/10/2012 16
## 3866 16/01/2013 16
## 3867 16/02/2001 16
## 3868 16/03/2001 16
## 3869 16/04/2012 16
## 3870 16/09/2008 16
## 3871 16/10/1997 16
## 3872 16/10/2001 16
## 3873 16/12/2013 16
## 3874 17/01/2007 16
## 3875 17/01/2012 16
## 3876 17/05/2004 16
## 3877 17/07/2009 16
## 3878 17/08/1995 16
## 3879 17/09/2013 16
## 3880 17/10/2011 16
## 3881 17/11/2009 16
## 3882 17/12/2009 16
## 3883 17/12/2010 16
## 3884 18/01/2008 16
## 3885 18/05/2009 16
## 3886 18/07/2011 16
## 3887 18/08/2009 16
## 3888 18/10/2006 16
## 3889 19/01/1996 16
## 3890 19/01/2011 16
## 3891 19/03/1998 16
## 3892 19/04/1998 16
## 3893 19/04/2002 16
## 3894 19/08/2006 16
## 3895 19/09/2006 16
## 3896 19/09/2008 16
## 3897 19/09/2011 16
## 3898 19/10/1998 16
## 3899 19/10/2007 16
## 3900 19/12/2001 16
## 3901 19/12/2006 16
## 3902 19/12/2011 16
## 3903 20/02/2003 16
## 3904 20/03/1996 16
## 3905 20/04/2012 16
## 3906 20/08/2008 16
## 3907 20/10/1998 16
## 3908 20/10/2000 16
## 3909 20/11/2006 16
## 3910 20/12/1996 16
## 3911 20/12/2000 16
## 3912 20/12/2001 16
## 3913 21/01/2004 16
## 3914 21/01/2011 16
## 3915 21/01/2014 16
## 3916 21/05/2007 16
## 3917 21/06/2012 16
## 3918 21/07/1994 16
## 3919 21/07/1996 16
## 3920 21/07/2000 16
## 3921 21/10/2009 16
## 3922 21/12/2010 16
## 3923 22/02/1996 16
## 3924 22/02/2001 16
## 3925 22/03/2010 16
## 3926 22/04/1998 16
## 3927 22/05/2001 16
## 3928 22/10/2004 16
## 3929 23/01/2009 16
## 3930 23/02/2010 16
## 3931 23/04/1998 16
## 3932 23/04/2010 16
## 3933 23/07/2009 16
## 3934 23/09/2008 16
## 3935 23/10/2008 16
## 3936 23/11/2005 16
## 3937 24/01/2007 16
## 3938 24/02/2006 16
## 3939 24/06/1991 16
## 3940 24/06/2010 16
## 3941 24/07/1995 16
## 3942 24/08/1996 16
## 3943 24/10/2011 16
## 3944 24/11/2004 16
## 3945 25/03/2011 16
## 3946 25/04/2011 16
## 3947 25/05/2000 16
## 3948 25/08/2006 16
## 3949 25/09/2009 16
## 3950 25/11/2008 16
## 3951 26/02/2007 16
## 3952 26/04/2013 16
## 3953 26/05/2000 16
## 3954 26/05/2006 16
## 3955 26/06/2001 16
## 3956 26/06/2013 16
## 3957 26/08/1998 16
## 3958 26/09/2001 16
## 3959 26/10/2006 16
## 3960 26/10/2007 16
## 3961 27/05/2008 16
## 3962 27/07/1993 16
## 3963 27/07/2001 16
## 3964 27/08/2002 16
## 3965 27/09/2010 16
## 3966 27/10/1998 16
## 3967 27/10/2009 16
## 3968 28/03/2014 16
## 3969 28/05/2004 16
## 3970 28/10/2013 16
## 3971 28/12/2010 16
## 3972 29/01/2013 16
## 3973 29/04/1999 16
## 3974 29/04/2010 16
## 3975 29/06/2001 16
## 3976 29/06/2005 16
## 3977 29/07/2008 16
## 3978 29/07/2011 16
## 3979 29/10/2003 16
## 3980 30/03/2007 16
## 3981 30/03/2012 16
## 3982 30/05/1997 16
## 3983 30/09/2011 16
## 3984 30/10/1997 16
## 3985 30/10/2012 16
## 3986 31/01/2007 16
## 3987 31/08/1998 16
## 3988 31/08/2005 16
## 3989 01/01/2000 15
## 3990 01/01/2001 15
## 3991 01/02/1997 15
## 3992 01/02/2013 15
## 3993 01/07/2011 15
## 3994 01/09/2011 15
## 3995 02/02/1997 15
## 3996 02/03/2001 15
## 3997 02/05/2008 15
## 3998 02/05/2012 15
## 3999 02/07/2002 15
## 4000 02/07/2003 15
## 4001 02/08/1991 15
## 4002 02/08/2002 15
## 4003 02/12/2008 15
## 4004 03/01/2007 15
## 4005 03/02/2014 15
## 4006 03/03/2011 15
## 4007 03/03/2012 15
## 4008 03/05/1998 15
## 4009 03/07/2003 15
## 4010 03/08/2001 15
## 4011 03/10/1997 15
## 4012 03/11/2000 15
## 4013 03/12/2009 15
## 4014 04/01/2010 15
## 4015 04/08/2007 15
## 4016 04/11/2005 15
## 4017 05/01/2010 15
## 4018 05/02/2014 15
## 4019 05/03/2012 15
## 4020 05/05/1996 15
## 4021 05/11/2004 15
## 4022 05/12/2002 15
## 4023 06/04/1997 15
## 4024 06/09/2002 15
## 4025 06/11/2006 15
## 4026 06/11/2007 15
## 4027 06/12/2011 15
## 4028 06/12/2013 15
## 4029 07/03/2008 15
## 4030 07/07/2002 15
## 4031 07/08/2003 15
## 4032 08/03/2004 15
## 4033 08/04/2003 15
## 4034 08/09/1996 15
## 4035 08/10/1999 15
## 4036 09/03/2007 15
## 4037 09/06/2011 15
## 4038 09/10/1998 15
## 4039 10/01/1996 15
## 4040 10/02/2012 15
## 4041 10/08/1994 15
## 4042 10/10/2008 15
## 4043 10/12/1997 15
## 4044 10/12/1999 15
## 4045 10/12/2004 15
## 4046 11/02/2000 15
## 4047 11/03/2009 15
## 4048 11/07/1998 15
## 4049 12/02/2007 15
## 4050 12/08/2000 15
## 4051 12/09/2008 15
## 4052 12/09/2013 15
## 4053 12/10/1995 15
## 4054 12/12/2005 15
## 4055 13/04/2012 15
## 4056 13/07/1996 15
## 4057 13/10/2005 15
## 4058 14/02/2003 15
## 4059 14/02/2007 15
## 4060 14/03/1996 15
## 4061 14/03/2008 15
## 4062 14/05/2010 15
## 4063 14/08/2009 15
## 4064 14/10/1998 15
## 4065 14/12/2001 15
## 4066 15/02/2008 15
## 4067 15/03/2002 15
## 4068 15/07/2005 15
## 4069 15/09/2009 15
## 4070 15/10/2000 15
## 4071 16/01/1996 15
## 4072 16/01/2002 15
## 4073 16/02/1998 15
## 4074 16/07/2012 15
## 4075 16/11/2000 15
## 4076 16/12/2011 15
## 4077 17/02/2014 15
## 4078 17/05/2011 15
## 4079 17/07/1990 15
## 4080 17/08/2011 15
## 4081 17/12/1998 15
## 4082 17/12/2002 15
## 4083 18/02/2005 15
## 4084 18/02/2011 15
## 4085 18/07/1991 15
## 4086 18/08/1993 15
## 4087 18/09/1995 15
## 4088 18/09/1998 15
## 4089 18/12/2003 15
## 4090 18/12/2009 15
## 4091 19/03/1999 15
## 4092 19/05/1999 15
## 4093 19/06/2009 15
## 4094 19/08/2011 15
## 4095 19/08/2013 15
## 4096 19/11/2009 15
## 4097 19/11/2010 15
## 4098 19/12/2000 15
## 4099 20/02/2009 15
## 4100 20/04/1996 15
## 4101 20/07/1996 15
## 4102 20/09/2003 15
## 4103 21/02/2005 15
## 4104 21/02/2012 15
## 4105 21/03/2002 15
## 4106 21/04/1996 15
## 4107 21/05/2004 15
## 4108 21/06/1994 15
## 4109 21/09/2004 15
## 4110 21/09/2006 15
## 4111 21/12/2001 15
## 4112 22/02/2010 15
## 4113 22/06/1997 15
## 4114 22/09/2000 15
## 4115 22/11/2002 15
## 4116 22/12/2009 15
## 4117 22/12/2010 15
## 4118 23/01/2008 15
## 4119 23/03/2010 15
## 4120 23/05/2008 15
## 4121 23/06/2011 15
## 4122 23/10/2006 15
## 4123 23/12/2004 15
## 4124 24/01/1998 15
## 4125 24/02/1992 15
## 4126 24/02/2005 15
## 4127 24/06/2006 15
## 4128 24/08/2012 15
## 4129 24/09/2012 15
## 4130 24/10/1995 15
## 4131 24/11/2008 15
## 4132 24/11/2009 15
## 4133 25/05/1998 15
## 4134 25/07/1995 15
## 4135 25/09/1990 15
## 4136 26/01/2010 15
## 4137 26/08/2010 15
## 4138 26/08/2011 15
## 4139 26/10/2005 15
## 4140 27/01/1999 15
## 4141 27/02/2004 15
## 4142 27/04/1999 15
## 4143 27/04/2001 15
## 4144 27/05/1996 15
## 4145 27/07/1998 15
## 4146 27/08/1990 15
## 4147 27/10/2007 15
## 4148 28/04/2014 15
## 4149 28/08/2008 15
## 4150 28/10/2005 15
## 4151 28/11/2012 15
## 4152 29/01/2008 15
## 4153 29/01/2009 15
## 4154 29/05/1998 15
## 4155 29/05/2009 15
## 4156 29/06/2012 15
## 4157 29/09/2000 15
## 4158 29/09/2006 15
## 4159 29/10/1999 15
## 4160 29/10/2010 15
## 4161 29/12/2003 15
## 4162 29/12/2005 15
## 4163 29/12/2010 15
## 4164 30/01/2010 15
## 4165 30/08/2010 15
## 4166 30/11/2007 15
## 4167 30/12/2002 15
## 4168 31/01/2013 15
## 4169 31/05/2012 15
## 4170 31/07/2009 15
## 4171 01/03/2013 14
## 4172 01/12/1996 14
## 4173 02/01/1999 14
## 4174 02/01/2003 14
## 4175 02/03/2007 14
## 4176 02/03/2012 14
## 4177 02/06/2001 14
## 4178 02/11/2012 14
## 4179 03/05/2012 14
## 4180 03/06/1991 14
## 4181 03/07/2013 14
## 4182 03/09/2008 14
## 4183 03/12/2002 14
## 4184 04/05/1999 14
## 4185 05/03/1996 14
## 4186 05/04/2013 14
## 4187 05/06/2009 14
## 4188 05/09/2003 14
## 4189 05/09/2008 14
## 4190 06/05/2011 14
## 4191 07/03/2001 14
## 4192 07/03/2003 14
## 4193 07/04/2014 14
## 4194 07/05/2009 14
## 4195 07/06/2007 14
## 4196 07/07/1996 14
## 4197 07/11/1995 14
## 4198 07/12/2006 14
## 4199 07/12/2010 14
## 4200 08/04/2005 14
## 4201 08/10/2010 14
## 4202 08/12/1998 14
## 4203 09/03/2009 14
## 4204 09/07/2004 14
## 4205 09/11/2010 14
## 4206 10/02/2008 14
## 4207 10/03/2011 14
## 4208 10/04/2005 14
## 4209 10/05/2013 14
## 4210 10/08/2001 14
## 4211 10/11/2010 14
## 4212 11/06/2011 14
## 4213 11/09/2011 14
## 4214 11/10/2007 14
## 4215 11/12/2003 14
## 4216 12/01/1997 14
## 4217 12/03/2008 14
## 4218 12/03/2014 14
## 4219 12/04/2012 14
## 4220 13/03/2012 14
## 4221 13/04/1998 14
## 4222 13/07/2012 14
## 4223 13/10/2011 14
## 4224 14/02/1996 14
## 4225 14/07/1993 14
## 4226 14/09/1992 14
## 4227 14/11/2005 14
## 4228 15/03/1996 14
## 4229 15/04/2005 14
## 4230 15/11/1997 14
## 4231 15/11/2010 14
## 4232 15/11/2012 14
## 4233 15/12/2006 14
## 4234 15/12/2010 14
## 4235 16/01/2014 14
## 4236 16/03/2010 14
## 4237 16/03/2011 14
## 4238 16/05/2008 14
## 4239 16/06/1999 14
## 4240 16/07/1990 14
## 4241 17/01/2014 14
## 4242 17/09/2005 14
## 4243 17/11/1996 14
## 4244 18/01/1996 14
## 4245 18/06/1990 14
## 4246 18/09/2013 14
## 4247 18/11/2008 14
## 4248 19/01/2012 14
## 4249 19/02/2007 14
## 4250 19/08/2005 14
## 4251 19/10/1995 14
## 4252 19/12/2012 14
## 4253 20/04/2001 14
## 4254 20/07/1993 14
## 4255 20/08/2010 14
## 4256 20/09/1991 14
## 4257 20/09/1995 14
## 4258 20/10/2009 14
## 4259 20/11/2007 14
## 4260 21/02/1996 14
## 4261 21/02/1998 14
## 4262 21/03/1998 14
## 4263 21/03/2011 14
## 4264 21/04/1999 14
## 4265 21/04/2008 14
## 4266 21/05/2010 14
## 4267 21/06/2008 14
## 4268 21/07/2009 14
## 4269 21/09/2012 14
## 4270 21/11/2001 14
## 4271 21/11/2002 14
## 4272 21/11/2006 14
## 4273 22/01/2009 14
## 4274 22/03/1996 14
## 4275 22/03/2007 14
## 4276 22/04/2005 14
## 4277 22/05/2009 14
## 4278 22/08/1994 14
## 4279 22/09/2011 14
## 4280 22/10/2012 14
## 4281 22/11/2005 14
## 4282 22/11/2011 14
## 4283 23/04/2009 14
## 4284 23/06/1994 14
## 4285 23/06/2000 14
## 4286 23/07/2006 14
## 4287 23/08/1991 14
## 4288 23/09/2002 14
## 4289 23/10/1995 14
## 4290 23/10/2009 14
## 4291 24/01/1996 14
## 4292 24/03/2010 14
## 4293 24/04/2009 14
## 4294 24/06/1998 14
## 4295 24/06/2011 14
## 4296 24/07/1998 14
## 4297 24/08/1993 14
## 4298 25/02/2013 14
## 4299 25/03/2009 14
## 4300 25/08/1995 14
## 4301 25/08/2000 14
## 4302 26/03/1999 14
## 4303 26/11/2008 14
## 4304 26/11/2013 14
## 4305 27/07/2012 14
## 4306 27/08/2010 14
## 4307 27/11/1996 14
## 4308 27/12/1996 14
## 4309 28/01/2009 14
## 4310 28/03/2008 14
## 4311 28/04/1996 14
## 4312 28/07/1995 14
## 4313 28/10/2011 14
## 4314 28/11/2007 14
## 4315 29/01/1996 14
## 4316 29/01/2000 14
## 4317 29/03/1997 14
## 4318 29/11/2012 14
## 4319 29/12/2011 14
## 4320 30/03/2010 14
## 4321 30/04/2013 14
## 4322 30/07/2007 14
## 4323 30/11/2006 14
## 4324 30/12/1998 14
## 4325 30/12/2010 14
## 4326 31/10/2006 14
## 4327 01/01/2011 13
## 4328 01/02/2003 13
## 4329 01/05/2005 13
## 4330 01/06/1996 13
## 4331 01/07/2001 13
## 4332 01/09/1995 13
## 4333 01/11/2010 13
## 4334 02/01/1996 13
## 4335 02/01/2013 13
## 4336 02/06/1996 13
## 4337 02/07/2010 13
## 4338 02/08/1995 13
## 4339 03/02/2009 13
## 4340 03/02/2013 13
## 4341 03/03/2014 13
## 4342 03/08/1996 13
## 4343 03/10/2009 13
## 4344 03/12/1998 13
## 4345 04/04/2012 13
## 4346 04/07/1996 13
## 4347 04/12/2013 13
## 4348 05/03/2014 13
## 4349 05/12/2003 13
## 4350 06/01/2012 13
## 4351 06/08/2002 13
## 4352 06/11/2009 13
## 4353 07/06/1997 13
## 4354 07/09/2010 13
## 4355 07/11/2013 13
## 4356 08/03/1998 13
## 4357 08/07/2006 13
## 4358 08/12/2003 13
## 4359 08/12/2009 13
## 4360 09/04/1998 13
## 4361 09/06/1996 13
## 4362 09/07/2011 13
## 4363 09/08/1994 13
## 4364 09/09/1991 13
## 4365 09/11/2001 13
## 4366 09/11/2012 13
## 4367 10/03/2014 13
## 4368 10/08/1993 13
## 4369 10/11/2002 13
## 4370 10/12/2010 13
## 4371 11/01/2012 13
## 4372 11/02/2011 13
## 4373 11/05/2001 13
## 4374 11/08/2013 13
## 4375 11/09/2004 13
## 4376 11/11/1999 13
## 4377 11/11/2008 13
## 4378 12/03/2004 13
## 4379 12/04/1997 13
## 4380 12/06/1995 13
## 4381 12/06/2013 13
## 4382 12/07/1995 13
## 4383 13/02/2014 13
## 4384 13/03/2009 13
## 4385 13/07/1990 13
## 4386 13/07/2001 13
## 4387 13/09/2010 13
## 4388 14/01/2000 13
## 4389 14/07/2009 13
## 4390 15/03/1998 13
## 4391 15/07/1991 13
## 4392 15/07/2006 13
## 4393 15/08/2008 13
## 4394 15/10/2002 13
## 4395 16/01/2008 13
## 4396 16/05/1995 13
## 4397 16/06/1994 13
## 4398 16/09/2009 13
## 4399 17/01/2008 13
## 4400 17/03/2008 13
## 4401 17/06/2005 13
## 4402 17/09/2010 13
## 4403 17/10/2008 13
## 4404 17/11/2006 13
## 4405 18/03/1993 13
## 4406 18/04/2013 13
## 4407 18/05/2012 13
## 4408 18/06/2010 13
## 4409 18/08/1996 13
## 4410 18/08/2007 13
## 4411 18/12/1998 13
## 4412 19/01/1998 13
## 4413 19/02/1996 13
## 4414 19/02/2010 13
## 4415 19/04/2011 13
## 4416 19/05/2002 13
## 4417 19/07/2002 13
## 4418 19/09/1995 13
## 4419 19/12/2003 13
## 4420 20/04/2010 13
## 4421 20/08/2005 13
## 4422 20/11/2009 13
## 4423 21/02/2014 13
## 4424 21/03/2014 13
## 4425 21/11/2005 13
## 4426 22/01/2000 13
## 4427 22/03/1995 13
## 4428 22/06/1990 13
## 4429 22/06/2010 13
## 4430 22/06/2011 13
## 4431 22/06/2012 13
## 4432 22/07/2001 13
## 4433 22/08/2008 13
## 4434 22/09/1996 13
## 4435 22/11/2004 13
## 4436 22/11/2006 13
## 4437 22/12/2003 13
## 4438 23/01/2013 13
## 4439 23/02/1996 13
## 4440 23/05/1995 13
## 4441 23/12/1998 13
## 4442 23/12/1999 13
## 4443 24/01/2012 13
## 4444 24/03/2005 13
## 4445 24/04/1997 13
## 4446 24/04/1999 13
## 4447 24/07/1991 13
## 4448 24/07/2004 13
## 4449 24/07/2012 13
## 4450 24/08/2001 13
## 4451 24/11/2010 13
## 4452 25/01/2004 13
## 4453 25/02/2005 13
## 4454 25/02/2014 13
## 4455 25/07/2003 13
## 4456 25/10/2013 13
## 4457 26/01/1996 13
## 4458 26/01/2012 13
## 4459 26/02/2003 13
## 4460 26/02/2013 13
## 4461 26/05/1997 13
## 4462 26/10/2012 13
## 4463 27/02/1995 13
## 4464 27/02/1999 13
## 4465 27/06/2003 13
## 4466 27/09/2012 13
## 4467 27/12/2006 13
## 4468 28/02/1996 13
## 4469 28/02/1997 13
## 4470 28/05/1999 13
## 4471 28/05/2001 13
## 4472 28/06/2008 13
## 4473 28/09/1996 13
## 4474 28/12/1999 13
## 4475 28/12/2005 13
## 4476 29/01/2010 13
## 4477 29/02/2012 13
## 4478 29/04/2006 13
## 4479 29/04/2011 13
## 4480 29/06/2010 13
## 4481 29/08/2003 13
## 4482 29/11/2001 13
## 4483 29/11/2007 13
## 4484 29/12/2000 13
## 4485 30/03/2011 13
## 4486 30/06/2010 13
## 4487 31/01/1996 13
## 4488 31/07/1990 13
## 4489 31/12/2002 13
## 4490 01/01/2007 12
## 4491 01/03/2003 12
## 4492 01/11/2003 12
## 4493 02/04/2011 12
## 4494 02/05/2004 12
## 4495 02/05/2009 12
## 4496 02/06/2002 12
## 4497 02/09/2005 12
## 4498 03/01/2003 12
## 4499 03/02/1993 12
## 4500 03/04/2014 12
## 4501 03/09/2011 12
## 4502 03/11/1996 12
## 4503 03/12/2008 12
## 4504 04/02/2009 12
## 4505 04/05/2012 12
## 4506 04/06/1991 12
## 4507 04/08/2000 12
## 4508 04/09/2004 12
## 4509 04/10/2013 12
## 4510 04/12/2009 12
## 4511 05/03/2013 12
## 4512 05/04/2011 12
## 4513 05/05/2001 12
## 4514 05/09/1991 12
## 4515 05/10/1995 12
## 4516 05/10/1996 12
## 4517 05/10/1997 12
## 4518 06/01/2009 12
## 4519 06/03/1996 12
## 4520 06/06/1991 12
## 4521 06/06/2014 12
## 4522 06/07/1994 12
## 4523 06/09/1997 12
## 4524 06/09/2012 12
## 4525 06/10/1995 12
## 4526 06/11/2012 12
## 4527 07/01/2011 12
## 4528 07/06/2013 12
## 4529 07/11/2011 12
## 4530 07/12/1994 12
## 4531 07/12/2002 12
## 4532 07/12/2009 12
## 4533 07/12/2011 12
## 4534 08/06/1992 12
## 4535 08/06/2003 12
## 4536 09/03/2012 12
## 4537 09/04/2006 12
## 4538 09/04/2014 12
## 4539 09/05/2009 12
## 4540 09/07/1991 12
## 4541 09/10/1990 12
## 4542 09/10/1999 12
## 4543 09/12/2011 12
## 4544 10/01/2011 12
## 4545 10/03/2002 12
## 4546 10/03/2006 12
## 4547 10/04/1990 12
## 4548 10/04/2014 12
## 4549 10/07/1990 12
## 4550 10/09/1990 12
## 4551 11/03/2011 12
## 4552 11/05/1994 12
## 4553 11/08/1994 12
## 4554 11/09/1991 12
## 4555 11/09/1998 12
## 4556 11/11/1996 12
## 4557 11/11/2010 12
## 4558 12/02/2008 12
## 4559 12/05/1995 12
## 4560 12/05/1996 12
## 4561 13/01/1996 12
## 4562 13/01/2014 12
## 4563 13/03/2014 12
## 4564 13/12/1995 12
## 4565 14/04/2013 12
## 4566 14/05/1990 12
## 4567 14/05/2000 12
## 4568 14/08/2004 12
## 4569 14/12/2010 12
## 4570 15/01/1999 12
## 4571 15/05/2005 12
## 4572 15/06/1995 12
## 4573 15/06/2002 12
## 4574 15/09/1995 12
## 4575 15/11/1995 12
## 4576 15/12/2008 12
## 4577 16/02/1996 12
## 4578 16/03/1996 12
## 4579 16/03/2012 12
## 4580 16/04/2014 12
## 4581 16/06/1993 12
## 4582 16/07/1998 12
## 4583 17/02/2002 12
## 4584 17/03/1996 12
## 4585 17/04/2009 12
## 4586 17/08/1996 12
## 4587 18/01/1997 12
## 4588 18/01/2012 12
## 4589 18/09/2010 12
## 4590 18/11/2011 12
## 4591 19/01/2007 12
## 4592 19/02/2002 12
## 4593 19/07/2003 12
## 4594 19/12/1997 12
## 4595 19/12/2013 12
## 4596 20/01/2001 12
## 4597 20/01/2003 12
## 4598 20/03/2005 12
## 4599 20/07/1995 12
## 4600 20/10/1993 12
## 4601 20/11/2012 12
## 4602 20/12/2004 12
## 4603 20/12/2009 12
## 4604 21/03/1995 12
## 4605 21/04/2006 12
## 4606 21/04/2014 12
## 4607 21/07/2001 12
## 4608 21/08/2005 12
## 4609 21/10/2012 12
## 4610 21/11/2011 12
## 4611 21/12/1993 12
## 4612 21/12/1999 12
## 4613 22/04/2000 12
## 4614 22/04/2001 12
## 4615 22/04/2014 12
## 4616 22/08/1991 12
## 4617 22/09/1995 12
## 4618 22/11/2000 12
## 4619 22/12/1998 12
## 4620 22/12/2011 12
## 4621 23/01/2000 12
## 4622 23/05/1994 12
## 4623 23/05/2002 12
## 4624 23/06/2002 12
## 4625 23/12/1997 12
## 4626 24/01/2013 12
## 4627 24/03/2014 12
## 4628 24/04/1998 12
## 4629 24/07/2011 12
## 4630 24/09/2004 12
## 4631 24/11/1998 12
## 4632 25/01/1996 12
## 4633 25/01/1997 12
## 4634 25/02/2004 12
## 4635 25/08/2001 12
## 4636 25/11/2002 12
## 4637 26/01/2007 12
## 4638 26/02/1996 12
## 4639 26/02/2014 12
## 4640 26/05/2007 12
## 4641 26/06/1995 12
## 4642 26/10/1996 12
## 4643 27/01/2006 12
## 4644 27/01/2012 12
## 4645 27/02/1998 12
## 4646 27/02/2009 12
## 4647 27/02/2014 12
## 4648 27/04/1996 12
## 4649 27/10/2010 12
## 4650 28/02/2003 12
## 4651 28/03/1998 12
## 4652 28/04/1995 12
## 4653 28/06/2003 12
## 4654 28/07/1994 12
## 4655 28/11/2006 12
## 4656 28/12/2009 12
## 4657 29/02/1996 12
## 4658 29/06/2008 12
## 4659 29/11/2006 12
## 4660 30/01/2005 12
## 4661 30/06/2013 12
## 4662 30/07/2005 12
## 4663 30/10/1998 12
## 4664 30/12/1999 12
## 4665 31/10/2008 12
## 4666 31/10/2012 12
## 4667 31/12/2008 12
## 4668 01/01/1997 11
## 4669 01/01/2003 11
## 4670 01/08/1995 11
## 4671 01/09/1997 11
## 4672 01/09/2003 11
## 4673 01/11/2008 11
## 4674 01/12/2002 11
## 4675 02/11/2002 11
## 4676 02/11/2003 11
## 4677 02/11/2007 11
## 4678 03/06/2001 11
## 4679 03/09/2005 11
## 4680 03/10/1991 11
## 4681 03/10/2004 11
## 4682 03/10/2010 11
## 4683 04/02/2014 11
## 4684 04/05/1993 11
## 4685 04/05/1995 11
## 4686 04/05/1996 11
## 4687 04/05/2007 11
## 4688 04/07/2001 11
## 4689 05/04/2003 11
## 4690 05/07/1994 11
## 4691 05/07/1999 11
## 4692 05/09/1990 11
## 4693 05/10/2009 11
## 4694 06/01/2002 11
## 4695 06/02/2002 11
## 4696 06/02/2014 11
## 4697 06/03/2005 11
## 4698 06/06/2011 11
## 4699 06/09/1990 11
## 4700 07/01/2007 11
## 4701 07/02/2014 11
## 4702 07/03/2004 11
## 4703 07/03/2014 11
## 4704 07/04/2012 11
## 4705 07/08/1991 11
## 4706 07/12/1995 11
## 4707 08/03/1994 11
## 4708 08/03/2013 11
## 4709 08/04/2000 11
## 4710 08/04/2006 11
## 4711 08/05/1995 11
## 4712 08/06/1993 11
## 4713 08/07/1994 11
## 4714 08/09/2013 11
## 4715 09/01/2013 11
## 4716 09/04/2010 11
## 4717 09/10/2011 11
## 4718 09/11/2009 11
## 4719 10/02/1995 11
## 4720 10/05/1991 11
## 4721 10/09/2000 11
## 4722 10/10/1995 11
## 4723 10/12/2000 11
## 4724 11/02/1999 11
## 4725 11/03/1991 11
## 4726 11/04/1999 11
## 4727 11/05/1995 11
## 4728 11/06/2000 11
## 4729 11/07/1995 11
## 4730 11/11/2006 11
## 4731 11/12/2009 11
## 4732 12/02/2014 11
## 4733 12/10/1997 11
## 4734 13/02/2009 11
## 4735 13/04/1997 11
## 4736 13/06/1994 11
## 4737 13/11/1991 11
## 4738 13/11/1995 11
## 4739 14/03/1998 11
## 4740 14/03/1999 11
## 4741 14/04/2006 11
## 4742 15/02/1996 11
## 4743 15/03/1994 11
## 4744 15/03/2008 11
## 4745 15/05/1995 11
## 4746 15/06/2013 11
## 4747 15/08/1991 11
## 4748 15/08/2004 11
## 4749 15/09/1994 11
## 4750 16/02/1997 11
## 4751 16/03/2002 11
## 4752 16/08/1998 11
## 4753 16/11/2007 11
## 4754 17/02/2001 11
## 4755 17/04/2003 11
## 4756 17/05/1993 11
## 4757 17/05/1995 11
## 4758 17/05/1997 11
## 4759 17/05/1998 11
## 4760 17/06/2006 11
## 4761 17/08/1993 11
## 4762 17/10/1998 11
## 4763 17/12/2013 11
## 4764 18/04/2004 11
## 4765 18/07/1999 11
## 4766 18/11/2006 11
## 4767 19/01/2002 11
## 4768 19/01/2004 11
## 4769 19/02/1999 11
## 4770 19/02/2001 11
## 4771 19/04/2008 11
## 4772 19/05/2014 11
## 4773 19/06/1990 11
## 4774 19/06/1992 11
## 4775 19/06/1999 11
## 4776 19/07/1995 11
## 4777 19/08/2000 11
## 4778 19/09/1994 11
## 4779 19/11/2006 11
## 4780 20/03/1995 11
## 4781 20/04/1995 11
## 4782 20/09/1997 11
## 4783 20/11/2011 11
## 4784 20/12/2002 11
## 4785 21/01/2000 11
## 4786 21/04/2002 11
## 4787 21/05/2009 11
## 4788 21/06/2009 11
## 4789 21/09/1996 11
## 4790 21/11/2003 11
## 4791 21/11/2007 11
## 4792 21/12/2012 11
## 4793 22/02/1997 11
## 4794 22/02/2013 11
## 4795 22/07/1993 11
## 4796 22/07/2000 11
## 4797 22/12/2006 11
## 4798 22/12/2013 11
## 4799 23/03/1994 11
## 4800 23/05/1998 11
## 4801 23/06/1996 11
## 4802 23/07/2005 11
## 4803 23/09/2005 11
## 4804 23/10/2004 11
## 4805 23/11/2002 11
## 4806 23/11/2011 11
## 4807 23/12/1996 11
## 4808 23/12/2000 11
## 4809 23/12/2001 11
## 4810 24/05/2013 11
## 4811 24/06/1994 11
## 4812 24/06/2007 11
## 4813 25/03/2014 11
## 4814 25/05/1996 11
## 4815 25/06/2006 11
## 4816 25/08/1994 11
## 4817 25/09/1999 11
## 4818 25/10/2010 11
## 4819 25/11/2009 11
## 4820 26/02/2010 11
## 4821 26/05/2003 11
## 4822 26/05/2012 11
## 4823 26/07/1998 11
## 4824 26/08/1991 11
## 4825 26/09/1994 11
## 4826 26/09/1995 11
## 4827 27/02/2000 11
## 4828 27/05/2011 11
## 4829 27/06/1991 11
## 4830 27/07/1996 11
## 4831 27/09/1990 11
## 4832 27/11/1995 11
## 4833 28/03/2004 11
## 4834 28/03/2009 11
## 4835 28/05/2006 11
## 4836 28/05/2010 11
## 4837 28/06/1998 11
## 4838 28/09/2013 11
## 4839 28/12/2001 11
## 4840 29/01/2005 11
## 4841 29/03/1993 11
## 4842 29/05/1999 11
## 4843 29/05/2006 11
## 4844 29/07/1993 11
## 4845 29/09/2007 11
## 4846 29/11/2009 11
## 4847 29/12/1996 11
## 4848 29/12/2004 11
## 4849 30/01/1996 11
## 4850 30/04/2009 11
## 4851 30/04/2010 11
## 4852 30/08/1997 11
## 4853 30/08/1998 11
## 4854 30/08/2002 11
## 4855 30/12/2003 11
## 4856 31/05/1995 11
## 4857 31/08/1994 11
## 4858 31/08/2004 11
## 4859 31/08/2012 11
## 4860 31/12/2003 11
## 4861 01/01/2009 10
## 4862 01/02/1995 10
## 4863 01/03/1990 10
## 4864 01/03/2009 10
## 4865 01/04/2001 10
## 4866 01/04/2014 10
## 4867 01/05/2004 10
## 4868 01/05/2009 10
## 4869 01/06/1994 10
## 4870 01/06/2002 10
## 4871 01/06/2003 10
## 4872 01/08/1998 10
## 4873 01/08/1999 10
## 4874 01/10/2006 10
## 4875 01/10/2011 10
## 4876 01/11/1995 10
## 4877 01/11/1998 10
## 4878 01/12/2007 10
## 4879 02/01/2010 10
## 4880 02/02/2013 10
## 4881 02/03/1997 10
## 4882 02/05/1990 10
## 4883 02/06/2011 10
## 4884 02/07/1993 10
## 4885 02/07/2006 10
## 4886 02/09/1996 10
## 4887 02/09/2006 10
## 4888 02/10/2004 10
## 4889 02/11/1995 10
## 4890 03/01/2014 10
## 4891 03/05/2002 10
## 4892 03/05/2008 10
## 4893 03/09/2000 10
## 4894 03/09/2007 10
## 4895 03/10/1990 10
## 4896 03/12/1993 10
## 4897 04/02/2011 10
## 4898 04/03/2011 10
## 4899 04/04/1994 10
## 4900 04/04/1998 10
## 4901 04/04/2009 10
## 4902 04/06/2000 10
## 4903 04/07/2009 10
## 4904 04/08/1995 10
## 4905 04/08/2013 10
## 4906 04/09/1991 10
## 4907 04/10/1995 10
## 4908 04/11/1993 10
## 4909 05/04/1997 10
## 4910 05/06/1990 10
## 4911 05/06/2011 10
## 4912 05/07/1995 10
## 4913 05/07/1998 10
## 4914 05/07/2002 10
## 4915 05/08/2001 10
## 4916 05/10/2002 10
## 4917 05/11/2001 10
## 4918 06/02/2005 10
## 4919 06/03/2004 10
## 4920 06/06/1990 10
## 4921 06/07/1996 10
## 4922 06/08/1991 10
## 4923 06/08/2006 10
## 4924 07/02/1995 10
## 4925 07/04/1996 10
## 4926 07/06/1993 10
## 4927 07/06/1994 10
## 4928 07/09/1993 10
## 4929 07/11/1994 10
## 4930 08/02/2008 10
## 4931 08/03/1997 10
## 4932 08/03/2003 10
## 4933 08/04/1991 10
## 4934 08/06/2002 10
## 4935 08/09/1995 10
## 4936 08/10/2005 10
## 4937 08/11/2013 10
## 4938 09/01/1991 10
## 4939 09/02/1997 10
## 4940 09/03/1999 10
## 4941 09/04/1991 10
## 4942 09/05/1998 10
## 4943 09/07/1993 10
## 4944 09/09/2012 10
## 4945 10/02/2014 10
## 4946 10/04/1999 10
## 4947 10/04/2009 10
## 4948 10/05/1995 10
## 4949 10/05/1997 10
## 4950 10/05/2003 10
## 4951 10/06/2000 10
## 4952 11/04/2014 10
## 4953 11/06/1993 10
## 4954 11/06/2006 10
## 4955 11/07/1990 10
## 4956 11/07/1994 10
## 4957 11/09/2010 10
## 4958 11/10/1994 10
## 4959 11/11/2009 10
## 4960 11/11/2013 10
## 4961 11/12/1995 10
## 4962 11/12/2013 10
## 4963 12/01/2002 10
## 4964 12/06/1991 10
## 4965 12/07/1990 10
## 4966 12/07/1993 10
## 4967 12/09/2009 10
## 4968 12/10/1994 10
## 4969 12/11/2010 10
## 4970 12/11/2012 10
## 4971 12/12/1995 10
## 4972 13/02/2010 10
## 4973 13/04/2009 10
## 4974 13/05/2000 10
## 4975 13/06/1990 10
## 4976 13/07/1992 10
## 4977 13/09/1997 10
## 4978 14/02/2010 10
## 4979 14/04/2014 10
## 4980 14/05/1991 10
## 4981 14/06/1994 10
## 4982 14/06/1997 10
## 4983 14/06/2003 10
## 4984 14/08/1990 10
## 4985 14/09/1997 10
## 4986 14/09/2008 10
## 4987 14/11/2008 10
## 4988 15/01/2000 10
## 4989 15/01/2007 10
## 4990 15/01/2008 10
## 4991 15/02/1991 10
## 4992 15/02/1998 10
## 4993 15/03/2014 10
## 4994 15/04/1993 10
## 4995 15/05/2010 10
## 4996 15/06/1996 10
## 4997 15/08/2009 10
## 4998 15/09/2001 10
## 4999 15/12/1996 10
## 5000 16/01/2010 10
## 5001 16/02/2013 10
## 5002 16/09/2006 10
## 5003 16/11/2013 10
## 5004 17/02/2013 10
## 5005 17/03/2012 10
## 5006 17/03/2014 10
## 5007 17/04/1999 10
## 5008 17/05/1991 10
## 5009 17/06/2001 10
## 5010 17/11/2013 10
## 5011 18/01/1999 10
## 5012 18/02/2001 10
## 5013 18/03/2001 10
## 5014 18/03/2014 10
## 5015 18/04/1998 10
## 5016 18/04/2011 10
## 5017 18/07/1994 10
## 5018 18/07/2004 10
## 5019 18/08/2001 10
## 5020 18/08/2002 10
## 5021 18/12/1999 10
## 5022 19/04/1997 10
## 5023 19/05/2007 10
## 5024 19/07/2013 10
## 5025 19/08/1992 10
## 5026 19/10/1996 10
## 5027 19/12/2002 10
## 5028 19/12/2008 10
## 5029 20/04/1994 10
## 5030 20/04/2002 10
## 5031 20/06/2004 10
## 5032 20/09/2013 10
## 5033 20/10/2007 10
## 5034 20/11/2004 10
## 5035 20/11/2010 10
## 5036 21/01/2003 10
## 5037 21/02/1999 10
## 5038 21/05/2006 10
## 5039 21/06/2003 10
## 5040 21/07/1992 10
## 5041 21/08/1990 10
## 5042 21/08/2010 10
## 5043 21/09/2003 10
## 5044 21/10/2001 10
## 5045 21/10/2011 10
## 5046 21/12/2006 10
## 5047 21/12/2011 10
## 5048 22/02/2008 10
## 5049 22/02/2011 10
## 5050 22/03/2011 10
## 5051 22/05/2004 10
## 5052 22/05/2014 10
## 5053 22/07/1991 10
## 5054 22/10/1992 10
## 5055 22/10/1999 10
## 5056 22/10/2010 10
## 5057 23/02/2008 10
## 5058 23/03/1997 10
## 5059 23/06/2012 10
## 5060 23/07/1990 10
## 5061 23/07/1991 10
## 5062 23/08/2002 10
## 5063 23/12/2003 10
## 5064 24/03/2011 10
## 5065 24/04/2014 10
## 5066 24/05/2008 10
## 5067 24/11/2012 10
## 5068 25/05/1995 10
## 5069 25/05/2003 10
## 5070 25/09/1995 10
## 5071 25/10/1997 10
## 5072 25/10/2004 10
## 5073 25/11/2000 10
## 5074 26/01/1999 10
## 5075 26/02/2012 10
## 5076 26/06/2011 10
## 5077 26/07/1990 10
## 5078 26/07/1991 10
## 5079 26/08/2012 10
## 5080 26/11/1997 10
## 5081 26/11/2003 10
## 5082 27/01/2001 10
## 5083 27/03/1990 10
## 5084 27/03/2014 10
## 5085 27/04/2013 10
## 5086 27/06/1995 10
## 5087 27/07/1997 10
## 5088 27/09/1995 10
## 5089 27/09/1997 10
## 5090 27/10/1995 10
## 5091 27/10/1996 10
## 5092 27/12/2007 10
## 5093 28/01/2011 10
## 5094 28/02/2004 10
## 5095 28/03/2003 10
## 5096 28/04/2001 10
## 5097 28/05/1991 10
## 5098 28/05/2012 10
## 5099 28/08/2010 10
## 5100 28/11/2004 10
## 5101 28/12/2011 10
## 5102 28/12/2013 10
## 5103 29/01/2003 10
## 5104 29/06/1993 10
## 5105 29/06/1995 10
## 5106 29/07/2006 10
## 5107 29/08/1995 10
## 5108 29/08/2011 10
## 5109 29/11/1995 10
## 5110 29/11/1997 10
## 5111 30/01/2000 10
## 5112 30/04/1992 10
## 5113 30/05/2004 10
## 5114 30/06/2001 10
## 5115 30/07/1992 10
## 5116 30/09/1991 10
## 5117 30/10/1995 10
## 5118 30/10/2009 10
## 5119 30/11/1997 10
## 5120 30/12/2005 10
## 5121 30/12/2013 10
## 5122 31/01/1992 10
## 5123 31/03/1992 10
## 5124 31/03/1996 10
## 5125 31/03/2014 10
## 5126 31/08/1992 10
## 5127 31/08/2002 10
## 5128 31/12/2004 10
## 5129 31/12/2005 10
## 5130 31/12/2009 10
## 5131 01/01/2002 9
## 5132 01/01/2013 9
## 5133 01/02/2009 9
## 5134 01/04/2000 9
## 5135 01/06/1992 9
## 5136 01/06/1993 9
## 5137 01/06/1997 9
## 5138 01/06/2013 9
## 5139 01/07/1992 9
## 5140 01/08/1991 9
## 5141 02/03/2013 9
## 5142 02/04/2014 9
## 5143 02/05/1998 9
## 5144 02/06/1994 9
## 5145 02/06/1995 9
## 5146 02/08/1997 9
## 5147 02/09/2001 9
## 5148 02/10/1995 9
## 5149 02/10/2009 9
## 5150 02/11/1994 9
## 5151 03/01/1996 9
## 5152 03/02/1996 9
## 5153 03/03/1992 9
## 5154 03/04/1991 9
## 5155 03/07/1991 9
## 5156 03/08/1993 9
## 5157 03/09/1991 9
## 5158 03/12/2013 9
## 5159 04/01/1994 9
## 5160 04/02/1993 9
## 5161 04/02/1994 9
## 5162 04/04/1995 9
## 5163 04/05/1990 9
## 5164 04/05/2008 9
## 5165 04/07/2013 9
## 5166 04/08/1993 9
## 5167 04/08/1996 9
## 5168 04/09/2010 9
## 5169 04/10/1997 9
## 5170 05/04/1994 9
## 5171 05/05/2014 9
## 5172 05/08/2000 9
## 5173 05/09/2005 9
## 5174 05/10/1990 9
## 5175 05/10/2008 9
## 5176 05/10/2013 9
## 5177 06/01/1996 9
## 5178 06/01/2001 9
## 5179 06/01/2007 9
## 5180 06/04/1995 9
## 5181 06/04/2007 9
## 5182 06/04/2012 9
## 5183 06/04/2013 9
## 5184 06/08/1990 9
## 5185 06/09/1999 9
## 5186 06/09/2008 9
## 5187 06/11/2003 9
## 5188 06/12/2003 9
## 5189 07/02/2010 9
## 5190 07/03/1995 9
## 5191 07/03/1999 9
## 5192 07/05/1990 9
## 5193 07/06/1995 9
## 5194 07/06/2008 9
## 5195 07/07/1992 9
## 5196 07/07/1993 9
## 5197 07/08/2005 9
## 5198 07/08/2011 9
## 5199 07/10/1993 9
## 5200 07/10/2009 9
## 5201 07/10/2012 9
## 5202 08/01/2005 9
## 5203 08/03/1991 9
## 5204 08/04/2001 9
## 5205 08/04/2014 9
## 5206 08/05/2004 9
## 5207 08/05/2014 9
## 5208 08/06/1996 9
## 5209 08/06/1997 9
## 5210 08/08/2009 9
## 5211 08/09/1992 9
## 5212 08/09/1993 9
## 5213 08/11/1997 9
## 5214 08/12/2013 9
## 5215 09/01/1995 9
## 5216 09/01/2009 9
## 5217 09/02/1994 9
## 5218 09/03/1992 9
## 5219 09/04/2005 9
## 5220 09/05/2010 9
## 5221 09/10/1995 9
## 5222 09/10/2010 9
## 5223 09/12/2000 9
## 5224 10/03/2012 9
## 5225 10/04/2010 9
## 5226 10/06/1993 9
## 5227 10/06/1994 9
## 5228 10/07/1992 9
## 5229 10/07/2011 9
## 5230 10/10/1990 9
## 5231 10/11/2013 9
## 5232 11/01/2004 9
## 5233 11/02/1991 9
## 5234 11/02/2014 9
## 5235 11/04/1994 9
## 5236 11/04/1995 9
## 5237 11/05/1992 9
## 5238 11/05/1993 9
## 5239 11/05/1997 9
## 5240 11/06/1991 9
## 5241 11/07/1991 9
## 5242 11/07/1999 9
## 5243 11/08/1995 9
## 5244 11/10/2008 9
## 5245 11/11/2003 9
## 5246 12/02/1991 9
## 5247 12/02/2005 9
## 5248 12/05/2001 9
## 5249 12/05/2014 9
## 5250 12/07/1997 9
## 5251 12/09/1995 9
## 5252 12/10/2008 9
## 5253 13/01/2002 9
## 5254 13/04/2001 9
## 5255 13/05/2001 9
## 5256 13/07/1995 9
## 5257 13/07/1997 9
## 5258 13/07/2013 9
## 5259 13/08/2005 9
## 5260 13/08/2006 9
## 5261 13/10/2012 9
## 5262 14/01/1991 9
## 5263 14/01/1992 9
## 5264 14/04/2007 9
## 5265 14/05/1992 9
## 5266 14/06/1995 9
## 5267 14/08/2010 9
## 5268 14/09/1995 9
## 5269 14/10/2006 9
## 5270 14/11/2004 9
## 5271 14/12/1995 9
## 5272 15/01/2006 9
## 5273 15/02/1997 9
## 5274 15/03/1995 9
## 5275 15/04/2013 9
## 5276 15/06/1992 9
## 5277 15/06/2008 9
## 5278 15/09/2002 9
## 5279 15/09/2012 9
## 5280 15/10/1990 9
## 5281 15/12/2001 9
## 5282 16/01/2000 9
## 5283 16/01/2004 9
## 5284 16/04/2005 9
## 5285 16/07/2006 9
## 5286 16/07/2011 9
## 5287 16/09/1993 9
## 5288 16/09/2000 9
## 5289 16/10/1995 9
## 5290 16/10/2009 9
## 5291 16/11/1996 9
## 5292 16/12/1992 9
## 5293 17/01/2000 9
## 5294 17/04/2004 9
## 5295 17/06/1994 9
## 5296 17/06/2000 9
## 5297 17/07/1991 9
## 5298 17/07/1995 9
## 5299 17/07/2004 9
## 5300 17/09/1990 9
## 5301 17/09/2011 9
## 5302 18/02/2007 9
## 5303 18/04/1995 9
## 5304 18/04/2010 9
## 5305 18/05/1995 9
## 5306 18/05/2013 9
## 5307 18/08/1992 9
## 5308 18/09/2005 9
## 5309 18/10/2013 9
## 5310 19/02/2005 9
## 5311 19/02/2011 9
## 5312 19/04/1995 9
## 5313 19/05/1992 9
## 5314 19/05/1996 9
## 5315 19/07/1991 9
## 5316 19/08/1993 9
## 5317 19/08/1994 9
## 5318 19/09/1999 9
## 5319 19/10/2013 9
## 5320 19/11/2000 9
## 5321 19/11/2012 9
## 5322 19/12/1999 9
## 5323 19/12/2009 9
## 5324 20/01/2012 9
## 5325 20/01/2013 9
## 5326 20/03/1990 9
## 5327 20/05/2014 9
## 5328 20/06/1995 9
## 5329 20/07/1994 9
## 5330 20/09/2008 9
## 5331 20/11/1991 9
## 5332 20/12/1993 9
## 5333 20/12/2010 9
## 5334 20/12/2013 9
## 5335 21/01/2006 9
## 5336 21/02/1994 9
## 5337 21/02/2003 9
## 5338 21/04/1994 9
## 5339 21/04/1995 9
## 5340 21/05/2005 9
## 5341 21/06/1990 9
## 5342 21/06/1997 9
## 5343 21/08/1995 9
## 5344 21/08/2004 9
## 5345 21/09/1994 9
## 5346 21/10/1994 9
## 5347 21/10/2000 9
## 5348 21/11/1994 9
## 5349 21/11/2012 9
## 5350 21/12/1997 9
## 5351 22/01/2005 9
## 5352 22/03/1994 9
## 5353 22/06/2002 9
## 5354 22/08/1990 9
## 5355 22/08/2004 9
## 5356 22/09/2002 9
## 5357 22/09/2012 9
## 5358 22/10/1993 9
## 5359 22/11/1997 9
## 5360 23/01/2005 9
## 5361 23/02/1993 9
## 5362 23/04/2011 9
## 5363 23/05/2004 9
## 5364 23/06/2001 9
## 5365 23/07/2011 9
## 5366 23/08/2009 9
## 5367 23/09/1991 9
## 5368 23/12/2009 9
## 5369 24/02/2013 9
## 5370 24/03/1996 9
## 5371 24/04/1990 9
## 5372 24/04/1995 9
## 5373 24/05/1994 9
## 5374 24/05/1998 9
## 5375 24/06/1993 9
## 5376 24/06/2014 9
## 5377 24/07/2005 9
## 5378 24/08/1992 9
## 5379 24/08/1995 9
## 5380 24/09/1990 9
## 5381 24/09/1992 9
## 5382 24/10/1991 9
## 5383 24/10/1998 9
## 5384 24/10/1999 9
## 5385 25/04/1994 9
## 5386 25/04/2004 9
## 5387 25/04/2010 9
## 5388 25/06/1992 9
## 5389 25/07/1998 9
## 5390 25/08/1996 9
## 5391 25/11/2003 9
## 5392 25/11/2013 9
## 5393 25/12/1996 9
## 5394 26/01/1997 9
## 5395 26/01/2013 9
## 5396 26/03/2010 9
## 5397 26/04/1994 9
## 5398 26/04/2009 9
## 5399 26/06/2010 9
## 5400 26/07/2008 9
## 5401 26/08/1992 9
## 5402 26/08/1993 9
## 5403 26/08/2000 9
## 5404 26/09/1990 9
## 5405 26/09/2004 9
## 5406 26/10/1997 9
## 5407 26/11/2000 9
## 5408 26/12/1997 9
## 5409 27/04/2003 9
## 5410 27/05/2002 9
## 5411 27/08/1993 9
## 5412 27/12/1994 9
## 5413 27/12/2004 9
## 5414 28/02/1999 9
## 5415 28/03/1995 9
## 5416 28/06/1997 9
## 5417 28/08/1995 9
## 5418 28/10/2000 9
## 5419 28/10/2001 9
## 5420 28/11/1995 9
## 5421 28/12/1998 9
## 5422 28/12/2000 9
## 5423 28/12/2012 9
## 5424 29/02/2004 9
## 5425 29/03/1995 9
## 5426 29/03/2003 9
## 5427 29/04/2014 9
## 5428 29/06/1992 9
## 5429 29/08/1998 9
## 5430 29/12/2009 9
## 5431 30/01/1999 9
## 5432 30/03/1994 9
## 5433 30/03/1997 9
## 5434 30/04/2005 9
## 5435 30/05/1999 9
## 5436 30/06/1994 9
## 5437 30/06/1995 9
## 5438 30/08/1990 9
## 5439 30/08/1994 9
## 5440 30/08/2008 9
## 5441 30/09/1993 9
## 5442 30/11/1996 9
## 5443 30/12/2004 9
## 5444 31/01/1998 9
## 5445 31/10/1991 9
## 5446 31/12/1998 9
## 5447 31/12/2001 9
## 5448 01/01/1996 8
## 5449 01/01/2006 8
## 5450 01/03/1997 8
## 5451 01/04/1993 8
## 5452 01/04/2012 8
## 5453 01/05/1995 8
## 5454 01/05/1999 8
## 5455 01/06/1990 8
## 5456 01/06/2008 8
## 5457 01/07/1994 8
## 5458 01/07/2000 8
## 5459 01/07/2007 8
## 5460 01/09/1992 8
## 5461 01/09/1994 8
## 5462 01/09/2001 8
## 5463 01/09/2013 8
## 5464 01/10/1991 8
## 5465 01/11/1997 8
## 5466 01/11/2009 8
## 5467 02/01/2005 8
## 5468 02/01/2006 8
## 5469 02/02/2003 8
## 5470 02/03/1995 8
## 5471 02/03/2008 8
## 5472 02/04/1990 8
## 5473 02/04/2005 8
## 5474 02/05/1999 8
## 5475 02/06/1993 8
## 5476 02/09/1992 8
## 5477 02/09/1993 8
## 5478 02/09/2013 8
## 5479 02/10/1990 8
## 5480 02/11/2008 8
## 5481 02/12/1993 8
## 5482 02/12/2000 8
## 5483 02/12/2006 8
## 5484 03/01/1994 8
## 5485 03/02/1994 8
## 5486 03/02/2008 8
## 5487 03/02/2011 8
## 5488 03/04/1995 8
## 5489 03/04/2010 8
## 5490 03/05/1990 8
## 5491 03/05/1993 8
## 5492 03/05/1995 8
## 5493 03/05/1997 8
## 5494 03/06/1993 8
## 5495 03/06/2012 8
## 5496 03/07/1990 8
## 5497 03/07/1998 8
## 5498 03/08/1990 8
## 5499 03/08/1994 8
## 5500 03/11/2013 8
## 5501 03/12/2000 8
## 5502 04/02/2007 8
## 5503 04/04/2014 8
## 5504 04/07/1998 8
## 5505 04/07/2002 8
## 5506 04/07/2004 8
## 5507 04/07/2012 8
## 5508 04/09/1990 8
## 5509 04/09/2009 8
## 5510 04/09/2012 8
## 5511 04/11/1992 8
## 5512 04/11/2001 8
## 5513 04/11/2006 8
## 5514 04/12/2005 8
## 5515 05/01/1996 8
## 5516 05/01/2014 8
## 5517 05/03/1991 8
## 5518 05/05/2002 8
## 5519 05/08/1994 8
## 5520 05/09/2004 8
## 5521 05/09/2009 8
## 5522 05/11/2000 8
## 5523 05/12/1995 8
## 5524 05/12/1999 8
## 5525 06/01/1992 8
## 5526 06/04/1993 8
## 5527 06/04/2003 8
## 5528 06/05/2001 8
## 5529 06/06/2004 8
## 5530 06/06/2010 8
## 5531 06/07/1995 8
## 5532 06/07/2002 8
## 5533 06/09/1995 8
## 5534 06/09/2004 8
## 5535 06/10/1993 8
## 5536 06/11/2005 8
## 5537 07/02/1998 8
## 5538 07/02/2004 8
## 5539 07/02/2009 8
## 5540 07/04/1993 8
## 5541 07/04/2007 8
## 5542 07/05/2000 8
## 5543 07/06/1990 8
## 5544 07/09/1994 8
## 5545 07/09/2003 8
## 5546 07/10/2000 8
## 5547 07/10/2006 8
## 5548 07/11/1991 8
## 5549 08/01/1992 8
## 5550 08/01/2012 8
## 5551 08/02/1995 8
## 5552 08/02/1997 8
## 5553 08/02/1998 8
## 5554 08/03/1995 8
## 5555 08/06/1995 8
## 5556 08/07/1993 8
## 5557 08/08/1994 8
## 5558 08/08/1995 8
## 5559 08/09/2001 8
## 5560 08/09/2002 8
## 5561 08/10/1991 8
## 5562 08/10/2011 8
## 5563 08/11/1991 8
## 5564 09/03/1995 8
## 5565 09/03/1997 8
## 5566 09/05/1990 8
## 5567 09/05/1994 8
## 5568 09/08/1997 8
## 5569 09/10/1991 8
## 5570 09/11/1995 8
## 5571 09/12/1993 8
## 5572 09/12/2001 8
## 5573 10/01/1991 8
## 5574 10/01/1999 8
## 5575 10/01/2004 8
## 5576 10/01/2009 8
## 5577 10/02/1994 8
## 5578 10/04/1992 8
## 5579 10/06/1991 8
## 5580 10/06/2006 8
## 5581 10/07/1991 8
## 5582 10/07/2005 8
## 5583 10/08/2013 8
## 5584 10/09/1993 8
## 5585 10/10/1994 8
## 5586 10/10/1999 8
## 5587 10/10/2004 8
## 5588 10/11/1995 8
## 5589 10/11/2007 8
## 5590 10/11/2012 8
## 5591 11/01/2003 8
## 5592 11/02/2006 8
## 5593 11/04/1998 8
## 5594 11/05/2002 8
## 5595 11/06/1990 8
## 5596 11/09/1992 8
## 5597 11/10/1998 8
## 5598 11/10/2013 8
## 5599 11/11/2002 8
## 5600 11/12/1990 8
## 5601 11/12/1998 8
## 5602 11/12/2004 8
## 5603 11/12/2005 8
## 5604 12/01/1995 8
## 5605 12/02/2011 8
## 5606 12/03/2006 8
## 5607 12/04/1995 8
## 5608 12/05/2013 8
## 5609 12/06/1990 8
## 5610 12/07/1994 8
## 5611 12/07/2003 8
## 5612 12/08/1992 8
## 5613 12/08/1994 8
## 5614 12/08/2007 8
## 5615 12/10/1993 8
## 5616 12/10/1996 8
## 5617 12/10/2002 8
## 5618 12/11/2000 8
## 5619 12/12/1994 8
## 5620 13/02/1995 8
## 5621 13/03/2010 8
## 5622 13/05/2006 8
## 5623 13/06/1995 8
## 5624 13/07/1994 8
## 5625 13/08/1992 8
## 5626 13/08/1993 8
## 5627 13/09/1998 8
## 5628 13/10/1996 8
## 5629 14/01/1996 8
## 5630 14/01/2007 8
## 5631 14/01/2014 8
## 5632 14/05/2014 8
## 5633 14/06/1990 8
## 5634 14/07/2012 8
## 5635 14/08/1999 8
## 5636 14/11/1995 8
## 5637 14/11/1998 8
## 5638 15/03/1997 8
## 5639 15/03/2009 8
## 5640 15/04/2000 8
## 5641 15/05/1992 8
## 5642 15/07/1993 8
## 5643 15/07/2000 8
## 5644 15/07/2001 8
## 5645 15/08/1990 8
## 5646 15/08/1995 8
## 5647 15/09/1992 8
## 5648 15/09/1993 8
## 5649 15/10/1991 8
## 5650 15/11/1991 8
## 5651 15/11/1994 8
## 5652 15/12/1995 8
## 5653 16/02/2014 8
## 5654 16/03/1992 8
## 5655 16/03/1997 8
## 5656 16/03/2003 8
## 5657 16/04/2011 8
## 5658 16/06/2002 8
## 5659 16/06/2007 8
## 5660 16/06/2012 8
## 5661 16/08/1990 8
## 5662 16/08/2003 8
## 5663 16/08/2008 8
## 5664 16/10/2005 8
## 5665 16/11/1992 8
## 5666 17/01/2011 8
## 5667 17/08/1997 8
## 5668 17/10/1990 8
## 5669 17/10/1991 8
## 5670 18/01/2003 8
## 5671 18/03/2000 8
## 5672 18/04/2014 8
## 5673 18/05/1990 8
## 5674 18/05/2002 8
## 5675 18/05/2003 8
## 5676 18/06/1993 8
## 5677 18/06/2000 8
## 5678 18/08/1995 8
## 5679 18/08/2012 8
## 5680 18/09/1999 8
## 5681 18/09/2004 8
## 5682 18/10/1998 8
## 5683 18/10/2008 8
## 5684 18/11/1993 8
## 5685 18/11/2001 8
## 5686 18/11/2012 8
## 5687 18/12/1995 8
## 5688 19/01/1997 8
## 5689 19/02/2012 8
## 5690 19/04/1994 8
## 5691 19/05/2013 8
## 5692 19/06/1991 8
## 5693 19/07/1994 8
## 5694 19/07/1997 8
## 5695 19/07/1998 8
## 5696 19/08/1991 8
## 5697 19/09/1991 8
## 5698 19/09/1998 8
## 5699 19/10/1997 8
## 5700 20/01/1997 8
## 5701 20/02/1995 8
## 5702 20/02/1996 8
## 5703 20/03/1991 8
## 5704 20/05/2001 8
## 5705 20/06/1991 8
## 5706 20/06/1994 8
## 5707 20/07/1990 8
## 5708 20/07/2002 8
## 5709 20/07/2008 8
## 5710 20/07/2013 8
## 5711 20/08/1991 8
## 5712 20/09/1990 8
## 5713 20/10/2002 8
## 5714 20/10/2013 8
## 5715 20/11/1995 8
## 5716 20/12/1995 8
## 5717 20/12/1998 8
## 5718 21/02/1995 8
## 5719 21/04/2000 8
## 5720 21/05/1990 8
## 5721 21/05/2014 8
## 5722 21/07/1993 8
## 5723 21/07/2002 8
## 5724 21/09/1992 8
## 5725 21/10/1992 8
## 5726 21/11/1995 8
## 5727 22/01/1991 8
## 5728 22/01/2011 8
## 5729 22/02/1994 8
## 5730 22/02/1998 8
## 5731 22/03/1997 8
## 5732 22/03/1998 8
## 5733 22/03/2013 8
## 5734 22/03/2014 8
## 5735 22/05/1990 8
## 5736 22/06/1993 8
## 5737 22/10/2000 8
## 5738 22/12/1997 8
## 5739 22/12/2002 8
## 5740 23/02/1994 8
## 5741 23/02/1997 8
## 5742 23/04/1990 8
## 5743 23/04/2006 8
## 5744 23/04/2014 8
## 5745 23/05/1999 8
## 5746 23/05/2010 8
## 5747 23/06/1993 8
## 5748 23/06/1995 8
## 5749 23/07/2000 8
## 5750 23/08/1997 8
## 5751 23/08/2003 8
## 5752 23/09/2012 8
## 5753 23/12/2002 8
## 5754 24/01/2010 8
## 5755 24/03/2001 8
## 5756 24/05/2009 8
## 5757 24/06/2000 8
## 5758 24/08/1990 8
## 5759 24/08/2002 8
## 5760 24/09/1993 8
## 5761 24/11/1992 8
## 5762 24/11/1996 8
## 5763 25/01/1994 8
## 5764 25/01/2003 8
## 5765 25/02/2011 8
## 5766 25/03/2005 8
## 5767 25/03/2006 8
## 5768 25/04/1995 8
## 5769 25/05/1994 8
## 5770 25/06/1991 8
## 5771 25/06/2000 8
## 5772 25/07/1990 8
## 5773 25/07/2009 8
## 5774 25/08/1992 8
## 5775 25/08/2002 8
## 5776 25/08/2013 8
## 5777 25/09/2005 8
## 5778 25/10/1991 8
## 5779 25/11/2006 8
## 5780 25/11/2012 8
## 5781 26/03/1990 8
## 5782 26/03/1991 8
## 5783 26/06/1992 8
## 5784 26/07/2002 8
## 5785 26/08/1994 8
## 5786 26/10/2003 8
## 5787 26/11/1999 8
## 5788 26/12/2006 8
## 5789 27/02/1991 8
## 5790 27/03/2004 8
## 5791 27/05/2000 8
## 5792 27/07/1994 8
## 5793 27/08/1992 8
## 5794 27/09/1993 8
## 5795 27/10/1994 8
## 5796 27/10/2012 8
## 5797 27/11/1999 8
## 5798 27/11/2009 8
## 5799 27/12/1997 8
## 5800 27/12/2002 8
## 5801 27/12/2005 8
## 5802 28/01/1993 8
## 5803 28/01/2006 8
## 5804 28/01/2007 8
## 5805 28/02/2014 8
## 5806 28/03/1997 8
## 5807 28/05/2014 8
## 5808 28/06/1990 8
## 5809 28/06/1993 8
## 5810 28/06/1995 8
## 5811 28/08/1991 8
## 5812 28/08/1992 8
## 5813 28/08/2005 8
## 5814 28/08/2011 8
## 5815 28/09/2002 8
## 5816 28/09/2008 8
## 5817 28/10/1994 8
## 5818 29/01/1992 8
## 5819 29/01/1993 8
## 5820 29/01/2006 8
## 5821 29/03/2002 8
## 5822 29/05/2000 8
## 5823 29/05/2014 8
## 5824 29/06/1996 8
## 5825 29/07/1994 8
## 5826 29/10/2000 8
## 5827 29/10/2011 8
## 5828 29/11/1993 8
## 5829 29/12/2008 8
## 5830 30/03/1996 8
## 5831 30/04/2000 8
## 5832 30/05/1991 8
## 5833 30/06/1992 8
## 5834 30/06/1996 8
## 5835 30/07/2011 8
## 5836 30/08/2009 8
## 5837 30/10/2004 8
## 5838 30/12/2006 8
## 5839 30/12/2011 8
## 5840 31/01/2003 8
## 5841 31/05/2004 8
## 5842 31/07/2004 8
## 5843 31/08/1990 8
## 5844 31/08/2003 8
## 5845 31/08/2013 8
## 5846 31/10/1995 8
## 5847 01/01/2004 7
## 5848 01/01/2012 7
## 5849 01/01/2014 7
## 5850 01/02/1994 7
## 5851 01/02/1998 7
## 5852 01/03/1994 7
## 5853 01/04/1991 7
## 5854 01/07/1991 7
## 5855 01/07/1993 7
## 5856 01/08/1994 7
## 5857 01/08/2009 7
## 5858 01/09/1993 7
## 5859 01/09/2002 7
## 5860 01/09/2007 7
## 5861 01/09/2012 7
## 5862 01/10/1990 7
## 5863 01/10/1993 7
## 5864 01/10/1995 7
## 5865 01/11/1990 7
## 5866 01/11/1993 7
## 5867 01/12/2001 7
## 5868 02/01/2004 7
## 5869 02/01/2014 7
## 5870 02/02/1995 7
## 5871 02/04/1999 7
## 5872 02/04/2006 7
## 5873 02/07/1992 7
## 5874 02/07/2005 7
## 5875 02/09/1994 7
## 5876 02/09/2002 7
## 5877 02/10/1999 7
## 5878 02/10/2005 7
## 5879 02/12/2007 7
## 5880 03/01/1995 7
## 5881 03/01/1999 7
## 5882 03/01/2010 7
## 5883 03/03/1996 7
## 5884 03/03/2002 7
## 5885 03/07/2009 7
## 5886 03/08/2002 7
## 5887 03/11/1994 7
## 5888 03/11/2002 7
## 5889 03/12/1991 7
## 5890 04/01/1997 7
## 5891 04/01/1998 7
## 5892 04/02/2001 7
## 5893 04/03/1992 7
## 5894 04/03/2000 7
## 5895 04/03/2012 7
## 5896 04/04/1991 7
## 5897 04/06/2005 7
## 5898 04/06/2014 7
## 5899 04/07/1997 7
## 5900 04/07/1999 7
## 5901 04/07/2003 7
## 5902 04/07/2007 7
## 5903 04/10/1991 7
## 5904 04/10/1998 7
## 5905 04/11/2007 7
## 5906 04/12/1995 7
## 5907 04/12/2010 7
## 5908 05/01/2003 7
## 5909 05/02/2000 7
## 5910 05/02/2012 7
## 5911 05/03/2006 7
## 5912 05/04/2009 7
## 5913 05/04/2014 7
## 5914 05/06/1991 7
## 5915 05/07/2004 7
## 5916 05/07/2009 7
## 5917 05/08/2012 7
## 5918 05/09/1995 7
## 5919 05/10/1993 7
## 5920 05/10/1994 7
## 5921 05/11/2005 7
## 5922 05/11/2011 7
## 5923 05/12/1990 7
## 5924 05/12/1994 7
## 5925 05/12/1998 7
## 5926 05/12/2004 7
## 5927 06/01/1995 7
## 5928 06/02/1992 7
## 5929 06/03/1991 7
## 5930 06/03/1999 7
## 5931 06/04/1990 7
## 5932 06/04/1992 7
## 5933 06/04/2002 7
## 5934 06/05/2007 7
## 5935 06/06/1998 7
## 5936 06/06/1999 7
## 5937 06/09/1991 7
## 5938 06/09/2003 7
## 5939 06/09/2009 7
## 5940 06/10/2001 7
## 5941 06/12/1990 7
## 5942 06/12/1997 7
## 5943 06/12/2009 7
## 5944 07/01/1992 7
## 5945 07/01/1996 7
## 5946 07/02/1992 7
## 5947 07/03/2009 7
## 5948 07/04/1995 7
## 5949 07/04/2001 7
## 5950 07/05/2006 7
## 5951 07/07/1994 7
## 5952 07/07/2012 7
## 5953 07/08/1995 7
## 5954 07/08/2010 7
## 5955 07/09/1995 7
## 5956 07/09/1998 7
## 5957 07/09/2002 7
## 5958 07/12/2003 7
## 5959 07/12/2008 7
## 5960 08/01/2000 7
## 5961 08/02/1990 7
## 5962 08/02/1991 7
## 5963 08/02/1996 7
## 5964 08/02/2003 7
## 5965 08/06/1994 7
## 5966 08/07/2007 7
## 5967 08/08/1999 7
## 5968 08/09/2012 7
## 5969 08/10/1990 7
## 5970 08/10/2006 7
## 5971 08/11/1994 7
## 5972 08/12/2001 7
## 5973 09/01/1999 7
## 5974 09/02/1993 7
## 5975 09/02/2008 7
## 5976 09/03/1993 7
## 5977 09/04/2004 7
## 5978 09/04/2011 7
## 5979 09/05/1991 7
## 5980 09/05/2014 7
## 5981 09/06/1993 7
## 5982 09/06/2001 7
## 5983 09/08/1995 7
## 5984 09/08/2003 7
## 5985 09/08/2009 7
## 5986 09/11/2003 7
## 5987 09/11/2013 7
## 5988 09/12/1992 7
## 5989 10/02/1993 7
## 5990 10/03/1993 7
## 5991 10/06/1992 7
## 5992 10/06/2001 7
## 5993 10/07/1995 7
## 5994 10/08/1995 7
## 5995 10/11/2006 7
## 5996 11/01/1995 7
## 5997 11/03/1992 7
## 5998 11/04/1991 7
## 5999 11/08/1993 7
## 6000 11/08/2012 7
## 6001 11/10/1990 7
## 6002 11/10/1995 7
## 6003 11/10/2009 7
## 6004 11/11/2005 7
## 6005 12/03/2000 7
## 6006 12/03/2005 7
## 6007 12/04/1993 7
## 6008 12/04/1994 7
## 6009 12/05/1993 7
## 6010 12/05/2012 7
## 6011 12/06/1999 7
## 6012 12/08/2001 7
## 6013 12/09/2004 7
## 6014 12/10/1992 7
## 6015 12/10/2013 7
## 6016 12/11/1991 7
## 6017 12/11/1993 7
## 6018 12/11/2007 7
## 6019 12/12/2009 7
## 6020 13/01/2001 7
## 6021 13/02/1992 7
## 6022 13/03/2005 7
## 6023 13/05/1993 7
## 6024 13/05/2007 7
## 6025 13/07/2002 7
## 6026 13/09/1991 7
## 6027 13/09/1993 7
## 6028 13/09/2009 7
## 6029 13/10/1993 7
## 6030 13/10/1994 7
## 6031 13/10/1995 7
## 6032 13/10/2002 7
## 6033 13/11/2005 7
## 6034 14/02/1994 7
## 6035 14/02/1999 7
## 6036 14/02/2004 7
## 6037 14/03/2004 7
## 6038 14/04/1993 7
## 6039 14/04/2002 7
## 6040 14/04/2012 7
## 6041 14/05/2005 7
## 6042 14/06/1991 7
## 6043 14/06/1993 7
## 6044 14/06/1998 7
## 6045 14/06/2009 7
## 6046 14/07/1995 7
## 6047 14/10/1991 7
## 6048 14/10/2000 7
## 6049 14/10/2001 7
## 6050 14/10/2007 7
## 6051 14/12/1990 7
## 6052 15/01/2011 7
## 6053 15/03/2003 7
## 6054 15/04/2001 7
## 6055 15/04/2006 7
## 6056 15/05/1990 7
## 6057 15/05/2004 7
## 6058 15/06/1994 7
## 6059 15/07/1994 7
## 6060 15/08/1994 7
## 6061 15/08/2010 7
## 6062 15/10/2005 7
## 6063 15/11/1989 7
## 6064 15/11/1990 7
## 6065 15/11/1993 7
## 6066 15/11/1998 7
## 6067 15/11/2013 7
## 6068 15/12/2007 7
## 6069 16/02/1995 7
## 6070 16/03/2013 7
## 6071 16/04/1991 7
## 6072 16/05/1998 7
## 6073 16/05/1999 7
## 6074 16/06/2013 7
## 6075 16/07/2005 7
## 6076 16/08/1991 7
## 6077 16/08/1993 7
## 6078 16/08/1994 7
## 6079 16/08/1995 7
## 6080 16/10/1992 7
## 6081 16/10/2004 7
## 6082 16/11/1997 7
## 6083 16/12/2000 7
## 6084 16/12/2007 7
## 6085 16/12/2012 7
## 6086 17/01/1995 7
## 6087 17/03/1994 7
## 6088 17/04/1995 7
## 6089 17/04/2011 7
## 6090 17/06/1991 7
## 6091 17/08/1990 7
## 6092 17/08/2008 7
## 6093 17/09/1991 7
## 6094 17/09/1992 7
## 6095 17/10/1995 7
## 6096 17/11/2012 7
## 6097 17/12/2005 7
## 6098 17/12/2006 7
## 6099 18/03/1991 7
## 6100 18/05/1997 7
## 6101 18/06/2006 7
## 6102 18/06/2014 7
## 6103 18/07/1990 7
## 6104 18/08/1994 7
## 6105 18/08/2013 7
## 6106 18/09/1992 7
## 6107 18/10/1994 7
## 6108 18/10/1995 7
## 6109 18/10/1997 7
## 6110 18/12/1990 7
## 6111 18/12/2004 7
## 6112 19/02/2006 7
## 6113 19/04/1993 7
## 6114 19/05/1993 7
## 6115 19/05/2001 7
## 6116 19/05/2012 7
## 6117 19/06/1995 7
## 6118 19/07/2009 7
## 6119 19/08/2001 7
## 6120 19/08/2007 7
## 6121 19/09/2009 7
## 6122 19/11/1992 7
## 6123 20/01/2007 7
## 6124 20/01/2014 7
## 6125 20/02/1999 7
## 6126 20/03/2004 7
## 6127 20/03/2010 7
## 6128 20/04/1993 7
## 6129 20/04/1997 7
## 6130 20/05/1992 7
## 6131 20/05/1993 7
## 6132 20/05/2000 7
## 6133 20/05/2006 7
## 6134 20/06/1990 7
## 6135 20/07/1992 7
## 6136 20/08/1992 7
## 6137 20/08/1993 7
## 6138 20/08/2011 7
## 6139 20/09/1993 7
## 6140 20/11/2005 7
## 6141 21/02/2009 7
## 6142 21/02/2010 7
## 6143 21/03/1990 7
## 6144 21/04/2007 7
## 6145 21/04/2012 7
## 6146 21/05/1992 7
## 6147 21/08/1991 7
## 6148 21/08/2011 7
## 6149 21/09/1990 7
## 6150 21/09/2013 7
## 6151 21/10/1993 7
## 6152 21/10/2006 7
## 6153 21/11/1991 7
## 6154 21/11/2004 7
## 6155 21/12/2008 7
## 6156 22/01/1992 7
## 6157 22/02/1995 7
## 6158 22/03/1990 7
## 6159 22/04/1991 7
## 6160 22/04/1992 7
## 6161 22/05/1999 7
## 6162 22/05/2010 7
## 6163 22/06/1992 7
## 6164 22/06/1995 7
## 6165 22/07/1992 7
## 6166 22/07/2007 7
## 6167 22/12/1993 7
## 6168 22/12/2000 7
## 6169 23/01/1995 7
## 6170 23/03/1993 7
## 6171 23/03/2002 7
## 6172 23/03/2014 7
## 6173 23/07/1993 7
## 6174 23/09/1992 7
## 6175 23/09/1994 7
## 6176 23/10/2011 7
## 6177 23/11/2000 7
## 6178 23/11/2003 7
## 6179 23/11/2006 7
## 6180 23/11/2007 7
## 6181 23/11/2013 7
## 6182 23/12/2013 7
## 6183 24/01/1992 7
## 6184 24/01/1995 7
## 6185 24/02/1994 7
## 6186 24/03/1995 7
## 6187 24/03/2012 7
## 6188 24/04/1991 7
## 6189 24/04/2004 7
## 6190 24/05/1990 7
## 6191 24/05/1993 7
## 6192 24/08/2003 7
## 6193 24/10/2009 7
## 6194 24/10/2010 7
## 6195 24/12/2006 7
## 6196 25/02/1994 7
## 6197 25/02/2006 7
## 6198 25/03/1991 7
## 6199 25/03/2001 7
## 6200 25/04/1990 7
## 6201 25/04/1998 7
## 6202 25/04/2014 7
## 6203 25/05/2008 7
## 6204 25/06/1990 7
## 6205 25/06/2005 7
## 6206 25/07/2010 7
## 6207 25/10/1995 7
## 6208 25/11/1991 7
## 6209 25/11/1998 7
## 6210 25/11/2011 7
## 6211 25/12/2006 7
## 6212 25/12/2010 7
## 6213 26/01/2008 7
## 6214 26/03/2000 7
## 6215 26/04/2008 7
## 6216 26/05/1996 7
## 6217 26/06/1999 7
## 6218 26/06/2004 7
## 6219 26/06/2005 7
## 6220 26/07/1993 7
## 6221 26/07/1997 7
## 6222 26/08/2001 7
## 6223 26/09/1998 7
## 6224 26/12/2007 7
## 6225 27/01/1992 7
## 6226 27/03/1991 7
## 6227 27/03/1995 7
## 6228 27/04/1993 7
## 6229 27/04/1994 7
## 6230 27/04/1995 7
## 6231 27/04/2002 7
## 6232 27/04/2008 7
## 6233 27/05/1993 7
## 6234 27/06/2004 7
## 6235 27/07/1990 7
## 6236 27/07/2013 7
## 6237 27/08/2006 7
## 6238 27/09/1991 7
## 6239 27/10/1992 7
## 6240 27/11/1998 7
## 6241 28/01/2001 7
## 6242 28/04/1994 7
## 6243 28/04/2002 7
## 6244 28/04/2012 7
## 6245 28/06/1991 7
## 6246 28/06/1994 7
## 6247 28/06/2009 7
## 6248 28/07/1992 7
## 6249 28/07/1996 7
## 6250 28/08/1990 7
## 6251 28/09/2003 7
## 6252 28/10/1993 7
## 6253 28/11/1998 7
## 6254 28/12/1997 7
## 6255 28/12/2002 7
## 6256 28/12/2007 7
## 6257 29/01/1991 7
## 6258 29/05/2004 7
## 6259 29/06/1990 7
## 6260 29/07/2000 7
## 6261 29/08/1994 7
## 6262 29/09/1995 7
## 6263 29/10/2005 7
## 6264 29/10/2006 7
## 6265 29/11/2013 7
## 6266 29/12/1995 7
## 6267 29/12/1998 7
## 6268 30/03/1995 7
## 6269 30/03/2013 7
## 6270 30/05/2009 7
## 6271 30/05/2014 7
## 6272 30/06/2007 7
## 6273 30/06/2012 7
## 6274 30/07/1990 7
## 6275 30/07/1993 7
## 6276 30/08/1993 7
## 6277 30/08/1995 7
## 6278 30/10/1992 7
## 6279 30/11/2002 7
## 6280 30/12/2008 7
## 6281 31/01/1995 7
## 6282 31/03/1995 7
## 6283 31/03/2001 7
## 6284 31/05/1991 7
## 6285 31/07/1999 7
## 6286 31/07/2010 7
## 6287 31/07/2011 7
## 6288 31/08/1993 7
## 6289 31/10/1998 7
## 6290 31/10/2009 7
## 6291 01/01/1999 6
## 6292 01/02/1993 6
## 6293 01/02/2004 6
## 6294 01/04/1992 6
## 6295 01/04/2007 6
## 6296 01/05/1992 6
## 6297 01/06/1995 6
## 6298 01/08/1990 6
## 6299 01/08/2004 6
## 6300 01/10/2005 6
## 6301 01/12/1992 6
## 6302 01/12/2013 6
## 6303 02/01/1991 6
## 6304 02/03/1994 6
## 6305 02/03/1996 6
## 6306 02/03/2002 6
## 6307 02/04/1991 6
## 6308 02/05/1991 6
## 6309 02/05/1995 6
## 6310 02/07/1990 6
## 6311 02/08/1990 6
## 6312 02/08/1993 6
## 6313 02/08/1994 6
## 6314 02/09/2000 6
## 6315 02/09/2012 6
## 6316 02/11/1997 6
## 6317 02/12/1991 6
## 6318 03/01/2004 6
## 6319 03/02/2001 6
## 6320 03/03/2007 6
## 6321 03/04/2004 6
## 6322 03/05/1991 6
## 6323 03/06/1992 6
## 6324 03/06/2000 6
## 6325 03/06/2014 6
## 6326 03/07/2004 6
## 6327 03/08/1992 6
## 6328 03/08/2003 6
## 6329 03/09/1992 6
## 6330 03/10/1995 6
## 6331 04/01/1993 6
## 6332 04/01/2009 6
## 6333 04/03/2001 6
## 6334 04/04/1999 6
## 6335 04/05/2013 6
## 6336 04/06/1992 6
## 6337 04/06/2006 6
## 6338 04/06/2011 6
## 6339 04/08/2001 6
## 6340 04/08/2002 6
## 6341 04/09/2000 6
## 6342 04/09/2006 6
## 6343 04/10/1990 6
## 6344 04/10/1993 6
## 6345 04/11/1994 6
## 6346 04/11/2000 6
## 6347 04/12/1999 6
## 6348 05/01/2008 6
## 6349 05/01/2013 6
## 6350 05/02/1991 6
## 6351 05/03/2011 6
## 6352 05/05/2007 6
## 6353 05/05/2012 6
## 6354 05/06/1999 6
## 6355 05/06/2014 6
## 6356 05/07/1990 6
## 6357 05/07/1997 6
## 6358 05/08/1991 6
## 6359 05/08/1992 6
## 6360 05/08/2006 6
## 6361 05/11/1993 6
## 6362 06/01/2013 6
## 6363 06/03/1995 6
## 6364 06/03/2011 6
## 6365 06/05/2014 6
## 6366 06/07/1992 6
## 6367 06/07/1997 6
## 6368 06/07/2013 6
## 6369 06/08/2000 6
## 6370 06/10/2007 6
## 6371 06/11/1995 6
## 6372 06/12/1993 6
## 6373 06/12/1998 6
## 6374 07/01/1991 6
## 6375 07/01/1994 6
## 6376 07/01/2001 6
## 6377 07/01/2012 6
## 6378 07/03/1991 6
## 6379 07/04/2002 6
## 6380 07/06/2014 6
## 6381 07/07/1995 6
## 6382 07/07/2001 6
## 6383 07/08/1999 6
## 6384 07/09/1997 6
## 6385 07/09/2013 6
## 6386 07/10/1991 6
## 6387 07/10/1992 6
## 6388 07/10/1994 6
## 6389 07/11/2010 6
## 6390 07/12/1996 6
## 6391 08/03/1993 6
## 6392 08/04/1992 6
## 6393 08/04/1994 6
## 6394 08/05/1990 6
## 6395 08/05/2011 6
## 6396 08/06/2014 6
## 6397 08/07/1991 6
## 6398 08/07/2001 6
## 6399 08/07/2012 6
## 6400 08/08/2004 6
## 6401 08/09/1994 6
## 6402 08/09/2007 6
## 6403 08/10/2000 6
## 6404 08/11/2008 6
## 6405 08/12/1994 6
## 6406 08/12/2007 6
## 6407 09/01/2010 6
## 6408 09/03/2008 6
## 6409 09/08/1993 6
## 6410 09/08/2008 6
## 6411 09/09/2001 6
## 6412 09/09/2007 6
## 6413 09/11/1994 6
## 6414 09/12/2006 6
## 6415 09/12/2012 6
## 6416 10/01/1992 6
## 6417 10/01/1994 6
## 6418 10/02/2013 6
## 6419 10/03/1996 6
## 6420 10/04/1995 6
## 6421 10/04/2011 6
## 6422 10/05/1990 6
## 6423 10/06/2007 6
## 6424 10/06/2012 6
## 6425 10/07/2004 6
## 6426 10/08/1990 6
## 6427 10/08/1992 6
## 6428 10/08/1997 6
## 6429 10/08/2002 6
## 6430 10/09/1991 6
## 6431 10/10/1991 6
## 6432 10/11/1996 6
## 6433 10/11/2000 6
## 6434 10/12/1990 6
## 6435 10/12/2005 6
## 6436 11/01/2014 6
## 6437 11/02/1994 6
## 6438 11/02/1996 6
## 6439 11/03/1994 6
## 6440 11/03/2000 6
## 6441 11/03/2001 6
## 6442 11/03/2012 6
## 6443 11/05/2003 6
## 6444 11/05/2008 6
## 6445 11/07/2004 6
## 6446 11/08/1996 6
## 6447 11/08/2001 6
## 6448 11/09/1999 6
## 6449 11/10/1991 6
## 6450 11/10/1993 6
## 6451 11/10/2003 6
## 6452 11/11/2004 6
## 6453 11/12/1999 6
## 6454 12/01/2003 6
## 6455 12/02/2012 6
## 6456 12/04/1990 6
## 6457 12/04/1991 6
## 6458 12/04/1998 6
## 6459 12/04/2009 6
## 6460 12/05/1994 6
## 6461 12/06/2005 6
## 6462 12/06/2010 6
## 6463 12/06/2011 6
## 6464 12/07/2009 6
## 6465 12/08/2006 6
## 6466 12/08/2012 6
## 6467 12/09/1994 6
## 6468 12/09/1999 6
## 6469 12/09/2010 6
## 6470 12/11/2005 6
## 6471 12/12/1990 6
## 6472 12/12/1998 6
## 6473 12/12/1999 6
## 6474 12/12/2010 6
## 6475 13/01/1993 6
## 6476 13/02/1991 6
## 6477 13/04/1995 6
## 6478 13/05/2014 6
## 6479 13/06/1991 6
## 6480 13/06/2014 6
## 6481 13/07/1993 6
## 6482 13/07/2003 6
## 6483 13/08/1995 6
## 6484 13/09/2003 6
## 6485 13/09/2008 6
## 6486 13/10/2001 6
## 6487 13/10/2007 6
## 6488 13/11/1990 6
## 6489 13/11/2011 6
## 6490 13/12/1991 6
## 6491 13/12/1998 6
## 6492 14/01/2006 6
## 6493 14/01/2012 6
## 6494 14/03/1990 6
## 6495 14/03/2009 6
## 6496 14/03/2010 6
## 6497 14/04/2001 6
## 6498 14/07/1994 6
## 6499 14/07/2002 6
## 6500 14/07/2007 6
## 6501 14/08/1995 6
## 6502 14/09/2003 6
## 6503 14/10/1992 6
## 6504 14/10/1994 6
## 6505 14/10/2012 6
## 6506 14/11/1991 6
## 6507 14/11/1994 6
## 6508 14/12/1992 6
## 6509 14/12/1996 6
## 6510 14/12/1997 6
## 6511 14/12/2008 6
## 6512 14/12/2013 6
## 6513 15/01/2005 6
## 6514 15/02/1994 6
## 6515 15/02/1995 6
## 6516 15/03/1993 6
## 6517 15/04/1991 6
## 6518 15/04/1994 6
## 6519 15/04/2014 6
## 6520 15/05/1991 6
## 6521 15/06/1990 6
## 6522 15/06/1993 6
## 6523 15/06/2003 6
## 6524 15/07/1992 6
## 6525 15/08/1999 6
## 6526 15/09/2007 6
## 6527 15/10/1992 6
## 6528 15/11/2008 6
## 6529 15/11/2009 6
## 6530 15/12/1994 6
## 6531 16/01/1991 6
## 6532 16/01/1999 6
## 6533 16/01/2006 6
## 6534 16/01/2012 6
## 6535 16/02/2008 6
## 6536 16/03/1994 6
## 6537 16/03/1995 6
## 6538 16/04/1990 6
## 6539 16/05/1991 6
## 6540 16/05/1994 6
## 6541 16/05/2009 6
## 6542 16/06/1995 6
## 6543 16/06/1996 6
## 6544 16/06/2014 6
## 6545 16/08/2009 6
## 6546 16/09/1991 6
## 6547 16/09/2007 6
## 6548 16/10/1990 6
## 6549 16/10/1999 6
## 6550 16/11/1993 6
## 6551 16/11/2003 6
## 6552 17/01/1992 6
## 6553 17/01/2004 6
## 6554 17/01/2005 6
## 6555 17/02/1992 6
## 6556 17/02/1994 6
## 6557 17/02/2008 6
## 6558 17/03/1992 6
## 6559 17/03/2007 6
## 6560 17/04/1991 6
## 6561 17/04/2005 6
## 6562 17/04/2014 6
## 6563 17/06/1992 6
## 6564 17/06/1993 6
## 6565 17/06/2007 6
## 6566 17/06/2012 6
## 6567 17/07/1992 6
## 6568 17/08/1994 6
## 6569 17/09/2000 6
## 6570 17/09/2006 6
## 6571 17/10/2004 6
## 6572 17/11/1993 6
## 6573 17/11/1994 6
## 6574 17/11/1995 6
## 6575 17/12/1990 6
## 6576 18/01/1998 6
## 6577 18/01/2004 6
## 6578 18/01/2009 6
## 6579 18/02/2012 6
## 6580 18/03/2007 6
## 6581 18/04/1990 6
## 6582 18/04/2003 6
## 6583 18/04/2009 6
## 6584 18/05/1992 6
## 6585 18/05/2008 6
## 6586 18/05/2014 6
## 6587 18/06/1991 6
## 6588 18/06/2005 6
## 6589 18/07/1995 6
## 6590 18/07/1998 6
## 6591 18/07/2009 6
## 6592 18/10/1991 6
## 6593 18/11/2000 6
## 6594 19/02/1992 6
## 6595 19/03/1993 6
## 6596 19/03/2006 6
## 6597 19/08/2012 6
## 6598 19/09/1990 6
## 6599 19/10/1990 6
## 6600 19/10/1994 6
## 6601 19/10/2002 6
## 6602 19/11/1993 6
## 6603 19/11/2005 6
## 6604 19/12/1994 6
## 6605 19/12/1995 6
## 6606 20/02/1991 6
## 6607 20/05/2007 6
## 6608 20/05/2012 6
## 6609 20/06/2009 6
## 6610 20/06/2014 6
## 6611 20/08/1990 6
## 6612 20/08/2000 6
## 6613 20/09/1994 6
## 6614 20/09/2009 6
## 6615 20/10/1995 6
## 6616 20/10/1996 6
## 6617 20/12/2003 6
## 6618 21/01/1994 6
## 6619 21/01/2008 6
## 6620 21/05/1993 6
## 6621 21/06/1991 6
## 6622 21/06/1993 6
## 6623 21/07/1995 6
## 6624 21/07/2013 6
## 6625 21/08/2009 6
## 6626 21/09/1995 6
## 6627 21/09/1997 6
## 6628 21/11/1999 6
## 6629 21/12/2003 6
## 6630 21/12/2007 6
## 6631 21/12/2013 6
## 6632 22/02/1991 6
## 6633 22/02/2009 6
## 6634 22/03/2009 6
## 6635 22/04/1993 6
## 6636 22/04/1995 6
## 6637 22/05/1991 6
## 6638 22/05/1995 6
## 6639 22/06/1994 6
## 6640 22/07/2012 6
## 6641 22/08/1998 6
## 6642 22/08/1999 6
## 6643 22/08/2010 6
## 6644 22/09/1992 6
## 6645 22/10/2005 6
## 6646 22/10/2006 6
## 6647 22/12/1994 6
## 6648 22/12/2005 6
## 6649 22/12/2008 6
## 6650 22/12/2012 6
## 6651 23/01/1990 6
## 6652 23/01/1999 6
## 6653 23/01/2010 6
## 6654 23/02/2002 6
## 6655 23/03/2003 6
## 6656 23/04/1992 6
## 6657 23/04/2005 6
## 6658 23/06/1992 6
## 6659 23/06/2007 6
## 6660 23/08/1990 6
## 6661 23/08/1994 6
## 6662 23/09/2000 6
## 6663 23/09/2001 6
## 6664 23/10/1990 6
## 6665 23/10/2005 6
## 6666 23/11/1992 6
## 6667 23/11/1997 6
## 6668 23/12/2008 6
## 6669 23/12/2011 6
## 6670 24/01/1999 6
## 6671 24/02/2008 6
## 6672 24/03/1994 6
## 6673 24/05/1995 6
## 6674 24/07/1990 6
## 6675 24/08/1994 6
## 6676 24/09/1991 6
## 6677 24/09/2000 6
## 6678 24/09/2005 6
## 6679 24/11/2000 6
## 6680 24/12/2002 6
## 6681 25/01/2009 6
## 6682 25/02/1993 6
## 6683 25/03/1992 6
## 6684 25/03/2000 6
## 6685 25/03/2012 6
## 6686 25/05/2009 6
## 6687 25/05/2013 6
## 6688 25/06/2011 6
## 6689 25/07/1991 6
## 6690 25/08/1993 6
## 6691 25/09/2011 6
## 6692 25/10/1993 6
## 6693 25/10/1994 6
## 6694 25/10/2008 6
## 6695 25/11/1999 6
## 6696 25/11/2001 6
## 6697 25/12/2007 6
## 6698 26/01/2002 6
## 6699 26/01/2003 6
## 6700 26/02/1991 6
## 6701 26/02/1992 6
## 6702 26/02/2005 6
## 6703 26/02/2011 6
## 6704 26/03/1992 6
## 6705 26/03/1993 6
## 6706 26/03/2005 6
## 6707 26/04/1998 6
## 6708 26/05/2008 6
## 6709 26/05/2013 6
## 6710 26/10/1992 6
## 6711 26/10/1995 6
## 6712 26/11/2005 6
## 6713 26/11/2006 6
## 6714 26/12/1998 6
## 6715 26/12/2000 6
## 6716 26/12/2008 6
## 6717 26/12/2010 6
## 6718 27/01/1993 6
## 6719 27/01/2013 6
## 6720 27/02/2005 6
## 6721 27/02/2010 6
## 6722 27/02/2011 6
## 6723 27/04/1992 6
## 6724 27/04/1997 6
## 6725 27/04/2014 6
## 6726 27/05/2001 6
## 6727 27/05/2013 6
## 6728 27/05/2014 6
## 6729 27/06/1994 6
## 6730 27/08/1991 6
## 6731 27/09/2008 6
## 6732 27/10/2001 6
## 6733 27/12/1998 6
## 6734 27/12/2001 6
## 6735 27/12/2008 6
## 6736 27/12/2012 6
## 6737 27/12/2013 6
## 6738 28/01/1994 6
## 6739 28/02/1994 6
## 6740 28/02/1998 6
## 6741 28/03/1990 6
## 6742 28/04/2007 6
## 6743 28/05/2000 6
## 6744 28/05/2007 6
## 6745 28/07/1993 6
## 6746 28/07/2001 6
## 6747 28/07/2007 6
## 6748 28/08/2004 6
## 6749 28/09/1993 6
## 6750 28/09/1995 6
## 6751 28/10/2012 6
## 6752 28/11/1990 6
## 6753 28/11/2003 6
## 6754 28/11/2009 6
## 6755 29/03/2013 6
## 6756 29/04/1991 6
## 6757 29/04/1992 6
## 6758 29/04/2000 6
## 6759 29/04/2007 6
## 6760 29/05/1990 6
## 6761 29/06/1997 6
## 6762 29/07/2007 6
## 6763 29/08/2010 6
## 6764 29/10/1991 6
## 6765 29/11/1996 6
## 6766 29/11/1998 6
## 6767 29/12/2012 6
## 6768 30/03/2003 6
## 6769 30/03/2014 6
## 6770 30/04/2006 6
## 6771 30/04/2014 6
## 6772 30/05/2005 6
## 6773 30/07/2000 6
## 6774 30/09/1994 6
## 6775 30/09/2000 6
## 6776 30/10/1991 6
## 6777 30/10/1999 6
## 6778 30/10/2005 6
## 6779 30/10/2010 6
## 6780 30/11/1992 6
## 6781 30/11/1994 6
## 6782 30/12/2009 6
## 6783 31/01/2009 6
## 6784 31/03/1993 6
## 6785 31/03/2013 6
## 6786 31/05/1998 6
## 6787 31/05/1999 6
## 6788 31/05/2003 6
## 6789 31/05/2008 6
## 6790 31/05/2010 6
## 6791 31/07/1995 6
## 6792 31/08/1996 6
## 6793 31/08/1997 6
## 6794 31/12/2000 6
## 6795 31/12/2007 6
## 6796 31/12/2013 6
## 6797 01/02/1991 5
## 6798 01/03/1998 5
## 6799 01/05/1991 5
## 6800 01/06/2014 5
## 6801 01/07/2006 5
## 6802 01/08/2010 5
## 6803 01/09/2008 5
## 6804 01/12/1995 5
## 6805 02/01/1990 5
## 6806 02/01/1992 5
## 6807 02/01/2000 5
## 6808 02/02/2008 5
## 6809 02/03/2003 5
## 6810 02/04/2000 5
## 6811 02/06/2007 5
## 6812 02/06/2012 5
## 6813 02/08/2009 5
## 6814 02/09/2007 5
## 6815 02/10/2011 5
## 6816 02/11/1993 5
## 6817 02/11/1996 5
## 6818 02/12/1992 5
## 6819 02/12/2012 5
## 6820 03/01/1991 5
## 6821 03/01/2009 5
## 6822 03/02/2007 5
## 6823 03/05/2009 5
## 6824 03/06/2006 5
## 6825 03/06/2007 5
## 6826 03/08/1997 5
## 6827 03/08/2007 5
## 6828 03/11/2007 5
## 6829 03/12/2006 5
## 6830 04/01/1995 5
## 6831 04/01/2004 5
## 6832 04/02/1991 5
## 6833 04/03/1991 5
## 6834 04/03/2006 5
## 6835 04/04/1990 5
## 6836 04/04/2010 5
## 6837 04/05/1992 5
## 6838 04/05/2002 5
## 6839 04/06/1990 5
## 6840 04/07/2005 5
## 6841 04/07/2008 5
## 6842 04/07/2010 5
## 6843 04/08/2012 5
## 6844 04/09/2011 5
## 6845 04/10/2008 5
## 6846 04/10/2009 5
## 6847 04/12/2011 5
## 6848 05/01/1993 5
## 6849 05/01/1997 5
## 6850 05/02/1993 5
## 6851 05/02/2005 5
## 6852 05/03/1990 5
## 6853 05/03/1992 5
## 6854 05/04/1993 5
## 6855 05/04/1998 5
## 6856 05/05/1992 5
## 6857 05/05/1995 5
## 6858 05/06/1992 5
## 6859 05/06/2004 5
## 6860 05/06/2005 5
## 6861 05/07/1991 5
## 6862 05/07/2003 5
## 6863 05/09/2011 5
## 6864 05/10/1992 5
## 6865 05/12/1991 5
## 6866 06/01/1994 5
## 6867 06/02/1990 5
## 6868 06/02/1991 5
## 6869 06/04/2008 5
## 6870 06/05/1991 5
## 6871 06/05/2012 5
## 6872 06/06/1995 5
## 6873 06/06/2009 5
## 6874 06/08/1993 5
## 6875 06/08/2005 5
## 6876 06/09/2010 5
## 6877 06/11/2011 5
## 6878 06/12/1991 5
## 6879 07/01/1993 5
## 6880 07/03/1990 5
## 6881 07/03/1994 5
## 6882 07/04/1992 5
## 6883 07/05/2014 5
## 6884 07/06/1991 5
## 6885 07/06/2003 5
## 6886 07/07/2013 5
## 6887 07/08/1992 5
## 6888 07/08/2004 5
## 6889 07/10/2001 5
## 6890 07/11/1998 5
## 6891 07/12/1992 5
## 6892 07/12/1997 5
## 6893 08/03/2008 5
## 6894 08/03/2014 5
## 6895 08/05/1991 5
## 6896 08/05/1999 5
## 6897 08/06/2013 5
## 6898 08/07/2000 5
## 6899 08/08/1990 5
## 6900 08/11/1990 5
## 6901 08/11/1993 5
## 6902 08/11/2003 5
## 6903 08/12/1989 5
## 6904 08/12/2002 5
## 6905 08/12/2012 5
## 6906 09/01/2000 5
## 6907 09/02/1995 5
## 6908 09/02/2002 5
## 6909 09/03/2002 5
## 6910 09/04/1990 5
## 6911 09/04/2000 5
## 6912 09/05/1999 5
## 6913 09/06/1992 5
## 6914 09/06/2002 5
## 6915 09/06/2012 5
## 6916 09/06/2014 5
## 6917 09/07/1990 5
## 6918 09/08/1990 5
## 6919 09/10/2004 5
## 6920 09/11/2002 5
## 6921 09/12/1991 5
## 6922 09/12/2007 5
## 6923 10/02/2001 5
## 6924 10/03/1992 5
## 6925 10/03/1995 5
## 6926 10/03/2001 5
## 6927 10/03/2007 5
## 6928 10/04/1991 5
## 6929 10/04/1998 5
## 6930 10/05/1998 5
## 6931 10/05/2008 5
## 6932 10/05/2009 5
## 6933 10/08/2003 5
## 6934 10/08/2008 5
## 6935 10/09/2005 5
## 6936 10/10/2009 5
## 6937 10/10/2010 5
## 6938 10/11/1993 5
## 6939 10/11/2001 5
## 6940 11/01/1997 5
## 6941 11/02/1992 5
## 6942 11/02/2001 5
## 6943 11/02/2007 5
## 6944 11/03/2006 5
## 6945 11/03/2007 5
## 6946 11/04/2010 5
## 6947 11/05/1989 5
## 6948 11/05/1990 5
## 6949 11/06/1992 5
## 6950 11/07/2009 5
## 6951 11/09/1995 5
## 6952 11/09/2005 5
## 6953 11/10/1997 5
## 6954 11/11/2001 5
## 6955 11/11/2011 5
## 6956 11/11/2012 5
## 6957 11/12/2011 5
## 6958 12/02/1990 5
## 6959 12/02/1992 5
## 6960 12/03/1991 5
## 6961 12/03/1993 5
## 6962 12/05/1992 5
## 6963 12/05/2007 5
## 6964 12/06/2004 5
## 6965 12/06/2014 5
## 6966 12/08/1991 5
## 6967 12/09/1990 5
## 6968 13/01/2007 5
## 6969 13/01/2008 5
## 6970 13/01/2013 5
## 6971 13/03/1992 5
## 6972 13/03/1993 5
## 6973 13/03/1995 5
## 6974 13/04/1992 5
## 6975 13/04/2013 5
## 6976 13/06/1998 5
## 6977 13/08/2011 5
## 6978 13/09/1990 5
## 6979 13/10/2013 5
## 6980 13/11/1999 5
## 6981 13/12/2003 5
## 6982 14/01/2001 5
## 6983 14/02/1995 5
## 6984 14/05/2006 5
## 6985 14/07/1992 5
## 6986 14/07/2001 5
## 6987 14/08/1991 5
## 6988 14/08/2011 5
## 6989 14/09/2002 5
## 6990 14/09/2013 5
## 6991 14/10/1993 5
## 6992 14/11/1999 5
## 6993 14/12/1993 5
## 6994 15/01/1992 5
## 6995 15/01/1993 5
## 6996 15/02/1990 5
## 6997 15/03/1991 5
## 6998 15/04/1992 5
## 6999 15/04/2012 5
## 7000 15/05/1999 5
## 7001 15/06/1997 5
## 7002 15/07/2012 5
## 7003 15/10/2011 5
## 7004 15/12/2012 5
## 7005 16/01/1992 5
## 7006 16/02/1993 5
## 7007 16/02/2002 5
## 7008 16/03/1993 5
## 7009 16/04/1993 5
## 7010 16/04/2000 5
## 7011 16/04/2006 5
## 7012 16/05/2014 5
## 7013 16/09/1992 5
## 7014 16/09/1995 5
## 7015 16/09/2012 5
## 7016 16/10/1991 5
## 7017 16/10/2010 5
## 7018 16/11/1994 5
## 7019 16/11/1995 5
## 7020 16/11/2002 5
## 7021 16/12/1991 5
## 7022 17/01/1994 5
## 7023 17/01/1998 5
## 7024 17/01/1999 5
## 7025 17/02/1993 5
## 7026 17/03/1993 5
## 7027 17/03/1995 5
## 7028 17/03/2013 5
## 7029 17/04/1990 5
## 7030 17/06/2014 5
## 7031 17/07/2010 5
## 7032 17/08/1992 5
## 7033 17/08/2002 5
## 7034 17/08/2003 5
## 7035 17/10/2010 5
## 7036 17/11/2001 5
## 7037 17/12/2000 5
## 7038 18/01/2010 5
## 7039 18/02/1991 5
## 7040 18/02/1992 5
## 7041 18/03/1994 5
## 7042 18/03/2012 5
## 7043 18/04/1991 5
## 7044 18/04/1994 5
## 7045 18/05/1993 5
## 7046 18/05/1994 5
## 7047 18/06/1992 5
## 7048 18/06/2011 5
## 7049 18/07/2010 5
## 7050 18/09/1991 5
## 7051 18/09/2011 5
## 7052 18/10/1990 5
## 7053 18/10/1993 5
## 7054 18/11/1991 5
## 7055 19/03/1990 5
## 7056 19/03/2000 5
## 7057 19/03/2005 5
## 7058 19/04/1990 5
## 7059 19/04/2003 5
## 7060 19/04/2009 5
## 7061 19/05/1995 5
## 7062 19/06/2010 5
## 7063 19/06/2011 5
## 7064 19/06/2014 5
## 7065 19/07/1990 5
## 7066 19/07/1993 5
## 7067 19/09/2004 5
## 7068 19/09/2010 5
## 7069 19/11/1991 5
## 7070 19/11/2011 5
## 7071 19/12/1990 5
## 7072 20/01/1994 5
## 7073 20/01/1996 5
## 7074 20/01/2008 5
## 7075 20/02/2010 5
## 7076 20/02/2011 5
## 7077 20/03/2011 5
## 7078 20/04/1992 5
## 7079 20/04/2003 5
## 7080 20/05/1994 5
## 7081 20/06/2010 5
## 7082 20/07/1997 5
## 7083 20/10/2012 5
## 7084 20/11/1992 5
## 7085 21/01/1992 5
## 7086 21/01/2012 5
## 7087 21/03/2008 5
## 7088 21/03/2009 5
## 7089 21/04/1992 5
## 7090 21/04/1993 5
## 7091 21/05/2000 5
## 7092 21/05/2011 5
## 7093 21/07/2007 5
## 7094 21/08/1999 5
## 7095 21/09/1993 5
## 7096 21/09/2002 5
## 7097 21/11/1990 5
## 7098 21/12/1995 5
## 7099 22/01/1993 5
## 7100 22/01/2006 5
## 7101 22/02/1993 5
## 7102 22/02/2014 5
## 7103 22/03/1991 5
## 7104 22/03/2008 5
## 7105 22/04/2011 5
## 7106 22/04/2012 5
## 7107 22/05/2005 5
## 7108 22/06/2013 5
## 7109 22/07/2006 5
## 7110 22/08/2009 5
## 7111 22/09/1993 5
## 7112 22/09/1994 5
## 7113 22/09/2001 5
## 7114 22/10/1990 5
## 7115 22/10/1991 5
## 7116 22/11/1995 5
## 7117 22/11/1998 5
## 7118 23/01/2011 5
## 7119 23/02/1995 5
## 7120 23/03/1996 5
## 7121 23/04/1993 5
## 7122 23/05/1991 5
## 7123 23/05/2009 5
## 7124 23/07/1992 5
## 7125 23/08/1998 5
## 7126 23/09/1993 5
## 7127 23/09/2007 5
## 7128 23/10/1999 5
## 7129 23/11/1993 5
## 7130 23/11/2008 5
## 7131 23/12/2005 5
## 7132 23/12/2010 5
## 7133 24/01/1994 5
## 7134 24/01/2004 5
## 7135 24/01/2009 5
## 7136 24/02/1995 5
## 7137 24/03/1992 5
## 7138 24/03/2002 5
## 7139 24/04/2010 5
## 7140 24/05/1997 5
## 7141 24/07/1992 5
## 7142 24/07/1999 5
## 7143 24/07/2010 5
## 7144 24/09/2006 5
## 7145 24/10/1990 5
## 7146 24/10/1994 5
## 7147 24/12/1996 5
## 7148 24/12/1997 5
## 7149 24/12/1998 5
## 7150 24/12/2008 5
## 7151 24/12/2013 5
## 7152 25/01/1993 5
## 7153 25/02/1991 5
## 7154 25/02/2001 5
## 7155 25/04/1999 5
## 7156 25/05/2002 5
## 7157 25/06/1993 5
## 7158 25/07/1994 5
## 7159 25/07/1999 5
## 7160 25/09/1991 5
## 7161 25/09/2004 5
## 7162 25/09/2010 5
## 7163 25/10/1998 5
## 7164 25/11/2004 5
## 7165 25/11/2007 5
## 7166 25/12/2000 5
## 7167 25/12/2001 5
## 7168 25/12/2013 5
## 7169 26/01/1994 5
## 7170 26/03/2006 5
## 7171 26/04/1990 5
## 7172 26/04/1993 5
## 7173 26/04/1995 5
## 7174 26/04/1997 5
## 7175 26/05/1992 5
## 7176 26/05/1993 5
## 7177 26/05/1995 5
## 7178 26/06/1991 5
## 7179 26/07/1995 5
## 7180 26/07/2003 5
## 7181 26/08/2006 5
## 7182 26/09/1991 5
## 7183 26/09/2009 5
## 7184 26/10/1994 5
## 7185 26/10/2013 5
## 7186 26/11/2011 5
## 7187 26/12/2005 5
## 7188 26/12/2009 5
## 7189 26/12/2012 5
## 7190 27/01/1994 5
## 7191 27/01/2002 5
## 7192 27/01/2007 5
## 7193 27/02/1990 5
## 7194 27/05/1992 5
## 7195 27/05/2007 5
## 7196 27/06/1998 5
## 7197 27/06/2009 5
## 7198 27/08/2005 5
## 7199 27/09/1994 5
## 7200 27/09/2003 5
## 7201 27/11/1997 5
## 7202 27/11/2004 5
## 7203 27/11/2010 5
## 7204 27/12/2003 5
## 7205 28/01/1991 5
## 7206 28/01/1996 5
## 7207 28/02/1995 5
## 7208 28/02/2009 5
## 7209 28/03/1999 5
## 7210 28/04/1992 5
## 7211 28/04/2013 5
## 7212 28/05/2005 5
## 7213 28/07/2012 5
## 7214 28/07/2013 5
## 7215 28/08/1999 5
## 7216 28/09/1990 5
## 7217 28/09/1994 5
## 7218 28/10/1992 5
## 7219 28/11/1994 5
## 7220 28/11/1997 5
## 7221 28/11/2002 5
## 7222 28/12/1996 5
## 7223 28/12/2003 5
## 7224 28/12/2006 5
## 7225 29/01/1990 5
## 7226 29/03/1994 5
## 7227 29/04/2001 5
## 7228 29/05/1991 5
## 7229 29/05/1992 5
## 7230 29/05/2010 5
## 7231 29/05/2011 5
## 7232 29/06/1994 5
## 7233 29/06/2003 5
## 7234 29/07/1992 5
## 7235 29/07/2012 5
## 7236 29/08/1990 5
## 7237 29/08/2009 5
## 7238 29/09/1993 5
## 7239 29/09/1996 5
## 7240 29/09/2012 5
## 7241 29/10/1992 5
## 7242 29/10/1993 5
## 7243 29/11/2003 5
## 7244 29/12/2006 5
## 7245 30/01/1991 5
## 7246 30/01/1992 5
## 7247 30/03/2008 5
## 7248 30/05/1990 5
## 7249 30/05/2010 5
## 7250 30/05/2011 5
## 7251 30/06/1993 5
## 7252 30/08/1991 5
## 7253 30/08/2003 5
## 7254 30/09/1992 5
## 7255 30/09/2007 5
## 7256 30/11/1990 5
## 7257 30/11/1995 5
## 7258 30/11/2013 5
## 7259 30/12/2007 5
## 7260 30/12/2012 5
## 7261 31/01/1991 5
## 7262 31/03/1994 5
## 7263 31/03/2007 5
## 7264 31/03/2012 5
## 7265 31/05/1990 5
## 7266 31/05/1994 5
## 7267 31/05/1997 5
## 7268 31/08/1989 5
## 7269 31/10/1990 5
## 7270 31/10/1999 5
## 7271 31/10/2004 5
## 7272 31/10/2010 5
## 7273 31/12/1990 5
## 7274 31/12/1992 5
## 7275 31/12/2011 5
## 7276 01/01/2010 4
## 7277 01/03/1991 4
## 7278 01/03/2014 4
## 7279 01/04/1995 4
## 7280 01/05/2010 4
## 7281 01/05/2014 4
## 7282 01/07/2012 4
## 7283 01/09/1989 4
## 7284 01/12/1994 4
## 7285 02/01/2011 4
## 7286 02/01/2012 4
## 7287 02/02/1993 4
## 7288 02/02/1994 4
## 7289 02/02/2002 4
## 7290 02/03/1990 4
## 7291 02/03/1993 4
## 7292 02/04/1992 4
## 7293 02/04/1993 4
## 7294 02/04/2010 4
## 7295 02/05/1994 4
## 7296 02/05/2010 4
## 7297 02/05/2014 4
## 7298 02/06/1992 4
## 7299 02/06/2014 4
## 7300 02/08/1998 4
## 7301 02/08/2003 4
## 7302 02/10/2010 4
## 7303 02/11/1990 4
## 7304 02/12/2001 4
## 7305 03/01/1990 4
## 7306 03/01/1998 4
## 7307 03/02/1992 4
## 7308 03/03/1993 4
## 7309 03/03/1994 4
## 7310 03/03/2001 4
## 7311 03/03/2013 4
## 7312 03/04/1993 4
## 7313 03/04/1999 4
## 7314 03/04/2011 4
## 7315 03/06/1994 4
## 7316 03/07/1995 4
## 7317 03/07/2011 4
## 7318 03/09/1993 4
## 7319 03/09/2006 4
## 7320 03/10/1998 4
## 7321 03/11/1992 4
## 7322 03/11/1993 4
## 7323 03/11/2001 4
## 7324 03/12/2005 4
## 7325 04/01/2003 4
## 7326 04/01/2014 4
## 7327 04/02/1992 4
## 7328 04/02/2006 4
## 7329 04/02/2012 4
## 7330 04/03/1993 4
## 7331 04/03/2007 4
## 7332 04/06/1993 4
## 7333 04/07/1995 4
## 7334 04/07/2006 4
## 7335 04/08/1989 4
## 7336 04/08/1992 4
## 7337 04/08/1994 4
## 7338 04/09/1999 4
## 7339 04/09/2005 4
## 7340 04/11/1991 4
## 7341 04/12/1992 4
## 7342 05/02/1992 4
## 7343 05/02/2006 4
## 7344 05/03/2005 4
## 7345 05/04/1990 4
## 7346 05/05/2013 4
## 7347 05/06/2010 4
## 7348 05/07/2008 4
## 7349 05/07/2010 4
## 7350 05/08/2007 4
## 7351 05/09/1998 4
## 7352 05/11/1990 4
## 7353 05/11/1991 4
## 7354 06/02/1999 4
## 7355 06/02/2000 4
## 7356 06/03/1990 4
## 7357 06/03/2010 4
## 7358 06/05/1994 4
## 7359 06/05/2000 4
## 7360 06/07/1990 4
## 7361 06/07/2003 4
## 7362 06/09/1994 4
## 7363 06/10/1992 4
## 7364 06/10/1994 4
## 7365 06/10/2012 4
## 7366 06/11/1990 4
## 7367 06/11/2004 4
## 7368 06/12/1995 4
## 7369 07/02/1991 4
## 7370 07/02/1999 4
## 7371 07/04/1994 4
## 7372 07/05/1993 4
## 7373 07/06/1998 4
## 7374 07/06/2009 4
## 7375 07/07/2007 4
## 7376 07/08/1990 4
## 7377 07/08/1994 4
## 7378 07/09/1990 4
## 7379 07/09/2008 4
## 7380 07/11/1990 4
## 7381 07/12/2013 4
## 7382 08/01/1990 4
## 7383 08/02/1993 4
## 7384 08/04/2012 4
## 7385 08/07/1992 4
## 7386 08/08/1991 4
## 7387 08/10/1993 4
## 7388 08/11/1995 4
## 7389 08/12/1992 4
## 7390 08/12/1993 4
## 7391 08/12/1995 4
## 7392 09/01/1992 4
## 7393 09/01/2011 4
## 7394 09/02/2013 4
## 7395 09/03/1996 4
## 7396 09/03/2013 4
## 7397 09/06/1994 4
## 7398 09/06/2013 4
## 7399 09/07/1992 4
## 7400 09/07/2000 4
## 7401 09/07/2005 4
## 7402 09/08/1991 4
## 7403 09/08/1998 4
## 7404 09/10/1992 4
## 7405 09/11/1992 4
## 7406 09/11/1993 4
## 7407 09/11/1996 4
## 7408 09/11/1997 4
## 7409 09/12/1995 4
## 7410 10/01/1995 4
## 7411 10/01/1998 4
## 7412 10/02/2002 4
## 7413 10/02/2007 4
## 7414 10/04/2004 4
## 7415 10/05/1993 4
## 7416 10/05/1994 4
## 7417 10/09/2006 4
## 7418 10/09/2011 4
## 7419 10/12/1993 4
## 7420 11/02/1993 4
## 7421 11/03/1993 4
## 7422 11/04/2004 4
## 7423 11/05/2014 4
## 7424 11/06/2005 4
## 7425 11/06/2014 4
## 7426 11/07/2010 4
## 7427 11/08/2002 4
## 7428 11/08/2007 4
## 7429 11/09/1989 4
## 7430 11/09/1990 4
## 7431 11/11/2007 4
## 7432 12/01/1993 4
## 7433 12/02/2000 4
## 7434 12/04/2008 4
## 7435 12/07/1991 4
## 7436 12/08/1993 4
## 7437 12/09/1998 4
## 7438 12/11/1992 4
## 7439 12/11/2006 4
## 7440 13/02/2011 4
## 7441 13/04/1993 4
## 7442 13/04/1994 4
## 7443 13/04/2003 4
## 7444 13/05/2012 4
## 7445 13/06/2004 4
## 7446 13/07/2008 4
## 7447 13/08/1990 4
## 7448 13/08/1991 4
## 7449 13/08/2000 4
## 7450 13/09/1994 4
## 7451 13/09/1995 4
## 7452 13/10/1992 4
## 7453 13/12/1993 4
## 7454 13/12/1994 4
## 7455 13/12/2008 4
## 7456 14/02/1990 4
## 7457 14/02/1991 4
## 7458 14/02/2009 4
## 7459 14/03/1991 4
## 7460 14/03/1993 4
## 7461 14/03/1994 4
## 7462 14/03/1995 4
## 7463 14/04/1992 4
## 7464 14/04/1994 4
## 7465 14/08/2005 4
## 7466 14/09/1990 4
## 7467 14/09/1993 4
## 7468 14/09/1994 4
## 7469 14/11/2009 4
## 7470 15/01/1991 4
## 7471 15/01/2001 4
## 7472 15/02/2004 4
## 7473 15/02/2009 4
## 7474 15/04/2007 4
## 7475 15/05/1989 4
## 7476 15/05/2014 4
## 7477 15/08/1998 4
## 7478 15/10/2006 4
## 7479 15/12/2002 4
## 7480 15/12/2013 4
## 7481 16/03/2014 4
## 7482 16/05/1990 4
## 7483 16/05/2004 4
## 7484 16/05/2010 4
## 7485 16/06/2001 4
## 7486 16/07/1992 4
## 7487 16/07/2000 4
## 7488 16/10/2011 4
## 7489 16/11/2008 4
## 7490 16/12/1994 4
## 7491 16/12/2006 4
## 7492 17/01/1991 4
## 7493 17/01/2009 4
## 7494 17/01/2010 4
## 7495 17/03/2001 4
## 7496 17/03/2002 4
## 7497 17/05/1990 4
## 7498 17/05/1994 4
## 7499 17/05/2014 4
## 7500 17/07/1999 4
## 7501 17/08/2013 4
## 7502 17/10/1994 4
## 7503 17/11/1989 4
## 7504 17/11/1992 4
## 7505 17/11/2002 4
## 7506 17/11/2007 4
## 7507 17/12/1993 4
## 7508 17/12/2011 4
## 7509 18/01/1991 4
## 7510 18/01/1994 4
## 7511 18/01/1995 4
## 7512 18/02/1993 4
## 7513 18/03/2006 4
## 7514 18/04/1999 4
## 7515 18/10/2009 4
## 7516 18/12/1991 4
## 7517 18/12/2010 4
## 7518 19/01/1993 4
## 7519 19/01/1994 4
## 7520 19/01/2008 4
## 7521 19/01/2013 4
## 7522 19/01/2014 4
## 7523 19/02/1991 4
## 7524 19/02/2000 4
## 7525 19/03/1991 4
## 7526 19/03/1992 4
## 7527 19/04/1991 4
## 7528 19/05/1994 4
## 7529 19/06/2004 4
## 7530 19/07/2008 4
## 7531 19/08/1995 4
## 7532 19/11/1990 4
## 7533 19/12/1991 4
## 7534 19/12/1998 4
## 7535 19/12/2004 4
## 7536 19/12/2010 4
## 7537 20/01/1993 4
## 7538 20/01/1995 4
## 7539 20/02/2000 4
## 7540 20/02/2005 4
## 7541 20/03/1999 4
## 7542 20/04/2013 4
## 7543 20/05/1991 4
## 7544 20/08/2006 4
## 7545 20/11/1990 4
## 7546 20/11/1999 4
## 7547 20/12/1991 4
## 7548 20/12/1997 4
## 7549 21/01/2001 4
## 7550 21/01/2002 4
## 7551 21/01/2007 4
## 7552 21/02/2004 4
## 7553 21/03/1999 4
## 7554 21/03/2010 4
## 7555 21/04/2001 4
## 7556 21/04/2013 4
## 7557 21/05/1991 4
## 7558 21/06/1998 4
## 7559 21/08/1992 4
## 7560 21/09/2008 4
## 7561 21/10/1991 4
## 7562 21/10/2007 4
## 7563 21/11/1998 4
## 7564 21/11/2009 4
## 7565 21/11/2010 4
## 7566 22/02/2004 4
## 7567 22/03/1993 4
## 7568 22/07/1994 4
## 7569 22/09/2013 4
## 7570 22/11/2007 4
## 7571 22/11/2008 4
## 7572 22/11/2009 4
## 7573 22/11/2012 4
## 7574 22/12/1995 4
## 7575 22/12/1996 4
## 7576 22/12/2001 4
## 7577 23/03/1990 4
## 7578 23/03/1992 4
## 7579 23/03/1995 4
## 7580 23/03/2008 4
## 7581 23/03/2013 4
## 7582 23/04/2000 4
## 7583 23/05/1990 4
## 7584 23/05/2014 4
## 7585 23/06/2014 4
## 7586 23/08/1993 4
## 7587 23/08/2008 4
## 7588 23/11/1996 4
## 7589 23/12/2012 4
## 7590 24/01/1990 4
## 7591 24/02/1996 4
## 7592 24/02/2001 4
## 7593 24/02/2002 4
## 7594 24/03/2007 4
## 7595 24/04/2005 4
## 7596 24/04/2011 4
## 7597 24/05/1991 4
## 7598 24/06/1992 4
## 7599 24/06/2012 4
## 7600 24/08/2013 4
## 7601 24/09/2011 4
## 7602 24/10/2004 4
## 7603 24/11/2001 4
## 7604 24/11/2002 4
## 7605 24/11/2006 4
## 7606 24/11/2013 4
## 7607 24/12/2000 4
## 7608 24/12/2003 4
## 7609 24/12/2007 4
## 7610 24/12/2009 4
## 7611 25/01/1998 4
## 7612 25/01/2014 4
## 7613 25/05/1990 4
## 7614 25/05/2014 4
## 7615 25/06/2014 4
## 7616 25/08/2007 4
## 7617 25/09/1992 4
## 7618 25/10/1990 4
## 7619 25/11/1992 4
## 7620 25/11/2010 4
## 7621 25/12/1998 4
## 7622 25/12/2003 4
## 7623 25/12/2005 4
## 7624 25/12/2008 4
## 7625 26/01/1995 4
## 7626 26/01/2014 4
## 7627 26/02/2006 4
## 7628 26/04/1991 4
## 7629 26/06/2014 4
## 7630 26/08/1995 4
## 7631 26/10/2002 4
## 7632 26/10/2008 4
## 7633 26/11/2009 4
## 7634 26/11/2010 4
## 7635 26/12/1990 4
## 7636 26/12/2001 4
## 7637 26/12/2002 4
## 7638 26/12/2004 4
## 7639 26/12/2011 4
## 7640 26/12/2013 4
## 7641 27/01/1996 4
## 7642 27/03/1999 4
## 7643 27/05/1994 4
## 7644 27/06/1990 4
## 7645 27/06/1999 4
## 7646 27/06/2010 4
## 7647 27/07/2002 4
## 7648 27/07/2003 4
## 7649 27/08/2000 4
## 7650 27/08/2011 4
## 7651 27/09/1998 4
## 7652 27/09/2009 4
## 7653 27/10/2002 4
## 7654 27/11/1989 4
## 7655 27/11/2003 4
## 7656 27/11/2011 4
## 7657 27/12/2009 4
## 7658 28/01/1992 4
## 7659 28/01/2012 4
## 7660 28/03/1994 4
## 7661 28/04/1993 4
## 7662 28/09/1997 4
## 7663 28/10/1995 4
## 7664 28/12/1990 4
## 7665 28/12/1995 4
## 7666 28/12/2008 4
## 7667 29/01/2012 4
## 7668 29/03/1998 4
## 7669 29/04/1993 4
## 7670 29/04/1994 4
## 7671 29/05/1994 4
## 7672 29/07/2001 4
## 7673 29/08/1991 4
## 7674 29/08/1999 4
## 7675 29/09/2013 4
## 7676 29/10/1990 4
## 7677 29/11/2008 4
## 7678 29/12/1999 4
## 7679 29/12/2013 4
## 7680 30/01/2011 4
## 7681 30/03/1992 4
## 7682 30/03/1993 4
## 7683 30/04/1990 4
## 7684 30/04/2011 4
## 7685 30/05/1995 4
## 7686 30/06/2002 4
## 7687 30/07/2006 4
## 7688 30/09/2001 4
## 7689 30/09/2012 4
## 7690 30/10/2011 4
## 7691 30/11/2008 4
## 7692 30/12/1992 4
## 7693 30/12/1995 4
## 7694 30/12/2000 4
## 7695 30/12/2001 4
## 7696 31/01/1994 4
## 7697 31/01/2004 4
## 7698 31/03/2002 4
## 7699 31/05/2009 4
## 7700 31/07/2005 4
## 7701 31/08/1995 4
## 7702 31/10/1994 4
## 7703 01/01/1993 3
## 7704 01/01/2008 3
## 7705 01/02/1990 3
## 7706 01/02/2014 3
## 7707 01/03/1993 3
## 7708 01/03/1995 3
## 7709 01/07/1990 3
## 7710 01/07/1995 3
## 7711 01/09/1990 3
## 7712 01/11/1991 3
## 7713 01/11/1994 3
## 7714 02/01/1994 3
## 7715 02/02/1990 3
## 7716 02/02/2014 3
## 7717 02/08/1989 3
## 7718 02/08/2008 3
## 7719 02/10/1992 3
## 7720 02/12/1994 3
## 7721 03/02/1995 3
## 7722 03/02/2002 3
## 7723 03/04/1990 3
## 7724 03/05/1994 3
## 7725 03/07/1999 3
## 7726 03/07/2010 3
## 7727 03/08/2008 3
## 7728 03/09/1994 3
## 7729 03/11/2012 3
## 7730 03/12/1990 3
## 7731 04/03/1994 3
## 7732 04/04/2004 3
## 7733 04/05/1994 3
## 7734 04/06/1995 3
## 7735 04/07/2011 3
## 7736 04/09/1992 3
## 7737 04/10/1994 3
## 7738 04/12/1990 3
## 7739 04/12/1991 3
## 7740 05/02/1990 3
## 7741 05/02/2011 3
## 7742 05/04/1991 3
## 7743 05/04/1995 3
## 7744 05/04/2008 3
## 7745 05/05/1993 3
## 7746 05/06/1993 3
## 7747 05/09/1999 3
## 7748 05/09/2010 3
## 7749 05/10/1989 3
## 7750 05/10/2003 3
## 7751 06/01/1993 3
## 7752 06/01/2008 3
## 7753 06/02/2010 3
## 7754 06/02/2011 3
## 7755 06/03/1992 3
## 7756 06/04/1994 3
## 7757 06/05/1992 3
## 7758 06/05/1993 3
## 7759 06/06/1994 3
## 7760 06/07/1993 3
## 7761 06/07/2008 3
## 7762 06/08/1992 3
## 7763 06/08/2011 3
## 7764 06/09/1998 3
## 7765 06/10/2002 3
## 7766 06/10/2013 3
## 7767 06/11/1989 3
## 7768 06/11/1991 3
## 7769 06/11/1992 3
## 7770 06/11/1999 3
## 7771 06/11/2010 3
## 7772 06/12/1989 3
## 7773 07/02/1990 3
## 7774 07/02/1994 3
## 7775 07/03/1998 3
## 7776 07/03/2010 3
## 7777 07/05/1991 3
## 7778 07/05/1992 3
## 7779 07/05/2011 3
## 7780 07/06/1989 3
## 7781 07/10/1995 3
## 7782 07/10/2007 3
## 7783 07/11/2004 3
## 7784 07/11/2009 3
## 7785 07/12/1993 3
## 7786 08/01/1993 3
## 7787 08/01/2006 3
## 7788 08/01/2011 3
## 7789 08/02/2004 3
## 7790 08/02/2014 3
## 7791 08/03/2009 3
## 7792 08/04/1993 3
## 7793 08/05/1992 3
## 7794 08/05/2005 3
## 7795 08/05/2010 3
## 7796 08/06/1989 3
## 7797 08/06/1990 3
## 7798 08/06/2008 3
## 7799 08/07/1995 3
## 7800 08/08/2010 3
## 7801 08/10/1992 3
## 7802 08/10/1995 3
## 7803 08/11/1998 3
## 7804 08/12/1996 3
## 7805 09/01/1990 3
## 7806 09/02/2003 3
## 7807 09/02/2014 3
## 7808 09/03/1994 3
## 7809 09/03/2014 3
## 7810 09/04/1992 3
## 7811 09/05/2004 3
## 7812 09/06/2007 3
## 7813 09/07/2006 3
## 7814 09/09/1992 3
## 7815 09/09/1993 3
## 7816 09/09/1994 3
## 7817 09/09/2000 3
## 7818 09/09/2006 3
## 7819 09/10/2005 3
## 7820 10/01/2010 3
## 7821 10/02/1992 3
## 7822 10/02/1996 3
## 7823 10/03/2013 3
## 7824 10/05/2014 3
## 7825 10/06/2014 3
## 7826 10/07/2010 3
## 7827 10/09/1992 3
## 7828 10/11/1994 3
## 7829 10/12/1992 3
## 7830 10/12/2011 3
## 7831 11/01/1990 3
## 7832 11/01/1993 3
## 7833 11/01/1994 3
## 7834 11/01/1998 3
## 7835 11/04/2009 3
## 7836 11/05/2013 3
## 7837 11/08/1989 3
## 7838 11/08/1992 3
## 7839 11/11/1995 3
## 7840 11/11/2000 3
## 7841 11/12/1991 3
## 7842 11/12/1992 3
## 7843 12/01/1994 3
## 7844 12/01/2008 3
## 7845 12/01/2013 3
## 7846 12/02/2006 3
## 7847 12/03/2011 3
## 7848 12/04/2003 3
## 7849 12/06/1992 3
## 7850 12/07/1998 3
## 7851 12/07/2008 3
## 7852 12/09/1991 3
## 7853 12/10/1990 3
## 7854 12/10/2003 3
## 7855 13/01/1995 3
## 7856 13/02/2000 3
## 7857 13/03/1990 3
## 7858 13/03/2011 3
## 7859 13/04/2008 3
## 7860 13/05/1991 3
## 7861 13/05/1992 3
## 7862 13/06/1999 3
## 7863 13/06/2009 3
## 7864 13/06/2010 3
## 7865 13/11/1989 3
## 7866 13/11/2010 3
## 7867 13/12/1990 3
## 7868 14/02/1992 3
## 7869 14/02/1998 3
## 7870 14/05/1993 3
## 7871 14/05/2011 3
## 7872 14/07/2013 3
## 7873 14/08/1992 3
## 7874 14/10/1995 3
## 7875 14/11/1990 3
## 7876 14/11/2010 3
## 7877 14/12/1989 3
## 7878 14/12/2002 3
## 7879 14/12/2003 3
## 7880 15/02/1993 3
## 7881 15/02/2014 3
## 7882 15/03/1990 3
## 7883 15/05/2011 3
## 7884 15/06/2014 3
## 7885 15/09/1989 3
## 7886 15/09/2013 3
## 7887 15/12/1992 3
## 7888 16/02/1994 3
## 7889 16/03/1990 3
## 7890 16/03/2008 3
## 7891 16/04/1992 3
## 7892 16/06/1989 3
## 7893 16/06/1992 3
## 7894 16/07/1993 3
## 7895 16/09/1994 3
## 7896 16/09/2001 3
## 7897 16/10/1989 3
## 7898 17/02/1995 3
## 7899 17/02/1996 3
## 7900 17/02/2007 3
## 7901 17/04/1989 3
## 7902 17/05/2008 3
## 7903 17/05/2009 3
## 7904 17/07/2011 3
## 7905 17/09/1995 3
## 7906 17/10/1999 3
## 7907 17/10/2009 3
## 7908 17/12/1992 3
## 7909 18/01/2014 3
## 7910 18/02/1996 3
## 7911 18/03/1992 3
## 7912 18/08/1989 3
## 7913 18/11/1992 3
## 7914 18/11/1994 3
## 7915 18/12/2005 3
## 7916 18/12/2011 3
## 7917 19/01/1995 3
## 7918 19/01/2003 3
## 7919 19/01/2009 3
## 7920 19/03/2011 3
## 7921 19/04/2014 3
## 7922 19/06/2005 3
## 7923 19/10/1992 3
## 7924 19/10/1993 3
## 7925 19/10/2003 3
## 7926 19/10/2008 3
## 7927 20/02/1990 3
## 7928 20/04/1990 3
## 7929 20/04/2008 3
## 7930 20/05/1995 3
## 7931 20/06/1998 3
## 7932 20/07/2003 3
## 7933 20/09/1998 3
## 7934 20/10/1989 3
## 7935 20/10/1992 3
## 7936 20/10/1994 3
## 7937 20/10/2001 3
## 7938 20/11/1989 3
## 7939 20/12/1994 3
## 7940 21/01/1993 3
## 7941 21/02/1991 3
## 7942 21/02/1992 3
## 7943 21/03/2004 3
## 7944 21/05/1995 3
## 7945 21/06/1995 3
## 7946 21/07/2012 3
## 7947 21/11/1989 3
## 7948 21/12/1992 3
## 7949 22/01/2012 3
## 7950 22/02/2003 3
## 7951 22/04/1994 3
## 7952 22/04/2007 3
## 7953 22/06/2003 3
## 7954 22/06/2008 3
## 7955 22/11/1991 3
## 7956 22/11/1992 3
## 7957 22/11/1994 3
## 7958 22/12/1992 3
## 7959 23/02/1990 3
## 7960 23/02/2013 3
## 7961 23/02/2014 3
## 7962 23/06/2013 3
## 7963 23/07/1994 3
## 7964 23/09/2006 3
## 7965 23/10/1991 3
## 7966 23/10/2010 3
## 7967 23/11/1994 3
## 7968 23/11/1995 3
## 7969 23/11/2012 3
## 7970 23/12/1992 3
## 7971 24/02/1993 3
## 7972 24/03/1993 3
## 7973 24/04/1992 3
## 7974 24/05/2003 3
## 7975 24/08/1997 3
## 7976 24/11/1993 3
## 7977 24/11/2005 3
## 7978 24/12/1995 3
## 7979 24/12/2001 3
## 7980 24/12/2004 3
## 7981 24/12/2010 3
## 7982 24/12/2012 3
## 7983 25/01/1990 3
## 7984 25/01/1995 3
## 7985 25/02/2012 3
## 7986 25/03/1994 3
## 7987 25/03/2007 3
## 7988 25/04/1991 3
## 7989 25/05/1993 3
## 7990 25/05/1997 3
## 7991 25/10/1989 3
## 7992 25/10/2003 3
## 7993 25/10/2009 3
## 7994 25/11/1995 3
## 7995 25/12/1997 3
## 7996 25/12/2011 3
## 7997 26/02/1993 3
## 7998 26/03/2011 3
## 7999 26/04/1992 3
## 8000 26/04/2003 3
## 8001 26/04/2014 3
## 8002 26/05/1994 3
## 8003 26/05/2001 3
## 8004 26/05/2002 3
## 8005 26/06/1990 3
## 8006 26/07/1994 3
## 8007 26/07/2009 3
## 8008 26/08/2007 3
## 8009 26/09/1993 3
## 8010 26/09/2010 3
## 8011 26/10/1990 3
## 8012 26/11/1991 3
## 8013 26/12/2003 3
## 8014 27/01/1995 3
## 8015 27/03/1992 3
## 8016 27/05/2006 3
## 8017 27/05/2012 3
## 8018 27/07/2008 3
## 8019 27/10/1993 3
## 8020 27/10/2013 3
## 8021 27/11/1990 3
## 8022 27/11/1991 3
## 8023 27/11/2005 3
## 8024 27/12/1992 3
## 8025 27/12/1995 3
## 8026 28/02/1990 3
## 8027 28/02/2010 3
## 8028 28/03/2010 3
## 8029 28/05/1993 3
## 8030 28/07/2002 3
## 8031 28/08/1989 3
## 8032 28/09/1992 3
## 8033 28/10/1991 3
## 8034 28/10/2006 3
## 8035 28/10/2007 3
## 8036 28/11/1989 3
## 8037 28/11/1996 3
## 8038 28/11/1999 3
## 8039 28/11/2008 3
## 8040 28/12/1992 3
## 8041 28/12/1993 3
## 8042 28/12/1994 3
## 8043 29/01/2011 3
## 8044 29/03/1990 3
## 8045 29/03/2008 3
## 8046 29/03/2014 3
## 8047 29/04/2012 3
## 8048 29/08/2004 3
## 8049 29/09/1994 3
## 8050 29/10/1995 3
## 8051 29/11/2002 3
## 8052 29/12/1989 3
## 8053 29/12/2001 3
## 8054 29/12/2002 3
## 8055 29/12/2007 3
## 8056 30/01/1990 3
## 8057 30/04/1991 3
## 8058 30/05/1998 3
## 8059 30/07/1991 3
## 8060 30/10/1990 3
## 8061 30/11/1993 3
## 8062 30/11/2003 3
## 8063 30/12/1993 3
## 8064 31/01/1990 3
## 8065 31/05/2014 3
## 8066 31/07/1991 3
## 8067 31/12/1991 3
## 8068 31/12/2006 3
## 8069 31/12/2010 3
## 8070 31/12/2012 3
## 8071 01/01/1994 2
## 8072 01/01/1995 2
## 8073 01/03/1989 2
## 8074 01/04/2006 2
## 8075 01/05/1989 2
## 8076 01/05/1993 2
## 8077 01/06/1979 2
## 8078 01/06/1988 2
## 8079 01/06/1991 2
## 8080 01/10/1994 2
## 8081 01/11/1989 2
## 8082 01/12/2012 2
## 8083 02/03/1992 2
## 8084 02/05/1989 2
## 8085 02/07/1991 2
## 8086 02/11/1992 2
## 8087 02/11/2013 2
## 8088 03/01/1992 2
## 8089 03/05/2014 2
## 8090 03/07/2005 2
## 8091 03/08/1991 2
## 8092 03/09/1995 2
## 8093 03/09/2001 2
## 8094 03/09/2012 2
## 8095 03/12/1995 2
## 8096 03/12/2011 2
## 8097 04/01/1991 2
## 8098 04/05/2003 2
## 8099 04/05/2014 2
## 8100 04/07/2000 2
## 8101 04/09/1993 2
## 8102 04/09/1995 2
## 8103 04/10/2003 2
## 8104 04/11/1988 2
## 8105 04/12/1989 2
## 8106 04/12/2004 2
## 8107 05/01/1990 2
## 8108 05/01/1994 2
## 8109 05/03/1993 2
## 8110 05/03/2000 2
## 8111 05/05/1994 2
## 8112 05/08/1993 2
## 8113 05/08/1995 2
## 8114 05/09/1993 2
## 8115 05/10/1988 2
## 8116 05/11/1994 2
## 8117 05/11/1995 2
## 8118 05/11/2006 2
## 8119 05/12/2009 2
## 8120 05/12/2010 2
## 8121 06/02/1989 2
## 8122 06/02/1994 2
## 8123 06/05/1995 2
## 8124 06/07/1989 2
## 8125 07/01/2006 2
## 8126 07/05/2005 2
## 8127 07/06/1988 2
## 8128 07/12/1990 2
## 8129 08/01/1991 2
## 8130 08/01/1994 2
## 8131 08/02/1994 2
## 8132 08/04/1995 2
## 8133 08/04/2007 2
## 8134 08/07/1989 2
## 8135 08/10/1994 2
## 8136 08/11/1989 2
## 8137 09/05/1995 2
## 8138 09/08/1992 2
## 8139 09/09/1995 2
## 8140 09/10/1989 2
## 8141 09/10/1994 2
## 8142 09/11/1990 2
## 8143 09/11/2008 2
## 8144 10/08/1989 2
## 8145 10/11/1992 2
## 8146 10/12/1994 2
## 8147 10/12/2006 2
## 8148 11/01/1991 2
## 8149 11/01/1992 2
## 8150 11/02/1995 2
## 8151 11/04/1990 2
## 8152 11/04/1992 2
## 8153 11/10/1988 2
## 8154 11/12/1989 2
## 8155 11/12/2010 2
## 8156 12/01/1990 2
## 8157 12/03/1990 2
## 8158 12/03/1992 2
## 8159 12/04/2014 2
## 8160 12/05/1989 2
## 8161 12/05/2002 2
## 8162 12/06/1989 2
## 8163 12/07/1989 2
## 8164 12/10/1989 2
## 8165 12/11/1995 2
## 8166 12/12/1991 2
## 8167 13/01/1994 2
## 8168 13/02/1999 2
## 8169 13/02/2005 2
## 8170 13/03/1989 2
## 8171 13/03/1999 2
## 8172 13/03/2004 2
## 8173 13/04/2002 2
## 8174 13/04/2014 2
## 8175 13/07/1988 2
## 8176 13/08/1994 2
## 8177 13/10/1988 2
## 8178 13/10/1990 2
## 8179 13/11/1992 2
## 8180 13/11/2004 2
## 8181 13/12/1989 2
## 8182 14/01/1993 2
## 8183 14/06/1989 2
## 8184 14/06/2008 2
## 8185 14/06/2014 2
## 8186 14/07/1988 2
## 8187 14/09/1989 2
## 8188 15/01/1995 2
## 8189 15/01/1996 2
## 8190 15/02/1989 2
## 8191 15/07/1995 2
## 8192 15/07/2007 2
## 8193 15/08/1985 2
## 8194 15/08/1988 2
## 8195 15/10/1993 2
## 8196 15/10/1994 2
## 8197 15/11/2003 2
## 8198 15/12/1991 2
## 8199 15/12/1993 2
## 8200 16/01/1990 2
## 8201 16/01/2011 2
## 8202 16/02/1990 2
## 8203 16/05/1993 2
## 8204 16/07/1991 2
## 8205 16/11/1990 2
## 8206 16/12/1993 2
## 8207 17/01/1989 2
## 8208 17/01/1990 2
## 8209 17/04/2010 2
## 8210 17/05/1989 2
## 8211 17/05/2003 2
## 8212 17/07/2005 2
## 8213 17/09/1993 2
## 8214 17/09/1994 2
## 8215 17/12/1991 2
## 8216 17/12/1994 2
## 8217 18/02/1994 2
## 8218 18/02/2006 2
## 8219 18/06/1994 2
## 8220 18/06/1995 2
## 8221 18/09/1989 2
## 8222 18/09/1990 2
## 8223 18/09/1993 2
## 8224 18/10/1989 2
## 8225 18/10/2003 2
## 8226 18/11/2007 2
## 8227 18/12/1989 2
## 8228 18/12/1992 2
## 8229 19/01/1990 2
## 8230 19/02/1989 2
## 8231 19/02/1993 2
## 8232 19/03/1987 2
## 8233 19/03/1994 2
## 8234 19/06/1994 2
## 8235 19/07/1989 2
## 8236 19/09/1989 2
## 8237 19/11/1994 2
## 8238 19/12/1992 2
## 8239 19/12/1993 2
## 8240 20/06/1999 2
## 8241 20/11/1994 2
## 8242 20/12/2008 2
## 8243 21/01/1996 2
## 8244 21/02/1990 2
## 8245 21/03/1994 2
## 8246 21/05/1986 2
## 8247 22/01/1990 2
## 8248 22/02/1990 2
## 8249 22/04/2006 2
## 8250 22/05/1992 2
## 8251 22/08/1993 2
## 8252 22/09/1986 2
## 8253 22/09/2007 2
## 8254 22/10/2011 2
## 8255 22/11/1989 2
## 8256 22/11/1993 2
## 8257 22/11/2001 2
## 8258 22/11/2003 2
## 8259 23/01/1991 2
## 8260 23/01/1992 2
## 8261 23/02/2003 2
## 8262 23/04/1991 2
## 8263 23/07/1995 2
## 8264 23/08/1989 2
## 8265 23/10/1992 2
## 8266 23/10/1994 2
## 8267 23/12/1993 2
## 8268 23/12/2006 2
## 8269 23/12/2007 2
## 8270 24/01/1993 2
## 8271 24/03/2013 2
## 8272 24/04/1989 2
## 8273 24/06/1995 2
## 8274 24/06/2001 2
## 8275 24/07/1989 2
## 8276 24/08/2008 2
## 8277 24/10/1989 2
## 8278 24/11/1994 2
## 8279 24/11/2011 2
## 8280 24/12/2005 2
## 8281 25/02/1992 2
## 8282 25/02/1996 2
## 8283 25/02/2007 2
## 8284 25/03/1993 2
## 8285 25/04/1989 2
## 8286 25/04/2009 2
## 8287 25/09/1989 2
## 8288 25/11/2005 2
## 8289 25/12/1993 2
## 8290 25/12/1999 2
## 8291 25/12/2009 2
## 8292 25/12/2012 2
## 8293 26/10/1993 2
## 8294 26/11/1995 2
## 8295 26/11/1998 2
## 8296 26/11/2004 2
## 8297 26/12/1994 2
## 8298 26/12/1995 2
## 8299 26/12/1996 2
## 8300 27/02/1992 2
## 8301 27/03/2005 2
## 8302 27/03/2010 2
## 8303 27/03/2011 2
## 8304 27/04/1990 2
## 8305 27/06/1989 2
## 8306 27/06/1993 2
## 8307 27/07/1995 2
## 8308 27/11/2008 2
## 8309 27/12/1989 2
## 8310 27/12/1990 2
## 8311 27/12/1991 2
## 8312 27/12/1999 2
## 8313 27/12/2011 2
## 8314 28/02/1992 2
## 8315 28/04/1989 2
## 8316 28/05/2011 2
## 8317 28/06/1989 2
## 8318 28/07/1989 2
## 8319 28/09/1989 2
## 8320 29/03/2009 2
## 8321 29/05/1995 2
## 8322 29/06/2013 2
## 8323 29/07/1991 2
## 8324 29/09/2002 2
## 8325 29/11/1990 2
## 8326 29/11/1994 2
## 8327 29/12/1992 2
## 8328 29/12/1993 2
## 8329 29/12/1994 2
## 8330 30/01/1989 2
## 8331 30/01/1993 2
## 8332 30/03/1990 2
## 8333 30/03/1991 2
## 8334 30/05/1989 2
## 8335 30/07/1995 2
## 8336 30/09/2006 2
## 8337 30/12/1994 2
## 8338 31/01/1999 2
## 8339 31/08/2008 2
## 8340 31/10/1989 2
## 8341 31/12/1995 2
## 8342 01/01/1984 1
## 8343 01/01/1985 1
## 8344 01/01/1986 1
## 8345 01/01/1992 1
## 8346 01/02/1989 1
## 8347 01/02/1992 1
## 8348 01/03/2008 1
## 8349 01/04/1987 1
## 8350 01/04/1994 1
## 8351 01/05/1990 1
## 8352 01/05/1994 1
## 8353 01/05/2011 1
## 8354 01/07/1979 1
## 8355 01/07/1987 1
## 8356 01/07/1988 1
## 8357 01/10/1992 1
## 8358 01/11/1992 1
## 8359 01/12/1989 1
## 8360 01/12/1993 1
## 8361 02/01/1995 1
## 8362 02/03/1988 1
## 8363 02/03/1991 1
## 8364 02/03/2014 1
## 8365 02/04/1986 1
## 8366 02/05/1992 1
## 8367 02/06/1969 1
## 8368 02/06/1988 1
## 8369 02/06/1990 1
## 8370 02/07/1986 1
## 8371 02/07/1994 1
## 8372 02/07/2011 1
## 8373 02/09/1995 1
## 8374 02/10/1989 1
## 8375 02/10/1991 1
## 8376 02/10/1993 1
## 8377 02/10/1994 1
## 8378 02/11/1983 1
## 8379 02/11/1988 1
## 8380 02/11/1989 1
## 8381 02/11/1991 1
## 8382 02/12/1989 1
## 8383 03/02/1991 1
## 8384 03/03/1990 1
## 8385 03/03/1995 1
## 8386 03/04/1989 1
## 8387 03/04/1992 1
## 8388 03/04/2005 1
## 8389 03/05/1988 1
## 8390 03/06/1988 1
## 8391 03/06/1995 1
## 8392 03/07/1989 1
## 8393 03/07/1993 1
## 8394 03/08/1984 1
## 8395 03/08/1989 1
## 8396 03/08/2013 1
## 8397 03/09/1986 1
## 8398 03/09/1990 1
## 8399 03/11/1988 1
## 8400 03/11/1989 1
## 8401 03/11/1991 1
## 8402 03/12/1992 1
## 8403 04/01/1990 1
## 8404 04/02/1988 1
## 8405 04/02/1995 1
## 8406 04/03/1990 1
## 8407 04/04/1986 1
## 8408 04/04/1987 1
## 8409 04/04/1992 1
## 8410 04/04/1993 1
## 8411 04/05/1989 1
## 8412 04/05/1991 1
## 8413 04/06/1980 1
## 8414 04/07/1994 1
## 8415 04/08/1988 1
## 8416 04/09/1987 1
## 8417 04/09/1989 1
## 8418 04/10/1988 1
## 8419 04/11/1985 1
## 8420 04/11/1990 1
## 8421 04/11/1995 1
## 8422 04/12/1993 1
## 8423 05/01/1979 1
## 8424 05/01/1995 1
## 8425 05/02/1988 1
## 8426 05/03/1988 1
## 8427 05/05/1988 1
## 8428 05/06/1994 1
## 8429 05/07/1989 1
## 8430 05/08/1990 1
## 8431 05/09/1989 1
## 8432 05/09/1992 1
## 8433 05/09/1994 1
## 8434 05/11/1984 1
## 8435 05/11/1992 1
## 8436 06/02/1967 1
## 8437 06/02/1995 1
## 8438 06/04/1978 1
## 8439 06/04/2014 1
## 8440 06/06/1989 1
## 8441 06/06/1992 1
## 8442 06/07/1983 1
## 8443 06/08/1994 1
## 8444 06/08/1995 1
## 8445 06/09/1988 1
## 8446 06/09/1993 1
## 8447 06/10/1987 1
## 8448 06/10/1988 1
## 8449 06/10/1991 1
## 8450 06/11/1993 1
## 8451 06/12/1992 1
## 8452 06/12/1994 1
## 8453 06/12/2008 1
## 8454 07/01/1995 1
## 8455 07/02/1984 1
## 8456 07/02/1989 1
## 8457 07/03/1989 1
## 8458 07/07/1989 1
## 8459 07/07/1991 1
## 8460 07/09/2009 1
## 8461 07/11/1999 1
## 8462 07/12/1987 1
## 8463 07/12/1989 1
## 8464 07/12/1991 1
## 8465 08/01/1995 1
## 8466 08/02/2009 1
## 8467 08/03/1990 1
## 8468 08/05/1986 1
## 8469 08/05/1988 1
## 8470 08/05/1994 1
## 8471 08/06/1979 1
## 8472 08/07/1985 1
## 8473 08/07/1986 1
## 8474 08/07/1987 1
## 8475 08/08/1977 1
## 8476 08/08/1988 1
## 8477 08/08/1989 1
## 8478 08/08/1992 1
## 8479 08/09/1988 1
## 8480 08/09/1991 1
## 8481 08/11/1988 1
## 8482 08/11/2009 1
## 8483 08/12/1985 1
## 8484 08/12/1991 1
## 8485 09/01/1993 1
## 8486 09/01/2005 1
## 8487 09/02/1989 1
## 8488 09/02/1990 1
## 8489 09/02/1991 1
## 8490 09/03/1989 1
## 8491 09/03/1991 1
## 8492 09/04/1993 1
## 8493 09/04/1995 1
## 8494 09/05/1992 1
## 8495 09/05/1993 1
## 8496 09/07/1994 1
## 8497 09/08/1989 1
## 8498 09/11/1987 1
## 8499 09/11/1988 1
## 8500 09/12/1989 1
## 8501 09/12/1994 1
## 8502 10/01/1985 1
## 8503 10/01/1990 1
## 8504 10/02/1988 1
## 8505 10/03/1989 1
## 8506 10/03/1994 1
## 8507 10/06/1981 1
## 8508 10/06/1987 1
## 8509 10/07/1989 1
## 8510 10/09/1989 1
## 8511 10/09/1994 1
## 8512 10/09/1995 1
## 8513 10/10/1989 1
## 8514 10/10/1992 1
## 8515 10/10/1993 1
## 8516 10/10/1998 1
## 8517 10/11/1981 1
## 8518 10/11/1986 1
## 8519 10/11/1988 1
## 8520 10/11/1990 1
## 8521 10/12/1985 1
## 8522 10/12/1989 1
## 8523 10/12/1991 1
## 8524 10/12/1995 1
## 8525 11/02/2012 1
## 8526 11/03/1995 1
## 8527 11/04/1985 1
## 8528 11/05/1982 1
## 8529 11/05/1987 1
## 8530 11/05/1988 1
## 8531 11/06/1987 1
## 8532 11/07/1988 1
## 8533 11/07/1989 1
## 8534 11/07/1992 1
## 8535 11/09/1993 1
## 8536 11/10/1989 1
## 8537 11/11/1991 1
## 8538 11/11/1994 1
## 8539 11/12/1994 1
## 8540 12/01/1979 1
## 8541 12/01/1988 1
## 8542 12/01/1989 1
## 8543 12/01/1992 1
## 8544 12/01/2014 1
## 8545 12/02/1985 1
## 8546 12/02/1993 1
## 8547 12/02/1995 1
## 8548 12/03/1995 1
## 8549 12/04/1989 1
## 8550 12/05/1986 1
## 8551 12/05/1988 1
## 8552 12/05/1990 1
## 8553 12/07/1988 1
## 8554 12/08/1987 1
## 8555 12/08/1995 1
## 8556 12/09/1989 1
## 8557 12/09/1992 1
## 8558 12/10/1988 1
## 8559 12/10/1991 1
## 8560 12/11/1989 1
## 8561 12/11/1990 1
## 8562 12/11/2011 1
## 8563 12/12/1988 1
## 8564 12/12/1992 1
## 8565 12/12/1993 1
## 8566 12/12/2004 1
## 8567 13/02/1990 1
## 8568 13/02/1993 1
## 8569 13/02/1994 1
## 8570 13/04/1989 1
## 8571 13/05/1986 1
## 8572 13/05/1994 1
## 8573 13/05/1995 1
## 8574 13/06/1988 1
## 8575 13/07/1987 1
## 8576 13/07/1991 1
## 8577 13/09/1988 1
## 8578 13/09/1989 1
## 8579 13/09/1992 1
## 8580 13/11/1985 1
## 8581 13/11/1993 1
## 8582 13/12/1988 1
## 8583 13/12/2009 1
## 8584 14/01/1994 1
## 8585 14/01/1995 1
## 8586 14/02/1993 1
## 8587 14/04/1991 1
## 8588 14/04/1995 1
## 8589 14/05/1995 1
## 8590 14/06/1988 1
## 8591 14/08/1986 1
## 8592 14/08/1989 1
## 8593 14/08/1993 1
## 8594 14/09/1988 1
## 8595 14/11/1989 1
## 8596 14/12/1991 1
## 8597 14/12/1994 1
## 8598 15/01/1990 1
## 8599 15/01/1994 1
## 8600 15/01/2012 1
## 8601 15/02/1992 1
## 8602 15/03/1992 1
## 8603 15/04/1988 1
## 8604 15/04/1995 1
## 8605 15/06/1989 1
## 8606 15/07/1988 1
## 8607 15/08/1989 1
## 8608 15/08/1993 1
## 8609 15/09/1990 1
## 8610 15/10/1987 1
## 8611 15/12/1987 1
## 8612 15/12/1989 1
## 8613 16/01/1994 1
## 8614 16/01/2005 1
## 8615 16/02/1987 1
## 8616 16/02/1989 1
## 8617 16/03/1988 1
## 8618 16/04/1995 1
## 8619 16/05/1985 1
## 8620 16/05/1989 1
## 8621 16/06/1988 1
## 8622 16/07/1994 1
## 8623 16/07/1995 1
## 8624 16/08/1992 1
## 8625 16/09/1982 1
## 8626 16/09/1987 1
## 8627 16/09/1989 1
## 8628 16/12/1995 1
## 8629 16/12/2001 1
## 8630 17/01/1986 1
## 8631 17/02/1989 1
## 8632 17/03/1989 1
## 8633 17/03/1991 1
## 8634 17/04/1992 1
## 8635 17/04/1993 1
## 8636 17/04/1994 1
## 8637 17/05/1988 1
## 8638 17/07/1989 1
## 8639 17/07/1993 1
## 8640 17/07/1994 1
## 8641 17/08/1991 1
## 8642 17/09/1989 1
## 8643 17/10/1988 1
## 8644 17/11/1988 1
## 8645 18/01/1989 1
## 8646 18/01/1990 1
## 8647 18/01/1993 1
## 8648 18/02/1987 1
## 8649 18/02/1988 1
## 8650 18/02/1990 1
## 8651 18/03/1986 1
## 8652 18/03/1995 1
## 8653 18/04/1989 1
## 8654 18/04/1992 1
## 8655 18/06/1987 1
## 8656 18/07/1988 1
## 8657 18/08/1980 1
## 8658 18/08/1991 1
## 8659 18/09/1983 1
## 8660 18/11/1995 1
## 8661 18/12/1994 1
## 8662 19/01/1986 1
## 8663 19/02/1985 1
## 8664 19/02/1994 1
## 8665 19/08/1986 1
## 8666 19/08/1989 1
## 8667 19/09/1988 1
## 8668 19/09/1993 1
## 8669 19/10/1984 1
## 8670 19/11/1986 1
## 8671 19/11/1987 1
## 8672 19/11/1995 1
## 8673 19/12/1985 1
## 8674 19/12/1988 1
## 8675 19/12/1989 1
## 8676 20/01/1989 1
## 8677 20/01/1992 1
## 8678 20/02/1992 1
## 8679 20/02/1993 1
## 8680 20/03/1989 1
## 8681 20/03/1993 1
## 8682 20/04/1988 1
## 8683 20/04/2014 1
## 8684 20/05/1988 1
## 8685 20/07/1989 1
## 8686 20/08/1994 1
## 8687 20/09/1989 1
## 8688 20/10/1990 1
## 8689 20/11/1988 1
## 8690 20/12/1990 1
## 8691 21/01/1989 1
## 8692 21/02/1989 1
## 8693 21/03/1991 1
## 8694 21/04/1989 1
## 8695 21/05/1994 1
## 8696 21/07/1989 1
## 8697 21/07/1990 1
## 8698 21/07/1991 1
## 8699 21/08/1989 1
## 8700 21/08/1993 1
## 8701 21/09/1987 1
## 8702 21/09/1988 1
## 8703 21/10/1983 1
## 8704 21/10/1995 1
## 8705 21/12/1988 1
## 8706 21/12/1989 1
## 8707 21/12/1990 1
## 8708 21/12/1994 1
## 8709 21/12/2002 1
## 8710 22/01/1994 1
## 8711 22/02/1989 1
## 8712 22/03/1980 1
## 8713 22/03/2003 1
## 8714 22/04/1983 1
## 8715 22/05/1993 1
## 8716 22/06/1989 1
## 8717 22/06/2014 1
## 8718 22/08/1989 1
## 8719 22/08/1992 1
## 8720 22/09/1989 1
## 8721 22/09/1990 1
## 8722 22/12/2007 1
## 8723 23/01/1987 1
## 8724 23/03/1988 1
## 8725 23/04/1994 1
## 8726 23/04/1995 1
## 8727 23/05/1988 1
## 8728 23/05/1989 1
## 8729 23/05/1993 1
## 8730 23/06/1989 1
## 8731 23/06/1990 1
## 8732 23/08/1992 1
## 8733 23/09/1986 1
## 8734 23/09/1989 1
## 8735 23/09/1995 1
## 8736 23/10/1989 1
## 8737 23/10/1993 1
## 8738 23/11/1989 1
## 8739 23/11/2001 1
## 8740 23/12/1991 1
## 8741 23/12/1995 1
## 8742 24/01/1991 1
## 8743 24/02/1947 1
## 8744 24/02/1986 1
## 8745 24/02/1989 1
## 8746 24/02/1990 1
## 8747 24/02/2007 1
## 8748 24/04/1994 1
## 8749 24/05/1989 1
## 8750 24/05/2014 1
## 8751 24/06/1989 1
## 8752 24/07/1993 1
## 8753 24/08/1989 1
## 8754 24/08/1991 1
## 8755 24/09/1995 1
## 8756 24/11/1971 1
## 8757 24/11/1995 1
## 8758 24/11/2007 1
## 8759 24/12/1989 1
## 8760 24/12/1990 1
## 8761 24/12/1999 1
## 8762 24/12/2011 1
## 8763 25/02/1989 1
## 8764 25/04/1985 1
## 8765 25/05/1989 1
## 8766 25/07/1993 1
## 8767 25/08/1988 1
## 8768 25/10/1992 1
## 8769 25/11/1993 1
## 8770 25/12/1992 1
## 8771 25/12/2004 1
## 8772 26/01/1989 1
## 8773 26/01/1993 1
## 8774 26/02/1990 1
## 8775 26/02/1995 1
## 8776 26/02/2000 1
## 8777 26/03/1986 1
## 8778 26/05/2014 1
## 8779 26/06/1989 1
## 8780 26/06/1993 1
## 8781 26/06/1994 1
## 8782 26/09/1987 1
## 8783 26/09/1989 1
## 8784 26/10/1989 1
## 8785 26/11/1988 1
## 8786 26/11/1990 1
## 8787 26/11/1993 1
## 8788 26/12/1999 1
## 8789 27/02/1989 1
## 8790 27/02/1993 1
## 8791 27/02/1994 1
## 8792 27/05/1990 1
## 8793 27/05/1991 1
## 8794 27/05/1995 1
## 8795 27/08/1984 1
## 8796 27/08/1994 1
## 8797 27/08/1995 1
## 8798 27/09/1968 1
## 8799 27/09/1988 1
## 8800 27/09/1989 1
## 8801 27/10/1988 1
## 8802 27/10/1989 1
## 8803 27/11/1993 1
## 8804 28/03/1988 1
## 8805 28/03/1989 1
## 8806 28/03/1991 1
## 8807 28/04/1987 1
## 8808 28/04/1988 1
## 8809 28/05/1992 1
## 8810 28/06/1988 1
## 8811 28/06/1992 1
## 8812 28/07/1976 1
## 8813 28/07/1990 1
## 8814 28/08/1988 1
## 8815 28/08/1994 1
## 8816 28/09/1984 1
## 8817 28/10/1986 1
## 8818 28/11/1993 1
## 8819 28/11/2010 1
## 8820 28/11/2013 1
## 8821 28/12/1988 1
## 8822 29/01/1987 1
## 8823 29/01/1994 1
## 8824 29/03/1981 1
## 8825 29/03/1991 1
## 8826 29/03/1992 1
## 8827 29/04/1987 1
## 8828 29/04/1988 1
## 8829 29/04/1995 1
## 8830 29/05/1993 1
## 8831 29/06/2002 1
## 8832 29/07/1988 1
## 8833 29/07/1995 1
## 8834 29/08/1988 1
## 8835 29/08/1989 1
## 8836 29/09/1989 1
## 8837 29/09/1992 1
## 8838 29/09/2001 1
## 8839 29/10/1976 1
## 8840 29/10/1982 1
## 8841 29/10/1994 1
## 8842 29/12/1986 1
## 8843 30/01/1984 1
## 8844 30/01/1994 1
## 8845 30/01/1995 1
## 8846 30/03/2002 1
## 8847 30/04/1987 1
## 8848 30/04/1993 1
## 8849 30/05/1994 1
## 8850 30/06/1988 1
## 8851 30/06/1991 1
## 8852 30/07/1989 1
## 8853 30/08/1988 1
## 8854 30/09/1986 1
## 8855 30/09/1987 1
## 8856 30/10/1989 1
## 8857 30/12/1989 1
## 8858 31/05/1987 1
## 8859 31/07/1986 1
## 8860 31/07/1992 1
## 8861 31/07/1994 1
## 8862 31/08/1987 1
## 8863 31/10/1993 1
## 8864 31/12/1994 1
## 8865 31/12/1999 1
## IncidentDescription
## 1 I
## 2 Unknown
## 3 EE was exposed to scabies
## 4 Work exposure to inmate with bacterial meningitis between 1/10/13 and 1/20/13 ()
## 5 Brucella exposure ()
## 6 NULL
## 7 Reaction to ppd test
## 8 EE was exposed to hepatitis a from co-worker co-worker with hepatitis a prepares food and intimate care
## 9 Inmate threw an unknown substance on the officer ()
## 10 EE exposed to scabies
## 11 EE was involved in a motor vehicle accident.
## 12 11/26/2007 03:57 pm (fblackmo) employees (all eleven) became sick due to suspected exposure of hazards material/fumes while moving into new office. All employees experienced burning to eyes, throat, nose, and lungs. Two of the eleven did not go to t
## 13 EE was exposed to tuberculosis
## 14 EE was struck in the face by an inmate
## 15 Exposure to TB
## 16 EE came in contact with poison ivy
## 17 EE had reaction to ppd test.
## 18 EE was exposed to hepatitis a from co-worker with hepatitis a who prepared food and intimate care
## 19 Auto accident
## 20 EE states ()
## 21 EE strained back lifting patient
## 22 EE was exposed to hep a from co-worker with hep a who prepared food and intimate care
## 23 EE was involved in a motor vehicle accident
## 24 Slipped on wet floor
## 25 Slipped on wet floor ()
## 26 11/14/2002 03:21 pm (fblackmo) employees' states that while trying to make a left turn on state road 1544 a private vehicle ran into the back of them at a high speed. Supervisor: bobby lewis.
## 27 EE states, ()
## 28 EE strained back lifting resident
## 29 Employee was locating r/w monuments along I-40 in wake co. Spray truck was spraying in area. Employee worked in area later that day. List injury as: possible exposure to spray ()
## 30 Ie was assisting investigating a criminal case. While there, the deceased suspect tested positive for TB, the other 3 suspects lived with him. The other 3 suspects were interviewed by the agents. ()
## 31 Location: wake d-5 /// injury: face arms and neck-poison ivy /// physician: na /// hospital: coastal medical center
## 32 Repetitive motion
## 33 Toxic fumes from varnish being put down on 2nd florr of foust ()
## 34 Unknown ()
## 35 ******************see log notes*******************
## 36 09/25/2001 09:40 am (fblackmo) private own dump truck(load) was unable to stop moved into left lane to bypass other vehicles that had already stop. The dump truck entered department of transportation work zone hitting d. O. T. Boom truck head on, causi
## 37 11/9/2010 10:40 am (barnes) employee was operating a state owned truck when he met an oncoming vehicle and moved over. The rear wheels of the truck dropped off the pavement and the employee lost control of the truck causing it to over turn. As a resul
## 38 An inmate threw an unknown substance on the officer ()
## 39 Attacked by patient
## 40 Car accident ()
## 41 Carpal tunnel syndrome
## 42 EE had reaction to ppd test
## 43 EE states an inmate spitted on him
## 44 EE was exposed to hepatitis a from co-worker with hepatitis a who prepared food
## 45 EE was exposed to resident with scabies
## 46 I /// hospital: na
## 47 Inmate threw an unknown liquid on the officer ()
## 48 Insect bite
## 49 Location: 3021 beaufort /// injury: absorbed, inhaled, ingested contaminated soil. /// physician: n/a /// hospital: n/a
## 50 Location: washington county - div. 1 /// injury: poison ivy /// physician: chang y. Oak, m. D., p. O. Box 987, plymouth, nc 27962
## 51 No injury
## 52 Possible exposure issue regarding mold in big center building
## 53 Spider bite ()
## 54 01/10/2000 05:34 pm employee was riding in state dot vehicle, when the stopped behind a trash truck and was struck from behind. Mr. Walker injuries: back strain. Supervisor: a. W. Smith
## 55 03/25/2002 12:20 pm (fblackmo) employee was driving pick-up truck pulling air compressor. The air compressor was hit by another vehicle as it came to a stop sign. Supervisor: rodney matthews
## 56 06/04/2003 06:40 am (slee) my crew was on 96 hwy, south patching potholes. We were in crewcab driving south on 96 when we attempted to make a left hand turn. The driver of a transfer truck went to to pass on a double yellow line and struck the crew c
## 57 06/26/2000 05:23 pm mini van driven by a private citizen left the travel lane on I-85; striking Mr. Talcott some 60-80 feet from the travel lane. Mr. Talcott was on his knees planting flowers at the time of incident. Supervisor: danny clary note:
## 58 08/14/2003 07:29 am (fblackmo) employee was picking up litter when, tractor trailer ran off road and struck mirror causing glass to fall on employee. Supervisor: d. M. Pressley
## 59 09/01/2000 10:23 am state vehicle towing asphalt kettle trailer was making a right turn, with signal on, from us 17 north onto sr 1568. Delivery truck ran into trailer from behind at a high rate of speed spinning state truck and trailer through adjac
## 60 10/04/1999 02:24 pm employee suffered a fracture to his left heel on 9/14/99. Employee was hit head on by a private vehicle that crossed the center line, striking Mr. Schaub and two other passengers 1) david woodard; 2) micah tussey. Supervisor: p
## 61 11/5/2007 03:26 pm (fblackmo) employee one (rush) was picking up signs on state road when, the vehicle he was driving was struck in the rear by a private vehicle. Employee felt pain in his neck and back area. Supervisor: chip speight 11/5/2007 03:37
## 62 3/21/2006 02:49 pm (fblackmo) employees states traffic was backed up on us 1. Employee was merging onto us 1 from the 64/tyron road exit, and at a standstill waiting for traffic to inch up so that they could fully get into the lane, when a private hit
## 63 4/20/2005 02:45 pm (fblackmo) employee was operating a dot crew cab truck that was rear ended by a private vehicle. Employee experienced pain in his back. Supervisor: l. W. Lyall
## 64 8/24/2005 08:23 am (fblackmo) employee was operating a f-350 crew cab pickup following a backhoe from the maintenance office to a nearby stockpile area to load shoulder material when, a private vehicle struck the pickup from behind. Employee felt pain
## 65 An inmate threw an unknown liquid on the officer ()
## 66 Bitten by ticks during field research in virginia. Employee continued to work. ()
## 67 Dog bite ()
## 68 EE came in contact with inmate who was tested postive for tuberculosis
## 69 EE closed door on rt hand
## 70 EE fell down steps
## 71 EE slipped and fell on ice
## 72 EE slipped on wet floor.
## 73 EE states during a use of force on an inmate he injured his rt hand
## 74 EE states he was involved in a motor vehicle accident.
## 75 EE states she was involved in a motor vehicle accident.
## 76 EE states while walking she twisted her rt ankle
## 77 EE strained back moving desk
## 78 EE tripped and fell
## 79 EE was exposed to hepatitis a from co-worker with hep a who prepared food and intimate care
## 80 EE was exposed to menegetis.
## 81 EE was exposed to tuberculosis.
## 82 EE was involved in a motor vehicle accident causing back injury
## 83 Employee came into contact with poison ivy. ()
## 84 Employee slipped and fell on wet floor. ()
## 85 Employee stated that he was trying to stop two patients from fighting. Staff and patient hit the floor by patient pulling staff down. ()
## 86 Employee was passenger in vehicle traveling on forest dirt road. Driver lost control of vehicle and crashed in to tree. ()
## 87 Entering bldg, slipped and fell on ice
## 88 Exposed to patient with h1n1
## 89 Fell in parking lot
## 90 Fell on wet floor
## 91 I, and loui
## 92 Involved in auto accident
## 93 Location: 3021 beaufort /// injury: upper body exposed to exaust fumes /// physician: Dr. Dennis czuchara /// hospital: family med. Care
## 94 Location: 3061 46 /// injury: hearing loss /// physician: thomas j. Henderson /// hospital: clinical & industrial audiologist
## 95 Location: 3162 craven /// injury: from the neck down - scabies. /// physician: Dr. Gray /// hospital: urgent care
## 96 Location: 3441 washington /// injury: hearing disability(both ears) /// physician: Dr. Thomas j. Henderson /// hospital: henderson audiometrics
## 97 Location: ashe co., division 11 /// injury: poison ivy on legs /// physician: ashe medical associates
## 98 Location: johnston, d-4 /// injury: right hand /// physician: Dr. Jan creech
## 99 Part of ceiling pulled away with duct during demolition for renovation
## 100 Slipped and fell on wet floor ()
## 101 Tick bite
## 102 Vehicle accident
## 103 02/01/2000 02:08 pm Mr. Minton was traveling on highway 421 in boone, nc on 1/4/2000, when he was hit head on by a private vehicle and also hit on side of drivers door. The private vehicle crossed the centerline and the other private vehicle was foll
## 104 04/04/2000 10:31 am private vehicle was following state vehicle too close. Employees (craft and hardee) was rear ended at the intersection of grove street and easter blvd. In cumberland county. Craft suffered neck, shoulder, arm strain/sprains; and
## 105 04/24/2000 02:54 pm employees were working in a stationary bucket truck replacing bulbs in traffic signals; when two vehicles collided behind the truck. A flying object came off hitting truck and employees causing injuries. Gary chatman sustained sc
## 106 04/27/2000 11:14 am employees were working on a overturned dump truck on independence blvd. When they was struck from behind. The left lane was blocked causing private vehicle to hit them and then another car hit the private vehicle. Both employees
## 107 04/28/2003 02:21 pm (fblackmo) employee was coming back from picking up another employee in his personal vehicle when, he was struck in the rear by a private vehicle. Supervisor: grady morris
## 108 05/09/2000 11:03 am employees nelson and sims was riding in state vehicle on sr 3045 in guilford county on 4/19/00. Both employees was struck by private vehicle causing upper back & neck strain and injuries to the head. Medical attention @ cone ho
## 109 06/23/2010 10:24 am (slee) employee on sov stopped to allow a pov in front to turn left. A pov behind them struck the sov in the rear. 06/23/2010 02:32 pm (slee) other person: eugene t. Ferrell, 110 east john st., goldsboro, 28365. 7/2/2010
## 110 06/29/2001 02:27 pm (fblackmo) the employee was the driver of sign truck and was rear-ended by private vehicle. (jerry tilley was a passenger) supervisor: charles sharp
## 111 07/05/2000 03:32 pm Mrs. Switzer and Mr. Nixon was traveling on us highway 29 on 5/5/00; when a van pulled out in front of state sign truck. They were hit by a private van driver. Mrs. Switzer has injuries to her right arm, neck, cervical strain (up
## 112 07/26/2000 10:07 am employee was cutting trees around poison ivy with a weed eater; when he came in contact with poison plants. He has contact rash all over his body. Supervisor: a. L. Smith
## 113 07/31/2001 10:00 am (fblackmo) employee was at intersection of market street and boeing drive. Light turned green employee proceeded through green light when the dot vehicle was struck in drivers side by a private vehicle running red light. Supervis
## 114 08/08/2002 02:12 pm (jgibson) private party ran stop sign and state vehicle hit private vehicle and overturned, then came to rest on left side of the road.
## 115 08/24/2000 02:37 pm wet road from rain, state vehicle's tire went off road and truck then spun on wet pavement, lost control and went through private yard.
## 116 08/24/2000 11:10 am employee sustained injuries to neck and shoulders area; when state vehicle was struck from behind by a private vehicle on 8/3/00. Supervisor: jeff robinson
## 117 08/24/2000 11:48 am employee was removing a tree from roadway; when he came in poison ivy and he has contact rash both arms, face, and abdomen. Supervisor: greg g. Caudill
## 118 08/30/2001 03:03 pm (fblackmo) employee was walking in high weeds and tripped over a piece of broken power line insulation and cut his hand. Supervisor: john m. Donald
## 119 09/12/2002 11:21 am (fblackmo) employee was traveling on nc 61 and shoe road when, a private vehicle ran the intersection striking state vehicle. Supervisor: d. R. Summers 11/6/2006 01:21 pm (fblackmo) claim closed. Clincher on 1/25/2005. Do not
## 120 09/24/2003 12:59 pm (fblackmo) employee states the injury occurred to his left knee when, a private vehicle ran a stop sign crossing into his lane of traffic. Supervisor; lt. B. P. Jones
## 121 1/11/2010 04:36 pm (blgay) employee and passenger had stopped for a vehicle in the road, when a private vehicle failed to stop and rear ended the state vehicle. Supervisor: k. R. Davis
## 122 1/23/2004 12:01 pm (jgibson) vehicle 3 was traveling east on sr 1360, brevard road. Vehicle 1 was traveling south on sr 1511, old plank road. Vehicle 3 pulled out in front of vehicle 1. Vehicle 1 struck vehicle 3.
## 123 1/25/2007 12:04 pm (fblackmo) employee was a passenger in sign truck traveling northbound on state road 1007. A dog ran out in front of the vehicle, driver swerved to the right to attempt to avoid hitting the animal, driver lost control of the vehicle
## 124 1/29/2007 02:35 pm (fblackmo) employee was driving dump truck when, he ran off the road onto the shoulder. Employee over corrected causing the truck to over turn. Employee felt pain in his neck, back, legs, and head. Supervisor: c. E. Thompson 1/29/200
## 125 1/29/2008 12:03 pm (fblackmo) employee (hinton) was lifting file storage boxes for retention to supply room when, she felt pain in her back. Supervisor: doug dunnagan 1/29/2008 12:13 pm (fblackmo) employee (jarrett) was lifting file storage boxes
## 126 10/05/2000 03:03 pm p. Caas was driving a crewcab on sr 1159 and approaching the intersection of sr 1142. A lp gas truck was turning off of sr 1142 onto sr 1159. The gas truck crossed the centerline, causing the driver side mirrors to hit. This res
## 127 10/14/2010 09:15 am (fblackmo) employee(s) was traveling south on us 13 when crew cab truck (1213-6236-0209) was struck on the right side rear by a tractor trailer. Both vehicles ran off the road into a wooded area. Each employee received multiple inj
## 128 10/15/2004 04:10 pm (fblackmo) employee was stopped at a stop sign when, a private vehicle ran into the rear of the state vehicle. Supervisor: darrell dean
## 129 10/2/2007 02:32 pm (fblackmo) employee was lifting up gas can that had tilted in back of crew cab when, gas sprayed into his face. Supervisor: j. M. Ellis 10/2/2007 02:54 pm (fblackmo) employee was placing tools back into the bed of crew cab truck
## 130 10/23/2000 04:20 pm employee came in contact with poison ivy plants while cutting trees on 10/26/00. Mr. Edwards has contact rash on both hands and around his eyes. Mr. Benge also came in contact with poison ivy plants on the same day. He has cont
## 131 11/03/2000 11:28 am Mr. Austin was performing routine maintenance work along highway 12 in dare county. A private vehicle entered the workzone, ran off the road, and struck dot crewcab and Mr. Austin. Mr. Austin was standing on the side of the road.
## 132 11/05/2001 10:32 am (slee) imap truck had stopped in the lane next to the median to assist the ncshp. Ncshp had already stopped in the lane with blue lights. Imap truck had flashers, strobes and a flashing arrow panel on. Private vehicle didn't try
## 133 11/08/2010 08:11 am (slee) trailer brakes locked up and the trailer started to slide. Trailer jack-knifed into rear of the truck. Upon immediate expection pintle hook was broke and safety chenges were still attached. 11/12/2010 02:42 pm (lvaugha
## 134 11/10/2005 09:37 am (fblackmo) employee was in f-150 pickup truck preparing control sings when, a tractor trailer struck the truck in the the rear. Employee felt pain in his head and shoulder. Supervisor: donald griffith 11/10/2005 10:13 am (fblackmo
## 135 11/18/1999 10:24 am Mr. Blizzard was involved in a vehicle accident on 9/30/99. Mr. Blizzard was waiting to make a turn at an intersection when a private car (in other lane) hit his left side of truck bed and rear-ended his vehicle. Mr. Blizzard su
## 136 11/29/2010 07:37 am (slee) employee was traveling east on greenwood and approaching harris st. When the driver of pov which was traveling turned in front of him toward harris st. Striking the front end of his truck nearly head on with the right front
## 137 11/9/2004 02:37 pm (jgibson) private vehicle failed to yield right of way at intersection of nc 226 and nc 182. Private vehicle turned left into path of state vehicle.
## 138 11/9/2005 09:56 am (fblackmo) employee was driving pickup truck when, it was rear ended by a private vehicle. Employee felt numbness and back pain. Supervisor: j. M. Gibson 11/9/2005 10:10 am (fblackmo) employee was a passenger in truck when, it was
## 139 12/06/2000 03:39 pm employee was traveling on highway 485 checking (snow/ice) conditions on bridges on 11/19/00. A private party vehicle (joseph lee helms) crossed the median and hit dot vehicle head on. Mr. Ricky alan mason & Mr. Kenneth wayne smith
## 140 12/10/2002 07:31 am (fblackmo) employee states that she was in a car accident at the intersection of independence blvd. A white ford hit the state vehicle in the rear. Supervisor: louis mitchell
## 141 12/12/2006 08:19 am (fblackmo) employee was the driver in a sign truck that was making a left turn off of us 158 when, truck was struck from behind by another vehicle. Employee felt pain in his neck, back, and left shoulder area. Supervisor: faron h.
## 142 12/15/2006 11:49 am (fblackmo) employee was cutting a tree down when, heavy winds blew another tree on top of him causing injury to his head. Supervisor: joe ng 12/15/2006 04:21 pm (fblackmo) Mr. Murray has a laceration to back of head/hand. Super
## 143 12/16/2003 10:52 am (fblackmo) employee was driving when she ran off the shoulder of the road causing the truck to flip over on drivers side. Supervisor: wayne knight
## 144 12/29/2009 12:46 pm (blgay) employee and another transportation worker were riding down us 74 business to the work site, when the truck dropped off into a sink hole. Not complaining of any injuries but wanted back, neck and legs checked out for safe m
## 145 2/19/2004 10:09 am (fblackmo) employee states that a private vehicle (rv) was blocking both lanes of traffic when, he applied the brakes to avoid hitting the rv the trailer jack-knife causing the truck to overturn. Supervisor: l. W. Sehorn
## 146 2/20/2004 10:24 am (bhenders) employees were taking dead deer to bury it. Pov pulled out from sr 1414, lost control, and came into the west bound lane. Sov struck pov on the right side of the car.
## 147 2/3/2011 10:39 am (fblackmo) employee travis anderson was driving crewcab flatbed truck. He was at traffic light when the private own vehicle on his right side veered over into his lane. The private own vehicle front left tire hit the front right tir
## 148 2/7/2005 12:10 pm (fblackmo) employee was driving a dump truck loaded with an inbody sand spreader, spreading sand on ice when, he hit and icy spot on the road causing the truck to overturn. Employee experience pain in his neck area and left shoulder.
## 149 3/11/2009 04:52 pm (fblackmo) employee was driving (personal vehicle) to job site when, he was struck in the rear by a private own vehicle. Employee felt pain in back and neck area. Supervisor: brandon jones 3/11/2009 05:06 pm (fblackmo) employee
## 150 3/25/2004 02:42 pm (fblackmo) employee states, that there vehicle was hit in the rear by another vehicle. Supervisor: keith beverly
## 151 3/26/2010 11:10 am (fblackmo) employee was pushing snow with motor grader on interstate when, he was struck in the rear by a private vehicle. Employee was taken to durham regional to be checked out as a precautionary manner. No injury occurred from th
## 152 3/31/2005 12:29 pm (fblackmo) employee was crossing intersection when, private vehicle ran red light striking state truck on passenger side. Employee experience pain in his neck, back, and knees. Supervisor: k. R. Davis
## 153 4/22/2004 08:44 am (fblackmo) employee was operating a state vehicle driving back form a class in raleigh. Employee was stopped for a vehicle make a left turn, a private vehicle rear ended the state vehicle causing both the driver and passenger to ex
## 154 4/23/2009 09:50 am (fblackmo) employee(s) was in state crew cab at stop light waiting to make left turn when, private own vehicle struck them in the rear. Both employees felt pain in their lower backs.
## 155 4/27/2010 05:09 pm (fblackmo) employee norman was picking up trash with employee martin when drink bottle with a hose released fumes of hydrogen chloride gas. Both employee inhaled the fumes. Supervisor: mark taylor
## 156 5/1/2007 02:53 pm (fblackmo) employee scott struck-driving and thomas dawson and contract employee alvin watson were passengers riding in a state vehicle to a job site at dot it hq at new hope center on capital blvd. They were stopped at the traffic l
## 157 5/15/2007 01:34 pm (fblackmo) employee (anderson) was stopped at stop light in sligo when, a private vehicle hit them in the rear. Employee has had problems with neck and lower back. Employee decided on 5-09-07 to go to the doctor to get checked out.
## 158 5/20/2005 01:12 pm (fblackmo) employees were attempting to remove lid from garden sprayer when, asphalt solvent contacted their eyes. The solvent came from a sprayer that another employee was moving. Supervisor: mark williams
## 159 6/26/2007 10:46 am (fblackmo) employee was driving john deere polaris down embankment to spray vegetation when, spray tank shifted causing polaris to flip on its side. Employee mashed/cut his right little finger. Supervisor: rj brown 6/26/2007 1
## 160 6/3/2004 09:39 am (fblackmo) employee and passenger was traveling to pick up inmates when, a car traveling in the opposite direction crossed over into their lane striking their vehicle. Employee pulled to the right shoulder hitting a mailbox, jumping
## 161 7/11/2007 01:20 pm (fblackmo) employee was standing on shoulder of road when, a car ran off the road and hit employee. Employee experienced several cuts, scrapes, and bruises. Supervisor: tim earp 7/11/2007 01:38 pm (fblackmo) employee (mcneese)
## 162 7/16/2009 08:41 am (fblackmo) both employees (crissman & peake) were touring the brunswick county jail during a tuberculosis(TB) outbreak inside the jail. At the time of the tour 31 cases was confirmed (2 staff members). Both employees received testin
## 163 7/8/2004 12:53 pm (fblackmo) employee stated on form 19 that while traveling down 29 north near law road exit that the fire extinguisher discharged into the cab causing chemical exposure to head, face, eyes, and chest area. Supervisor: wayne childress
## 164 7/9/2010 02:48 pm (fblackmo) employees were making repairs to tar kettle when flames came from under the machine causing both employees to be burn. Employee gates received burns to his left forearm, elbow, and hand. Supervisor: robert kaufman employee
## 165 8/9/2006 11:30 am (fblackmo) employee was driving a dump truck on a dusty unpaved road when, he rear ended the dump truck in front of him and his knees hit the dash. Supervisor: charles f. Vick
## 166 9/1/2009 02:45 pm (fblackmo) employee was operating state assigned vehicle that was stop at traffic light when, private vehicle failed to stop causing a rear end collision. Employee felt pain in his neck and back area. Supervisor: ben ander riggs 9
## 167 9/13/2005 11:21 am (fblackmo) employee states while stopped at traffic light a private own vehicle struck him from behind causing him to also hit a car in front of him. Employees felt pain in back area. Supervisor: ann lorscheider
## 168 9/14/2004 11:29 am (fblackmo) employee was traveling south on nc 226 when, a tractor trailer traveling north lost control of the trailer in a curve. The trailer jack-knife and came around striking employees truck on the drivers side. Tractor trailer d
## 169 9/24/2007 04:01 pm (fblackmo) employee was traveling 45 mph when he hit a bump in the road causing him to bounce in the seat which in turned stretched a muscle in his stomach. Supervisor: wesley powell 9/24/2007 04:23 pm (fblackmo) employee (lind
## 170 After pepper spray training EE had problems with eyes
## 171 An inmate threw an unknown substance in the officer's face. ()
## 172 Anxiety/stress related
## 173 Apparent spider bite.
## 174 Asbestos
## 175 Assaulted by inmate
## 176 Assisting patient walking-patient attempted to drop to floor-bore weight-patient combative during bath kicking/yanking. ()
## 177 Automobile accident
## 178 Came in contact w/poison ivy while mowing at stadium
## 179 Car accident
## 180 Carpal tunnel
## 181 Carpal tunnel, both hands
## 182 Caught finger in door ()
## 183 Cell extraction training ()
## 184 Changing aggressive resident and injured back
## 185 Due to construction in the building EE suffered from carbon monoxide exposure
## 186 During eri, pt bit EE on right arm ()
## 187 During eri, pt kicked EE in the right knee ()
## 188 During eri, pt scratched EE on left arm ()
## 189 During eri, pt spat in EE's mouth ()
## 190 EE came in contact with inmate who had TB
## 191 EE had a reaction to ppd test
## 192 EE inhaled fumes on hallway ()
## 193 EE pulled a shelf loose and his left arm came down on a drill bit
## 194 EE rcvd call to fix leak in b-level pump rm. Whilesearching for leak, heard pump kick on, then loud noise, pipe burst above his head dropn waste water
## 195 EE slammed finger in door.
## 196 EE slipped and fell on wet floor
## 197 EE slipped on floor and fell
## 198 EE slipped on wet floor injuring left knee
## 199 EE stated restraining defendant, fluid transfer
## 200 EE states an inmate spitted in his face
## 201 EE states an inmate threw some unknown liquid at her
## 202 EE states an inmate threw some unknown liquid at him
## 203 EE states during a training course he injured his back
## 204 EE states during the flood he was injured
## 205 EE states during training he injured his back
## 206 EE states during training he injured his lt shoulder.
## 207 EE states he slipped and fell on a wet floor injurying his rt knee.
## 208 EE states he was bitten by a dog on the lt leg
## 209 EE states he was bitten by a spider on the rt hand
## 210 EE states he was struck in the face by an inmate
## 211 EE states he was struck in the mouth by an inmate.
## 212 EE states she was exposed to scabies.
## 213 EE states she was involved in a motor vehicle accident
## 214 EE states that during a use of force he was exposeto blood
## 215 EE states the wind blew something into his lt eye
## 216 EE states while assisting with a pt she injured her back.
## 217 EE states while assisting with client she injured her back.
## 218 EE states while assisting with pt she injured her back.
## 219 EE states while driving state vehicle he was involved in a motor vehicle accident.
## 220 EE states while lifting a client she injured her back.
## 221 EE states while lifting a pt she injured her back.
## 222 EE states while opening and closing the door to the boiler room there was an explosion.
## 223 EE states while trying to keep resident from falling she injured her back.
## 224 EE states working patient floor and exposed to scabies
## 225 EE stepped into a hole and twisted his back
## 226 EE strained back lifting client
## 227 EE strained back lifting patients
## 228 EE strained back restraining patient
## 229 EE strained back trying to restrain patient
## 230 EE strained chest moving furniture
## 231 EE strained left elbow restraining student
## 232 EE tripped on sidewalk ()
## 233 EE was assaulted by a patient.
## 234 EE was assaulted by inmate
## 235 EE was assisting w/ treatments on a cat and was clawed by cat
## 236 EE was attacked by a patient that was being escorted to seclusion room
## 237 EE was attacked by patient
## 238 EE was checking cell door due to it being blocked.
## 239 EE was dumping a load of sand into the truck when the tractor tipped over down an incline.
## 240 EE was enroute to complete home visit and was sitting at red light at intersection of royall ave and berkeley ave. Light changed to green, began to accelerate and was hit in the rear by car behind. ()
## 241 EE was exposed to TB
## 242 EE was exposed to hepatitis a from co-worker with hepatitis a whoe prepared food
## 243 EE was exposed to pepperspray
## 244 EE was exposed to poison ivy
## 245 EE was exposed to scabie
## 246 EE was in contact with inmate that had TB
## 247 EE was injured while trying to restrain patient
## 248 EE was kicked in the knee by a patient.
## 249 EE was microfilming documents that had been in storage for one year and was bitten by papermites
## 250 EE was moving office furniture and strained back
## 251 EE was possibly exposed to hepatitis a
## 252 EE was preparing to clean sivler in sink turned on hot water and faucet value came off causing water to shot out hitting EE's upper body
## 253 EE was pulling resident up in bed and strained back
## 254 EE was questioning pt, pt spat in EE's face ()
## 255 EE was restraining student.
## 256 EE was struck in the left eye by a patient
## 257 EE was struck in the mouth by a patient
## 258 EE was traveling and was in an automobile accident
## 259 EE was using cleaner powder to clean bathroom and later had rash on left neck
## 260 EE was working on building renovations and discovered a pipe in the wall which was wrapped in asbestos. ()
## 261 Employee stated that she was helping put a patient in restraint room. Patient was sliding out of the chair and punched and grabbed her lt arm and lt hand. ()
## 262 Employee stated, ()
## 263 Employee was at a conference. Together with two other employees, they were fender bendered while in a taxi. ()
## 264 Employee was exposed to poor conditions at a taxpayers house where he was bitten approximately 200 times by various insects while serving a tax warrant. ()
## 265 Employee was involved in a motor vehicle accident in route to our research station. Van was at a complete stop when another vehicle hit them from behind. ()
## 266 Exposed to TB while conducting search of offender's residence ()
## 267 Exposed to active TB
## 268 Exposed to pertussis
## 269 Exposed to resident w/conjunctivitis
## 270 Exposed to resident w/scabies
## 271 Exposed to scabies
## 272 Exposed to white powder substance - hands and nose
## 273 Exposure to active tuberculosis
## 274 Exposure to body fluids
## 275 Exposure to pediculosis/lice
## 276 Exposure to scabies
## 277 Fell down stairs ()
## 278 Fell off ladder ()
## 279 Fell on ice in parking lot ()
## 280 Fell on steps coming into work ()
## 281 Fell on wet floor ()
## 282 Hit in left eye by client
## 283 Hit left knee on desk
## 284 Human bite to r. Hand ()
## 285 I ()
## 286 I /// hospital: n/a
## 287 Ie was assisting investigating a criminal case. While there, the deceased suspect tested positive for TB, the other 3 suspects lived with him. The other 3 suspect were interviewed by the agents. ()
## 288 Injured lower back while digging out large holes in ground at avian prop. Using heavy equipment. Lower back.
## 289 Injury to rt eye
## 290 Inmate assault ()
## 291 Inmate spit in EE's face
## 292 Inmate threw an unknown substance in the officer's face ()
## 293 Keying
## 294 Kicked by patient
## 295 Location: 0571 surry /// injury: cut middle finger on (r) hand /// physician: Dr. Stephen t. Walker /// hospital: n/a
## 296 Location: 3021 beaufort /// injury: muscle strain in cervix area /// physician: Dr. Dennis czuchra /// hospital: family medical care, inc
## 297 Location: 3041 edgecombe /// injury: hearing loss /// physician: Dr. Newsome /// hospital: na
## 298 Location: 3043 wayne /// injury: muscle strain /// physician: n/a /// hospital: wayne memorial hospital
## 299 Location: 3043 wayne /// injury: poison ivy on arms & legs /// physician: Dr. Karlus artis /// hospital: urgent care
## 300 Location: 3081 randolph /// injury: twisted left knee /// physician: n/a /// hospital: n/a
## 301 Location: 3091 rowan /// injury: poison oak over body /// physician: na /// hospital: romedical center
## 302 Location: 3101 cabarrus /// injury: insect sting on inside of right forearm /// physician: Dr. Eugene coles /// hospital: stanly memorial hosp.
## 303 Location: 3116 wilkes /// injury: foreign object in (l) eye /// physician: leo baughm /// hospital: n/a
## 304 Location: 3128 cleveland /// injury: body exposed to inspects (chiggers) /// physician: Dr. Larry smith /// hospital: shelby family practice
## 305 Location: 3131 burke /// injury: left eye /// physician: n/a /// hospital: grace occupational health
## 306 Location: 3162 craven /// injury: poision oak /// physician: sea level clinic /// hospital: n/a
## 307 Location: 3166 dare /// injury: foreign body in right eye /// physician: Dr. J. Riddick /// hospital: dare vision center
## 308 Location: 3215 25 /// injury: strained neck & back muscles. /// physician: Dr. Charles nance /// hospital: new hanover regional medical center
## 309 Location: 3443 wake /// injury: foreign matter in (l) eye /// physician: n/a /// hospital: coastal medical center
## 310 Location: 3445 cabarrus /// injury: poison ivey /// physician: Dr. Cole /// hospital: stanly memorial hospital
## 311 Location: alamance, d-7 /// injury: poison ivy all over body /// physician: alamance walk-in-clinic burlington, nc
## 312 Location: burke, d-13 /// injury: right knee
## 313 Location: caswell county division 7 /// injury: lower back /// physician: none on form 19 /// hospital: none on form 19
## 314 Location: caswell, d-7 /// injury: lower legs /// physician: Dr. Jezsik /// hospital: na
## 315 Location: cleveland, d-12 /// injury: right index finger /// physician: na /// hospital: na
## 316 Location: dare co. Ferry division /// injury: foreign body in left eye /// physician: Dr. Adams, dare vision center, manteo, nc 27954
## 317 Location: duplin, d-3 /// injury: poison ivy all over body /// physician: na /// hospital: duplin general hospital
## 318 Location: forsyth, d-9 /// injury: right knee /// physician: pine ridge family practice, winston-salem
## 319 Location: gaston co. Enforcement /// injury: subject was a hepatitis carrier
## 320 Location: granville county div. 5 /// injury: upper neck and left arm strain /// physician: michael d. Michael, MD, 1012 college st., oxford, nc
## 321 Location: granville, d-5 /// injury: lower back /// physician: cara l. Davis, m. D. /// hospital: na
## 322 Location: halifax co., bridge maintenanc /// injury: poison ivy on legs and arms /// physician: frazier, roanoke rapids, nc
## 323 Location: halifax, dmv /// injury: lower back
## 324 Location: hyde, d-1 /// injury: strain in left knee /// physician: Dr. Oak
## 325 Location: jackson, d-14 /// injury: lower back /// physician: na /// hospital: na
## 326 Location: lenoir, d-2 /// injury: right ribs /// physician: Dr. Nina h. Ward /// hospital: lenoir memorial hospital
## 327 Location: macon, d-14 /// injury: lower back /// physician: Dr. David franks /// hospital: na
## 328 Location: mecklenburg, d-10 /// injury: left shoulder /// physician: c. N. Owensby /// hospital: na
## 329 Location: moore co division 8 /// injury: emergency room visit after motor vehicle accident /// hospital: moore regional hospital
## 330 Location: nash, d-4 /// injury: right hand /// physician: Dr. Kirk jensen /// hospital: nash general hosp.
## 331 Location: pender 3031 /// injury: insect bite /// physician: bruce williams /// hospital: na
## 332 Location: polk 3447 /// injury: forearm and wrist /// physician: Dr. C. Trott /// hospital: park ridge
## 333 Location: randolph, d-8 /// injury: right foot /// physician: na /// hospital: na
## 334 Location: robeson 3061 /// injury: left eye /// physician: Dr. Thomas wilson /// hospital: carolina eye clinic
## 335 Location: union, d-10 /// injury: cervical sprain /// physician: Dr. Okwara /// hospital: union memorial hospital monroe, nc
## 336 Location: union, d-10 /// injury: lower back /// physician: na /// hospital: na
## 337 Location: wake, d-5 /// injury: lower back /// physician: na /// hospital: na
## 338 Location: wake, dmv /// injury: right and left wrists /// physician: cra
## 339 Location: washington county div. 1 /// injury: poison ivey on hands and face /// physician: oak chang y., MD, us 64 east, plymouth, nc 27962
## 340 Location: wilkes, d-11 /// injury: acute sprain to lower back /// physician: Dr. S. E. Erlandscon /// hospital: hugh chatham memorial elkin, nc
## 341 Location: wilson 3042 /// injury: back /// physician: m. Sauls /// hospital: wilson memorial
## 342 Location: wilson, d-4 /// injury: back /// physician: Dr. Richard burdick /// hospital: na
## 343 Mental stress
## 344 Motor vehicle accident
## 345 Motor vehicle accident in which he was a passenger
## 346 On 2-27-2013, the nurse supervisor informed me of a pinworm outbreak in the area where I work.
## 347 Over period of time rolling heavy trash cart over gravel caused pain in left arm ()
## 348 Patient assaulted EE
## 349 Person who has tuberculosis came into area in which EE worked
## 350 Positive reaction to ppd
## 351 Possible noise induced hearing loss due to occupational noise exposure.
## 352 Possible tick bite
## 353 Processing crime scene and suspect possibly had TB.
## 354 Pt attacked EE ()
## 355 Pulling resident up in bed
## 356 Reaction to ppd test.
## 357 Redirecting patient-punched under r. Breast ()
## 358 Repetitive motion using hand punch
## 359 Repetitive writing and computer use.
## 360 Replacing gate roller near razor wire when gate shifting at, cut left pinkie finger.
## 361 Retest of hearing test as a result of high average
## 362 Slipped
## 363 Slipped on ice
## 364 Slipped on ice in parking lot ()
## 365 Slipped on stairs, pain in shin and ankle
## 366 Unspecified
## 367 Use of force ()
## 368 Using computer
## 369 Washing dishes ()
## 370 While restocking shelves, a box of honey buns fell off shelf and laded on plaintiff's right hand/wrist while it rested on a shelf below. ()
## 371 While stopped at a traffic light, vehicle was rear-ended by another vehicle.
## 372 Word processing
## 373 Work exposure to inmate with bacterial meningitis ()
## 374 Worked with several patients diagnosed with pink eye. ()
## 375 "I reached to catch the pharmacy door and my 4th finger left hand was shut in door. " "putting up stock in pharmacy, left hand 4th finger shut in pharmach door. " ()
## 376 "bent over to pick up air tank; felt back give a little; could not pick up tank"
## 377 "extreme amount of bending and twisting required to clean up around the cattle and feed them. Painbegan in left hip during this process.
## 378 "one time visit only per ricky" using computer
## 379 "the stress of not being able to do my former job due to my back problem has led to more depression and more frustration in my life."
## 380 "turned to r to go down hall to do round, when I turned to r I felt a pop & twist to outer l side from ankle. Pain shot to behind leg & then to calf "
## 381 "when climbing trailer to check ther truck-box at the top noticed an odd discomfort in groin area" as per officer humphrey.
## 382 "while attending an advanced motorcycle riders course held at gtcc, I was thrown over the handlebars of the motorcycle landing on my recent surgically repaired right knee. " ()
## 383 $785. 58 aww
## 384 'cubicle overhead shelving fell forward and hit employee on the right hand side of her head as she was hanging paperwork to the wall of her cube. ()
## 385 'julie was in the file room by herself when the injury occurred. She stated that she bent down to place files on the bottom shelf and bumped her buttock area on the trash can. ' ()
## 386 'slipped on black ice in parking lot of courthouse coming into work' ()
## 387 'walking through public lobby and fell down- landed on left knee (7 mos. Pregnant)' ()
## 388 (blood exposure) no details were provided. ()
## 389 (cell extraction training) officer states while in training, she was conducting a cell extraction and the man shield fell on her leg. ()
## 390 (dizziness & hypertension) sitting in the chair in the control room; does not remember anything except staff standing around her. ()
## 391 (firearms)getting up with the shotgun I fell back, hitting my head and back. ()
## 392 (index) finger caught in the door while trying to catch the door to cpod.
## 393 (injured worker was on containment line when he slipped and fell causing a strain injury to his lower back)
## 394 (l) hand was on a chest plate, my (r) hand was cutting toward the patient neck when my left hand slipped into my knife. ()
## 395 (mi) EE fell on mossy steps and put arm back to catch herself
## 396 (mi) EE was lifting garbage bag and felt pain in lower back then fell to floor
## 397 (mi) EE went to parking lot to close car window due to storm approaching and twisted her ankle on a rock.
## 398 (mi) EE woke up saturday morning with back spasms, EE complained that injury came from office chair
## 399 (mi)EE pushing auto scrubber, cleaning the floor, slipped in water on the floor, causing her left leg to twist & left ankle
## 400 (r) hand, wrist, elbow, shoulder.. This is a naggingworsening pain in rt hand wrist forearm elbow & shoulder maybe caused by computer use
## 401 (r)knee/ankle. It was raining when I walked into carrington hall, I stepped onto the tile floor I slipped and fell onto my knees. ()
## 402 **************** do not pay on this claim ******************************** inactive
## 403 *********************see log notes****************
## 404 ********************see log notes*****************
## 405 *******************see log notes******************
## 406 ***************see log notes*********************
## 407 ***************see log notes**********************
## 408 ***not an active claim***********
## 409 *EE states* I was moving a case of paper off the shelf on the floor while pulling office supplies.
## 410 *EE states* that he was squated down sliding pieceof paper under the door when c/o brock opened the wicker door and it hit him in the head.
## 411 *EE states* that while lifting a medical exam table he strained himself.
## 412 *EE states* that while responding to emergency code he ran down the hallway, turned the corner & slipped entering the chow hall.
## 413 *EE states* while doing routine search I picked upup a jacket & felt something prick my finger. I pulled a tatoo gun from the jacket.
## 414 *EE states* while standing in control noticed arm itching, burning
## 415 *alleged reptv motion, left shldr, cervical spine &left wrist. This claim involves 2 others occuptnl disease claims #10072184 and #01058473
## 416 *employee state* after being sprayed with pepper spray left eye has been hurting since then.
## 417 *employee states* I was making my round in the pods and as I was walking in b pod c/o penny closed slider door and it hit my right arm/shoulder
## 418 *employee states* a bug bit me on the palm of my hand just below my little finger.
## 419 *employee states* injured left knee while doing a crdt instructed move.
## 420 *employee states* inmate pushed me with his right hand out of the way & preceeded to run. He pushed me with his right hand to my left shoulder
## 421 *employee states* material from boxes of clothes touched arms causing them to itch and break out.
## 422 *employee states* she was fully squatted down retrieving paperwork from metal cabinet & she was getting up she felt and heard something tear in
## 423 *employee states* walking from the fire panel to door panel controls. Chair did not move and my feetgot caught in chair leg. Wheel was not on chair s
## 424 *employee states* while doing crdt training she injured her left wrist while conducting the bent wrist application and having the bent wrist applied.
## 425 *employee states* while performing a breakfall crdt) and while attempting to stand she hurt her left ankle.
## 426 *employee states* while responding to an emergencycall for assistance going down steps I twisted my knee while on the steps.
## 427 *employee states* while unloading truck of pillows& matresses she turned to hand some pillows to an officer and heard her shoulder pop.
## 428 *employee states* while walking down steps I twisted my right knee.
## 429 *employee states* while walking up stairs knee polled two times then started having sharp pains thatcome and go when moving around and certain ways.
## 430 *employee states*giving out equipment to employee and trap door caught her finger which was her middle finger on left hand.
## 431 *employee states*inmate struck him in chest causing hime to hit the wall and hurt his left shoulder.
## 432 *employee states*while exiting facility something tore in his right leg and he fell to the concrete on side walk outside gatehouse.
## 433 *officer states* that during officer simulation hetackled an inmate's father to the ground & at thattime he injured his right knee.
## 434 *officer states* while clearing yard #2 his ankle rolled on uneven ground.
## 435 ++++ aww - $573. 58 c/r - $382. 41 ++++ trying to hold her head up to keep it from hittingit on the floor, hurting r shoulder and neck, arm
## 436 +cts. It was a gradual process that over 3yrs it got worse. EE tried alternatives to sx. Cannot function at a high level both at work/home. Alot of pain
## 437 . 5mls of TB culture dropped & splashed on floor. Exposure to TB culture.
## 438 01/02/2003 02:55 pm (fblackmo) employee was standing near wood chipper when, the impact from one of the limbs hit him on his right knee. Supervisor: ralph thomas mcmanus jr
## 439 01/02/2003 03:09 pm (fblackmo) employee states while feeding chipper a limb hit him in his right eye. Supervisor: john w. White
## 440 01/02/2003 03:22 pm (fblackmo) employee states while pulling apart gurney, experienced pain in right wrist and hand. Supervisor: shane murray
## 441 01/02/2003 03:31 pm (fblackmo) employee states while lifting a piece of rotten wood, felt pain in his right arm. Supervisor: matthew oliverson
## 442 01/02/2003 07:31 am (fblackmo) employee states while removing pin from snow plow, his hand slipped causing the injury to his left thumb. Supervisor: m. E. Anders
## 443 01/02/2003 07:45 am (fblackmo) employee was changing gears in his truck when, gear popped out of second hitting him on his right hand. Supervisor: bucky vance
## 444 01/03/2000 02:31 pm Mr. Scott was drilling holes when he placed drill bit he accidently touched trigger. He cut his left index finger requiring six stitches. Supervisor: d. E. Bowers, jr.
## 445 01/03/2000 02:45 pm Mr. Talley was hit by an axe on his right forearm causing abrasions and swelling on 12/3/99. Mr. Talley was struck by an inmate helping him knock the side of tailgate in placed. Supervisor: r. C. Wood 01/04/2000 10:13 am note
## 446 01/03/2000 03:08 pm on 12/6/99 Mr. Harbison was involved in motor vehicle accident injuring his left knee. His left knee hit the dash board upon impact. Supervisor: e. D. Zimmerman
## 447 01/03/2000 03:23 pm Mr. Ledford was working cutting and chipping brush on right of way, when debris got in his right eye. Supervisor: d. L. Carpenter
## 448 01/03/2000 04:05 pm Mr. Mcswain (dot employee) was fighting a contractor employee while working on a project on 12/2/99. When he fell and dislocated his right shoulder and bruises to the back of his head. Supervisor: supervisor: a. S. Bailey
## 449 01/03/2000 04:18 pm Mr. Owens was removing scales from trunk of vehicle when the truck lid fell down striking him on his left elbow. Supervisor: capt. David robinson
## 450 01/03/2001 02:59 pm employee stated after moving a box of towel ends she felt pain in her lower back area. Supervisor: j. R. Sutton
## 451 01/03/2001 03:07 pm employee wad lifting motor grader blades; when he felt pain in his lower back. Supervisor: cecil bowser, jr
## 452 01/03/2001 03:12 pm employee was pulling brush when she came in contact with poison ivy plants. She has contact rash on her face and left arm. Supervisor: kent d. Boyer
## 453 01/03/2001 03:17 pm employee was attempting to board (climb) his truck; when his foot slipped on snow/ice causing him to fall on his rear end (buttocks). Supervisor: jeff cabaniss
## 454 01/03/2001 03:22 pm employee was blowing chips of wood; when he came in contact with poison ivy plants. Mr. Collins has contact rash and irritation all over his body. Supervisor: kent d. Boyer
## 455 01/03/2001 04:18 pm employee was loading limbs on truck when he came in contact with poison ivy plants. Mr. Watson has contact rash o his left temple (forehead). Supervisor: thomas j. Burchell
## 456 01/03/2001 04:23 pm employee and inmates was cutting a dead trees on 12/21/00. Employee was walking on a limb that was laying across the bottom of a ditch to keep his feet from getting wet. Mr. Schneider was carrying chain saw (not on) when he lost
## 457 01/05/2000 02:10 pm Ms. Hart sprain/strain her right wrist while pulling sign post to remove it form the ground on 12/23/99. Supervisor: charles sharp
## 458 01/05/2000 02:17 pm employee was heating a drainpipe on liquid asphalt tank on 12/20/99, when liquid asphalt came in contact with Mr. Jordan's face and eyes. He was attempting to loosen the hardened material when it exploded. Supervisor: charles f
## 459 01/05/2000 02:26 pm Mr. Smith was working on I-40/85 at the tucker street bridge when his left foot was ran over by a truck. Mr. Smith was climbing off the truck at the time of incident. Supervisor: j. S. Walker
## 460 01/05/2000 02:37 pm employee was adjusting brakes on a truck with a ratchet in left hand, so s cam would bottom out on roller, when he mashed left middle finger. Supervisor: d. E. Clapton
## 461 01/05/2000 02:46 pm Mr. Moore was marking locations for temporary lane closure signs on I-40, when he stepped into an old guardrail post hole injuring his right knee. Supervisor: j. R. Clark
## 462 01/05/2000 02:54 pm Mr. Baxter foot hit the front wheel of exy-go cart causing him to trip and fall bruising his left knee. Supervisor: d. L. Ferguson
## 463 01/06/2000 09:42 am Ms. Hill has pain in both wrist and arms due to repetitive motion using typewriter, and computer terminal on her job. She has a note from her doctor stating she needs to avoid using her hands for the next two weeks. Supervisor:
## 464 01/06/2003 10:21 am (fblackmo) employee state due to repetitive motions of using her keyboard her center finger on right hand would not move. Supervisor: jay stancil
## 465 01/07/2000 09:55 am Mr. Farmer injured his right hip while attempting to remove a diesel fuel can from gang truck, when he lost his balance. Supervisor: g. S. Harris
## 466 01/07/2000 11:39 am Mr. Lane was using a crowbar to pry a board loose, when the board gave way causing him to hit himself in the head with the crowbar. Supervisor: dennis w. Baker
## 467 01/07/2002 03:33 pm (fblackmo) employee stated she was reaching for posting book when she felt a numbness in hand and tingling sensation in her neck that caused her to drop the book. Supervisor: diane strickland
## 468 01/07/2002 03:50 pm (fblackmo) employee was moving a pressure washer with fellow employee wayne mcgaha and felt a pain in his lower back. Employee quit and sat down on a near by trailer. When employee got off the trailer he states the pain was worst
## 469 01/07/2002 04:08 pm (fblackmo) employee was stepping out of the crew cab truck(front drivers side) when he slipped and fell. Employee had his right hand on the door and his left hand on the door jam when he slipped. Employee grabbed the door with bo
## 470 01/07/2002 04:26 pm (fblackmo) employee was unloading a roll of fence wire with assistance from another employee. Employee stated he felt a pull muscle in his leg. Supervisor: r. L. Matthews
## 471 01/07/2002 05:07 pm (fblackmo) employee was helping unload 120' diameter metal pipe. Employee jumped from one pipe to another and when he landed on the second pipe employee twisted his right ankle. Supervisor: j. E. Smith
## 472 01/07/2002 05:25 pm (fblackmo) employee states that his foot slipped off truck causing his arm to jerk in an upward position. Supervisor; a. C. Culpepper
## 473 01/07/2003 01:09 pm (fblackmo) employee was cutting a tree with chainsaw. The tree kicked back and struck employee in the face. Supervisor: k. R. Davis
## 474 01/07/2003 12:55 pm (fblackmo) hearing loss in both ears due to exposure to loud noise. Operating chainsaw, asphalt machine, and weighing stone in high noise area near rock crusher. Supervisor: k. J. Putnam
## 475 01/08/2001 01:56 pm employee was walking on large frozen clumps of clay; when one rolled under her foot. This caused her to fall twisting her right ankle. Supervisor: thomas j. Burchell
## 476 01/08/2001 02:00 pm employee was hooking cable around a fallen beacon near ferry channel on 12/23/00. Mr. Lawrence punctured his right foot when he stepped on a nail. Supervisor: h. F. O'neal
## 477 01/08/2001 02:08 pm employee was pulling a pat scale from truck of patrol car; when he strained muscles in his left elbow. Supervisor: sgt. M. S. Lanier
## 478 01/08/2001 02:15 pm employee was lifting/moving salt spreader on truck; when it slipped pinching/breaking his left middle finger. Supervisor: randy mcintyre
## 479 01/08/2001 02:23 pm employee was moving/lifting signs on 12/8/00; when he strained his left shoulder. Supervisor: charles r. Sharp
## 480 01/08/2001 02:28 pm employee was getting out of motor grader when his foot slipped off the bottom step. Mr. Wallin fell striking his right elbow on pavement. Supervisor: david h. Rice
## 481 01/08/2001 02:38 pm employee was exiting the back door of drivers license office to conduct a pre-trip basic test on 12/5/00. Mrs. Rouse slipped and fell on ice straining her lower back. Supervisor: c. J. Horne
## 482 01/08/2001 02:44 pm employee was pulling on tilt hood; when it came loose suddenly and struck him in the face. Mr. Edwards left front tooth was broken. Supervisor: mack o. Anderson
## 483 01/08/2001 02:51 pm employee was walking to the copier machine; when she twisted her left ankle on 12/28/00. Supervisor: john davenport, jr
## 484 01/08/2001 02:58 pm employee struck/bruised his left knee on truck bumper while weighing trucks on 12/18/00. Supervisor: lt. R. D. Edwards
## 485 01/08/2001 03:04 pm employee was driving on sr 1544 and crossing bridge # 056 on 12/18/00. He was met by a lambert truck pulling a ditcher which hit the drivers side mirror causing it to break. Mr. Bailey has small cuts on his face and ear. Supervi
## 486 01/08/2001 03:16 pm employee was removing debris from roadway shoulder; when he stepped on a nail penetrating through his right foot. Supervisor: lindsey o. Ethridge
## 487 01/08/2001 03:21 pm employee was operating front end loader with the window down; when a foreign object blew into his right eye. Supervisor: c. E. Thompson
## 488 01/08/2002 10:01 am (fblackmo) employee was placing a sign rack into the bed of the truck. The sign got caught on another rack, fell and mashed employees left hand. Supervisor: ralph thomas mcmanus
## 489 01/08/2002 10:16 am (fblackmo) employee was exiting crewcab truck holding on to center post as a handrail. Upon exiting employees right hand center finger got caught between the back door. Supervisor: r. D. Brinson
## 490 01/08/2002 11:16 am (fblackmo) employee was driving east on us 264 looking around at the houses. When employee looked back at the road a tandem axle dump truck was turing right into a driveway. Employee slammed on his brakes but could not stop in ti
## 491 01/08/2002 11:40 am (fblackmo) employee was stopped at the traffic light on nc 280 and was struck from the rear by a private vehicle causing injury to neck and hip. Supervisor: capt. G. P. Ramsey
## 492 01/09/2002 01:37 pm (slee) supervisor was parked on mexico drive, off flowers store road. His vehicle was backed onto the side road approx. 25' from the edge of pavement. Operator of private vehicle was traveling out on flowers store road exceeding
## 493 01/09/2002 02:52 pm (fblackmo) employee was dismounting from tailgate of pickup truck when his foot slipped, causing him to fall to the pavement. Supervisor: d. R. Parker
## 494 01/09/2002 03:10 pm (fblackmo) employee was driving to jobsite when a vehicle in front of him wrecked and he swerved to avoid contact. Employee states that he hit his left knee on something in the truck. Supervisor: hugh williams
## 495 01/09/2002 03:42 pm (fblackmo) employee states that at approximately 11:15 am on tuesday 12/18/2001 he was securing a mooring line to the starboard bow cleat on m/v ft. Fisher when, he felt a sharp sting near the base of right thumb area. Employees han
## 496 01/09/2002 04:04 pm (fblackmo) employee states that he slipped on a muddy creek bank causing the incident to his left hand. Supervisor: r. L. Bowers
## 497 01/09/2002 04:23 pm (fblackmo) employee states that while picking up lumber from shed he bent over and felt a pain in his back. Supervisor: ken anderson
## 498 01/09/2003 02:44 pm (fblackmo) employee was removing debris from roadway during ice strom when, he slipped and fell on road causing the injury to his right elbow. Supervisor: n. S. Gibson
## 499 01/09/2003 08:28 am (fblackmo) employee was going out front door when, she slipped on the door mat. Supervisor: doug mcneal
## 500 01/09/2003 08:38 am (fblackmo) employee went to sit down in his chair when, he missed judged the distance and fell to the floor hitting his buttocks. Supervisor: ava parker
## 501 01/10/2000 03:52 pm Mr. Sturges suffers from post traumatic stress disorder, depression, anxiety and other mental/nervous disorders. Mr. Sturges obtained this disorders due to participating in investigations of multiple homicides on April 11, 1998 an
## 502 01/10/2000 05:26 pm employee was demonstrating (horseplay) a cheerleading "jump" with the assistance of a co-worker, when she twisted her right knee. Supervisor: arthur glenn short
## 503 01/10/2002 03:55 pm (fblackmo) employee was driving van of inmates to the department of corrections when a private vehicle rant he stoplight at the intersection of nc b and patterson avenue. The van flipped to its side, all inmates and driver had br
## 504 01/10/2002 04:14 pm (fblackmo) employee states that while bending over smoothing loose asphalt he felt something catch in his lower back. Employee could not straighten up for a few seconds. Supervisor: j. A. Medford
## 505 01/10/2002 04:25 pm (fblackmo) employee states that while cutting trees and standing in the area were the falling vain was that, she came into contact with poison oak. Supervisor: larry lucas
## 506 01/10/2003 10:58 am (fblackmo) employee states while performing roadside equipment repair, he twisted his right ankle. Supervisor: jimmy ammons
## 507 01/10/2003 11:36 am (fblackmo) employee was feeding brush into a chipper when, a wood chip hit him on his lip. Supervisor: a. O. Epley
## 508 01/11/2000 09:29 am employee was assembling boom sections on a crane, when she pulled muscles in her lower back. The employee twisted her upper right part of body to extend her right hand to catch cables, when the cables slipped off the top of the bo
## 509 01/11/2000 09:37 am Mr. Metcalf sprain/strain his right knee while exiting a backhoe on a construction project on 12/30/99. When he stepped onto the ground his knee gave way. Supervisor: t. M. Smith
## 510 01/11/2000 09:42 am Mr. Brooks was lifting a spreader trying to hook it into the tailgate of a dump truck on 11/24/99, when he strained his lower back. Supervisor: aaron s. Horton
## 511 01/11/2000 10:17 am employee was removing signs from truck bed, when he jerked the sign loose to remove it he felt a snap (pain) in his left side/lower back area. Supervisor: archie francis smith
## 512 01/11/2000 10:23 am employee was removing a steel band off a pallet of banded sheet metal, when the band broke loose, swung back and cut top of right hand between the thumb and index finger. Supervisor: roger faulkner
## 513 01/11/2000 10:29 am Mr. Binkley was reading a emr book walking into a deck, when he jerked back his head cutting skin above and below his right eye. Supervisor: f. E. Floyd
## 514 01/11/2000 10:38 am Mr. Cooke was entering crosspipe on 11/30/99. When he stood up to exit the pipe, he hit his head on bolt, causing a laceration on upper right side of scalp.
## 515 01/11/2000 10:48 am Mr. Crocker claiming mental stress due to confrontation with fellow employees. Supervisor: r. L. Bowers
## 516 01/11/2001 04:01 pm employee was moving/pushing a desk from office when he felt a sharp pain in his abdomen. Supervisor: m. S. Venable
## 517 01/11/2001 04:07 pm employee was unloading/lifting tamp from backhoe bucket onto truck bed; when the tamp jerked his hand into the bucket causing his right ring finger to break. Supervisor: g. E. Strickland 04/19/2001 04:53 pm (sjerniga) fractu
## 518 01/11/2001 04:13 pm employee was opening his pocket knife to oil the hinge of a blade on 12/13/00. A blade got stuck so he used some pliers along with the knife. When he pulled the other end with the pliers the knife blade cut his left middle finger
## 519 01/11/2001 04:22 pm employee struck his head on stud of exhaust system while repairing vehicle on 12/18/00. Mr. Whitson has a cut on the right side of his head. Supervisor: t. M. Griffith
## 520 01/11/2001 04:30 pm employee was bitten by a dog while working on sr 1102 in transylvania county on 1/8/01. He has two puncture wounds and bruises behind his right knee. Supervisor: t. L. Greene
## 521 01/11/2001 04:37 pm employee was assisting move/pull sign post on 1/4/01. Mr. Dalton used his foot to clear the dirt; when his foot became lodged in the puller mashing his big toe on his left foot. Supervisor: e. A. Cabe
## 522 01/11/2002 10:02 am (fblackmo) employee was walking and tripped and fell. Supervisor: cathy overton (backup)
## 523 01/12/2000 04:17 pm Mr. Thompson was picking up trash on a hill, when he lost his balance, slipped and hurt his left shoulder. Supervisor: j. S. Walker
## 524 01/12/2000 04:32 pm Mr. Spinks was carrying a 12 ft. U-channel steel post with an attached sign. He placed the sign post in a hole, when he noticed the sign was facing the wrong way. He proceeded to lift the sign when he felt a pain in his lower bac
## 525 01/13/2000 03:31 pm Mr. Wells was attempting to turn battery charger off when the batteries exploded causing acid to get in his eyes. Supervisor: d. E. Clapton
## 526 01/13/2000 03:33 pm officer newbern was stopped in the turn lane of us 158 (4 lane with turn lane) with his blue lights and strob lights activated. He was waiting for an approaching vehicle reported operating careless and reckless at a high rate of s
## 527 01/13/2000 03:36 pm Mr. Blue injured his right arm when he fell out of tandem truck on 1/11/2000. His foot got hung between bed and top of tire when he stepped off the truck. Supervisor: j. E. Walters
## 528 01/13/2000 03:44 pm Mr. Beane s stepped down off motorgrader onto block of wood. The wood was sticking out from under the grader blade causing him to sprain his right ankle. Supervisor: e. M. Presnell
## 529 01/13/2000 09:13 am Mr. Holley was assisting another employee guiding a tailgate into place, when his right hand little finger was caught between tailgate and dump truck. Supervisor: l. D. Skinner
## 530 01/15/2003 02:01 pm (fblackmo) employee fell off back of truck while trying to position the spreader. Supervisor: r. W. Rhodes jr
## 531 01/15/2003 02:54 pm (fblackmo) employee was pulling a limb out of a pile of debris from ice storm when, he felt pain in his left shoulder 10/21/2003 02:39 pm (gwhite)
## 532 01/15/2003 09:15 am (fblackmo) employee had stopped his vehicle behind private vehicle turning into driveway when, dot vehicle was hit in the rear. Supervisor: barry f. Kizziah
## 533 01/15/2003 09:28 am (fblackmo) repetitive motion. Carpal tunnel syndrome in right wrist. Supervisor: sam barbour
## 534 01/15/2003 09:44 am (fblackmo) employee was cutting tree on arthur minnis road when, one of the limbs hit him on his left arm. Supervisor: todd bray
## 535 01/15/2003 09:55 am (fblackmo) employee was hooking up cement mixer to pick-up when, he felt pain in his lower right side. Supervisor: terry l. Harris
## 536 01/15/2003 10:22 am (fblackmo) employee states he experienced pain in his lower back when; the state crew cab truck he was operating was hit in the rear by another state owned medium duty dump truck.
## 537 01/15/2003 10:34 am (fblackmo) employee was checking a salvage rebuilt truck. The panel of the truck struck him on his right leg causing him to fall, twisting his lower back and right ankle and leg. Supervisor: cpt. J. F. Jones
## 538 01/15/2003 10:48 am (fblackmo) employee was bending to pick up log when, he felt pain in his lower back. Supervisor: b. J. Berryhill jr 01/28/2003 03:01 pm (kbarefoo)
## 539 01/15/2003 10:59 am (fblackmo) employee was cutting tree, tree kicked back hitting employee on his right heel. Supervisor: g. R. Cooper
## 540 01/15/2003 11:10 am (fblackmo) employee was operating a chain-saw removing debris form roadway in emergency situation. Employee was using all safety equipment. Tree limb kicked back hitting face. Supervisor: a. O. Epley
## 541 01/15/2003 11:23 am (fblackmo) employee states while bending to pick up clipboard, he felt pain in his left knee. Supervisor: mike harris
## 542 01/15/2003 12:07 pm (fblackmo) employee was feeding a tree limb into a brush chipper. The tree limb twisted inside the chipper striking employee on his right leg just above the knee. Supervisor: h. M. Coates 11/29/2004 06:59 am (kbarefoo)
## 543 01/15/2003 12:35 pm (fblackmo) employee states while lifting rear end in housing to line it up, he felt pain in his left hand. Supervisor: mark y. Walker
## 544 01/15/2003 12:52 pm (fblackmo) employee was cutting and removing trees from highway when, he stepped wrong on the pavement leading to the injury to his ankle. Supervisor: phil d. Manley
## 545 01/16/2002 01:53 pm (fblackmo) employee states that while dragging brushes to the chipper he experienced pain in his lower back. Supervisor: d. L. Carpenter
## 546 01/16/2002 02:07 pm (fblackmo) employee was replacing batteries in a ups. Employee was attempting to disconnect the battery cables. The connector was stuck, he exerted more force and the cable dislodged quickly causing employee to slid his hand alon
## 547 01/16/2002 02:19 pm (fblackmo) employee states that while bending over at the snack machine beside a freezer another employee came in and open the freezer door causing it to hit employee on the shoulder. Supervisor: rebecca simpson
## 548 01/16/2002 02:39 pm (fblackmo) employee states that, while walking by the railing next to the snack bar in the m&t lab, he was sliding his hand along the wood top of the rail. A splinter from the wooden rail entered in the palm of employees right han
## 549 01/16/2002 03:04 pm (fblackmo) employee was checking snow plow blades and tire chains when he went to get back into the truck his foot slipped on the ice. Supervisor: rice david
## 550 01/16/2002 03:20 pm (fblackmo) employee was blading ice off of roadways with a motor-grader. Due to the loose bolts on the grader blade, the blade became lodged in a gap in the bridge approach, the blade was stuck in the travel lane. Employee tried
## 551 01/16/2002 03:34 pm (fblackmo) employee was securing hooks on m/v ft. Fisher when the other deckhand released his grip on the net before it was safely hook. The net jumped back suddenly to the left causing the injury to her left hand and wrist. Supe
## 552 01/16/2002 03:48 pm (fblackmo) employee was assisting in cutting a downed tree from the roadway which had poison ivy vines wrapped around it, when cutting the tree, he cut through a vine on the bottom, which threw the sap on his neck and face. Supe
## 553 01/16/2002 04:03 pm (fblackmo) employee was sitting in state vehicle eating lunch with the window down, when a gust of wind came in the window causing foreign object to go into his left eye. Supervisor; earl d. Bell
## 554 01/16/2002 11:25 am (fblackmo) employee states that while sitting at stop light on state road 1012 @ us 15-501 a private own vehicle hit them in the back. The force from the accident caused the employee to experience pain in his neck and eye. Superv
## 555 01/16/2002 12:04 pm (fblackmo) employee lost balance after table that was being moved slipped out of hands of other person carrying table. Employee fell on wrist to catch himself. Supervisor: c. S. Mcdonald
## 556 01/16/2002 12:20 pm (fblackmo) employee was exiting bucket on a bucket truck, placed left foot on bucket step, while bringing right leg out of bucket, left foot slipped off step. Employee struck the tailgate with chest and hit the round with his bac
## 557 01/16/2002 12:37 pm (fblackmo) employee was lifting a 4" stem valve on to a dolly to transport it to the hull shop to install it on the facilities water main line. As he lifted it he felt a grinding sensation in his lower back. The pain was not seve
## 558 01/16/2002 12:49 pm (fblackmo) employee states that while pulling up a fishing net that was in the channel, his foot got tangled up causing him to fall. Supervisor: e. M. Farrow
## 559 01/17/2001 05:11 pm employee was in state truck when he reached with his right arm over his left shoulder to put on safety belt. Mr. Hildreth strained his lower right side of back. Supervisor: d. W. Knight/marc p. Morgan
## 560 01/17/2002 02:14 pm (fblackmo) employee was standing on the harden salt inside of the salt spreader of his truck. While loosening up the salt, the salt broke loose throwing employee to the bottom of the salt spreader causing the injury to his right k
## 561 01/17/2002 02:27 pm (fblackmo) employee states that he has pain in right elbow and forearm and hand. Supervisor: not given
## 562 01/17/2002 03:03 pm (fblackmo) employee was walking to entrance of the parking area when she slipped on a lemon peel. Supervisor: lee johnson
## 563 01/17/2002 03:23 pm (fblackmo) employee was conducting road test when, customer backed up and stopped and failed to put vehicle back in proper gear. The customer backed sharply against the curb and as a result caused the injury to employees neck and
## 564 01/17/2002 03:53 pm (fblackmo) employee was unloading salt when he felt a pian in his left hip area. Supervisor: v. Dean summers
## 565 01/17/2002 04:07 pm (fblackmo) employee was prying 2 x 4 timber from concrete form. Timber fell striking employee in back of neck area. Supervisor: r. D. Sherrill
## 566 01/17/2002 04:17 pm (fblackmo) employee states that he slipped on ice while walking to his vehicle. Supervisor: l. D. Caddell
## 567 01/17/2002 04:31 pm (fblackmo) employee was putting mailbox post in back of the truck when he mashed his middle finger on his left hand. Supervisor: s. G. Dillon
## 568 01/17/2002 04:46 pm (fblackmo) employee stepped from truck with spreader onto snow covered concrete and twisted right ankle. Supervisor; b. W. Whitaker
## 569 01/17/2002 09:25 am (fblackmo) carpal tunnel syndrome injury in both wrists and has developed over the past eight years due to secretarial work, typing, repetitive computer input and calculator. Supervisor: j. F. Sloop
## 570 01/17/2003 09:34 am (fblackmo) employee was cutting up a fallen tree with chainsaw when, one section of the tree fell hitting his left foot. Supervisor: steve a. Hardin
## 571 01/17/2003 09:44 am (fblackmo) employee got his right index finger caught between the chain and tailgate while, trying to free the chain that was behind the locking bar of the tailgate. Supervisor: grady raynor
## 572 01/17/2003 10:11 am (fblackmo) employee states he experienced pain in his lower back while exiting his pick-up truck. Supervisor: j. F. Sloop
## 573 01/17/2003 10:30 am (fblackmo) employee was responding to a signal trouble call while attempting to un-plug the detector he burned his left hand. Supervisor: j. D. Edwards
## 574 01/17/2003 10:41 am (fblackmo) employee was using drill when his finger got caught between the wrench and drill rig. Supervisor: w. D. Frye
## 575 01/17/2003 10:55 am (fblackmo) employee was dragging limbs to the chipper when, he felt pain in his back and hip. Supervisor; willie h. Monroe
## 576 01/17/2003 11:05 am (fblackmo) employee states while removing branches from shoulder of road, one of the branches hit him in his right eye. Supervisor: sarah g. Foster
## 577 01/17/2003 11:17 am (fblackmo) employee was picking up fall tree limbs when, he felt pain in his abdomen area. Supervisor: sarah g. Foster
## 578 01/17/2003 11:27 am (fblackmo) employee had both hands on door board when, he felt a sharp pain in his left shoulder. Supervisor: brian k. Clover
## 579 01/17/2003 11:38 am (fblackmo) employee states she has experienced pain in both of her hands and wrists due to repetitive motion. Supervisor; leondas guy
## 580 01/17/2003 11:57 am (fblackmo) employee stated, after climbing into cab the door was about to slam shut, he threw his left arm in the door to keep the glass from breaking. Supervisor; steve a. Hardin
## 581 01/17/2003 12:11 pm (fblackmo) employee states while trying to place bag of asphalt in the oven it slipped causing the bag to fall on his hand. Supervisor; Jan wobble
## 582 01/17/2003 12:29 pm (fblackmo) employee was pulling limbs from under tree. A limb fell striking employee on the his left side back area. Supervisor: glenn koepp
## 583 01/18/2001 08:43 am employee was hanging salt spreader on racks; when the chains on the racks slipped causing a cut to his forehead and bruising his arm. Supervisor: mark e. Stafford 04/19/2001 04:59 pm (sjerniga) lost time
## 584 01/18/2001 08:49 am employee bent over to lift a piece of broken asphalt to throw into backhoe bucket on 1/5/01. Mr. Pollock felt pain in his lower left back area. Supervisor: leon ross 04/19/2001 04:58 pm (sjerniga) lost time
## 585 01/18/2001 08:55 am employee was placing a stick of wood into truck; when another piece of wood rolled onto her left hand. The piece of wood bruised her left middle and ring fingers. Supervisor: s. M. Lemons
## 586 01/18/2001 09:17 am employee was helping slide a 4 x 8 nailers onto steel beams; when he got his right index finger caught in between nailer and the end of the steel beam. Supervisor: j. C. Gunter 06/05/2002 04:29 pm (hoxendin)
## 587 01/18/2001 09:24 am employee was flagging traffic on highway work zone nc 177 north on 1/4/01. A vehicle entered the work zone and failed to stop striking employees stop/slow paddle. The employees left hand struck windshield causing a contusion on h
## 588 01/18/2001 09:31 am employee was working in signal cabinet with wires on 1/12/01. He was holding a wire in one hand and reached down to get second wire. While reaching down to get wire; first wire popped out of his hand striking him in his right eye
## 589 01/18/2001 09:48 am employee was cutting logs into sections on 1/5/01. He had his foot in between two logs; when one log rolled on his right foot pinning it in between the logs. Supervisor: t. L. Hall 04/19/2001 04:57 pm (sjerniga) prescripti
## 590 01/18/2001 09:55 am employee was taking grader chains apart with pliers on 1/3/01. While he was clamping on chains; he felt a sharp pain in his upper back shoulders area. Supervisor: r. E. Bennett 04/19/2001 04:50 pm (sjerniga) prescription
## 591 01/18/2001 10:01 am employee was cutting up (destroying) drivers licenses; when scissors slipped slicing her left thumb. Supervisor: gary lovette
## 592 01/19/2001 10:31 am employee was removing debris from work area on 1/3/01. He was walking in slightly bent over position due to lack of walking space. Mr. Steinmeyer lost his balance and caught himself from falling completely with his right foot/ank
## 593 01/19/2001 10:39 am employee was placing mortar around three concrete pipe joints; when a piece of glass cut his left thumb. Supervisor: p. C. Casas
## 594 01/19/2001 10:47 am while getting out of truck (at job site) on 1/2/01; employee right hand was caught in the door. Mr. Crisco's right little finger was cut. Supervisor: j. C. Pruitt/r. A. Mccarley
## 595 01/19/2001 10:54 am employee strained his left shoulder and left knee on 12/31/00. Mr. Cobb slipped on curb and was lifting a scale at time of incident. Supervisor: sgt. Nichols
## 596 01/19/2001 12:02 pm employee was giving driver road test on 1/11/01; when the customer jumped a curve and hit building. Mr. Potter's jammed fingers on his right hand and strained/sprained his right wrist. Supervisor: patricia glenn
## 597 01/20/2000 01:19 pm Mr. Hancock sprained his right ankle on 1/5/2000m when he stepped into a grass covered wheel rut, loss his balance and fell heavily onto the ground. Supervisor: william h. Lotz
## 598 01/20/2000 01:34 pm Mr. Martin was helping pick up a piece of old carpet weighing 100 to 150 pounds from shoulder of road, when he pulled a muscle in lower back. Supervisor: m. D. Warwick
## 599 01/20/2000 03:34 pm Ms. Adams has pain in right elbow and left forearm due to repetitive motion on keyboard. Supervisor: pam lett
## 600 01/20/2000 03:40 pm Ms. Carpenter has two knots on the back of both hands that are very painful due to repetitive motion keyboarding over the years. Supervisor: m. D. Fletcher
## 601 01/20/2000 12:24 pm Mr. Ragland was removing an engine cover, when the cover slipped cutting the tip of his right ring finger. Supervisor: t. D. Clement, jr.
## 602 01/20/2000 12:29 pm Ms. Hiatt was operating a loaded swb dump truck, when a strong gust of wind struck the truck broadside and pushed the wheels onto shoulder of the road. The load shifted causing the operator to lose control of the truck. Ms. Hiatt
## 603 01/20/2000 12:46 pm Mr. Pittman came in contact with poison ivy/oak while cutting brush. He has rash on both arms. Supervisor: j. C. D' arruda
## 604 01/21/2003 12:16 pm (fblackmo) employee states while on construction project in columbus county he was bitten by a tick on his right knee. Supervisor: w. R. Marsh pe
## 605 01/22/2002 03:50 pm (fblackmo) the asphalt crew finished a patching operation and stopped at the store. Two private vehicles collided at the intersection of nc 27 and 1238. One of the vehicles slid out of control into the parking lot of the store an
## 606 01/22/2002 04:08 pm (fblackmo) employee was stepping out of generator building in back of operations and stepped into a pot hole, causing employee to injure his right foot. Supervisor: j. W. Cahoon
## 607 01/22/2002 04:38 pm (fblackmo) employee states that during p. T. Training he started having chest pains. Supervisor: keith e, king
## 608 01/22/2003 02:19 pm (fblackmo) employee was moving a cinder-block when he felt pain in his right shoulder. Supervisor: c. W. Vestal
## 609 01/22/2003 02:37 pm (fblackmo) employee was coming out of her office when she slipped on the floor. Supervisor: j. M. Kinlaw
## 610 01/22/2003 02:49 pm (fblackmo) employee was reaching into the tool box on the back of a flatbed truck when the lid fell on his left wrist. Supervisor; d. L. Lane
## 611 01/22/2003 03:02 pm (fblackmo) employee was un-hooking the mulch blower when something flew out striking employee on the mouth, breaking front tooth. Supervisor: s. T. Hammond
## 612 01/23/2002 08:47 am (fblackmo) employee was moving parts containers in stock room. Pallets were on the floor, he stepped on the edge of one and fell to the floor twisting his left leg and knee. Supervisor: james a. Cowan
## 613 01/23/2002 09:00 am (fblackmo) employee was walking pamlico river ferry operations site during a inspection. Employee stepped over a temporary construction net fence when, his foot got caught in the fencing twisting his knee. Supervisor; david king
## 614 01/23/2002 09:15 am (fblackmo) employee had been sawing trees on back side of ditch. Employee was crossing back across the ditch to the road when he slipped on the wet snow and fell. Employees' left hand landed on the chain saw bar cutting his ring
## 615 01/23/2002 09:26 am (fblackmo) employee states that while walking from the maintenance building to dump truck, he slipped on the snow and ice. Employee states that he caught himself before falling. Supervisor: ronnie powell
## 616 01/23/2002 09:40 am (fblackmo) employee was standing on truck steps provided to add height to reach grease fittings on truck body. While, greaseing the fittings the truck steps tipped over and employee fell to concrete and metal drain grate. Supervi
## 617 01/23/2002 09:55 am (fblackmo) employee was traveling east on bringle ferry road, operating a dump tuck that had plow and inbody spreader on. Employee was in the process of clearing the roads from the snow storm. Employee entered a sharp curve when,
## 618 01/24/2002 02:55 pm (fblackmo) employee states that, a heavy object had fallen off a truck and was laying in the travel-way of I-40 on a bridge. Employee dragged object out of the roadway, in the process employee injured his arm and shoulder. Superv
## 619 01/24/2002 03:10 pm (fblackmo) employee was hauling stones. Employee picked up a load and was going to let the trap back to cover the load. The trap frame got hung up. Employee then pushed on the trap frame with his hand, his finger got caught betw
## 620 01/24/2002 03:25 pm (fblackmo) employee was going under the bridge when, he slipped on a slick slopping area of the ground. Supervisor: l. R. Brown
## 621 01/24/2002 03:37 pm (fblackmo) employee was helping in moving supplies. He picked up a gaurdrail post 69 x 6 and 40lbs. Employee felt pain and burning in his arm and shoulder. Employee states that, his right arm and shoulder was injured also on 7/5
## 622 01/25/2002 10:20 am (vsulliva) sov (flatbed section truck) was going around a curve and met a pov truck. Mirrrors hit, caused glass from the mirror to break the glass in the door.
## 623 01/25/2010 08:40 am (slee) pov struck side of sov.
## 624 01/26/2001 09:04 am employee has acute cervical strain to his back and cephalsis to his head. Employee was parking motor grader when he started to dismount the grader; a bolt in the step came out causing him to fall out on his back. Supervisor: jim
## 625 01/26/2001 09:52 am employee stated he thought the fertilizer caused his hands to crack and peel. Supervisor: tim simpson
## 626 01/26/2001 10:13 am employee was leaving a wooded area; when his face brushed against a tree branch. The branch protruded inside his left ear causing ear drum damage. Supervisor: w. H. Draper 04/24/2001 04:14 pm (sjerniga) prescription
## 627 01/26/2001 10:21 am employee was filing bushaxe; when the file slipped causing him to cut his left wrist. Supervisor: terry l. Harris
## 628 01/26/2001 10:26 am employee was using a power hedge trimmer; when he cut the tip of his right index finger. Mr. Foran was in the process of putting the trimmer down when he cut his finger on the blades. Supervisor: david king 04/19/2001 04:56 p
## 629 01/26/2001 10:39 am employee was approaching dump truck to give some instructions to employees; when he stepped into a ditch twisting/sprain his right ankle. Supervisor: j. A. Cowan 04/19/2001 05:00 pm (sjerniga) lost time
## 630 01/26/2001 11:05 am employee went to use the restroom in the woods; when he bent down to pick up toilet paper a stick stuck him in his right eye. Supervisor: rick neal 04/24/2001 04:20 pm (sjerniga) prescription
## 631 01/26/2001 11:14 am employee was lifting (replacing) I/m gas cylinder in his patrol vehicle when he strained/sprained muscles in his lower and mid back areas. Supervisor: lt. T. S. Collins 04/23/2001 01:12 pm (sjerniga) restricted duty
## 632 01/26/2001 11:21 am employee was trying to loosen pipe with a pipe wrench; when the wrench slipped causing the handle to hit him in his forehead. Supervisor: r. T. Brim, jr 04/24/2001 04:14 pm (sjerniga) steri-strips
## 633 01/26/2001 11:27 am employee was sharpening a bushaxe; when he cut his left thumb. Supervisor: a. J. Mcneil
## 634 01/27/2003 03:12 pm (fblackmo) employee states while picking up tree limbs, he experienced pain in his lower back. Supervisor: jerry keene
## 635 01/27/2003 03:27 pm (fblackmo) employee states while walking in a pasture area on job site on level ground he felt pain in his right ankle. Supervisor: h. M. Thompson
## 636 01/27/2003 03:40 pm (fblackmo) employee states he has experienced pain and numbness in his hands. Carpal tunnel syndrome. Supervisor: jeff hardy
## 637 01/27/2003 03:52 pm (fblackmo) employee states he came into poison oak while mowing. Supervisor: k. R. Davis
## 638 01/28/2003 07:18 am (fblackmo) employee states while pulling bushes out of road way, he felt pain in his lower back. Supervisor: ralph thomas mcmanus jr
## 639 01/28/2003 07:40 am (fblackmo) employee states while pulling cart to the forklift he, experienced pain in his lower back. Supervisor: michael simmons
## 640 01/28/2003 07:51 am (fblackmo) employee was putting limbs into chipper when, some of the debris flew into his right eye. Supervisor: david lowery
## 641 01/29/2002 03:38 pm (sshort) employee was walking into the hearing office in newton, nc; when he dropped some papers out of a file. Mr. Phillips then slipped and fell breaking/fracturing both ankles and his right leg. Supervisor: c. H. Matthews 02
## 642 01/29/2003 02:12 pm (slee) Mr. Hodgin was salting I-85 due to snow storm when private vehicle struck back of his truck due to excessive speed by private vehicle for road conditions.
## 643 01/30/2003 02:34 pm (fblackmo) employee was pulling limbs and logs to be loaded. One of the logs fell and hit employee on his right little toe. Supervisor: g. Vinson
## 644 01/30/2003 02:48 pm (fblackmo) employee states he lost his balance on the water rip-rap which caused the injury to his left hand. Supervisor: william h. Lotz
## 645 01/30/2003 03:02 pm (fblackmo) employee was attempting to get into a dump truck when, his right foot slipped causing the injury to his left knee and calf. Supervisor: w. E. Mcclendon jr
## 646 01/30/2003 03:15 pm (fblackmo) employee was attempting to fasten a binder securing spreader in body of tandem truck when, the chain slipped hitting employee on his forehead. Supervisor: robert winslow
## 647 01/30/2003 03:28 pm (fblackmo) employee was attempting to lift one side of a snow plow when, he felt pain in his lower back. Supervisor: w. E. Mcclendon jr
## 648 01/30/2003 07:30 am (fblackmo) employee states that while spraying brake cleaner on snow plow fittings, some of the spray went into his eyes. Supervisor: johnny ransdell
## 649 01/30/2003 08:07 am (fblackmo) employee states while shutting the truck door he, hit his right elbow. Supervisor: a. S. Bailey
## 650 01/31/2001 03:29 pm employee was catching keys thrown by john polk on 1/12/01. Mr. Adams twist/strained his upper back between his shoulder blades while reaching to catch keys. Supervisor: ronald lee 04/24/2001 04:13 pm (sjerniga) pre
## 651 01/31/2001 03:41 pm employee fell and fractured his right tibia (shin) on 1/16/01. Mr. Pittman's left foot got caught under the door causing him to fall. Supervisor: j. D. Edwards 04/24/2001 04:15 pm (sjerniga) fracture
## 652 01/31/2001 04:09 pm employee was trying to unhook tailgate; when chain came loose causing the tailgate to fall on Mr. Stump. Mr. Stump has a cut on top of his head, cracked ribs and a bruised right side. Supervisor: james f. Bishop
## 653 01/31/2001 04:19 pm officer hyde was riding in front passenger seat; when officer shackelford (the driver) stepped on the brakes hard and startled Mr. Hyde. This action caused him to jerk and try to catch the dashboard of the vehicle. Employee has a
## 654 01/31/2002 10:30 am (sshort) employee states that he was using the crack pour wand; when he injured/strained his left shoulder. Supervisor: larry j. Jackson
## 655 01/31/2002 10:39 am (sshort) employee was attempting to close the tailgate on pickup truck; when a bundle of silt fence posts fell against the tailgate. The tailgate bounced back against him causing him to feel sharp pains in his lower back. Supervi
## 656 01/31/2002 10:54 am (sshort) employee was unloading road closed barricades off trailer; when he felt a pain in his left shoulder. Supervisor: mike ennett
## 657 01/31/2002 11:02 am (sshort) employee was struck from behind on I-40 @ 7. 5 mile marker in haywood county on 1/19/2002. Mr. Barnes was sitting in state owned vehicle on shoulder of road. He has pain in his neck, back and leg. Supervisor: ssg. H. C
## 658 02/01/2000 01:20 pm employee was removing a fallen tree off the road, when debris flew into his left eye. Supervisor: c. N. Edwards, jr.
## 659 02/01/2000 01:52 pm employee was trying to stop air conditioner from hitting the concrete at the davidson county landfill. Mr. Wilson pulled a muscle in back of his left leg. Supervisor: mark crook
## 660 02/01/2000 02:00 pm Mr. Lewis was attempting to raise the hood on dump truck when he felt something pull in his lower back. Supervisor: c. M. Walker
## 661 02/01/2002 10:10 am (sshort) employee was running from the file room to the office to answer the telephone; when she hit her desk, fell into the door frame and onto the floor. Mrs. Roberts has strain to her neck and severe headaches. Supervisor: pa
## 662 02/01/2002 10:17 am (sshort) employee was feeding a tree limb into the chipper; when the chipper caught his right hand bruising his left ring finger. Supervisor: r. H. Brazil
## 663 02/01/2002 10:24 am (sshort) employee cut left index finger while trying to replace a safety chain requiring 6 sutures. Supervisor: gary d. Nance
## 664 02/01/2002 10:32 am (sshort) employee noticed her left eye was hurting after coming back from a road test. A foreign object blew into her upper left eye lid. Supervisor: devin drye
## 665 02/01/2002 10:35 am (sshort) employee strained his upper left leg while placing portable scales under tractor trailer on 1/9/02. Officer anders was in the process of weighing a tractor trailer at time of injury. Supervisor: ssg. R. P. Brigman
## 666 02/01/2002 10:41 am (sshort) employee was cutting tree limbs; when he came in contact with poison ivy plants. He has contact rash on face, arms, and upper part of his body. Supervisor: c. D. Mcduffie
## 667 02/01/2002 10:51 am (sshort) employee was getting into loader; when he missed a step causing him to fall. All of his weight went down as he caught himself. Mr. Coward strained his left forearm and hand. Supervisor: clifton mills
## 668 02/02/2000 02:30 pm Mr. Jenkins was called by graham county sheriff dept on 1/16/2000. While walking to his ncdot truck he slipped on ice on his sidewalk. Mr. Jenkins has three separate breaks in his right wrist due to this fall. Supervisor: w. D.
## 669 02/02/2000 02:36 pm Mr. Mabe fell forward when his wrench slipped while leaning over a wheel guard. He was trying to loosen bolts and was on his knees at the time. He has injuries to chest and under his right arm. Supervisor: r. E. Joyce
## 670 02/02/2000 02:44 pm Mr. Elliott was moving logs to uncover survey reference point when he injured his back. Supervisor: damom webb
## 671 02/02/2000 02:48 pm while working on bridge # 91 in nash county, Mr. Holland came in contact with poison ivy. He has contact rash on face and back. Supervisor: l. E. Cotton
## 672 02/02/2000 04:03 pm Mr. Wallace was pushing snow with a tandem truck/snow plow, when the truck overturned. Mr. Wallace broke his ribs on the left side and has a 2 inch cut to left elbow, and a knot on his head from this incident. Supervisor: dennis
## 673 02/02/2000 05:01 pm Mr. Austin was changing blades on a snow plow with an air wrench. While removing bolts, trash fell into his right eye. Supervisor: r. P. Aswell
## 674 02/02/2001 02:23 pm employee was returning from a road test on 1/19/01. When she got out of the car; the wind caught the door and struck her left elbow. Ms. Robbins has pain and numbness in her left elbow and hand. Supervisor: michael jarman
## 675 02/03/2000 03:32 pm a private vehicle pulled out in front of Mr. Bullock on 1/14/2000 causing state vehicle to hit/knock private vehicle in ditch. The state vehicle (dump truck) also slid into the ditch. Mr. Bullock was checked out (first aide only)
## 676 02/03/2000 03:48 pm Mr. Myers was entering a truck when he slipped bruising his shins. Supervisor: j. W. Dyson
## 677 02/04/2000 11:35 am Mr. Fender slipped and fell on left wrist on 1/20/00. He had just checked bed of truck for balance of sand. Supervisor: james allen medford
## 678 02/04/2000 11:42 am Mr. Hipps was loading signs onto a pickup truck, when signs began to fall off dock and landed on his left leg. Supervisor: roger l. Arrowood
## 679 02/04/2003 08:10 am (fblackmo) employee entered conference room (via hall area) to retrieve a cart when, she tripped over the un-even carpet. Supervisor: carl goode
## 680 02/04/2003 08:59 am (fblackmo) employee was driving his crew cab truck when he felt a needle like sharp pain in his left shoulder. Supervisor: r. D. Holland
## 681 02/04/2003 09:16 am (fblackmo) employee states while putting in his ear plugs another employee that was pulling limbs accidentally hit him in his head. Supervisor: david lowery
## 682 02/04/2003 09:29 am (fblackmo) employee states while changing blades on dump truck, some of the snow and ice went into his right eye. Supervisor: k. L. Anderson
## 683 02/04/2003 09:40 am (fblackmo) employee states while bending to cut tree with chain-saw, he experienced pain in his lower back. Supervisor: donald king
## 684 02/04/2003 09:51 am (fblackmo) employee was attempting to make repairs to a motor grader tire, while lifting the tire he experienced pain in his rectum area. Supervisor: l. D. Greene
## 685 02/04/2003 10:40 am (fblackmo) employee states, while walking to her car she fell in the parking lot caused by the snow and ice. Supervisor: henry moon
## 686 02/04/2003 10:54 am (fblackmo) employee was walking down hill when, he slipped and twisted his right ankle. Supervisor: b. J. Vance
## 687 02/04/2003 11:05 am (fblackmo) employee states, while lifting bag of cold mix asphalt he felt pain in his lower back. Supervisor: w. J. Turner & g. F. Neal
## 688 02/05/2000 09:30 am Mr. Lutz has a laceration to the back of head due to falling on ice on 1/22/2000. I-40 was blocked by a pick-up truck on ice. Mr. Lutz got out of his truck to help when he fell hitting his head on concrete. Supervisor: max aber
## 689 02/05/2000 09:35 am Mr. Mccrary left hand hit exhaust pipe on crack sealing machine. He was checking the tar level when his hand slipped causing a 2 degree burn. Supervisor: r. L. Adcock
## 690 02/05/2000 09:41 am Mr. Blankenship slipped in bed of truck while trying to remove snow from tool box and cab of truck. He has injuries to his left shoulder. Supervisor: cliff mcneill
## 691 02/05/2000 09:50 am employee was grinding on marine vessel silver lake when foreign object (metal) flew into his left eye. Supervisor: kevin lamar cooke
## 692 02/05/2000 09:57 am Mr. Biles suffered head trauma on 1/23/2000. Employee was cutting tree hanging over the road, when the limb bounced back knocking off his hat. (tree was covered with ice during the storm) supervisor: m. L. Thompson
## 693 02/05/2000 10:07 am Mr. Hancock pulled ligaments in his right leg when he slipped on gravel on 1/3/2000. He was getting out of his truck to sweep dirt off his spreader at the time of incident. Supervisor: tommy kilpatrick
## 694 02/05/2000 10:17 am Mr. Wright was installing 36 inch pipes in 20 foot sections; while moving joints he lost his footing in the mud causing him to fall landed on his right wrist. Supervisor: t. A. Woody note: Mr. Wright works in cherokee county 31
## 695 02/05/2000 10:27 am employee was unloading cold mix from the rear of truck, when he felt a sharp pain in his lower back. Supervisor: willie monroe
## 696 02/05/2000 10:47 am officer summerlin was involved in a vehicle pursuit of a tractor trailer truck on 1/20/2000. The tractor trailer hit officer summerlin in the rear when he passed the trailer truck. He has injuries to the left side of his neck, lef
## 697 02/05/2000 10:58 am Mr. Smith was driving north bound on I-95; when a private vehicle came over in his lane, hitting his vehicle on the left side. (Mr. Smith was doing the posted speed limit of 70 mph) he suffered injuries to his neck, left shoulder,
## 698 02/05/2000 11:09 am employee parked state vehicle on shoulder of highway 70 east in newport, nc to switch drivers on 1/19/2000. A private pick-up truck slid on snow/ice and ran into the rear of state vehicle. Supervisor: charles utz note: charles
## 699 02/05/2000 11:21 am employee slipped on ice ( injury-back) while attempting to remove two dump trucks that was stuck in a ditch on 1/25/2000. Supervisor: marty craig tillman
## 700 02/05/2000 11:29 am employee was removing chains off of a grader when he hit and chipped a bone in his right elbow on 11/30/1999. Supervisor: j. L. Lane
## 701 02/05/2002 11:12 am (fblackmo) employee was hanging signal head while in aerial device when he felt a pull in his back. Supervisor: j. D. Edwards
## 702 02/05/2002 11:27 am (fblackmo) employee was getting onto the backhoe trailer and slipped on the step of the trailer, which had grease on it. Employee hit his left knee on the trailer. Supervisor: j. E. Walters
## 703 02/05/2002 11:42 am (fblackmo) employee states that, while stepping off the first floor elevator and slipped on slippery floor falling on right hip and side. Supervisor: g. W. Zeigler
## 704 02/05/2002 12:05 pm (fblackmo) employee states that, while using a sledge hammer to drive a post into the ground he felt a sharp pain in his back. Supervisor: barry t. Coble
## 705 02/05/2002 12:17 pm (fblackmo) employee slipped on hydraulic fluid on side of the road after tractor-trailer accident. Supervisor: charles narron
## 706 02/05/2002 12:28 pm (fblackmo) employee was shoveling slyvex off back of pickup truck when he felt pain in his back. Supervisor: jack belk
## 707 02/05/2002 12:42 pm (fblackmo) employee was conducting right of way vegetation clearing on the back side of a ditch along state road 1004 (old hwy) when, he lost his footing. Supervisor: mark e. Cooney
## 708 02/05/2003 02:12 pm (fblackmo) employee states, while bending to replace blades on snow plow he felt pain in his groin area. Supervisor: b. J. Berryhill jr
## 709 02/05/2003 02:23 pm (fblackmo) employee was conducting a road survey, he went to cross a fence and his boot got caught on the top, causing him to fall and dislocate his left ankle. Supervisor: richard hensley
## 710 02/05/2003 02:39 pm (fblackmo) employee states while exiting truck she, mis-stepped causing the injury to her right knee. Supervisor: johnny coleman
## 711 02/05/2003 02:51 pm (fblackmo) employee states, he felt a pop in his lower back while lifting tire chains. Supervisor: g. G. Caudill
## 712 02/05/2003 03:03 pm (fblackmo) employee states while loading plain registrations onto flat cart she, felt a pop in her lower back and hip area. Supervisor: jamy cummings
## 713 02/06/2001 10:08 am Mr. Cox did not know he was responding to a damaged power pole sign, once on the scene he was exposed to intense flashes of light causing irritation to both eyes. Supervisor: b. T. Coble
## 714 02/06/2001 10:41 am employee momentarily took his eyes off the road while driving on friendship road on 1/17/01. The vehicle he was driving traveled across the centerline, striking an oncoming vehicle on its side. Mr. Sharp has cuts to his face, and
## 715 02/06/2001 10:53 am employee picked up spindle pin to put into spindle; when he felt pain in his lower back and right leg. Supervisor: conrad d. Watkins 04/24/2001 04:27 pm (sjerniga) lost time
## 716 02/06/2001 10:57 am employee was weighing a 3 axle dump truck on 1/22/01. When he placed a scale under the second axle on the left he struck his head causing a small abrasion. Supervisor: 2lt. W. E. Thompson
## 717 02/06/2001 11:04 am employee was cutting log into blocks to remove it from the road; when the log rolled over striking him on his right leg and ankle. Supervisor: a. R. Hensley
## 718 02/06/2001 11:24 am employee was crossing the street to the state parking lot; when her foot went into a hole. Ms. Milligan lost her balance and fell on her face scraping her cheek. She also has a black eye and her mouth is swollen and lip bruised
## 719 02/06/2001 11:35 am employee was using a weed eater cutting around pipes; when the blade picked up a piece of metal. The metal struck him and cut him on his face (right side) and beneath his right ear. Supervisor: quindale bullard
## 720 02/06/2001 11:40 am employee was trimming tress with chain saw; when he stepped on hawthorne cutting/puncturing his lower left leg. Supervisor: b. G. Herron
## 721 02/06/2001 11:45 am employee states she has excruciating pain in her thumb, center of right hand from wrist area up to her shoulder blades. She states she has chest pain up to the point of hyperventilating. She states she has swelling of the fingers
## 722 02/06/2001 12:00 pm employee picking up paper from roadway; when he lost his footing, slipped and fell down embankment. Mr. House sprain his left wrist. Supervisor: d. T. Cottrell
## 723 02/06/2001 12:06 pm employee was moving a box from one place to another; when he felt pain and stiffness in his left leg and lower back area. Supervisor: k. M. Hughes
## 724 02/06/2001 12:12 pm employee was measuring and inspecting pipe; when he stepped on a ice covered rock and lost his balance. He fell and hit his left elbow (contusion) on a rivet. Supervisor: jerry f. Shuler
## 725 02/06/2003 07:52 am (fblackmo) employee lost his footing and slipped while climbing into cab of a tandem dump truck. Supervisor: l. O. Ethridge 04/12/2004 11:59 am (gwhite)
## 726 02/06/2003 08:24 am (fblackmo) employee was in the process of helping another employee (Mr. Hargrove) remove a snow plow from the back of a dump truck. Employee was struck in the hip area by the plow. Supervisor: d. T. Cottrell
## 727 02/06/2003 08:40 am (fblackmo) employee states he experienced shoulder pain while lifting 17 pounds of weight continually supervisor: j. L. Lindsey
## 728 02/06/2003 11:36 am (fblackmo) employee states. As I was getting ready to turn my water control knob on and release my automatic jaws on the drill rig, my partner was tightening my adapter that goes to my drill pipe. My arm accidently hit the clutch
## 729 02/06/2003 11:52 am (fblackmo) employee was chipping brush from ice storm. Limbs had poison ivy on them and wind blew sawdust from chipper, causing rash on face and into eyes. Supervisor: l. S. Carpenter jr
## 730 02/06/2003 12:04 pm (fblackmo) employee slipped on ice while going to the parking lot. Supervisor: roger s. Deal
## 731 02/06/2003 12:15 pm (fblackmo) employee had stopped on the road with his state crew cab truck to ask a motorist, who had run off the road into a ditch if he needed some type of assistance. Walking back to his state vehicle, he slipped on the roadway
## 732 02/07/2000 03:05 pm employee was cutting trees and rolling big section of tree off the guardrail, when a limb broke off striking him on the left knee. Supervisor: mark stafford
## 733 02/07/2000 03:09 pm employee was bitten by an unknown insect on left shoulder/arm. Supervisor: c. N. Edwards, jr
## 734 02/07/2000 04:09 pm Mr. Mcneill was walking into shop to open up on 1/24/2000, when he stepped into some clear substance and fell cutting above his left eye and bruising his left hip. The clear substance was hydraulic oil that had leaked from a truck
## 735 02/07/2000 04:19 pm employee was traveling south on nc 50 in wake county when he lost control on ice/snow covered roadway. The rear of his car struck the ditch bank. Supervisor: capt. E. C. Bristle
## 736 02/07/2000 04:30 pm employee mashed left hand little finger while removing a shield off a spreader on 1/20/2000. Supervisor: jerry marshall bradley
## 737 02/07/2000 04:40 pm employee was cutting tree limbs with chainsaw, when a limb fell on saw causing it to push/cut into his left leg. Supervisor: m. J. Namin
## 738 02/07/2002 03:47 pm (fblackmo) employee was repairing washout on shoulder of the road where the dirt had slid and covered a pipe. While looking for inlet end of pipe the backhoe struck a 4'' gas line. Employee was standing on the shoulder @ e/p when
## 739 02/07/2002 04:15 pm (fblackmo) employee was loading sand-blasting hoses from the back of storage building near lumber shed. Employee was walking to the truck when, he stepped on a nail (roofing felt tack) 1 1/4" with square flat washer. Supervisor: j
## 740 02/07/2002 04:38 pm (fblackmo) employee was moving plywood(fall protection) which was cut and placed in between the beams and laying in the bottom flange. Employee had already moved some of the plywood when, he stepped back to move some more. Employ
## 741 02/07/2002 04:53 pm (fblackmo) employee was using a bush axe to clear brushes when a thorn struck his right little finger causing redness and swelling. Supervisor: tim k. Southard
## 742 02/08/2000 04:17 pm employee was changing motor grader blades when blade fell striking him on his left knee and foot. Supervisor: tom huskins
## 743 02/08/2000 09:17 am employee was trying to repair a tarp, when the tarp bar broke cutting him on his right hand. Supervisor: r. E. Austin
## 744 02/08/2000 09:44 am Mr. Narron states he has loss of hearing due to working around noisy equipment for 10 years. Supervisor: charles whitfield.
## 745 02/08/2000 09:50 am employee was bending and turning to chock a vehicle, when he strained his lower back. Supervisor: t. L. Gray
## 746 02/08/2000 10:05 am Mr. Lusk was traveling east on highway 70 when a van pulled out in front of him without yielding the right of way. Officer lusk attempted to go the the right lane to avoid the collision, but struck the van in the side at the rear.
## 747 02/08/2000 10:17 am employee was working with a crew digging property corners, when he went to uncover dirt with his hands a crepe myrtle tree limb hit him in his left eye. Supervisor: mike motsinger
## 748 02/08/2000 10:25 am employee was waiting at the red light on the I-95 off ramp (exit 49), when a cement truck traveling on nc 53 passed throwing a rock up breaking the drivers side glass. Mr. Ellington has an irritation to his left eye, possibly cause
## 749 02/08/2000 10:34 am employee was parking a truck in designated area beside the shop office, when on the way back he slipped and fell on ice injuring his lower back. Supervisor: t. C. Privette
## 750 02/08/2000 10:40 am employee slipped and fell on ice when coming out of building injuring his left hip and shoulder. Supervisor: r. D. Peeler
## 751 02/08/2001 04:21 pm employee was using a chainsaw to cut down trees on sr 1303; when the tree split and hit Mr. Snell on his right arm and hand. He required 6 stitches in his right thumb. Supervisor: c. S. Mebane
## 752 02/08/2001 04:37 pm officer thomas was stopped at the intersection of strickland bridge road and raeford road; when driver of a commercial vehicle tried to make a right turn. While making her turn, she struck the officer car on the left side. Office
## 753 02/08/2002 04:19 pm (fblackmo) employee was throwing sandbags from one man to another to place at a bridge. The bags are used in a stack to contain flowable fill that was being poured. Supervisor: r. E. Ball
## 754 02/08/2002 04:38 pm (fblackmo) employee fell off of trailer while planting seeds. Employee was sitting on a bucket on a trailer operating a seed sower when the tractor pulling the trailer moved off of the path and hit a hole. Employee lost balance a
## 755 02/08/2002 04:55 pm (fblackmo) employee injured his left knee while stepping off work ladder. Supervisor: b. R. Moore
## 756 02/09/2000 03:20 pm employee sprain his left wrist when he slipped and fell on ice on 1/27/2000. He was walking back to his truck at time of incident. Supervisor: a. L. Smith
## 757 02/09/2000 03:30 pm Mr. Gay told his supervisor that his left arm was sore and swollen due to the tetanus shot in October. The tetanus shot was given while working during hurricane floyd clean-up work. Supervisor: h. V. Inscoe
## 758 02/09/2000 03:36 pm employee was carrying records to put on closet shelf, when she tried to grab falling files and hit the door knob. She has a contusion @ right wrist and swelling in lower right arm and hand. Supervisor: b. R. Trivette, jr
## 759 02/09/2000 03:43 pm employee was attempting to locate a vin number on the under frame.
## 760 02/09/2000 03:56 pm Mr. Whitfield states he has hearing loss due to working around noisy equipment for 20 years. Supervisor: ricky bell
## 761 02/09/2000 04:00 pm Mr. Morgan states he has hearing loss due to working around noisy equipment for 19 years. Supervisor: luther thompson
## 762 02/09/2000 04:26 pm employee was fixing pot holes, when a tractor trailer ran over a cold patch shooting gravel into employee's right eye. Supervisor: r. T. Vestal
## 763 02/09/2000 04:33 pm employee was getting out of vehicle (parked on 4th floor deck at courthouse), when she slipped and fell on ice injuring her left hip and lower back. Supervisor: william m. Wilhelm, jr.
## 764 02/09/2001 04:13 pm employee was repairing guardrails on 1/29/01. Mr. Arnett went to the crewcab to get tools; when he stepped into a hole and sprained his right ankle. Supervisor: j. N. Mixon 04/24/2001 04:28 pm (sjerniga) lost time
## 765 02/09/2001 04:20 pm employee was weighing a truck and returning the portable scale to the patrol car; when a cord broke loose and struck Mr. Davis in the mouth. The blow broke his right front tooth and cut his lip. Mr. Davis was unable to find tooth
## 766 02/09/2001 04:29 pm employee was grinding a piece of steel; when a piece flew under safety glasses into his right eye. Supervisor: w. D. Watkins
## 767 02/09/2001 04:35 pm employee was organizing storage area on 1/19/01. She was lifting heavy boxes of brochures and tapes when she felt a sharp pain in her lower back. Supervisor: bill stout
## 768 02/09/2001 04:42 pm employee was pouring concrete repairing a crack on 2/1/01. Mr. Williams was standing about 10' from the travel lane; when a tractor trailer passed by at a high rate of speed. A foreign object blew into his face cutting his left c
## 769 02/09/2001 04:55 pm employee was cutting wedges for bushaxe handle; when the hack saw slipped cutting his left index finger. Supervisor: l. R. Absher, jr
## 770 02/09/2001 09:36 am employee was sitting at her desk on 1/17/01. She reached with her right hand to open bottom drawer; when she felt a sharp in her right arm. Supervisor: james taylor
## 771 02/09/2001 09:45 am employee was traveling south on highway 16 on 1/24/01. A private vehicle (gmc truck) crossed the center line and struck employees diesel tandem truck. Mr. Smith suffered muscle strain to his lower back. Supervisor: c. B. Lunsf
## 772 02/09/2001 09:54 am employee was lifting a reported stolen and recovered motorcycle engine into patrol vehicle on 1/25/01. Officer medlin legs gave out while lifting the engine. He has possible left and right knee and lower leg fractures. Supervisor:
## 773 02/09/2001 10:18 am employee was sitting at stop light when he was rear-ended by another vehicle on 1/29/01. Driver of the private vehicle foot slipped off the brakes. Mr. Hayes has closed head injuries due to this accident. Supervisor: cpt. E. C
## 774 02/09/2001 10:34 am employee was cleaning out choke from main pump on 1/20/01. He was engaging the pump to loosen up the choke; when the pry bar fell in pump. The pry bar struck him and cut him over his right eye requiring 8 stitches. Supervisor:
## 775 02/10/2000 03:18 pm employee was shoveling gravel when he strained his lower back on 12/28/99. Supervisor: d. T. Childrey
## 776 02/10/2000 03:24 pm employee was using a pry bar to put snow plow on truck, when the pry bar slipped hitting him on neck and right shoulder. Supervisor: j. P. Ingram
## 777 02/10/2000 03:31 pm employee cut his right hand between the thumb and first finger while trying to remove a hunk of salt off salt spreader slinger. Supervisor: r. T. Vestal
## 778 02/10/2000 03:40 pm employee was removing hydraulic line to repair the bond, when line was re-installed incorrectly causing the oil to reheat and separate. He suffered 2nd degree burns to his face, nose, forehead and also top of his head. Supervisor
## 779 02/10/2000 03:54 pm Mrs. Johnson has pain in both arms, which radiates up into shoulders and upper back area. She has a cold sensation in arms and hands due to repetitive motion on the job. Supervisor: ann self
## 780 02/10/2000 04:06 pm employee was detaching a snow plow from dump truck, when the plow tipped over and fell on his lower right leg. Supervisor: j. K. Murdock
## 781 02/10/2000 04:11 pm employee was attempting to open grate to beat out frozen sand, when he lost his balance and fell forward hitting his head on the grate. Supervisor: r. D. Holland
## 782 02/10/2000 04:23 pm employee was getting out of truck when he closed the door on his left hand breaking his little finger. Supervisor: c. W. Burleson
## 783 02/10/2001 10:05 am employee was getting on asphalt roller and reached for the steering wheel to pull up on. The steering wheel turned and caused him to twist/pull muscles in his right lower back. Supervisor: j. D. Hensley
## 784 02/10/2001 10:12 am employee was trying to start tar kettle; when the battery burst causing acid to get into his eyes. Supervisor: r. W. Lewis 04/24/2001 04:31 pm (sjerniga) lost time
## 785 02/10/2001 10:24 am employee operating broom tractor traveling down sr 1112 on 1/31/01. He ran off the right side of the roadway and while trying to recover he flipped/turned the equipment over. Mr. Smith has an abrasion to his right wrist and left e
## 786 02/10/2003 02:22 pm (fblackmo) employee was putting up parts and failed to see a brake chamber shaft protruding from a floor level bin. Employees' leg struck shaft causing a laceration and contusion. Supervisor: michael simmons
## 787 02/10/2003 12:42 pm (fblackmo) employee states he hit his right knee on the corner of door on vehicle. Supervisor: russell ramsey
## 788 02/10/2003 12:54 pm (fblackmo) employee states while clearing brushes he, tripped and fell. Supervisor: c. S. Mcdonald
## 789 02/11/2002 02:27 pm (fblackmo) employee was cutting survey line when he came into contact with poison oak. Employee was unaware that he had gotten poison oak on his hands and he rubbed his face during the day. Supervisor: t. K. Wheeler
## 790 02/11/2002 02:41 pm (fblackmo) employee was pulling brushes off of the right of way when, he lost his footing and fell. Supervisor: d. L. Carpenter
## 791 02/11/2002 02:56 pm (fblackmo) employee was pulling bushes and feeding into the chipper when, he stepped on a small limb and twisted his right knee. Supervisor: d. L. Carpenter
## 792 02/11/2002 03:03 pm (slee) broom came out of gear and began rolling downhill backwards on a steep section of sr 1107, east fork road. Operator attempted to stop by braking then steered broom into ditch to stop. Broom overturned when steered into ditch
## 793 02/11/2002 08:37 am (slee) vehicle #1 was traveling south on I-85, vehicle #2 and vehicle #3 were also. Vehicle #1 failed to reduce speed and struck vehicle #2 in the rear with it's front end and this impact then forced vehicle #2 to strike vehicle #3
## 794 02/11/2002 10:25 am (fblackmo) employee was conducting a road-test when, customer hit accelerator all of a sudden running into the porch at the drivers license office. Supervisor: michael g. Jarman
## 795 02/13/2001 02:42 pm employee was erecting/replacing signs on 2/2/01; when he strained his left shoulder. Supervisor: johnny coleman
## 796 02/13/2001 02:47 pm employee was blowing loose aggregates from cracks on the roadway; when he strained his left knee while walking backwards. Supervisor: r. W. Lewis
## 797 02/13/2001 02:59 pm employee was taking a sample of concrete for testing out of truck; when he strained his mid-body area while handed sample to co-worker. This action resulted in a hernia. Supervisor: marvin wayne currie 04/24/2001 04:17 pm (sj
## 798 02/13/2002 07:56 am (slee) sov was stopped for road work, sov #1 was heading down the hill to the low lands of ne cape fear river when sov #2's brake lights came on. Sov #1 applied brakes to slow down and the truck started to skid 96 feet on the new a
## 799 02/13/2003 02:55 pm (slee) Mr. Lewis reached down to answer his cell phone and ran off the roadway. He steered to the left and over steered to the right, locked up the brakes sliding into the bridge rail head on.
## 800 02/13/2003 09:26 am (fblackmo) employee was using pipe wrench to tighten drain plugs on cooling tower when, the wrench slipped causing a cut on his hand. Supervisor: h. Magnum
## 801 02/13/2003 09:44 am (fblackmo) employee was shoveling asphalt from the back of a flatbed truck when, his left foot slipped on the asphalt release and fell over the edge causing the injury to his lower back. Supervisor: harvey watson
## 802 02/13/2003 10:19 am (fblackmo) employee states he pulled his left leg muscle while dragging and lifting storm debris. Supervisor: marty f. White
## 803 02/13/2003 11:09 am (fblackmo) employee states while stepping off mower he experienced pain in his left foot. Supervisor: rodney wood
## 804 02/13/2003 11:56 am (fblackmo) employee was hooking a chain to a piece of pipe to unload it from the back of a tandem truck. The excavator jumped and swung open causing employees leg to be caught between the pipe and the truck. Supervisor: w. Herring
## 805 02/14/2000 04:10 pm Mrs. Smith and a co-worker were moving a desk to the center of the room, when the desk top fell off landing on Mrs. Smith right foot. She didn't seek treatment at that time, but now a knot has risen from incident. Supervisor: d
## 806 02/14/2000 04:17 pm employee grabbed the top of fence post to steady it for his partner, when the needle stuck in his left hand near his thumb. They were trying to nail the wire to the post. Supervisor: johnny r. Price
## 807 02/14/2000 04:34 pm employee was lifting/loading 4 bales of straw into bed of dump truck, when he strained his lower back on 1/7/00. Supervisor: t. D. Clement, jr.
## 808 02/14/2000 04:40 pm Mr. Fields (and co-worker lynn hayes) was removing used tandem snow plow blades and transporting to the scrap metal area on 2/2/00. The blade slipped out of the bucket, striking Mr. Fields on right thigh/knee. Supervisor: eugen
## 809 02/14/2000 04:53 pm Mr. Mersch was going outside to get supplies for the lab, when he slipped and fell twisting his left wrist. Supervisor: michael t. Beasley
## 810 02/14/2002 01:50 pm (fblackmo) employee states, the d. O. T. Crew was replacing pipe line on burningtown road. Removing the old pipe the employee hooked a chain around the old pipe to pull it out. The operator to the trachhoe picked up the pipe and the
## 811 02/14/2002 02:05 pm (fblackmo) employee entered the front door of the office, she tripped over a rug that had a pucker in its border. Employee lost her balance and stumbled into a table and computer printer, striking her forehead on the printer, her
## 812 02/14/2002 02:20 pm (fblackmo) employee states that, while reaching up to pull a file (shoulder high) he felt a sharp pain in his right hip area. Supervisor: l. M. Barbour
## 813 02/14/2002 02:55 pm (fblackmo) employee was exiting off tractor mower when he noticed a spider on his arm. Employee removed the insect, insect had bitten him on left arm and elbow. Supervisor: b. F. Sloan
## 814 02/14/2002 03:08 pm (fblackmo) employee states that while handling materials that she experienced pain in her right arm and hand. Supervisor: shane murray
## 815 02/14/2002 03:25 pm (fblackmo) employee got out of truck to inspect crossline pipe and left truck door open. Pipe was in a hole and when employee came up, he hit his head on the lip of the door. Supervisor: kevin r. Hedrick
## 816 02/14/2002 03:37 pm (fblackmo) employee was removing bolts from a old stop sign when the bolts freed from the sign. Employees hand came down onto the sr metal plate cutting the right thumb. Supervisor: steve clayton
## 817 02/14/2002 03:48 pm (fblackmo) employee was riding to the job site. Employee was sitting in the front passager seat. The vehicle failed to stop and ran into the back of another truck. Employee states that, her seat belt caused a fracture sternum.
## 818 02/14/2002 11:54 am (fblackmo) repetitive motion doing daily job description. Supervisor: r. M. Huffman (senior examiner)
## 819 02/14/2002 12:25 pm (fblackmo) employee was riding to the job site. Employee was seated in passager seat. A private vehicle had stopped in front of them. The driver of the state vehicle truck failed to stop and ran into the back of the private vehi
## 820 02/15/2001 09:13 am employee was picking up a stack of file folders; when a brown spider bit his right hand near the base of his thumb. Supervisor: r. G. Watson
## 821 02/15/2001 09:21 am employee was cutting trees on 2/6/01; when a tree limb struck him in his face/head. Mr. Hossley has facial lacerations and a concussion. Supervisor: d. M. Pressley 04/24/2001 04:44 pm (sjerniga) concussion
## 822 02/15/2001 09:32 am employee strained his right hip while entering and exiting motor grader on 1/22/01. Supervisor: m. H. Brewer
## 823 02/15/2001 09:36 am employee was working near the back of asphalt kettle on 1/24/01. A backhoe backed into him striking him in the back and knocking him against the kettle. Supervisor: d. E. Taylor
## 824 02/15/2001 09:41 am employee has injuries due to repetitive motion while using keyboard, mouse, etc. Mr. Beverly has pain/strain to his right wrist, arm and elbow. Supervisor: clinton b. Little
## 825 02/15/2001 10:35 am employee was clearing trees on construction project; when a co-worker cut a tree to fall away from crew members. A strong gust of wind turned the tree back and fell onto Mr. King right shoulder causing pain in his back. Supervisor
## 826 02/15/2001 10:52 am employee was cutting trees from the right of way; when a tree fell onto his right shoulder. Supervisor: kent d. Boyer
## 827 02/15/2001 10:56 am employee came in contact with poison ivy plants while checking markers on right of way. She has contact rash on face, neck, chest, and stomach. Supervisor: r. Sutton 04/24/2001 04:32 pm (sjerniga) rash from vegetation
## 828 02/15/2002 07:45 am (fblackmo) employee states that another employee (Mr. Ervin) went in the office to use the telephone. Employee(Mr. Mcdowell) was already on the phone, so he closed both doors for the employees' privacy. Employee (Mr. Ervin) left t
## 829 02/15/2002 08:03 am (fblackmo) employee was traveling south on state road 1532(dirt part) in swb dump truck. Part of the snow plow bracket ( part that the hydraulic arm is attached) fell off, went back under the truck causing the injury to his left
## 830 02/16/2000 10:33 am employee was struck from behind by a private vehicle on highway 11, south in pitt county on 1/25/00. Mr. Jones has injuries to his head (concussion), neck (whiplash) and upper back. Supervisor: grady c. Raynor
## 831 02/16/2000 10:53 am employee was removing a 24" flag and stick from the snow plow corner, when it came out and struck employee in his right eye(contusion). Supervisor: roy donald pittman
## 832 02/16/2000 10:56 am employee was trying to start up chainsaw when it jammed and flew back hitting him on his left knee. (post traumatic patella tendonitis) supervisor: j. S. Walker
## 833 02/16/2000 11:02 am employee slipped and fell on ice/snow in parking lot on dot property and landed on his right knee. Supervisor: bobby john howell
## 834 02/16/2000 11:08 am employee was using an air wrench to remove blade bolts, when bolts started spinning cutting through his glove cutting him on his left middle finger. Supervisor: michael l. Parsons
## 835 02/16/2000 11:14 am employee got out of his truck to check snow plow, when he slipped and fell on ice injuring his right elbow and shoulder. Supervisor: jerry m. Bradley
## 836 02/16/2000 12:28 pm employee was helping change blades on snow plow, when he strained and twisted his lower back. Supervisor: jerry marshall bradley
## 837 02/16/2000 12:32 pm employee was walking off the back slope of a sand pile, when he loss footing and slid down slope (frozen section on the slope) injuring his left hip and lower back. Supervisor: g. A. Burton
## 838 02/16/2000 12:40 pm employee was attempting to tighten hydraulic hose, when wrench slipped smashing his right thumb. Supervisor: cecil bowser, jr
## 839 02/16/2000 12:45 pm employee was doing survey work on project 8. U492304 on I-85 in guilford county, when he came in contact with poison oak. (rash on both arms) supervisor: doug kimes
## 840 02/17/2000 03:44 pm employee was changing rear tire on passenger side, when the jack handle slipped out smashing his left thumb against the fender. Supervisor: ssgt. Steve williams
## 841 02/17/2000 08:49 am employee was chopping limbs on sr 1228 in pitt county on 6/10/99, when he lost his balance and fell backwards into the ditch. He was feeding the limbs into chopper, when the limb turned towards him causing him to step back. Mr. T
## 842 02/17/2000 08:57 am Mr. Mecimore was bruised under left side of his ribs on 2/8/00, when mowing on highway 16. Mower#1- Mr. Mecimore mowing southern direction and mower#2- Mr. Parker mowing northern direction. Mower#2 threw a large rock striking mow
## 843 02/17/2000 09:13 am Mr. Friday strained his neck and upper back on 1/25/00 while pushing snow on nc highway 62. Vehicle #1 was pushing snow when he lost control of truck, sliding sideways and stopped in middle of roadway. Vehicle #2 (Mr. Friday) was
## 844 02/17/2000 09:22 am employee was walking toward dump truck to assist another employee preparing his salt spreader, when he slipped and fell on ice. Supervisor: william e. Mcclendon, jr.
## 845 02/17/2000 09:29 am employee was removing snow with truck and snow plow off roadway, when he hit concrete median. The median was not visible at time of incident (snow covered and no markers up). Supervisor: m. D. Brooks
## 846 02/17/2000 09:35 am employee was getting ready to give a road test to a customer, when she tripped and fell over telephone cord on the floor. When she fell her left hand hit the corner of the desk. Supervisor: virginia monroe
## 847 02/18/2000 09:40 am employee was using a string trimmer to clear roadside when he cut into some poison ivy. Mr. Lewis has contact rash on both arms, chest, stomach, back and both legs. Supervisor: james barnes note: workers' comp. Section never re
## 848 02/18/2000 09:47 am employee was driving when mirror came off windshield by the right air bag and hit Mr. Horne in the head. Supervisor: p. Korey newton note: workers' comp. Never received this claim (form 19). Safety received the form, therefore
## 849 02/18/2000 09:59 am employee was loading concrete blocks on truck, when he felt pain in his lower back. Supervisor: w. E. Evans note: workers' comp. Section never received this claim (form 19). Safety received this form, therefore we are setting
## 850 02/18/2002 02:11 pm (fblackmo) employee was in his state truck when a dump truck hit the rear of his truck. Supervisor: chris kirkman
## 851 02/18/2002 02:24 pm (fblackmo) employee states that while blowing pine straw, wind blew debris into his right eye. Supervisor: brian k. Glover
## 852 02/18/2002 02:34 pm (fblackmo) employee was walking up a bank to get some tools from the tool truck. While walking up the bank employee right knee gave way. Supervisor: t. J. Davis
## 853 02/19/2001 09:39 am employee stated he injured his back while assistant a mechanic change motor grader tire on 6/14/00. He stated he was holding down tire with his foot on the rim; when his foot slipped off tire causing a 12' drop. He didn't report
## 854 02/19/2001 09:48 am employee was climbing down from excavator on 2/12/01; when he stretched out too much causing him to pull a muscle in his lower back. Supervisor: bill boone
## 855 02/19/2001 10:13 am employee was reaching to get a bucket of soap; when he strained muscles in his upper mid-back area. Supervisor: jonathan rinehardt
## 856 02/19/2001 10:18 am employee was unpluging wire on thermolay truck; when she twisted/sprained her left wrist. Supervisor: c. D. Cloud
## 857 02/19/2003 11:54 am (fblackmo) employee states that for the last three to four months, she has been experiencing pain in both hands and arms due to repetitive motion. Supervisor: gary wilson
## 858 02/20/2001 03:02 pm employee was pulling a bent screw out of reflectometer; when the screw came loose causing the employee to cut/scrape her left hand (left little finger) on aluminum stripping floor. Supervisor: w. K. Brazell
## 859 02/20/2001 03:10 pm employee was climbing up an embankment between a pipe; when a large log rolled out from under Mr. Davis. The log rolled over his right ankle and lower right leg. Supervisor: r. L. Bowers
## 860 02/20/2001 03:24 pm employee was leaving the job site; when debris blew into his left eye. Supervisor: robert d. Simpson
## 861 02/20/2001 10:56 am employee was assisting co-workers pick up a hand tiller and put it in the back of truck; when he strained his left lower back. Supervisor: greg rayburn
## 862 02/20/2001 11:02 am employee was traveling south on dutch road on 2/12/01; when he saw another state dump truck approaching him on a narrow 19' roadway. Mr. Paige veered over to the shoulder of road' when the load shifted due to the soft shoulder. T
## 863 02/20/2001 11:12 am employee states he has hearing loss due to excessive noises from electrical machinery on the job. Supervisor: t. W. Whittington
## 864 02/20/2001 11:19 am another employee was demonstrating a weedeating technique; when Mr. Cochran was moved the other employee did not see him. Mr. Cochran was struck in the right leg by the weedeater. Supervisor: doug h. Johnson
## 865 02/20/2003 08:59 am (fblackmo) employee was exiting the truck, (0209) on passenger side, front seat landing on one foot. Employee states the pain in his left leg proceeded to get worst through out the day, along with numbness in foot. Supervisor: rodn
## 866 02/20/2003 09:22 am (fblackmo) employee states while un-loading scrap tires he experienced pain in his lower back. Supervisor: e. M. Presnell
## 867 02/20/2003 09:33 am (fblackmo) employee was loading steel h-piles on trailer when, he stepped over the pile he slipped causing the injury to his left leg. Supervisor: gerald messer
## 868 02/20/2003 10:17 am (fblackmo) employee states while pulling limbs to chipper, one of the limbs fell hitting him on his right foot. Supervisor: david lowery
## 869 02/20/2003 10:28 am (fblackmo) employee states while loading and un-loading the supply truck she, experienced pain in her left shoulder. Supervisor: r. D. Markham 4/11/2005 10:30 am (gwhite authorized tens unit through empi medical supplies)
## 870 02/21/2000 02:33 pm employee was driving on us 21, bus. Highway when he was struck from behind by a private vehicle. Mr. Spurlin has strain to his neck and lower back. Supervisor: r. M. Freeman
## 871 02/21/2000 02:57 pm Mr. Shepard was cutting back trees on roadway, (clean-up work after snow storm) when he came in contact with poison ivy -rash all over his body. Supervisor: d. T. Childrey
## 872 02/21/2000 03:10 pm employee was walking down the steps to administer a road test, when she turned (twisted/sprain) her right ankle over. Supervisor: michael g. Jarman
## 873 02/21/2000 03:19 pm Ms. Jarman was plowing snow off bridges, when the plow caught expansion joint causing the truck to come to an abrupt stop. Her chest wall hit the steering wheel. Supervisor: d. C. Kimes
## 874 02/21/2000 03:31 pm employee was removing the lid on oil drum with a hammer and screwdriver, when the screwdriver slipped causing him to cut his left ring finger on lid. Supervisor: f. E. Floyd
## 875 02/21/2000 03:41 pm employee was using pressure hose to wash salt from truck and spreader, when water & salt splashed back into his face and into left eye. Supervisor: g. E. Strickland
## 876 02/21/2003 08:33 am (fblackmo) employee was operating front end loader during snow storm loading trucks with salt. Employee exited the loader and slipped on the bottom step due to the ice. Employee states that both his hands were still holding the lo
## 877 02/21/2003 08:50 am (fblackmo) employee states he was stepping into truck when, he felt a pop in his right knee causing him to fall forward into front seat. Supervisor: rodney wood 09/05/2003 08:30 am (gwhite)
## 878 02/21/2003 09:01 am (fblackmo) employee tripped over boxes in the hallway when exiting stockroom and landed directly on his left knee cap. Supervisor: d. Chad kimes
## 879 02/21/2003 09:14 am (fblackmo) the asphalt cold mix pile at buncombe maintenance is covered with plastic. Old tires are placed on top of the plastic to hold it in place. Employee was removing the tires in order to access the cold mix when the injury
## 880 02/21/2003 09:30 am (fblackmo) employee states while lifting carton he felt pain in his groin area. Supervisor: william stone
## 881 02/21/2003 10:33 am (fblackmo) employee was unloading a piece of equipment when, felt pain in her lower back. Supervisor: bruce myers
## 882 02/21/2003 10:45 am (fblackmo) employee states while changing grader blades, the blade slipped causing a cut to his right index finger. Supervisor: cleve barton
## 883 02/21/2003 10:58 am (fblackmo) employee was helping install a set of tire chains on dump truck when, he felt pain in his lower back. Supervisor: w. H. Adkins
## 884 02/21/2003 11:08 am (fblackmo) employee states, while standing on a stepladders using a screwdriver to turn the electrical wires to a terminal block in a flasher, he experienced intense pain in his right upper shoulder area. Supervisor: jerry w. Porte
## 885 02/21/2003 11:28 am (fblackmo) employee states while cutting trees on state road 1821 in moore county. One of the limbs fell hitting him on his left shoulder. Supervisor: willie monroe
## 886 02/21/2003 12:33 pm (fblackmo) employee states while sharing mower blades, debris went into his right eye. Supervisor: s. R. White
## 887 02/22/2002 01:55 pm (fblackmo) employee was trying to keep a desk from falling over. Supervisor: tex kidd
## 888 02/22/2002 02:08 pm (fblackmo) employee was attempting to pull onto amboy road in asheville when, his vehicle was struck by a private vehicle. Supervisor: g. P. Ramsey
## 889 02/22/2002 02:23 pm (fblackmo) employee was using a prybar to move a bracket out of the way so he could get a socket wrench on it. The bar slipped to hit his hand on the transmission. Supervisor; j. E. Adams
## 890 02/22/2002 03:35 pm (fblackmo) employee was attempting to cut plastic ties from a set of booster cables, knife being used slipped and left wrist was injured. Supervisor: thomas g. Huskins
## 891 02/22/2002 03:58 pm (fblackmo) employee was picking up trash on I-85 and had to run across I-85 to get a piece of tire rubber. While coming back across the road, he tripped on the piece of rubber falling to the pavement. Supervisor; d. R. Summers
## 892 02/22/2002 04:11 pm (fblackmo) employee was helping move a large sign. Employee slipped and fell in a hole that was covered with grass. Supervisor; w. S. Richard
## 893 02/22/2002 04:22 pm (fblackmo) employee was removing hydraulic motor from chipper spreader. Employee was in an awkward position, he lost his grip and motor fell on his left hand. Supervisor: j. P. Hoffman 09/19/2005 01:44 pm (kbarefoo)
## 894 02/22/2002 08:05 am (fblackmo) employee was giving road test. The customer was making a left turn into the parking lot. A van that was following to close ran into the back of the vehicle when, the customer hit the brakes suddenly. Supervisor: winda
## 895 02/22/2002 08:25 am (fblackmo) crew was holding a tubular guardrail 25" in length. Employee was trying to stabilize it with a piece of 2 x 6 x 5 wood. As the crew let the guardrail down trying to re-position it the weight was more than employee anti
## 896 02/22/2002 09:48 am (fblackmo) employee was driving swb dump truck hauling stones. Employee ran off road and wrecked. Supervisor: r. E. Langley
## 897 02/22/2002 10:01 am (fblackmo) employee was raising tailgate latch on truck when he felt a sharp pain in his right side. Supervisor: l. C. Bass
## 898 02/22/2002 10:32 am (fblackmo) employee was working on a w guardrail on us421 r/l north bound at the end of the bridge. Employee was jacking a guardrail post in place, re-aligning it with the bolt holes. Employee bent over to put the jack lever into
## 899 02/22/2002 10:54 am (fblackmo) employee was leaving one office and headed to her office when, she tripped on a wood storage box that was placed in the hallway. Supervisor: randy wise
## 900 02/23/2000 01:10 pm employee was in route to the bus garage, when she slowed down for a patch of ice on 1/31/00. A private vehicle hit her from behind pushing her vehicle into a ditch causing her injuries to the neck, back, chest and left shoulder.
## 901 02/23/2000 01:26 pm employee was in route to work, when he hit icy spot and slid into a ditch injuring his neck, back, and right arm. Supervisor: d. C. Kimes
## 902 02/23/2000 01:34 pm employee was holding a pipe wrench for another employee to loose bolts on a strainer. He lost his footing, slipped and fell on his left side injuring his left ankle and knee. Supervisor: d. E. Hoggard, jr
## 903 02/23/2000 12:59 pm employee banged her left knee on desk while in the process of sitting down at her desk. Supervisor: pamela guptill
## 904 02/23/2001 12:14 pm employee states while inspecting culvert on 2/23/00; he loss his footing due to fill material breaking loose. He grabbed stump with right arm to avoid falling into the creek. Mr. Wiggins strained/sprained his right shoulder. Super
## 905 02/23/2001 12:22 pm employee has cumulative trauma to both hands and wrists due to repetitive motion.
## 906 02/23/2001 12:28 pm employee strained his lower back while using a bush axe on 11/16/00. He was cutting a line in order to bridge reference points on bridge project in franklin county. Supervisor: r. J. Downes
## 907 02/23/2001 12:36 pm employee has loss of hearing in his right ear and partial loss in the left ear. This was caused by prolonged exposure to harmful noise during his employment. Supervisor: thomas henderson
## 908 02/23/2001 12:49 pm Mr. Cunningham was struck by a tree on his right arm. He was assisting/pulling the end of a tree to get it low enough for another employee to cut at the time of incident. Supervisor: w. H. Lynch
## 909 02/23/2001 12:55 pm employee was changing tire on tire machine when his right leg got caught in between the machine and the end tool. The rim fell causing this injury. Supervisor: t. C. Harris
## 910 02/24/09 during crdt standing break fall, felt a muscle pull, again on 3/3/09 during a warm up feltlike a tore muscle
## 911 02/24/2000 08:47 am employee lost footing causing him to fall in the driveway at equipment shop on 2/11/00. He injured his left wrist, left ribs, and left knee. The employee was carrying a glass jar in his lunch bag at time of incident. The jar bro
## 912 02/24/2000 09:41 am employee stepped off back of truck and slipped on snow/ice twisting his left ankle. When foot slipped employee grabbed back of truck, strained his right elbow. Supervisor: c. L. Watkins ----
## 913 02/24/2000 09:53 am employee stepped from bumper of equipment utility truck using three point contact, but slipped and twisted his knee on the wet concrete floor. Supervisor: marty craig tillman
## 914 02/24/2000 10:06 am employee was trying to retrieve signs on the bottom of pile, when the sign rack fell on top of her right foot. Supervisor: jerry pate
## 915 02/24/2003 02:37 pm (fblackmo) employee states, while removing log drift on bridge 40 along with two other employees rowing an aluminum boat he, complained of shortness of breath and chest pain. Supervisor: k. T. Stephenson
## 916 02/24/2003 02:59 pm (fblackmo) employee tripped over water line causing the injury to his right wrist. Supervisor: john thompson
## 917 02/24/2003 03:27 pm (fblackmo) employee states, while cutting brushing he came into contact with poison oak. Supervisor: timothy k. Southward
## 918 02/24/2003 03:39 pm (fblackmo) employee states w while walking across parking lot on ice, he slipped and fell catching his finger in the gate. Supervisor: d. L. Carpenter
## 919 02/24/2003 11:27 am (slee) vehicle #3 lost control on ice and crossed centerline and struck vehicle #3 on drivers side of snow plow then struck truck on drivers side. Vehicle #3 then came to rest on shoulder of road south bound. Vehicle #3 stopped I
## 920 02/25/2003 07:38 am (fblackmo) employee was cutting right of way when a rock hit the window causing it to shatter. Fragments from the window went into employees right eye. Supervisor: r. E. Metcalf
## 921 02/25/2003 09:17 am (fblackmo) employee states w while bushing pipes on old mill road he became sick. Employee felt pain in his left side and back area. Supervisor: timothy k. Soughard
## 922 02/26/2001 04:54 pm employee was adjusting weight scales in trunk of patrol car; when the scale hit/bruised left foot. Supervisor: cpt. E. C. Bristle
## 923 02/26/2001 05:00 pm employee was working in an asphalt patch crew on location; when a passing 18 wheeler truck blew debris into his left eye. Supervisor: d. L. Carpenter
## 924 02/26/2001 05:05 pm employee shoe hit the edge of the door while taking boxes to trash can. Mrs. Trantham fell on concrete patio twisting her right ankle. Supervisor: tommy kilpatrick
## 925 02/26/2002 02:58 pm (fblackmo) employee bent over in her chair to turn on heater when, she fell. Supervisor: anthony law
## 926 02/26/2002 03:09 pm (fblackmo) employee was cutting dead pine tree which fell on a dead limb. The tree rolled and hit the employee on the leg causing him to fall. Supervisor; peggy acuff 03/05/2002 11:02 am (twerner)
## 927 02/26/2002 03:19 pm (fblackmo) employee state that, she went to Dr. Mcginnis at hickory orthopaedic for re-occuring pain in left elbow. Doctor mcginnis treated the employee with a wrist splint for carpal tunnel also, a splint for right wrist. Superv
## 928 02/26/2002 08:03 am (fblackmo) employee states that left wrist is swollen and has lumps on left side that hurts up and down the arm. Repetitive motion. Supervisor; tom clark 03/05/2002 10:57 am (twerner)
## 929 02/26/2002 08:31 am (fblackmo) employee was on cdl lot conducting the pretrip inspection when, she tripped over a piece of concrete injuring her left toe. Supervisor; troy gurganus 03/05/2002 10:57 am (twerner)
## 930 02/26/2002 08:55 am (fblackmo) employee was reaching under the seat to retrieve a personal item. Employee cut his left thumb on a piece of broken glass that was under the seat. Supervisor: c. N. Edwards jr
## 931 02/26/2002 09:18 am (fblackmo) employee and inmates was changing tailgate on truck using a chainhoist. The chain slipped out of one of the inmates hand, hitting employee in the right eye. Supervisor: j. C. Mundy
## 932 02/26/2002 09:29 am (fblackmo) employee was removing snow equipment from the state truck. Employee failed to hook the chains allowing the spreader to fall. Supervisor: w. H. Lynch
## 933 02/26/2002 11:31 am (fblackmo) employee was driving dump truck hauling stone to grader operator. Grader operator had windrow in middle of road, truck crossed over and hit rock causing steering wheel to spin. Employee grabbed the wheel and his hand g
## 934 02/27/2001 02:45 pm employee bent down to pick up a tar bucket; when she felt a sharp pain/pull in her right lower back. Supervisor: j. J. Garris
## 935 02/27/2001 02:50 pm employee was cutting trees in concrete ditches on us 220 bypass; when he came in contact with poison ivy plants. Foreign object (poison plants) in left eye. Supervisor: robert g. Davis
## 936 02/27/2001 02:57 pm employee fell out of chair while attempting to sit down on 2/21/01. The faulty chair has poor hydraulics; when the chair quickly bottomed out and jarred her spine/lower back area. Supervisor: wiley daniel thomas
## 937 02/27/2001 03:29 pm employee was cutting trees on 2/7/01; when he came in contact with poison ivy plants. Mr. Gaylean has contact rash/swelling around his eyes. Supervisor: t. J. Spicer 04/24/2001 04:45 pm (sjerniga) vegetation
## 938 02/27/2002 11:29 am (fblackmo) employee was exiting a front-end loader, missing the last step employee, fell to the ground. Supervisor: m. H. Brewer
## 939 02/27/2002 11:41 am (fblackmo) employee was walking on shoulder of nc37 to load up signs. Employee stepped into a hole and fell. Supervisor: david l. Lane
## 940 02/27/2002 11:55 am (fblackmo) employee was attempting to remove fittings from water pipe using a pipe wrench, when the wrench slipped hitting employees finger. Supervisor: daniel d. Holdeman
## 941 02/27/2002 12:07 pm (fblackmo) employee was operating chainsaw as part of right-of-way cleaning operation on adcock road. Employee was cutting down a fill slope as he moved the saw, the edge of the chaps cut employees leg. Supervisor: trent cothran
## 942 02/27/2003 10:15 am (fblackmo) employee states while walking along the edge of pavement, he felt pain in his left foot. Supervisor: e. R. Gurganus jr
## 943 02/27/2003 10:26 am (fblackmo) employee was installing a light when, something fell into his left eye. Supervisor: jackie lunsford
## 944 02/27/2003 10:38 am (fblackmo) employee slipped on wet floor. Supervisor: e. C. Bristle
## 945 02/27/2003 10:49 am (fblackmo) employee was using a pocket knife to hold down one end of a measuring tape when, the knife slipped causing a cut to his hand. Supervisor: j. H. Freeman jr
## 946 02/27/2003 10:59 am (fblackmo) employee was shutting spreader gate when, he mashed his finger between the gate and auger cover. Supervisor: d. R. Summers
## 947 02/27/2003 11:24 am (fblackmo) employee states, while attempting to load a snow plow he felt pain in his back. Supervisor: m. B. Taylor
## 948 02/28/2000 03:55 pm employee was bending over to pick up tire off the floor, when he pulled muscle in groin area (hernia). Supervisor: leroy farrish
## 949 02/28/2000 04:02 pm employee was using chain saw to cut trees, when he strained his neck and back (cervical strain). Supervisor: bruce k. Dyer
## 950 02/28/2000 04:14 pm employee was hammer drilling in concrete, when the drill hit a piece of reinforcing steel. Mr. Lail has broken bones in his right hand due to this injury. Supervisor: k. E. Anderson
## 951 02/28/2001 03:57 pm employee twisted/sprained his left knee as he got up from his desk on 2/13/01. He felt a sharp pain and heard a popping sound in his knee. Supervisor: capt. E. C. Bristle
## 952 02/28/2001 04:12 pm employee was walking up a steep embankment and tripped on loose stones and twisted his left ankle. Supervisor: e. C. Thomas
## 953 02/28/2001 04:28 pm employee was lifting boxes on 11/9/99; when he strained/sprained his lower back.
## 954 02/28/2002 02:39 pm (fblackmo) employee was walking near catch basin when the ground gave way causing him to fall into a hole. Supervisor: donald king
## 955 02/28/2002 02:55 pm (fblackmo) employee went to restroom, entering the room employee slipped on the wet floor. Supervisor: w. J. Timberlake
## 956 02/28/2002 03:14 pm (vsulliva) employee backing sov away from bridge work to turn around and from that point, he does not remember anything until waking up in hospital. Vehicle ended upside down in median. (road was under construction - no traffic.
## 957 02/28/2002 03:20 pm (fblackmo) employee was sharpening bush axe when the file slipped cutting his left hand. Supervisor: a. L. Clark 03/05/2002 11:01 am (twerner)
## 958 02/28/2002 10:36 am (fblackmo) employee was inspecting a 5-section traffic signal head at the depot with another employee. Both employees started to lifting the sign when employee(masiewicz) felt a sharp pain in his right hand. Supervisor: kelvin p
## 959 02/28/2003 07:28 am (fblackmo) employee was removing snowplow from single axle dump truck. Employee was turning the bolt with a wrench when he slipped striking his head on the snowplow. Supervisor: r. I. Matthews
## 960 02/28/2003 07:43 am (fblackmo) employee states while shoveling ice he felt pain in his lower back. Supervisor: j. L. Bobo
## 961 02/28/2003 08:53 am (fblackmo) employee was plowing, hit manhole ring over, and broke blade. The manhole was not level with the pavement. Employee states that due to the sudden stop he experienced pain in his neck area. Supervisor: s. W. Nance
## 962 02/28/2003 09:12 am (fblackmo) employee was operating front -end loader with pavement breaker mounted to the front. During operation, front end loader was rocking from side to side. Employee was leaning to the left to see operation and his face struc
## 963 02/29/2000 04:15 pm employee was moving 50 pound bags of glass material into hopper when he injured his back.
## 964 02/29/2000 04:28 pm employee twisted his left knee when he slipped and fell on steps of rosco spreader machine. Supervisor: charles spencer
## 965 02/29/2000 04:34 pm employee has pain in left hand, wrist, shoulder and neck due to repetitive keying at work. Supervisor: brenda crump
## 966 02/29/2000 08:47 am employee was using shovel removing snow and ice from bridge when he felt pain in his lower back. Supervisor: f. W. Huffman
## 967 02/29/2000 08:54 am employee was stepping down from his backhoe trailer when he twisted/strained his right knee. Supervisor: johnny r. Price
## 968 02/29/2000 09:01 am employee was feeding brush into chipper, when brush twisted around and struck employee on his right cheek/face. Supervisor: c. B. Lunsford
## 969 02/29/2000 09:08 am employee was stepping down off flat bed crew truck onto uneven ground, when he twisting his left ankle. Supervisor: k. T. Stephenson
## 970 02/29/2000 09:15 am employee was picking up a 12x 12 piece of timber, when he strained his lower back. Supervisor: barry f. Kizziah
## 971 02/29/2000 09:21 am employee slipped and fell bruising his left hip/thigh and back areas. Mr. Estep slipped on a temporary floor/deck pallet rack while preparing to move a drill rig. Supervisor: r. E. Irwin
## 972 02/29/2000 09:28 am employee walked into an open window frame while washing truck with steam cleaner hose. He has lacerations on the left side of forehead. Supervisor: jerry marshall bradley
## 973 02/29/2000 09:36 am employee lowered truck tailgate to enter truck to get a wrench from the tool box. He was on his knees lifting the lid of the box not feeling any discomfort at the time. The next morning 2 knots were visible one on each side of hi
## 974 02/29/2000 09:52 am employee was pulling tire off the rim when he felt pain in his lower back. Supervisor: james e. Isaac
## 975 02/29/2000 09:58 am employee was walking toward truck shed to assist in putting on chains, when he slipped and fell on snow/ice covered pavement. Mr. Hill injured his right shoulder. Supervisor: gary r. Spangler
## 976 03/01/2000 05:00 pm employee was dismounting from vehicle when he felt a pulling sensation in his lower back. Supervisor: michael g. Jarman
## 977 03/01/2000 05:06 pm employee fell down stairs after missing the step coming out of the school bus parking lot. Mr. Guyer sprained his right ankle when he fell on 2/22/00. Supervisor: james hartley
## 978 03/01/2000 05:13 pm employee was moving file cabinets from on building to an outside building using a handcart, when he pulled muscle in lower back. Supervisor: e. M. Farrow
## 979 03/02/2001 01:54 pm employee and co-worker was traveling south on 501 checking signs; when a blazer hit the drivers side front tire and bumper. Mr. Hammonds was slowly turning around (with signal on) when the accident happened. Mr. Hammonds has a b
## 980 03/02/2001 02:15 pm employee was getting off of trailer when he struck his left knee on the trailer. Supervisor: d. L. Dean
## 981 03/02/2001 02:26 pm employee was sleeping when he rolled and fell out of the bunk bed on 2/4/01. Mr. Thomas had a nightmare causing him to injury his left knee. Supervisor: h. F. O'neal
## 982 03/02/2001 02:55 pm while walking into the lobby on 2/14/01; when she slipped and fell down in front of the elevators on her left side. She twisted/sprained her left ankle, struck her left knee and shoulder on floor. Supervisor: col. D. C. Richards
## 983 03/02/2001 03:37 pm employee was carrying a 60 pound tree with root ball attached; when he stepped into a crevice and strained is right side muscles. He strained his right side of his abdomen muscles. Supervisor: doug johnson
## 984 03/02/2001 04:08 pm employee was entering the break room on 2/21/01; when he pushed on the door with his fingertips. He felt something pull in his left hand and sprained his left thumb. Supervisor: keith smith
## 985 03/02/2001 04:16 pm employee was transporting paper work from the first floor to the second floor; when she slipped and fell on the waxed floor. She has bruises to her head/face and chin and she sprain/strained her chest area. Supervisor: diane joh
## 986 03/04/2003 02:14 pm (fblackmo) form 18 states, occupational lung disease caused by dust particles, pitch, and tar inhaled while working on delivering asphalt. Supervisor: n/a 11/6/2006 01:32 pm (fblackmo) claim closed. Clinched on 04/22/2005. D
## 987 03/05/2002 10:34 am (sshort) employee was traveling north on vestal road driving a ford ranger pickup. Mr. Hutchens crossed the centerline and ran off the roadway on the left. He struck several small trees before coming to a stop. Mr. Hutchens died
## 988 03/05/2003 07:10 am (fblackmo) employee states he twisted his left shoulder while attempting to enter a commercial vehicle to conduct a cdl road test. Supervisor: michael jarman
## 989 03/05/2003 07:23 am (fblackmo) employee states while bending down to pick up a pile of debris his right leg slipped into a hole causing the fall and injury. Supervisor: k. L. Anderson
## 990 03/05/2003 07:35 am (fblackmo) employee states while un-loading lumber a splinter punctured his left hand. Supervisor: c. C. Coggins
## 991 03/05/2003 08:36 am (fblackmo) employee stated that he was pulling him self up into a loader when he felt the muscle in his right bicep pull. Supervisor: t. W. Edwards
## 992 03/05/2003 09:22 am (fblackmo) employee states he felt pain in his back while picking up trash and tires. Supervisor: b. W. Whitaker * show all bills to joyce*
## 993 03/05/2003 10:55 am (fblackmo) employee was exiting bathroom stall when she slipped and fell near sink. Supervisor: edith mcdaniel
## 994 03/05/2003 11:19 am (fblackmo) employee was working on state road helping to remove a tree from roadway when slipped and fell causing the injury to his right leg and ankle. Supervisor; m. L. Smith
## 995 03/06/2002 01:36 pm (fblackmo) employee was changing handle on bush axe using a small sledge hammer and grabbed back of blade to see how loose and blade cut right hand. Supervisor: christy wright
## 996 03/06/2002 10:32 am (fblackmo) employee was attempting to get off truck when, he tripped over a pallet and fell. Supervisor; walter bell
## 997 03/06/2002 10:51 am (fblackmo) employee was sawing limb off when, it fell about 12' striking the pavement. The limb bounced up and struck employee in the facial area. Supervisor: d. M. Pressley
## 998 03/06/2002 11:03 am (fblackmo) employee was trying to pull sign out of island that was broken when, he felt pain in his back. Supervisor: robby taylor
## 999 03/06/2002 11:15 am (fblackmo) employee was filling hydroseeder with water, fertilizer, seeding, and moving hose. While doing the general loading activities employee felt pain in his back. Supervisor: ronnie e. Warren
## 1000 03/06/2003 02:46 pm (fblackmo) employee was hooking chains to remove salt spreader, employee attempted to climb down off truck bed. As he was turning his left foot slipped causing his right leg to twist, resulting in the injury to his right knee. Su
## 1001 03/06/2003 02:59 pm (fblackmo) employee states while returning from road test she, slipped on steps. Supervisor: mike salisbury
## 1002 03/06/2003 03:18 pm (fblackmo) employee states while taking salt spreader off the back of a dump truck he slipped and fell. Supervisor: r. W. Lewis
## 1003 03/07/2000 08:51 am Mr. Smitherman was lifting signs to be installed on posts when he strained muscles in his lower back (right side). Supervisor: c. R. Sharp
## 1004 03/07/2000 08:58 am employee was trying to slow truck down to make a left turn onto gene martin road, when truck and roller overturned. He geared down and applied brakes, but realized his speed was still too fast for the turn. Mr. Richardson has a s
## 1005 03/07/2000 09:08 am employee was lifting (removing) scales from trunk of vehicle, when he strained his mid-back area. Supervisor: sgt. R. A. Powell
## 1006 03/07/2000 09:25 am employee was pulling nails from boards when he stepped on a nail puncturing his foot. Supervisor: e. W. Huffman
## 1007 03/07/2000 09:39 am employee was working with crew cleaning up and chipping brush, when debris fed into the chipper flew into left eye. Supervisor: ralph thomas mcmanus, jr
## 1008 03/07/2000 09:55 am employee was twisting (moving parts) I-beams suspended from the boom truck, when he felt a sharp pain in his lower back. Supervisor e. W. Huffman
## 1009 03/07/2000 10:02 am employee was on motor grader reaching down to get his work gloves, when he was bit by a spider on the tip of his left ring finger. Supervisor: d. W. Woolard
## 1010 03/07/2002 01:58 pm (fblackmo) employee was walking by equipment trailer to load concrete form on truck, he struck trailer on corner cutting his right hand through his glove. Supervisor: j. L. Cornell
## 1011 03/07/2002 02:10 pm (fblackmo) employee was holding handle of pick axe trying to wedge it under manhole lid. Employee struck the metal end of pick with a three pound hammer. Employee held jaded end of wood handle in left hand. The jolt of the hit c
## 1012 03/07/2002 02:25 pm (fblackmo) employee was loading cement on the bed of truck when, he felt pain in his back. Supervisor: w. M. Tosto
## 1013 03/07/2002 02:35 pm (fblackmo) employee was performing digital terrain modeling surveys on rail road track while walking on uneven terrain causing him to sprain his mcl on his left knee on 2/19/2002. Employee continued to work thinking that this spr
## 1014 03/07/2002 07:21 am (fblackmo) employee is/was experience pain in wrist area. Had an old injury to right wrist while playing basketball years ago. Supervisor: patsy champion
## 1015 03/07/2002 12:29 pm (fblackmo) employee was traveling north on highway 17 when, his vehicle left the roadway. Upon returning to the roadway the vehicle overturned and employee was ejected from the vehicle resulting in death. Supervisor: thomas johns
## 1016 03/07/2003 06:56 am (fblackmo) employee states he experienced pain in his back while install the hydrolic lines from the snow hopper to the truck. Supervisor: t. J. Burchell
## 1017 03/07/2011 07:23 am (slee) pov struck imap truck in the rear. 03/07/2011 07:34 am (slee) other person: eddie arrington, mt. Airy, nc, 336-351-4687. 3/8/2011 02:47 pm (fblackmo) employee felt pain in his head and neck area. Supervisor: michae
## 1018 03/07/2011 11:39 am (vyount) private vehicle hit state vehicle. Employee coy aundre hill was driving ncdot tool truck. Private vehicle attempted to pass in a no passing zone and struck the left door of the ncdot truck causing injury to employees left
## 1019 03/09/2000 02:09 pm employee was driving on highway nc 18, s checking slick spots/icy roads; when his pickup truck hit slick spot spinning around in the road hitting a bank. Employee has a contusion to his scalp, bruised left knee and left shin.
## 1020 03/09/2000 02:17 pm employee was bending over to pick up tree limb, when he felt something pull in his lower back (sciatica) area. Supervisor: d. T. Childrey
## 1021 03/09/2000 08:51 am employee has binaural hearing loss due to acoustic trauma, chronic exposure to noise (excess of 90 dbs.)
## 1022 03/09/2000 09:00 am employee has chronic obstructive pulmonary disease from repeated exposure to hazardous chemicals (lung irritants).
## 1023 03/09/2000 09:31 am employee was climbing into truck to conduct a cdl road test, when she heard her left knee pop causing her pain and swelling. Supervisor: connie wray
## 1024 03/09/2000 09:39 am employee was getting ferry power cable off the ferry to tie up slip, when he strained his left shoulder. Supervisor: t. L. Gray
## 1025 03/09/2000 10:24 am employee was removing old bolts from nailers with an air wrench, when the bolt twisted causing his left thumb to get caught between steel and wrench. Supervisor: steven alan hardin
## 1026 03/09/2000 10:32 am employee has tingling and pain in her right hand, arm up to the elbow joint due to repetitive keying on job. Supervisor: v. E. Barham
## 1027 03/09/2001 02:16 pm sanding flooring to prepare for tile when nail was not set. Another employee hit nail with hammer to set it and went to hit it again when william moved his hand across to see if nail was set. Hammer struck williams left 5th finge
## 1028 03/09/2001 02:27 pm leads diesel hammer fell approximately 2' striking randy on hard hat. Causing impact to neck and back.
## 1029 03/09/2001 02:53 pm while leaving her desk employee was in a hurry and hit her right knee on the darwer pull. Her normal duty. Show all bills to joyce before paying. 2/8/2005 08:09 am (mpark)
## 1030 03/09/2001 03:06 pm employee was painting steel beams under a bridge in an enclosed area. The inhalation of dust/paint fumes caused tightness in chest area making it difficult to breathe. Tightness in chest area and shortness of breath.
## 1031 03/09/2001 03:34 pm employee pulled up on pto lever of the dump truck with her right hand to dump a load. The employee felt a shrp pain in her back between her shoulder blades. The employee claims the pto lever was very stiff. The truck has been wr
## 1032 03/09/2001 03:47 pm dot employee was working on a pipe installation project when he lost his footing and fell into a drainage ditch fracturing his ankle. 04/24/2001 04:54 pm (sjerniga) fracture
## 1033 03/11/2002 02:12 pm (fblackmo) employee had completed a road test in a private vehicle 4 x 4 pick up truck when, exiting the vehicle employee had to jump out because of the height. Supervisor: ava parker
## 1034 03/11/2002 02:40 pm (fblackmo) employee states that her hand was on the chain fall. Employee then pulled the chain, hitting her finger. Supervisor: ronnie d. Powell
## 1035 03/11/2002 02:53 pm (fblackmo) employee was removing hydro oil return tube form hud fitting inside of tank. The tube retaining nut broke loose pinching employees right thumb. Supervisor; danny r. Parker
## 1036 03/11/2002 03:07 pm (fblackmo) employee finger was caught between crescent wrench and steel beam. Employee was taking nailers off steel. Supervisor: c. C. Coggins
## 1037 03/11/2002 12:59 pm (fblackmo) employee was lifting a metal trash can with supplies in it from the back of the state truck onto the deck of the ferry. Supervisor: charlie piner
## 1038 03/11/2003 02:27 pm (fblackmo) employee states while pulling brushes from the shoulder of the road he felt pain in his stomach area. Supervisor: sg. Dillon
## 1039 03/11/2003 02:39 pm (fblackmo) employee was picking up brushes to put in chipper when, he tripped and fell hitting his left knee on a rock. Supervisor: w. H. Lynch
## 1040 03/11/2003 02:49 pm (fblackmo) employee was exiting from the back of a pickup when he slipped and fell causing the injury to his right wrist. Supervisor: shelton james
## 1041 03/11/2003 10:41 am (fblackmo) employee was driving on 440 when, his vehicle was hit by another vehicle. Supervisor: ron hancock
## 1042 03/11/2003 10:57 am (fblackmo) employee was traveling back to state yard when his vehicle was struck by a private owned vehicle. Supervisor: doug mizelle
## 1043 03/11/2003 11:18 am (fblackmo) employee was riding in a vehicle after lunch when, he became upset and stated beating on the door and other objects which lead to the injury. Supervisor: jerry bagwell
## 1044 03/11/2003 11:35 am (fblackmo) employee states while lifting rocks he felt pain in his lower abdomen area. Supervisor: frank rector
## 1045 03/11/2003 11:57 am (fblackmo) employee was helping a mechanic wire a truck when he bent over he passed out and hit his right side. Supervisor: michael lyman(acting)
## 1046 03/11/2003 12:13 pm (fblackmo) employee was trying to open tailgate when he felt pain in his lower back area. Supervisor: robert a. Mccarley
## 1047 03/11/2003 12:32 pm (fblackmo) employee states because of the overflow with installation of software and the stress, he has experienced pain and numbness in his right hand, arm, and wrist. Supervisor: don conner
## 1048 03/12/2001 01:24 pm employee was putting guard rail up that had been taken down to dump material in a fill. When he finished he felt a sharp pain in his lower back. Supervisor: v. G. Scales
## 1049 03/12/2001 01:50 pm employee was sitting in her chair with rollers when she reached to get something behind printer and chair slipped out from under her, bruising her right arm. Supervisor: alan fitzgerald
## 1050 03/12/2001 02:02 pm employee was cutting r/r on secondary road. As he was coming down a back his foot became caught in vines causing him to fall, twisting his left ankle. Supervisor: d. M. Pressley 04/24/2001 04:58 pm (sjerniga) lost time
## 1051 03/12/2001 02:14 pm numbness and tingling in left hand. Supervisor: jilda mcgee
## 1052 03/12/2001 02:26 pm employee was walking through office and slipped on a spot where material had been sprayed in order to remove adhesive on floor. She fell twisting her back. Supervisor: derek smith
## 1053 03/12/2001 02:36 pm employee was leaving building for a doctor's appointment when she fell down steps. She had a glass bottle in her hand that shattered causing her to get cut on her left hand and right cheek. Supervisor: lynn chalk
## 1054 03/12/2001 02:45 pm employee was in process of conducting a cdl road test and lifted traffic cones and felt a pull across the back on her neck and shoulder. Supervisor: michael jarman
## 1055 03/12/2001 08:12 am stepping down on back of handpaint truck, hand slipped off the hand bar. Employee landed on knee and elbow. Supervisor: mike carriker
## 1056 03/12/2001 08:38 am employee was cutting a limb that was laying on the ground. A gust of wind blew a piece of sawdust in the side of his eye. Employee was wearing his safety glasses and face shield. Supervisor: c. E. Thompson
## 1057 03/12/2001 09:12 am officer corbett was performing an inspection on a cmv(roadside). He was checking the brake lights, turn signals on the trailer and as he stepped to his rear, his right foot went down in a pothole causing his right knee to twist. S
## 1058 03/12/2001 09:27 am employee was removing a wooden pallet from roadway that had fallen off truck. Employee was walking across roadway that had traffic stopped by winston-salem police and turned his ankle, breaking left ankle at top. Supervisor: l. L.
## 1059 03/12/2001 09:40 am employee was attempting to pull out a sign post by hand and strained his groin area. Supervisor: chuck sharp
## 1060 03/12/2001 09:54 am employee was working in the engine room of the m/v pamlico. He stepped on a deck frame which bent; under his weight, as he went to take a step to stop from falling, a yellow cord caught his left foot causing him to fall into the bi
## 1061 03/12/2001 11:05 am employee was hit from behind by a private vehicle while stopped at a red light. Muscles strain in neck. Supervisor: r. J. Nelson
## 1062 03/12/2001 11:47 am employee cut his right thumb while cleaning film roller on processing machine. Supervisor: bruce mclamb
## 1063 03/12/2002 01:39 pm (fblackmo) employee was walking by trackhoe that was pulling logs off the bank. Log struck employee in the legs, chest and face when he walked between the log and bank. Supervisor; t. L. Hall
## 1064 03/12/2002 11:05 am (fblackmo) employee was loading a block of paraplastic into back of pickup truck when he felt pain in his lower back. Supervisor: richard w. Baucom
## 1065 03/12/2002 11:41 am (fblackmo) employee was bending over greasing fittings when he felt a pain in his side. Supervisor: george morris
## 1066 03/12/2002 12:11 pm (fblackmo) employee states that he experienced pain in his shoulder area while climbing up and down ladder of m/v beaufort. Supervisor: benjamin p. Wilkins
## 1067 03/13/2003 09:19 am (fblackmo) employee states while unlocking door ice fell from the roof causing him to slip and fall. Supervisor: charles e. Jones
## 1068 03/13/2003 09:55 am (fblackmo) employee slipped and fell on wet slope on I-40. Supervisor: donald king
## 1069 03/13/2003 10:27 am (fblackmo) employee states while cutting a wet plastic pipe his knife slipped causing the cut to his right thumb. Supervisor: w. T. Parrish
## 1070 03/13/2003 10:46 am (fblackmo) employee was loading traffic cones onto a moving trailer on I-85 when, his left foot got caught under the wheel. Supervisor: m. S. Venable
## 1071 03/13/2003 11:15 am (fblackmo) employee states while removing pins he slipped and fell causing the injury to his left hip. Supervisor: a. L. Wetherington jr 11/6/2006 01:37 pm (fblackmo) claim closed. Clinched on 11/14/2005. Do not use.
## 1072 03/14/2000 10:07 am employee was pulling/lifting brush from the roadside; when he tripped and fell over a cut tree stump down a slope. Employee injured his lower back, leg, and ankle. Supervisor: keith hill
## 1073 03/14/2000 10:18 am employee was walking beside tractor trailer truck; when he stepped on clump of grass, loss footing/fell twisting his right knee. Supervisor: charles f. Teague
## 1074 03/14/2000 10:29 am employee was shoveling dirt on shoulder of road; when he felt a sharp pain underneath his right ribs. He has a knot underneath ribs and soreness in that area. Supervisor: c. W. Phelps
## 1075 03/14/2000 10:43 am employee was using a saw cutting trees; when air borne poison ivy vine settled on his hands and lower part of left leg causing a rash. Supervisor: w. D. Laughter
## 1076 03/14/2000 11:05 am employee was cutting lines and hit a tree limb; when a piece of the limb flew into his left eye. Supervisor: j. B. Price
## 1077 03/14/2001 02:46 pm employee was loading trash bags filled with debris from ditch cleanout, into body of swb dump truck. The bags were very heavy and he strained his back when lifting. Lower back and neck strain supervisor: c. W. Phelps
## 1078 03/14/2002 10:19 am (fblackmo) employee was at a stop light waiting on light to change when, a private party ran into the back of ford ranger causing the injury to employee. Supervisor: m. Oliverson
## 1079 03/14/2002 10:32 am (fblackmo) employee states that while given a road test a private vehicle hit them in the rear while trying to make a left turn. Supervisor: sylvia r. Spain
## 1080 03/14/2002 10:44 am (fblackmo) employee was changing truck tire when he felt pain in his neck and shoulder area. Supervisor: a. David morton
## 1081 03/14/2002 10:57 am (fblackmo) employee states that while traversing in heavy terrain that he came into contact with poison ivy. Supervisor: r. D. Walston
## 1082 03/14/2002 11:09 am (fblackmo) employee was measuring pipe on nc 28 project no. 63939001b. Employee was pulling the tape across the road when a vehicle came by and jerked the tape out of employee hand. Vehicle involved was a sub-contractor(dadco). S
## 1083 03/14/2003 09:32 am (fblackmo) employee was using a air wrench to tighten a bolt when, the bolt slipped causing the injury to his right hand. Supervisor: samuel j. Gupton
## 1084 03/15/2000 03:15 pm employee was standing beside pickup truck; when another employee shut tailgate on his left index finger. Supervisor: a. S. Bailey
## 1085 03/15/2000 03:20 pm employee was cutting trees on right of way with a chainsaw; when the tree snapped back striking him on his right forearm. Supervisor: charles frank vick
## 1086 03/15/2000 03:25 pm employee was moving a log from travel lanes on us 64; when he twisted his right knee. Supervisor: j. F. Bailey, jr.
## 1087 03/15/2000 03:51 pm employee was lifting portable pat scales weighing trucks; when her back became stiff causing muscle spasms. Supervisor: ssg. D. C. Smith
## 1088 03/15/2000 04:23 pm employee was cutting trees with a chainsaw; when tree kicked back towards him causing chainsaw to cut his left index finger. Supervisor: merle s. Sasser
## 1089 03/15/2000 04:33 pm employee was unloading a sand blaster from truck; when he pulled muscles in lower back. Supervisor: eric allen schenz
## 1090 03/15/2001 01:20 pm employee had climbed onto the tire of the truck to get to the truck bed. He slipped from the tire and fell to the ground bruising his right elbow. Supervisor: ralph thomas mcmanus jr. 04/10/2001 08:48 am (twerner)
## 1091 03/15/2001 03:47 pm examiner frick returned from giving a road test. She opened the car door to get out of vehicle and the wind was blowing very hard. The wind blew the car door shut and she raised her foot to keep the door from closing on her leg.
## 1092 03/15/2001 09:36 am repetitive motion. Carpel tunnel 03/15/2001 09:40 am supervisor: cpt. E. C. Bristle
## 1093 03/15/2001 09:58 am employee was exiting his vehicle around 7:55 am in the office parking lot. He had books and other items in his hand. When he went to catch what was falling and tried to step down out of the vehicle at the same time, his right kne
## 1094 03/15/2001 10:10 am employee was on back of spreader cleaning out frozen salt using a silt fence post. After cleaning out spreader employee threw the post down and started to descend off of spreader. Employee lost his footing on the ladder and fell I
## 1095 03/15/2001 10:23 am employee twisted left knee while pivoting leg on combat firearms range. Supervisor: cpt. B. A. Riggs
## 1096 03/15/2001 10:39 am employee was placing work area signs when balance was lost and he fell to the ground spraining left wrist. Supervisor: d. L. Carpenter
## 1097 03/15/2001 11:19 am injured occurred from repetitive motion of hands such as typing, and answering phone. Etc. Supervisor: r. A. Vause
## 1098 03/15/2001 11:30 am employee was processing mail when she backed up into a mail cart causing her to lose her balance and fall. Sprained lower back and fractured tailbone. Supervisor: larry strickland
## 1099 03/15/2002 07:52 am (fblackmo) employee was cutting down a tree when the base of the tree kicked back causing the injury to his ankle. Supervisor: joe ross
## 1100 03/15/2002 08:05 am (fblackmo) employee was cutting right of way on nc 64 when the limb kicked back hitting employee in the mouth. Supervisor: lynn marshall
## 1101 03/15/2002 08:34 am (fblackmo) employee was loading aerial cameras on to airplane when the steps on the plane came apart causing the employee to fall to the concrete surface. Supervisor: dan spurling
## 1102 03/15/2002 09:10 am (fblackmo) employee was crossing street to exit out of the way on traffic when she fell on the sidewalk. Supervisor: l. M. Barbour
## 1103 03/15/2002 09:51 am (fblackmo) employee was attempting to latch tailgate on dump truck when her finger was pinched between the latch and tailgate. Supervisor: c. L. Edwards
## 1104 03/16/2000 10:06 am employee has pain and numbness in right wrist, elbow, fingers, and arm due to repetitive keying motion on job. Supervisor: helen whitehead
## 1105 03/16/2001 08:03 am employee was nailing 2x4's on the roof of the new salt bin in the vanceboro yard. The wind was blowing and blew saw dust inside of his safety glasses into his right eye. Supervisor: darrell parson
## 1106 03/16/2001 08:13 am employee was operating kettle to tack hay on the south side of sr 1201. The wind was blowing and tar blew in both eyes of employee. Supervisor: alonza b. Sawyer
## 1107 03/17/2000 09:13 am employee was doing a density test on soil; when he was bitten on his back, neck, and left arm by several mosquitoes. He had an allergic reaction to bites and has swelling in those areas. Supervisor: chris kirkman
## 1108 03/18/2003 07:41 am (fblackmo) employee was conducting a road test when the driver ran a red light striking another vehicle. Supervisor: pat. Glenn
## 1109 03/18/2003 07:55 am (fblackmo) employee states while stopped a traffic light a private vehicle collided into the rear of his state vehicle. Supervisor: j. S. Holland
## 1110 03/18/2003 08:11 am (fblackmo) employee was picking up trash when he experienced pain in his back. Supervisor: b. J. Berryhill jr
## 1111 03/18/2003 08:24 am (fblackmo) employee states while helping contractors with tree removal, he came into contact with poison ivy. Supervisor; al smith
## 1112 03/18/2003 08:37 am (fblackmo) employee was checking fluids in truck when, he hit his right knee on snow plow. Supervisor: al smith
## 1113 03/18/2003 09:03 am (fblackmo) employee was patching potholes when, he stepped on one of the holes causing the injury to his back. Supervisor: j. D. Shelton
## 1114 03/18/2003 09:21 am (fblackmo) employee was pulling brush off of guard rail on us 220 to be placed in chipper when, he felt a sharp pain in his right shoulder. Supervisor: g. W. Johnson
## 1115 03/18/2003 09:41 am (fblackmo) employee was clearing road way by placing debris in chipper when, on of the logs rolled off his stack striking him on his right leg. Supervisor: j. R. Deese
## 1116 03/18/2003 09:54 am (fblackmo) employee was moving brush from roadside to chipper when the limb struck him on the left shoulder causing him to fall. Supervisor: don carpenter
## 1117 03/19/2002 02:35 pm (fblackmo) employee states that, the state vehicle was traveling east on carmon road when, a private vehicle traveling west crossed center line. The employee swerved to the right to Miss The private vehicle and hit the mailbox the
## 1118 03/19/2002 07:20 am (fblackmo) employee was helping load 16 x 25 long I beam from stack in bridge yard to the flatbed trailer. The beam being moved caught lip on a beam that was already seated on flatbed trailer causing it to hit employees right hand
## 1119 03/19/2002 07:35 am (fblackmo) employee was walking down a cut slope on the project at edwards mill exit. Construction site. Employee slipped and fell down slope landing on his left knee. Supervisor: marvin wayne currie
## 1120 03/19/2002 07:51 am (fblackmo) employee was pulling up mailboxes when, dust or dirt from the broom tractor flew into his eye. Supervisor: t. H. Swayne
## 1121 03/19/2002 08:02 am (fblackmo) employee was clearing roadway on state road 1432 with a chainsaw. Employee came into contact with poison oak and developed a rash. Supervisor: k. L. Anderson
## 1122 03/19/2002 08:20 am (fblackmo) employee developed an umbilical hernia while assisting another crew member on the m/v bonnier pull the mooring line. Supervisor: s. H. Kinner
## 1123 03/19/2002 08:35 am (fblackmo) employee was supervisoring right of way operation on us 19 & 23 when, debris got into his right eye. Supervisor: d. L. Carpenter
## 1124 03/19/2002 08:50 am (fblackmo) employee had been using a crack sealing machine for the last six weeks. Employee states that, because of the repetitive use of the machine he experience pain in his right elbow. Supervisor: j. E. Burieson 09/08/2003 01
## 1125 03/19/2002 09:07 am (fblackmo) employee had dived out of harms way as a farm tractor and equipment was being struck by a train. While lying on the ground, the employee was struck by a piece of debris flying off the tractor. The metal debris struck e
## 1126 03/20/2000 02:02 pm employee was traveling south on nc 11 at 35 mph, when private vehicle (clementine taylor) hit employee on left side of vehicle. Employee had the right of way, Ms. Taylor pulled from stop sign. Ms. Taylor stated the sun was in he
## 1127 03/20/2000 02:25 pm employee was working on 18" aluminum pipe on 3/8/00. He stepped in a deep rut while walking around the pipe; twisting his right ankle. He was able to catch himself before he fell. Supervisor: w. L. Saunders, jr
## 1128 03/20/2000 02:33 pm employee bruised cartilage on left side of rib cage while drilling holes in angle iron. He was using a magnetic drill, when the drill bit hung up causing the bit to twist and break. The drill motor swung around hitting him on left
## 1129 03/20/2000 02:42 pm employee sprain/twist his right ankle while stepping off the running board of dump truck. Supervisor: s. G. Dillon
## 1130 03/20/2000 02:50 pm employee slipped and fell off patch roller steps straining lower left side of his back. Mr. Wilbourne was stepping off the machine at time of incident. Supervisor: j. D. Fuller
## 1131 03/20/2002 11:46 am (fblackmo) employee is having severe acid reflux due to the stress and tension involved in her dailey duties on the job. Supervisor: j. M. Searcy
## 1132 03/20/2003 02:25 pm (fblackmo) employee was handling a spacer board when, his hand became wedge between the spacer and the forklift frame. Supervisor: mike jeffery
## 1133 03/20/2003 02:39 pm (fblackmo) employee states while sharping a axe with hand file, his hand slipped causing the cut to his finger. Supervisor: gary mahaffey
## 1134 03/20/2003 11:23 am (fblackmo) employee was hold a chain in place when his finger was caught between the chain and he pin hammer. Supervisor: henry sturdivant
## 1135 03/20/2003 11:51 am (fblackmo) employee was lifting backhoe ramp when he felt pain in his back. Supervisor: john howell
## 1136 03/21/2000 02:57 pm employee was driving state vehicle when a private vehicle collided with him. Mr. Reske has bruises on the left side of his head (temple). Supervisor: g. A. Fuller
## 1137 03/21/2000 03:20 pm employee was attempting to pick up end of 24" plastic driveway pipe when he strained his lower back. Supervisor: c. L. Cooke
## 1138 03/21/2000 04:01 pm employee was driving diesel truck when it overturned into a ditch.
## 1139 03/21/2000 04:04 pm employee has pain in right hand, wrist, and arm due to repetitive motion keyboarding. Supervisor: renaldo lovisa, jr
## 1140 03/21/2000 04:14 pm employee states that it is getting difficult to key, left and write effectively at work due to repetitive keyboarding on the job. Supervisor: judith bell
## 1141 03/21/2000 04:22 pm employee was lifting boxes (previous back problems existing) against supervisors will. Supervisor states she told Mrs. Mithcell not to lift boxes; to wait for mailroom personnel to pick up boxes. Employee ignored supervisor and r
## 1142 03/21/2002 01:46 pm (fblackmo) employee was helping d. O. T. Crew remove tree from ditch line. Employee was lifting cut section of the tree when he felt pain in his neck and shoulder area. Supervisor: w. H. Lynch
## 1143 03/21/2002 01:58 pm (fblackmo) employee was pulling limbs off of cut trees, operation clearing right of way for new road construction. A limb fell hitting employee on his right wrist. Supervisor: c. H. Winstead
## 1144 03/21/2002 02:10 pm (fblackmo) employee was repairing office door hanging door on hinges. Employee closed the door and the speaker that was on the shelf above the door fell hitting employee on the head and causing a cut along the right side of his fa
## 1145 03/21/2002 02:23 pm (fblackmo) employee was dismounting truck and right knee buckled under him. Employee was holding onto truck door and did not fall, but knee gave way. Supervisor: james e. Burleson
## 1146 03/21/2002 02:37 pm (fblackmo) employees states that, while attempting to install a 12 x 12 x 72" timber beneath the bridge his hand got caught between the steel and the timber while sliding it into place. Supervisor: terry j. Davis
## 1147 03/21/2002 02:58 pm (sjerniga) employee was traveling north on us 17, when Ms Kelly, driving private vehicle, pulled in front of the state vehicle. Damaged left front driver's side of state vehicle. Private vehicle's right panel on driver's side was
## 1148 03/21/2002 07:56 am (fblackmo) employee was operating jack hammer and cutter bit became lodged inc concrete. A hard pull on the jack hammer by employee dislodged the cutter bit quickly and struck employees' left foot. Supervisor; a. T. Cagle
## 1149 03/21/2002 08:19 am (fblackmo) employee was moving a small motorless roller by backing up while pulling the roller with both hands. Employee let go of the handle with his left hand, while continuing to pull the roller with his right hand, and began t
## 1150 03/21/2002 08:41 am (fblackmo) employee was flagging traffic on us 158 in guilford county when a private vehicle came towards him so employee jumped into the ditch to avoid contact. Supervisor: s. G. Dillon
## 1151 03/21/2002 09:31 am (fblackmo) employee was picking up mail baskets when she felt a pull in her shoulder, neck, and arm. Supervisor: dean alston
## 1152 03/22/2000 10:11 am employee was walking with a plastic pipe; when he stepped into a hole. He lost his balance and took his right hand off pipe to balance himself again. His left arm snatched downward due to the weight of the pipe injuring his left
## 1153 03/22/2000 10:19 am employee was climbing over the rail of forklift cage; when his foot opened the door latch causing him to fall. He slammed his leg on the bottom of the basket. Supervisor: s. R. White
## 1154 03/22/2000 10:36 am employee was pulling on tree limbs to put into the wood chipper; when limb got caught on stump injuring his lower back. Supervisor: james d. Shelton
## 1155 03/22/2000 10:41 am employee was lifting a barricade that was knocked over by the wind; when he felt a pull in his lower back. Supervisor: robert t. Moore
## 1156 03/22/2000 10:47 am employee was putting basket into a hole; when he raised up he hit his head on the corner of the footjack. Supervisor: keith hill
## 1157 03/22/2000 10:59 am employee was getting a form off the side of hand paint truck; when he stepped in a ditch causing his left leg to pop. He also felt pain in his left foot and his back at time of the incident. Supervisor: mike carriker
## 1158 03/22/2000 11:04 am employee was hit in the head with a piece of wood. Employees was throwing sticks of wood into bucket of a loader. Mr. Kline was hit by accident by another employee. Supervisor: herschel g. Timberlake
## 1159 03/22/2000 11:20 am employee was struck by a tree limb being pulled with a dump truck. The tree limb practically pinned Mr. Wagoner to the truck causing bruises, scratches, and swelling to the left side of his face. Supervisor: ralph thomas mcmanus
## 1160 03/22/2000 11:31 am employee was picking up trash along the banks when he came in contact with poison ivy in. Employee has irritation in both eyes. Supervisor: eddie d. Zimmerman
## 1161 03/22/2000 11:37 am employee strained his lower back while digging a hole to bury a dead animal. Supervisor: r. D. Peeler
## 1162 03/23/2011 02:36 pm (slee) employee was stopped at traffic light awaiting to make a left turn onto 14th st. From greenville blvd. When she was hit in the rear pushing her into vehicle in front of her. 03/23/2011 02:47 pm (slee) other person: lor
## 1163 03/24/2000 10:46 am employee and inmate was getting supplies from tool box on truck; when inmate slammed box on employees right hand. Mr. Richardson has contusion on his right ring finger due to accident. Supervisor: d. E. Taylor & kent d. Boyer
## 1164 03/24/2000 10:54 am asphalt anti-strip agent splashed in employees eyes causing a burning discomfort on 3/13/00. Supervisor: jing-shyan (annie) jeng
## 1165 03/24/2000 11:07 am employee strained his lower back while bending over to lift shop door on 3/13/00. Supervisor: a. D. Cloer
## 1166 03/24/2000 11:13 am employee fell injuring his left shoulder, lower back, and neck while trying to pull grates up with a pry bar. Employee was standing on sideboard of truck and fell onto concrete slab on 1/31/00. Supervisor: p. H. Brittain
## 1167 03/24/2000 11:21 am employees left eye was bruised by brush while sloping ditch with a motorgrader on 3/13/00. The brush came through door striking him in his eye. Supervisor: j. W. Pipes
## 1168 03/25/2002 02:33 pm (fblackmo) employee was stepping up onto running board when, his feet slipped causing him to fall. Supervisor: tommy kilpatrick
## 1169 03/25/2002 02:48 pm (fblackmo) employee was cutting and piling up trees and bushes. Employee kim turned the backhoe around with the bushes and bucket on it. A tree limb had employee pinned against another tree and between brushes. Supervisor: tomm
## 1170 03/25/2002 03:18 pm (fblackmo) employee states that he slipped on steep bank and turned his left foot. Supervisor: doug johnson
## 1171 03/26/2001 09:15 am (pward) while working on the m/v pamlico, employee was working on a door knob hole in the engine room door. The door is made of aluminum. He was using an electrical drill and bit, as he proceeded to reamout the bolt hole, he was
## 1172 03/26/2001 09:29 am (pward) employee has been experiencing pain in his shoulders and both elbows for the past 2-3 months, especially when operating gun on hydroseeder. After a full day ( 3/15/01) of hydroseeding and not being able to sleep same night
## 1173 03/26/2001 09:52 am (pward) employee was removing a traffic signal cabinet under windy conditions. Once cabinet was removed from concrete pad wind gust blew metallic debris into employee's left eye. Supervisor: john paul couch
## 1174 03/26/2001 10:09 am (pward) crew had installed driveway pipe and employee felt stiffness and pain in back while shoveling dirt over pipe. Supervisor: j. W. Mclean
## 1175 03/26/2001 10:18 am (pward) employee was assisting another employee lift and reattach truck tailgate. Employee lost footing and fell injuring his left arm. Supervisor: d. J. Shepard
## 1176 03/26/2001 10:41 am (pward) employee was mowing with slope mower. Mower threw stick through wire mesh striking employee above his glasses on his right eye. Supervisor: c. B. Lunsford
## 1177 03/26/2001 10:48 am (pward) employee was coming down stairs and turned ankle. Fell approximately 3 to 4 stairs. Supervisor: s. H. Kinner 04/10/2001 08:58 am (twerner)
## 1178 03/26/2001 10:59 am (pward) employee was working inside of a pipe job and was climbing up and down the bank when a tree limb swung back and hit him in the left eye. Supervisor: tim southard
## 1179 03/26/2001 11:07 am (pward) while out staking a future resurfacing project employee got out of the vehicle to mark a station and twisted her right ankle. Supervisor: d. W. Jernigan
## 1180 03/26/2001 11:14 am (pward) employee was helping fuel the trackhoe and while getting on trackhoe, he lost his balance and twisted his right elbow. Supervisor: benny f. Sloan
## 1181 03/26/2001 11:20 am (pward) employee was exiting boat after inspection and a gust of wind blew him down. Left knee and right middle finger. Supervisor: r. H. Mercer
## 1182 03/26/2003 02:22 pm (fblackmo) employee states while pulling broken limbs he felt pain in his left shoulder. Supervisor: l. S. Carpenter, jr
## 1183 03/26/2003 02:34 pm (fblackmo) employee was put tailgate back on when, he smashed his finger. Supervisor: harvey watson
## 1184 03/26/2003 02:48 pm (fblackmo) employee was chipping brush off right of way when, he came into contact with poison ivy. Supervisor: r. E. Metcalf
## 1185 03/26/2003 02:57 pm (fblackmo) employee states while using hand saw, some of the matter went into his left eye. Supervisor: s. U. Farrar
## 1186 03/26/2003 10:05 am (fblackmo) employee states she slipped and fell on ice while taking fuel to the ferry. Supervisor: jeff m. Credle
## 1187 03/26/2003 10:57 am (fblackmo) employee was removing a hood from a motor grader and debris got into his right eye. Supervisor: wayne r. Meadows
## 1188 03/26/2003 11:08 am (fblackmo) employee states while sweeping gravel he felt something pop him in his back. Supervisor: tommy cottrell
## 1189 03/26/2003 11:20 am (fblackmo) employee states while stepping off back of crane she stepped wrong causing the injury to her left ankle. Supervisor: gerald messer
## 1190 03/26/2003 11:30 am (fblackmo) employee was exposed to poison ivy while measuring various trees for select tree removal. Supervisor: kelly spitz
## 1191 03/26/2003 11:39 am (fblackmo) employee states while trying to retreive straw from dump truck he felt something pop in his right arm/shoulder area. Supervisor: marcus h. Thomas
## 1192 03/26/2003 11:51 am (fblackmo) employee states while moving old computers he felt pain in his lower back. Supervisor; danny king
## 1193 03/26/2003 12:11 pm (fblackmo) employee states while lighting a burner the propane build up and splashed outward causing the burns to his skin. Supervisor: mike carriker
## 1194 03/26/2003 12:22 pm (fblackmo) employee states while climbing down ladder she mis-step causing the injury to her right knee. Supervisor: jim evans
## 1195 03/26/2003 12:53 pm (fblackmo) employee states while she slipped on icy truck steps. Supervisor: grady hurley
## 1196 03/27/2000 02:47 pm employee was trying to remove small fence posts by hand; when he felt a pull/pain in his back. Employee states he has a bulging disk in his back due to incident. Supervisor: r. M. Freeman
## 1197 03/27/2000 02:59 pm employee was lining up steel face plates on engine bed on ferry vessel; when he felt a pull in his abdomen and legs. Mr. Ward has a double hernia on each side of his abdomen. Supervisor: kevin lamar cooke
## 1198 03/27/2000 03:06 pm employee was lifting wood panels off a saw bench and lowering them to the ground; when he felt pain in his back. Supervisor: r. J. Terry
## 1199 03/27/2000 03:32 pm employee was lifting the hatch on a tug boat; when the hatch came loose striking him on the left hand/arm causing him to fall onto the deck. Mr. Hawkins sprain his left middle finger at the time of incident. Supervisor: b. R. M
## 1200 03/27/2000 04:57 pm employee was unloading/lifting explosive matts; when he reached to pick up a chain he felt pull/pain in his back. Supervisor: w. H. Lynch
## 1201 03/27/2001 09:18 am (pward) employee was cutting brush(bushing) at bridge 60-154 on I-85 and came into contact with either poison oak or poison ivy. Supervisor: g. David fine 04/10/2001 08:59 am (twerner)
## 1202 03/27/2001 09:40 am (pward) employee was drilling with a jackhammer when the drilling steel broke causing him to fall off of the rock he was on. His finger was caught where the air line from compressor hooks to the jackhammer, crushing the end of ind
## 1203 03/27/2001 09:49 am (pward) employee was removing cutter blades from side mower. Pliers slipped causing employee to cut right thumb. Supervisor: j. C. Sloan
## 1204 03/27/2001 09:55 am (pward) employee was connecting spreader to rear of truck and she pinched her 5th finger. Supervisor: j. W. Dyson
## 1205 03/27/2003 02:45 pm (fblackmo) employee was pulling stop sign out of box when, the injury occurred to his left wrist. Supervisor: jonnie gradle
## 1206 03/27/2003 02:57 pm (fblackmo) employee states while pulling cord on gasoline motor, the cord pulled his center finger on his left hand causing the injury. Supervisor; w. T. Lowery jr
## 1207 03/27/2003 12:04 pm (fblackmo) employee was lifting bales of straw onto a flatbed when, he felt pain in his back. Supervisor: w. David prestwood
## 1208 03/27/2003 12:15 pm (fblackmo) employee was operating a dump truck when, he came into contact with poison ivy. Supervisor: w. E. Mcclendon jr
## 1209 03/28/2000 02:24 pm employee was leaving bathroom when another person pushed door open striking her right eye. Supervisor: b. E. Eatmon, jr
## 1210 03/28/2000 02:29 pm employee was using an air grinder when debris got into his left eye. Supervisor: richard f. Jernigan
## 1211 03/28/2000 02:39 pm employee was walking down slope after cutting trees; when he slipped and fell injuring his right elbow. Supervisor: marty craig tillman
## 1212 03/28/2000 02:50 pm employee was clearing the right of way when he felt pain in his right shoulder. Mr. Hunt was lifting/tossing 3' chunk of wood at the time of the incident. Supervisor: ralph thomas mcmanus, jr
## 1213 03/28/2000 04:11 pm employee was lifting/loading equipment and luggage into vehicle, when he felt severe pain in his lower back. Supervisor: capt. G. P. Ramsey
## 1214 03/28/2001 08:17 am (pward) employee was clearing line for outdoor advertising came in contact with poison. Employee arms came in contact with vines while crossing fence to cut brush. Poison spread from forearms to wrist and hands, also stomach area
## 1215 03/28/2001 08:28 am (pward) employee was flagging traffic on nc 18 when employee stepped on roadway to pick up a limb and hurt left leg. Employee had not been hit by limb. Supervisor: b. W. Whitaker
## 1216 03/28/2002 10:10 am (fblackmo) employee states that, while climbing onto walkway to secure the load on back of truck his right foot slipped striking the edge of the walkway. Supervisor: mark turlington
## 1217 03/28/2002 10:26 am (fblackmo) employee had gone to move truck up while filling in driveways and mailbox turnouts. He proceeded to walk back to assist the other employee when, he mis-stepped falling on the shoulder of the road. Supervisor: c. M. Conn
## 1218 03/28/2002 10:47 am (fblackmo) enlarging post driver post holder employee had holder in vise upside down cutting hole bigger with torch. The flame from the torch was bouncing off back of driver towards the glove. Employee did not feel the heat from
## 1219 03/28/2002 11:19 am (fblackmo) employee was opening dumpster lid when the wind caught lid and closed on employees right hand little finger. Supervisor: a. M. Lewis jr
## 1220 03/28/2002 11:38 am (fblackmo) employee was lifting grate and frame when she felt a pull in her back. Supervisor; r. G. Crews 04/02/2002 11:32 am (twerner)
## 1221 03/28/2002 11:49 am (fblackmo) employee stepped off of equipment trailer, injured his left ankle on a loose rock. Supervisor: mcarthur baker
## 1222 03/28/2002 12:18 pm (fblackmo) employee was removing plant growth from around stop signs when he came into contact with poison ivy. Supervisor; barry coble 04/02/2002 11:34 am (twerner)
## 1223 03/28/2002 12:40 pm (fblackmo) employee was banding materials to a pallet using metal bands when he cut his right hand. Supervisor: mike jefferys
## 1224 03/29/2001 08:11 am (pward) employee was walking down a bank when he slipped and fell, he tried to catch himself and landed on his left arm. Supervisor: john thomason
## 1225 03/29/2001 09:25 am (pward) employee stepped down from the cab of the truck and pulled a muscle in right leg. Supervisor: m. B. Meizelle
## 1226 03/29/2001 10:14 am (pward) employee was dumping at landfill when tailgate fell off truck, employee and other employee with him tried to lift it up to get it back on when jarrett's back popped. Supervisor: john thomason
## 1227 03/29/2001 10:22 am (pward) employee was putting chock block back in tool box on side of truck. Block caught bottom of tool box. This forced his wrist back. He felt a tearing on left wrist. Supervisor: larry koontz
## 1228 03/30/2000 02:10 pm employee was inspecting drain pipes on lipscomb road; when debris blew into his right eye. Supervisor: kevin g. Bowen
## 1229 03/30/2000 02:12 pm employee bruised his right index finger when he accidentally hit switch on console in the sweeper. The steering wheel turned in one direction hitting his index finger next to the first joint. Supervisor: johnny r. Price
## 1230 03/30/2000 02:30 pm employee was sitting in a chair in break room area; when the chair broke causing him to hit the floor and back of chair. Mr. Hough strained the back of his neck due to this incident. Supervisor: marc p. Morgan
## 1231 03/30/2000 04:57 pm employee was pulling a limb from shoulder of road to be chipped; when limb broke causing him to fall backward onto pavement. Mr. Hogan has a bruised buttocks which caused cyst to swell and get infected. Supervisor: brain k. Marl
## 1232 03/31/2000 10:30 am jackhammer became wedged in pavement while cutting out failed area of asphalt for repairs. Employee lifted to free the jackhammer, he strained his abdomen. Supervisor: al smith
## 1233 03/31/2000 10:46 am employee was walking through the parking lot; when his right foot slipped out from under him causing him to fall. Mr. Gaddy fell backward on his back hitting his head on pavement. Supervisor: marc p. Morgan
## 1234 03/31/2000 10:52 am employee was lifting tire chains (approx. 100 pounds) when he felt pull/pain in his lower back and neck. Supervisor: m. E. Brady
## 1235 04/02/2002 10:14 am (fblackmo) employee was repairing a stop sign. Employee pulled on the post and a bolt popped off the bottom hitting employee on the head. Bolt was below ground level employee states he did not see the bolt in the stub. Superviso
## 1236 04/02/2002 10:30 am (fblackmo) employee states that, while walking on concrete slope under bridge he slipped on some wet debris and fell causing the injury to his right knee. Supervisor: mark wade 6/16/2004 03:27 pm (gwhite)
## 1237 04/02/2002 11:54 am (fblackmo) employee was helping motorist fix a flat tire. Employee picked up the tire and felt a sharp pain in his back. Supervisor: jeff corley
## 1238 04/03/2000 04:13 pm employee was helping change cover on dump truck; when the bar came apart cutting his left arm. Supervisor: j. A. Medford
## 1239 04/03/2000 04:23 pm employee was shoveling asphalt for several days; when his right wrist became extremely sore. Supervisor: marty craig tillman
## 1240 04/03/2000 04:29 pm employee was performing an equipment p. M. And trying to remove oil filter with a wrench. He twisted his left hand, burning his left forearm on hot exhaust catalytic converter. He has first and second degree burns due to incident.
## 1241 04/03/2000 05:05 pm officer hester was traveling on us 401; when private vehicle tried to occupy same lane causing a collision with state vehicle. Officer hester has a broken left arm due to this accident. Supervisor: ssg. T. R. Jones
## 1242 04/03/2001 08:36 am (pward) employee was knocking out the bottom pins when he knocked out the last pin the boom dropped and landed on tom's foot. Supervisor: a. L. Bundy
## 1243 04/03/2001 09:28 am (pward) employee was driving a flatbed crew cab and ran into the rear end of a privately owned vehicle causing a chain reaction. Supervisor: c. I. Lucas
## 1244 04/03/2001 10:35 am (pward) employee was digging out when the glass fell, hitting employee on the head and shoulders and cutting both hands supervisor: john thomason
## 1245 04/03/2001 10:47 am (pward) employee was putting scales under truck when he felt something pull in his left lower back. Supervisor: d. R. Shackelford
## 1246 04/03/2001 10:59 am (pward) employee stated he was driving truck and pushed in clutch to change gears and that's when injury occurred. Supervisor: johnny price 10/06/2003 10:15 am (gwhite)
## 1247 04/03/2001 12:06 pm (pward) employee was loading falsework materials onto a flatbed truck. He picked up a 12" x12" block of wood to load onto truck and felt stinging pain in lower back supervisor: steve a. Hardin 04/10/2001 09:00 am (twerner)
## 1248 04/03/2003 08:33 am (fblackmo) employee states while conducting a road test, the driver back up into a parked car causing the injury to his lower back area. Supervisor: brenda p. Grady
## 1249 04/03/2003 08:50 am (fblackmo) employee states while responding to an accident his vehicle was hit in the rear by a private vehicle. Supervisor: jeff corley
## 1250 04/03/2003 09:02 am (fblackmo) employee states she has experienced pain in her right hand and elbow due to typing. Supervisor: hope mozingo 04/03/2003 09:15 am (kbarefoo)
## 1251 04/03/2003 09:15 am (fblackmo) employee was trying to nail a pk nail into concrete with a mallet to be used for a reference point when, he missed the nail striking his index finger on his left hand. Supervisor: jeremy delapp
## 1252 04/03/2003 11:04 am (fblackmo) employee states while lifting a board, he punctured his left hand on a rusty nail. Supervisor: c. E. Dumas jr
## 1253 04/05/2000 01:02 pm employee was knocking out rivets under bridge; when divot ricocheted off a bean hitting Mr. Knowles in the mouth. His right middle tooth was injured due to this incident. Supervisor: r. E. Cox
## 1254 04/05/2000 01:11 pm employee was cleaning out bed of dump truck; when he came in contact with poison oak from belt loader. Mr. Wooten has contact rash on both arms, legs, and his abdomen. Supervisor: d. M. Pressley
## 1255 04/05/2000 12:23 pm employee was sweeping off sidewalk when she stepped into a dip causing her to fall off the curb. Mrs. Morris injured her right ankle. Supervisor: mike d. Presnell
## 1256 04/05/2000 12:38 pm employee strained muscles in his lower back while putting up tailgate on dump truck. He was lifting up the tailgate while the other employee reached to hook the chain, the weight shifted causing the pain to Mr. Douthit back. Super
## 1257 04/05/2000 12:46 pm employee got smoke from brush fire in his eyes; causing irritation to his left eye. The brush had poison oak plants in it. Supervisor: tommy kilpatrick
## 1258 04/05/2000 12:54 pm employee was cleaning out end of driveway pipe when he felt a pain in his right shoulder and neck. Supervisor: jerry l. Lane
## 1259 04/07/2000 02:14 pm employee was lifting wood chipper that had fallen off its stand; when he felt pain in his lower back. Supervisor: cleve barton
## 1260 04/07/2000 02:22 pm employee was walking out back door of maintenance building when she stepped and turned sideways. She fell and caught herself on her right knee and hands. She sprained her right thumb, wrist and has a right knee contusion. Supervi
## 1261 04/07/2000 02:32 pm employee was putting trash into bag from a container; when he felt pain in his lower back. Supervisor: c. M. Walker
## 1262 04/07/2000 02:42 pm employee was tightening a nylon strap; when he pushed on the rachet he strained his lower back. Supervisor: mark stafford
## 1263 04/07/2000 02:48 pm employee was helping to remove existing pipe from ditch; when he strained his lower back. Supervisor: j. A. Medford/a. Biddix
## 1264 04/07/2000 03:01 pm employee was getting up on backhoe; when he slipped and fell against the fender and tire. Mr. Chambers injured his lower back. Supervisor: allen nance
## 1265 04/07/2000 03:06 pm employee was passing another state vehicle; when vehicles tagged driver mirrors. Mr. Fivecoat got glass in his neck, right ear, and face area. Supervisor: john thompson
## 1266 04/07/2000 03:12 pm employee was working on back of truck shoveling mulch. Mr. Dellcona turned into another employee who was also shoveling; when he was stabbed (puncture) in his right arm by a pitchfork. Supervisor: j. D. Tucker
## 1267 04/07/2000 04:03 pm employees right little finger got caught between truck bed and chain while raising the truck bed. Supervisor: d. N. Brann
## 1268 04/07/2000 04:09 pm employee has pain in his lower back after doing a road test. Customer was told to do a 3 point turn, so Mr. Bates had to stop car for him. The car jumped the curb and hit a tree. Supervisor: sandra n. Harris
## 1269 04/07/2000 10:17 am employee was flagging traffic when traffic stopped. A driver of a private vehicle became impatient and drove by Mrs. Blaker striking her causing bruises on her left arm. Supervisor: dwayne a. Bauguess
## 1270 04/07/2000 10:26 am while removing a brace from the head wall, another employee hit brace with a hammer. Employee was hit in the back of his head by a 2x2 that had a nail sticking out of the end. Mr. Miller has a small puncture wound on his head. Sup
## 1271 04/08/2002 09:33 am (fblackmo) employee was driving in a state vehicle on us 421 s. B. In winston salem when a private vehicle merging into traffic hit the state vehicle. Supervisor: jim allen
## 1272 04/09/2001 03:05 pm (pward) while driving down the road something flew in employee's right eye causing it to be blood shot and irritated. Supervisor: j. W. Stiles
## 1273 04/09/2001 03:10 pm (pward) employee was pushing a small pickup truck out of the roadway when he lost his footing and fell to pavement on left elbow. Supervisor: c. E. Dumas
## 1274 04/09/2002 01:27 pm (fblackmo) employee was traversing rough terrain crossing ditches, fallen trees and vines. Since that day employee had experience pain in his back. Supervisor: emory kincaid
## 1275 04/09/2002 01:39 pm (fblackmo) employee was near another employee while he was grinding when a piece of rust flew up hitting the employee in the left eye with safety glasses on. Supervisor: tim k. Southard
## 1276 04/09/2002 01:49 pm (fblackmo) employee was cutting a board which was suspended and attached to a pile. Employee cut the board and it fell, hitting employee on the top of his left foot. Supervisor; j. P. Callicutt
## 1277 04/09/2002 02:12 pm (fblackmo) employee was strapping canvas down prior to hauling abc stone out of yard. Employee stepped down form the truck and felt pain in his left knee. Supervisor; r. L. Winslow
## 1278 04/09/2002 12:18 pm (fblackmo) employee had a build up of degrease under his right thumb nail, over a period of time it lead to blood poisoning. Supervisor; mike gibson
## 1279 04/09/2002 12:33 pm (fblackmo) employee was lifting shredded mulch from the flatbed truck when he experienced pain in his lower back on the right side. Supervisor; p. P. Mansfield
## 1280 04/09/2002 12:47 pm (fblackmo) employee was dismounting a cco206 ford medium duty truck, steps were wet when his foot slipped causing employee to land wrong on his right foot. Supervisor; quince watson
## 1281 04/09/2003 02:04 pm (fblackmo) employee was bending over to lift tool box when, he felt pain in his lower back. Supervisor: m. J. Gray
## 1282 04/09/2003 08:05 am (fblackmo) employee states while lifting up an automobile part when, he felt pain in his upper back area. Supervisor: bobbie bowden
## 1283 04/09/2003 08:23 am (fblackmo) employee was operating a chain saw when, he felt pain in his back. Supervisor: w. H. Lynch
## 1284 04/09/2003 08:49 am (fblackmo) employee states while cutting trees off of a wet bank, his foot slipped from under him causing him to fall and injury his right knee. Supervisor; l. J. Mathias
## 1285 04/09/2003 09:06 am (fblackmo) employee was struck in the head by a limb while trying to move a piece of machinery from a wooded populated tree area. Supervisor: clay murray
## 1286 04/09/2003 10:45 am (fblackmo) employee was function was to be a member of the office surveying party when, he slipped on a muddy service area landing on his back. Supervisor: jeffery j. Kidd
## 1287 04/09/2003 11:21 am (kbarefoo) employee was driving a swb truck hauling gravel. Truck ran off road and crossed ditchline, hitting a tree. Employee had a dislocated right shoulder
## 1288 04/09/2003 11:24 am (fblackmo) employee found a tick on his back when, he finished conducting a survey in a wooded area.
## 1289 04/09/2003 11:35 am (fblackmo) employee was lifting a water cooler from the ground to the back of the truck when, he felt pain in his lower back. Supervisor: al smith
## 1290 04/09/2003 11:44 am (fblackmo) employee was attempting to drive a nail in the ground when, the hammer slipped striking employee on his right index finger. Supervisor; frank j. Gioscio
## 1291 04/09/2003 11:54 am (fblackmo) employee was cutting trees and cleaning driveway pipes when, his nose started to bleed. Supervisor: w. L. Thompson
## 1292 04/10/2001 04:41 pm (sshort) employee stepped down from equipment roller when he twisted his left ankle. Mr. White had on foot on step and the other on the ground at the time of the incident. Supervisor: s. R. White
## 1293 04/10/2001 04:50 pm (sshort) employee was reaching for the faucet in employee breakroom; when she stuck herself with a knife cutting her left forearm. Supervisor: david chadwick
## 1294 04/10/2002 01:08 pm (fblackmo) employee dislocated his left shoulder while trying to start the pavement marking grinder. The grinder is equipped with a recoil pull type starting device. Supervisor; joe. S. Parker
## 1295 04/10/2002 01:20 pm (fblackmo) employee came into contact with poison ivy while investigating a drainage complaint. Supervisor: j. P. Ingram
## 1296 04/10/2002 01:34 pm (fblackmo) employee was picking up trash bags on hunt road when, one of the bags busted open and debris flew in his left eye. Employee was wearing his safety glasses. Supervisor: a. L. Smith
## 1297 04/10/2002 01:48 pm (fblackmo) employee was flagging traffic when a rock flew up from sweeper and hit him in the right eye. Supervisor: d. R. Summers
## 1298 04/10/2002 12:55 pm (fblackmo) employee got off tractor to pickup rocks and passed out. Supervisor: t. R. Burns
## 1299 04/11/2000 03:11 pm employee was removing (pulling) nylon cargo strap when strap became wedge causing a whiplash effect. Kinetic energy traveled down the strap to the cargo hook. The airborne hook struck employee causing cuts and bruises to his nose
## 1300 04/11/2000 03:28 pm employee was getting off of diesel distributor when he heard and felt a pop in his left knee. Supervisor: c. N. Edwards, jr 04/18/2000 08:55 am
## 1301 04/11/2000 11:53 am employee jumped off the end bent #2 on structure #2 and landed on the ground. He landed on the edge of a fin slope and fell backward landing on his head. Mr. Fulghum has head, neck, and upper back injuries. Supervisor: michae
## 1302 04/11/2001 01:22 pm (sshort) employee felt pain/pull in his lower right back on 4/3/01. Mr. Willis was turning to put mop bucket back when incident happened. Supervisor: r. E. Hamilton
## 1303 04/11/2001 01:37 pm (sshort) employee felt sharp pain/pull in lower back; when he bent down to pick up an oil cooler on 3/26/01. Supervisor: t. E. Deans, jr. & zeb narron
## 1304 04/11/2001 01:45 pm (sshort) employee was throwing away debris on shoulder of roadway; when a motorist assaulted him on 3/28/01. Mr. Kimball states for no apparent reason the motorist got out of his vehicle and begin striking him in the face. Superv
## 1305 04/11/2001 02:00 pm (sshort) employee was removing a multi-flora rose brush from roadway on 3/19/01; when a thorn penetrated through his leather work glove. Mr. Mcclung has a puncture wound in his left ring finger. Doctor seems to think puncture site
## 1306 04/11/2001 02:39 pm (sshort) employee was riding in truck with window down; when debris blew into his right eye. Mr. Wilkerson had just finished cutting down trees on sr 1306. Supervisor: a. S. Bailey
## 1307 04/11/2002 02:01 pm (fblackmo) employee was helping another employee to the state vehicle to be transported to nearest medical center. Employee was caring his and the other employees equipment when he mis-step in a terrain causing the injury to his b
## 1308 04/11/2002 02:16 pm (fblackmo) employee leaned into the saw as it was idling, reaching for a tree. Supervisor: patrick tuttle
## 1309 04/11/2002 02:33 pm (fblackmo) employee was getting out of the vehicle after conducting a road test when, his foot got caught in the carpeting of the van. Supervisor: joan j. Holland
## 1310 04/11/2002 03:07 pm (fblackmo) employee states, that while responding to a trouble call at nc 191 @biltmore square mall, a piece of a glass lense fell and hit his leg. Supervisor: gene allman
## 1311 04/11/2002 03:18 pm (fblackmo) employee was taking down a bulletin board when, she bent over to pick up the new board she fell hitting her head and neck. Supervisor: linda battle
## 1312 04/11/2002 03:29 pm (fblackmo) employee was shoveling asphalt when he felt pain in his lower back and left hip area. Supervisor: doug hill
## 1313 04/11/2002 03:45 pm (fblackmo) employee was working on state road 1412 and felt something hit right ear, employee tried to brush if off the object(bug) went into the ear canal causing pain. Supervisor: r. W. Lewis
## 1314 04/11/2002 04:00 pm (fblackmo) employee was standing beside paver in work zone. A johnston county maintenance flatbed crew cab came by too close and too fast striking employee with the side of the truck knocking employee down. Supervisor: c. H. Holloma
## 1315 04/11/2002 04:23 pm (fblackmo) employee was lifting instrument out of vehicle when he felt pain in his back area. Supervisor: bill price
## 1316 04/11/2002 12:35 pm (fblackmo) employee was helping employees change blade on moldboard of grader. Employee picked up one end of the blade and felt a sharp pain in his lower back. Supervisor; c. F. Edwards 02/19/2003 11:45 am (kbarefoo)
## 1317 04/11/2002 12:50 pm (fblackmo) employee was sliding a scale under the tire of a vehicle to be weighed for possible overload violation. Employee experienced pain in his lower back and right leg. Supervisor: ssg. Douglas shackelford
## 1318 04/12/2000 09:19 am employee was using a pitch fork to load leaves into back of dump truck; when he strained his lower back. Supervisor: j. V. Riddick
## 1319 04/12/2000 09:24 am employee complains of right thumb swelling, right arm and hand pain while keying on the computer. Supervisor: anita smith
## 1320 04/12/2000 09:30 am employee came in contact with poison ivy while sawing down a tree with poison plants on it. He has contact rash all over body. Supervisor: troy keener
## 1321 04/12/2000 09:37 am employee stepped on the edge of raised concrete slab near equipment shop twisting his left ankle. Supervisor: d. T. Childrey
## 1322 04/12/2000 09:48 am employee was installing a stop sign on 3/28/00. He was using a pick axe to pry broken stump out of ground, when the axe struck a rock causing the axe to bounce back striking his right knee. Supervisor: g. W. Williams
## 1323 04/12/2000 09:56 am employee was moving a traffic control sign in the wind; when she sprained her back. Supervisor: thomas l. Bohrer
## 1324 04/12/2000 10:05 am employee complains of pain in both ankles due to running during physical training. Supervisor: ssg. T. I. Hickman
## 1325 04/12/2000 10:20 am employee has a bruised left side rib from another employee falling onto his chest during a defensive tactic training. Supervisor: ssg. T. I. Hickman
## 1326 04/12/2000 10:28 am employee complaining of leg pains due to a formation run during physical training. Supervisor: sst. T. I. Hickman
## 1327 04/12/2000 10:36 am employee got sand in both eyes during a driver training exercise on the tracks of the academy. Supervisor: ssg. T. I. Hickman
## 1328 04/12/2001 09:23 am (sshort) employee was installing and lifting the end of a pipe; when he injured/strained his right wrist. Supervisor: w. H. Lynch
## 1329 04/12/2001 09:33 am (sshort) employee strained muscles in his lower back while lifting boxes on 3/29/01. Supervisor: r. E. Cox
## 1330 04/12/2001 10:05 am (sshort) employee bruised her left knee while climbing into tandem truck to check mileage on 4/3/01. Her right foot slipped on a mud covered step; while she was lifting her left foot up to the next step. Supervisor: k. R. Davis
## 1331 04/12/2001 10:15 am (sshort) employee injured/sprained his right ankle while being pulled from the water into a dive boat. He was participating in a routine underwater bridge inspection at time of incident. Supervisor: glenn williams
## 1332 04/12/2001 10:27 am (sshort) employee was performing a comparative density test on construction project on 4/6/01. Mr. Lowrance picked a 50 pound saddle weight and placed on the volumeter causing him to strain/sprain his right shoulder. Supervisor:
## 1333 04/12/2001 10:56 am (sshort) employee strained his lower back while lifting scales to weigh a truck on 4/4/01. Supervisor: ssg. D. C. Smith
## 1334 04/12/2001 11:05 am (sshort) employee was working on mounting a tire on a rim. When the rim moved; the tire tool slipped causing him to loose his balance and fall onto the concrete floor. Mr. Johnson has contusions on both arms. Supervisor: d. R. P
## 1335 04/12/2001 11:15 am (sshort) employee was clearing right of way on sr 1149. While he was walking back to his truck; the wind blew dirt/sawdust into his left eye. Supervisor: b. F. Sloan
## 1336 04/12/2001 11:32 am (sshort) employee was cutting a 1 inch expansion joint material with a pocket knife; when he cut his left index finger. Supervisor: t. J. Brooks
## 1337 04/12/2002 07:19 am (fblackmo) employee was operating a mower on March 14, 2002. Employee came in on March 15, 2002 and reported that he removed a tick off his right shoulder. Supervisor: larry koontz
## 1338 04/12/2002 08:00 am (fblackmo) employee was standing on the roadway inspecting the bridge project when the contractor backed his truck into him. Employee rolled out of the way to avoid being ran over. Supervisor: o. T. Anderson
## 1339 04/12/2002 08:16 am (fblackmo) employee ran off right side of road ad crossed back across roadway, going into ditch and under-pending truck. Hot asphalt spilled out of truck and burned employees left arm. Supervisor: j. R. Myers
## 1340 04/12/2002 08:40 am (fblackmo) employee was told to pull down on the counter weight. The cable had slack and the slack came out and the counter weight fell hitting employee on left hand. Supervisor: t. H. Swayne
## 1341 04/12/2002 08:52 am (fblackmo) employee states that while unloading supplies he stepped down from the rear bumper of the van placing all his bodyweight on his leg. Employee felt pain in his knee. Supervisor: capt. Keel
## 1342 04/13/2000 03:13 pm employee using a post hole digger when he felt a pop/pain in his lower back. He was digging hole down into clay when the digger clamped down causing the injury. Supervisor: darrell parson
## 1343 04/13/2000 03:26 pm employee was feeding brush into chipper when piece of chip blew into his right eye. Supervisor: r. E. Bennett
## 1344 04/13/2000 03:33 pm employee was driving dot vehicle when a private vehicles utility trailer became loose in employees lane. Employee could not avoid the trailer so he hit the trailer, and came to an abrupt halt. Supervisor: d. W. Jernigan
## 1345 04/13/2000 04:02 pm employee was lifting heavy objects when he strained his left arm. Supervisor: bobby sloan
## 1346 04/13/2000 04:19 pm employee was loading boxes of rubberized asphalt when he felt pains in his lower back. Supervisor: w. G. Wrenn
## 1347 04/13/2000 04:29 pm employee turned around to get a bucket when he felt pain in his lower back. Supervisor: l. T. Griggs
## 1348 04/13/2000 04:51 pm employee was removing debris from the highway when he cut his left index finger. Supervisor: 2nd lt. D. R. Brookshire
## 1349 04/14/2003 01:34 pm (fblackmo) employee states that the injury occurred to his back while, trying to move a swing anchor. Supervisor: m. J. Morris
## 1350 04/14/2003 01:48 pm (fblackmo) employee was exiting vehicle when, he slipped on steps causing the injury to his left knee. Supervisor: dale loflin
## 1351 04/14/2003 01:57 pm (fblackmo) employee states while hooking up an air tool to the air hose when, the tool slipped striking employee on his right wrist. Supervisor: samuel j. Gupton
## 1352 04/14/2003 02:09 pm (fblackmo) employee states his land hand middle finger was mashed while driving baseline irons. Supervisor: l. R. Absher
## 1353 04/14/2003 02:41 pm (fblackmo) employee states while moving a 55 gallon drum of orange degrease some of the materials splatter on his stomach and right leg. Supervisor: perry mitchell
## 1354 04/14/2003 03:38 pm (fblackmo) employee found two ticks on his left shoulder, the area became red and sore. Supervisor: kenneth redd
## 1355 04/14/2003 11:41 am (fblackmo) employee was cutting a stick with a pocket knife when, the knife slipped causing a laceration to the fourth finger on his left hand.. Supervisor: a. W. Childers
## 1356 04/16/2002 02:08 pm (fblackmo) employee states that while, under bridge #11 in vance county checking creosote timber piles with hammer, slipped on mud and left leg came out from under. Supervisor: r. L. Bowers
## 1357 04/16/2002 02:22 pm (fblackmo) employee was driving state vehicle while crossing nc 24 on dunn road when, a private vehicle failed to stop at red light and hit state vehicle in right rear of truck. Private vehicle left scene of accident. Supervisor:
## 1358 04/16/2002 02:36 pm (fblackmo) employee complained of left knee and right ankle pain after doing physical training was complete. Supervisor: k. King
## 1359 04/16/2002 02:50 pm (fblackmo) employee came into contact with poison oak while pulling brushes and trees off webb road in rutherford county. Supervisor: r. Powell
## 1360 04/16/2002 03:06 pm (fblackmo) employee states that while working with another employee that was pushing a tree over, it fell hitting her in the head. Supervisor: m. E. Greene
## 1361 04/16/2002 03:27 pm (fblackmo) following constant movement of arm in operation of a mover, experiencing pain in right arm. Supervisor: r. T. Mcmanus jr
## 1362 04/16/2002 03:41 pm (fblackmo) employee was prying down on a 5"nail bar when, bar slipped and employee fell forward striking underarm on 6x12 joist with all weight on joist causing the injury to his right underarm and shoulder. Supervisor: hugh c. Wil
## 1363 04/16/2002 11:44 am (fblackmo) employee was a passenger in a state vehicle when something flew in the window into his left eye. Supervisor: william rod friddle
## 1364 04/16/2002 11:59 am (fblackmo) employee was lifting a metal grate into truck when he felt pain in his lower back on right side. Supervisor: j. D. Fuller
## 1365 04/16/2002 12:16 pm (fblackmo) employee slipped on soapy water on concrete floor causing the injury to his left knee and ankle. Supervisor: r. Pittman
## 1366 04/16/2002 12:34 pm (fblackmo) employee was trying to unhook chain that attached asphalt edger to truck. Truck bed was up, but started coming down and finger was caught between chain and truck. Mashing finger. Supervisor: w. R. Loyd jr
## 1367 04/16/2002 12:46 pm (fblackmo) employee was putting old bent post on sign truck when employee dropped the post and metal chip flew into employees eye. Supervisor: jerome locklear
## 1368 04/16/2002 12:56 pm (fblackmo) employee was straightening post with twisting bar, bar slipped hitting employee in his right knee. Supervisor: b. T. Coble
## 1369 04/16/2003 09:33 am (fblackmo) employee came into contact with poison ivy while, cutting limbs on state road 2263. Supervisor: l. S. Carpenter jr
## 1370 04/16/2003 09:44 am (fblackmo) employee was working near another welder when, the flash from the welding causing his eyes to burn. Supervisor: kevin lamar cooke
## 1371 04/17/2002 07:16 am (fblackmo) employee was standing in front of bathroom door with a data collector in hand when, door opened striking collector which hit employee in the mouth chipping large tooth in front. Supervisor: m. E. Plummer
## 1372 04/17/2002 08:03 am (fblackmo) employee was operating a steel wheel roller over and asphalt patch when it overturned, injuring his right leg. Supervisor: r. L. Joyce
## 1373 04/17/2002 09:03 am (fblackmo) employee was cleaning steel plate with wire brush, plate slipped causing employees hand to strike the edge of the table. Supervisor: r. D. Sherrill
## 1374 04/17/2002 09:12 am (fblackmo) employee states, while chipping a weld piece of slag popped up hitting him on his left eye behind his safety glasses. Supervisor: kevin lamar cooke
## 1375 04/17/2002 09:22 am (fblackmo) employee states that he came into contact with poison oak while cutting a tree out of road way. Supervisor: norris cutrell
## 1376 04/17/2002 09:34 am (fblackmo) employee was tugging on a mail box trying to pull it up so ditch could be pulled by motor grader in order to install a driveway pipe. Motor grader was straddling the ditch adjacent to the mail box. Motor grader operato
## 1377 04/17/2002 10:59 am (fblackmo) employee was on a rock pile running a trackhoe, routine work caused him to experience pain in his back, neck, and affected his left shoulder. Supervisor: j. C. Perland
## 1378 04/17/2002 11:51 am (fblackmo) employee was attempting to put rubber track back on track drill while using an aw rod for prying. The track was engaged, the aw rod hit employee in left shin. Supervisor: t. P. Shelton
## 1379 04/17/2002 12:03 pm (fblackmo) employee states that while working in office yard, wind blew dust into her eyes. Supervisor: ken anderson
## 1380 04/17/2002 12:15 pm (fblackmo) employee was removing nails from hand rial boards. He was pulling a nail out of a board when, the bar slipped off nails causing him to lose his balance and stepped backwards on the nail. Supervisor; earl d. Bell
## 1381 04/18/2000 08:53 am employee was lifting 4 x 8 decking from back of a truck and laying sandbags; when he felt pain in his right side. Supervisor: a. W. Smith
## 1382 04/18/2000 09:10 am employee dropped an item and bent over to pick it up while closing truck door. The wind blew the door open and Mr. Price raised up striking his head on the door. He has a laceration on top of his head. Supervisor: arnold b.
## 1383 04/18/2000 09:15 am employee was lifting a 48 x 48 metal sign to put in back of truck when he pulled muscles in his lower back. Supervisor: william edward mcclendon, jr
## 1384 04/18/2000 09:21 am employee was unloading a truck when a foreign object flew into his right eye. Supervisor: ralph thomas mcmanus, jr
## 1385 04/18/2000 09:26 am employee has strain to right wrist and forearm due to repetitive motion on keyboard and mouse (cadd related injury). Supervisor: c. B. Little
## 1386 04/18/2000 09:41 am employee was doing field work surveying when he came in contact with poison oak on face, hands, and arms. Supervisor: david chang
## 1387 04/18/2000 09:45 am employee was loading appliances onto flatbed truck when he felt pain in his lower back. Supervisor: johnny r. Price
## 1388 04/18/2000 09:50 am employee was trying to dislodge wedged tailgate by pulling on it; when gate came loose pulling his left middle finger between the tailgate and chain. Supervisor: c. B. Lunsford
## 1389 04/18/2000 10:03 am employee was drilling a hole in concrete when the drill got hung, twisted out of his hands, and hit him in the face. Mr. Woody a laceration to his lip and a bruised right jaw bone. Supervisor: wayne l. Miller
## 1390 04/18/2000 10:08 am employee was trying to dislodge trash bags hung in bed of a dump truck. He pulled the tailgate open with his right hand using his left to grasp bags. The tailgate shut catching his left middle finger on bed of truck. Supervisor:
## 1391 04/18/2001 08:52 am (sshort) employee bent down to get something off the bottom shelf in ship store; when she heard a pop in his right knee. Supervisor: r. H. Mercer
## 1392 04/18/2001 08:59 am (sshort) employee was walking into the restroom; when she slipped and fell on wet floor. An inmate had just mopped the floor and failed to put "caution wet floor" signs down. Mrs. Harris sprained her left elbow. Supervisor: m.
## 1393 04/18/2001 09:07 am (sshort) employee was walking to unhook chain; when he stepped in mud and slipped/fell on a piece of glass. His left hand was cut on the outside of palm area. Supervisor: thomas burchell
## 1394 04/18/2002 02:37 pm (fblackmo) employee states that she slipped down stairs from were water has been spilled. Supervisor: pam guptill
## 1395 04/18/2002 03:19 pm (fblackmo) employee was operating a hot air lance in a crack pouring operation for the n. C. D. O. T. A lady driving through the work zone veered over into the lane where employee was working and the passenger side mirror struck his le
## 1396 04/18/2002 12:53 pm (fblackmo) employee states that he came into contact with the dust and fumes from asbestos. Supervisor: not stated
## 1397 04/19/2000 02:15 pm employee was walking across parking lot; when he felt something on his neck. He reached to feel his neck and found a spider. (spider bite to right back side of neck) supervisor: I. L. Baker
## 1398 04/19/2000 02:36 pm employee stepped from edge of roadway twisting his right knee. Supervisor: marty craig tillman
## 1399 04/19/2000 02:43 pm employee was on a hill inspecting bridge; when his foot got caught on a vine causing him to trip and fall on a rock. He injured his right knee at time of incident. Supervisor: don welborn
## 1400 04/19/2000 03:17 pm employee was entering the building when she slipped and fell on rubber mat. She has abrasions on her left leg, left arm and a bruise on her left jaw. Supervisor: tola bailey
## 1401 04/19/2002 07:11 am (fblackmo) employee states that while surveying a wooded area adjacent to I 77 and nc 73, unknowingly came into contact with poison oak. Supervisor: matt lauffer
## 1402 04/19/2002 07:23 am (fblackmo) employee was walking in front of state truck making a left turn to get in truck when toe part of employees' right shoe got tangled up with the back of his left shoe causing employee to fall on pavement. Supervisor: maxi
## 1403 04/19/2011 04:44 pm (slee) pov ran under sov. (single axle dump truck), between the front and rear tires. The rear tires ran up on the hood of the pov causing the sov to turn over on its side.
## 1404 04/21/2003 02:33 pm (fblackmo) employee was cutting and chipping brushes on embankment when, a rock fell striking employee in the back of the head. Supervisor: kim kephart
## 1405 04/21/2003 02:48 pm (fblackmo) employee was climbing up embankment, pulling trees, and brushing off chipper when, he felt pain in his lower back. Supervisor: j. C. Palmer jr
## 1406 04/21/2003 03:00 pm (fblackmo) employee states while working in a wooded area, he found a tick on his navel area. Supervisor: clay murray
## 1407 04/22/2003 02:34 pm (fblackmo) employee states while sitting in traffic at intersection a private vehicle hit him in the rear. Supervisor: o. T. Anderson
## 1408 04/22/2003 02:48 pm (fblackmo) employee states while walking she felt a sharp pain in her right knee and was unable to move. Supervisor: chris peoples
## 1409 04/22/2003 03:58 pm (fblackmo) employee was sitting at intersection when, his vehicle was struck by another vehicle. Supervisor: kevin h. Sebold
## 1410 04/23/2001 11:59 am (sshort) employee was loading bands for pipe operator loader on 3/23/01. The loader bucket tilted causing Mr. Dowdle's left foot to get caught under the bucket. Supervisor: a. E. Pruitt
## 1411 04/23/2001 12:06 pm (sshort) employee strain/sprain his left wrist while pushing himself across seat in truck on 4/5/01. The handle was broken and he was moving across the seat to open the door for the mechanic at time of incident. Supervisor: j. E.
## 1412 04/23/2001 12:11 pm (sshort) employee was delivering equipment to basic training dmv site on 3/26/01. Ms. Johnson pulled the classroom door open; when the edge of the door struck her in the right kneecap. She refused medical treatment. Supervisor:
## 1413 04/23/2001 12:18 pm (sshort) employee sprained his left wrist on 3/12/01. Mr. Thagard failed to reduce speed while operating a state work vehicle. Supervisor: randy k. Wise
## 1414 04/23/2002 07:38 am (fblackmo) employee was installing a pine on the new construction site on state road 1599 a. Employee was straightting the pipe in the ditch when, he felt pain in his lower back on the right side. Supervisor: larry lovingood
## 1415 04/23/2002 08:18 am (fblackmo) employee was driving state vehicle along us 74 eastbound, near us 19 when, a private vehicle struck him in the rear. Supervisor: scott cook
## 1416 04/23/2002 08:31 am (fblackmo) employee was walking in warehouse when, he tripped over a platform to the loading dock causing him to fall. Employee states that the platform was higher than the floor. Supervisor: b. F. Kizziah
## 1417 04/23/2002 08:56 am (fblackmo) employee was mowing around the paw creek facility using a tractor mower when, he was bitten by a n insect. Supervisor: c. D. Childress
## 1418 04/23/2002 09:10 am (fblackmo) employee states that by removing the weight scale out of his patrol vehicle on various occasion has caused the injury to his right shoulder. Supervisor: c. T. Everett
## 1419 04/23/2002 09:29 am (fblackmo) employee states that while removing weight scale in and out of patrol car caused the injury to his right shoulder. Supervisor: ssg. Quigley
## 1420 04/23/2002 09:39 am (fblackmo) employee states that while walking up stairs to the back office entrance of the building, she tripped over the door mat, causing her to fall hitting the back of the door. Supervisor: judy arnold
## 1421 04/23/2002 09:50 am (fblackmo) employee was working on bridge number 178, moore county, when he was bitten by a tick on his left leg. Supervisor: j. P. Callicutt
## 1422 04/23/2002 10:34 am (fblackmo) employee was holding his flashlight with his left hand in a cradling position. Employee placed his left hand over the top of his weapon hand instead of underneath. Upon firing the first round, the slide came back and s
## 1423 04/23/2002 10:57 am (fblackmo) employee was welding on a mower deck, he left and went home. In the middle of the night he felt like something was in his eyes. Alamance county regional hospital found eyes burned from the welding. Supervisor: c. A. Owe
## 1424 04/23/2002 11:39 am (fblackmo) employee was cutting a tree for mudbug access. As the tree began to fall, a rotten dead tree directly behind it became entangled in the branches. The dead tree was pulled down and struck employee in the back of the hea
## 1425 04/23/2002 12:14 pm (fblackmo) employee states that while installing a sign on lynch store road in orange county he found a tick attached to his right side. Supervisor: b. T. Coble
## 1426 04/23/2003 07:30 am (fblackmo) employee was moving boxes of manuals for re-shipment when, she experienced pain in her back. Supervisor: c. W. Bridgers jr
## 1427 04/23/2003 07:42 am (fblackmo) employee was trying to dis-lodge rocks from the bed of a dump truck by shaking the body of the bed while it was being raised when, he hit his head against the cab. Supervisor: robby taylor
## 1428 04/23/2003 08:03 am (fblackmo) employee was operating a backhoe when, he felt pain in his neck area from all the turning and twisting. Supervisor: m. H. Thomas
## 1429 04/24/2001 01:43 pm (sshort) employee was helping rebuild a front end loader bucket in an enclosed area. Mr. Jones was welding on 1/11/01; when he burnt his eyes from the welding rays. Supervisor: a. D. Cloer 04/24/2001 04:48 pm (sjerniga) los
## 1430 04/24/2001 01:55 pm (sshort) employee was making repairs to a signal controller on 4/11/01. He was attempting to step out of pickup bed; when his foot slipped causing him to fall. Mr. Batchelor broke his teeth, bruised his lip, hit his head, and str
## 1431 04/24/2001 02:06 pm (sshort) employee states she is having pains in her left arm/elbow, but no pains in her fingers. She believes the pain is a result of repetitive keying at work. Supervisor: tracey dorsey
## 1432 04/24/2001 02:17 pm (sshort) employee stated that he was seated at computer and stretched his arms striking fish hook that was hanging on the wall. The fish hook became embedded in his left little finger. Supervisor: j. H. Moore
## 1433 04/24/2003 02:31 pm (fblackmo) employee states while jumping a ditch, he fell causing the injury to his right hip area. Supervisor: m. E. Plummer
## 1434 04/25/2000 02:22 pm Mr. Smith was acting as a spotter for an operator of a dump truck. The driver had lowered the bed when he felt the truck slip. He put the truck in reverse by accident striking Mr. Smith causing injuries to his left ribs and ches
## 1435 04/25/2000 12:49 pm employee was stepping down out of truck when he sprained his right ankle. Supervisor: j. D. Fuller
## 1436 04/25/2001 02:42 pm (sshort) employee was conducting a road test on 2/6/01. While turning off 71st school road onto media drive he was rear ended by another vehicle. The impact made the seat break into a reclining position causing pain and stiffness
## 1437 04/25/2001 02:52 pm (sshort) employee was walking to close cabinet door on 4/9/01; when dust particles flew into his right eye. Supervisor: danny king
## 1438 04/25/2001 03:05 pm (sshort) employee has pain in upper back, left shoulder, forearm, and sternum due to repetitive motion work on job. She also has pain/stiffness in her fingers and both wrists. Supervisor: marlene fletcher
## 1439 04/25/2001 03:13 pm (sshort) employee was pushing carryall door on 4/11/01; when his left wrist popped because the handle on the door was jammed. Supervisor: steve gosnell
## 1440 04/25/2001 03:21 pm (sshort) employee bruised his right knee/leg while climbing scaffolding on job site. Supervisor: t. R. Smith
## 1441 04/25/2001 03:27 pm (sshort) employee was loading plywood on flat bed truck on 4/10/01. Mr. Smith placed a piece of wood on stack to count; when the plywood flipped back and struck him on his right shin/ankle area causing bruising. Supervisor: r. P.
## 1442 04/25/2001 03:33 pm (sshort) employee has continuous pain in right hand/wrist and shoulder due to repetitive motion at work. Ms. James has uses the mouse nonstop while working on cadd drawings. Supervisor: gary parker
## 1443 04/25/2001 04:17 pm (sshort) employee was fixing antenna on crew cab truck; when he struck/bruised his left elbow on the door. Supervisor: a. S. Bailey
## 1444 04/25/2001 04:24 pm (sshort) employee was removing a sign from post on 4/19/01. He struck the sign with a hammer to loosen it; when the sign flew up and hit/cut his right thumb. Supervisor: thomas e. Johnson
## 1445 04/25/2001 04:29 pm (sshort) employee was working under bridge in person county on 3/19/01; when he fell off scaffolding bruising and sprained his left leg. Supervisor: elton stewart
## 1446 04/25/2002 02:17 pm (fblackmo) employee was picking up litter when the pallet slid, hitting him in the leg. A splinter stuck into employees right thigh. Supervisor: t. J. Spicer
## 1447 04/25/2002 03:17 pm (fblackmo) employee was doing pre trip inspection on c. D. L. Rt. Test while, walking around the truck marking the test sheet she tripped over the orange cone and fell to the ground on her hands and knees. Supervisor: julia b. Harri
## 1448 04/25/2002 03:27 pm (fblackmo) employee was raking asphalt on union church road when, he felt pain in his back. Supervisor: l. S. Carpenter jr
## 1449 04/25/2002 09:11 am (fblackmo) employee was operating front end loader on the yard. Employee went to exit when he felt pain in his back. Supervisor: r. E. Langley
## 1450 04/25/2002 09:32 am (fblackmo) employee states that he pinched his left hand center finger while trying to un-jam chute. Supervisor: d. A. Hensley
## 1451 04/25/2002 09:47 am (fblackmo) employee was digging hole with post hole digger and jammed right wrist. Supervisor: roger l. Arrowood
## 1452 04/25/2002 09:58 am (fblackmo) employee states that while setting slope stakes he came into contact with poison oak. Supervisor: w. T. Grindstaff
## 1453 04/25/2002 11:15 am (fblackmo) employee was standing on a metal catch basin grate, cleaning off debris with a shovel. One of the rung of the grate was missing. Employee stepped back and his right leg slipped thru the opening in the grate and his rig
## 1454 04/25/2002 11:31 am (fblackmo) employee states that he came into contact with poison oak while cutting brushes with an axe on the outer loop project in cumberland county. Supervisor: m. E. Plummer
## 1455 04/26/2000 08:46 am employee was stepping into a two foot deep trench to check for stability of soil; he slipped he strained his lower back. Supervisor: david b. Harrington
## 1456 04/26/2000 08:58 am employee was reaching for an object in a desk drawer; when he struck his middle finger on a piece of wood chisel. He has a laceration (deep cut) requiring sutures. Supervisor: john t. Stallings
## 1457 04/26/2000 09:38 am employee was cutting wood when his left foot slipped, causing the chain from the chainsaw to cut his left knee. Supervisor: c. B. Little
## 1458 04/26/2000 10:07 am employee was cleaning out hopper of a lee boy paving machine; when the auger caught a piece of rebar knocking him off balance catching his foot in the auger. His coworkers shut off the machine before the auger went to discharge ar
## 1459 04/26/2000 10:15 am employee fell and twisted/sprained his right knee while climbing steps. Supervisor: lt. T. S. Collins
## 1460 04/26/2000 10:33 am employee was in the bottom of a ditch working on a construction project; when he was bitten by fire ants (hymenoptera stings) on his left hand. Supervisor: g. L. Rogerson
## 1461 04/26/2000 10:38 am employee was driving moving equipment traveling on nc 17, n with the window down. A bee flew into the truck causing him to jump hurting his back. Supervisor: b. W. Whitaker
## 1462 04/26/2002 07:16 am (fblackmo) employee was cutting open bags of calcium chloride to spread on unpaved road for dust control. Wind blew some material into his eye or some of the material might have been on gloves and went into his eye while pushing g
## 1463 04/27/2000 08:46 am employee was hit by a private driver on sr 1326 in cherokee county on 4/10/00. Employee was moving debris from road when a driver hit him knocking him into the windshield and over the car. Mr. Chastain has a fractured/chipped lef
## 1464 04/27/2000 08:54 am employee was sawing a tree and removing it from the roadway; when he came in contact with poison ivy plants. He has contact rash on both arms. Supervisor: w. D. Laughter
## 1465 04/27/2000 09:03 am employee was flagging traffic when he notices a tick on his left arm. He removed the tick and later a spot appeared which he treated with first aid. After no improvement employee felt medical treatment was needed. Supervisor:
## 1466 04/27/2000 09:11 am employee was clearing trees from right of way when he came in contact with poison ivy. He has contact rash on his right forearm. Supervisor: ralph thomas mcmanus, jr
## 1467 04/27/2000 09:15 am employee was stepping down from dump truck; when his foot slipped he fell on his left leg and felt pain in his lower back. Supervisor: william edward mcclendon, jr
## 1468 04/27/2000 09:21 am employee was loading straw onto a truck; when his foot slipped between two bales of straw causing strain to his lower back. Supervisor: g. M. Fisher
## 1469 04/27/2000 09:27 am employee was cutting trees when she came in contact with poison ivy plants. She has contact rash on both arms, back of shoulders and her buttocks. Supervisor: alvin e. Pruitt
## 1470 04/28/1999 01:08 pm employee was cleaning tar kettle when spring popped off front wheel stand of the kettle. This caused it to fall on employees front right leg.
## 1471 04/28/1999 01:21 pm air entraining agent was placed in the tool box of another employee's vehicle on March 11. On March 17, eht employee (Mr. Lange) consumed the agentt when he thought it was tea.
## 1472 04/28/1999 03:18 pm employee was lifting freight as usual and later experienced some hip pain not associated with lifting. Employee went home and was informed by employee of physicians analysis on April 14, 1999 at 67:00 pm.
## 1473 04/28/1999 03:34 pm employee was loading grader on the lowboy trailer when his foot slipped on wet metal. This caused him to fall and sprain his wrist.
## 1474 04/28/1999 03:46 pm employee stepped into hole and lost his balance. He was reaching for metal pipe to regain balance.
## 1475 04/28/1999 04:02 pm injured employee was helping unload 12" rcp. The pipe had to be rolled over so the backhoe could pick it up. The pipe shifted and caught the employee's finger between two pieces of pipe.
## 1476 04/28/1999 04:17 pm employee was walking in grass and kicked a slope stake. His foot was caught in the guard stake and the slope stake while stepping. He tripped, fell, and hit elbow.
## 1477 04/28/1999 04:34 pm employee was flagging traffic when object blew into her left eye.
## 1478 04/28/1999 10:10 am employee was standing on a fourteen foot fiberglass ladder at the six foot level removing a panel of an overhead door. Possible injury to shoulder, back, and/or ribs.
## 1479 04/28/1999 10:36 am employee was manually shoveling asphalt on a primary road when he noticed something in his left eye. He ignored it for several hours, but after it persisted he reported it to his supervisor. The supervisor took him for treatment
## 1480 04/28/1999 11:00 am employee was loosening bolts and opening paint barrels. Employee felt a sharp pain in the lower half of his back.
## 1481 04/28/1999 11:59 am employee was setting slope stakes outside on a bank. As he walked up slope he soil gave way, causing him to fall. He then grabbed a tree branch straining his forearm.
## 1482 04/28/1999 12:34 pm employee was going to wash his windshield and the handle that he was using to pull himself up on the tandem broke. The employee fell in the engine area of the tandem, the hood was raised at the time.
## 1483 04/28/2003 02:49 pm (fblackmo) employee was working on hydro seeder taking control valve off. Employee was climbing down ladder caring the valve when, he mis-judge his step causing the injury to his abdominal area. Supervisor: g. E. Morris
## 1484 04/28/2003 03:07 pm (fblackmo) employee states that, he cut his thumb on left hand while using a bush axe. Supervisor: h. R. Boles
## 1485 04/28/2003 03:33 pm (fblackmo) employee was helping to hold the jackhammer up against side of bridge rail while another employee was operating hammer. The bit went through the rail, hammer slammed against rail and mashed employees left thumb. Superv
## 1486 04/28/2003 11:33 am (fblackmo) employee was a passenger in dot pick-up that had stopped on us 401 by pass awaiting traffic when, a private vehicle failed to stop striking dot pick up in the rear. Supervisor: r. D. Pittman
## 1487 04/28/2003 12:07 pm (fblackmo) employee was struck in the rear by a private vehicle while waiting for mobile home to cross bridge. Supervisor: r. D. Pittman
## 1488 04/29/1999 02:11 pm employee was assisting mechanic in loading a tractor tire on a service truck. On a later date, (March 20th), he felt a sharp pain in his lower back.
## 1489 04/29/1999 02:34 pm employee was trying to release a jack hammer from the concrete. He was pulling up and down when he sprain his back.
## 1490 04/29/1999 03:00 pm employee was operating a pan and was backing up onto a slope, when weight shifted. This caused the pan to rollover. The employees shoulder struck the top of cab and rearview mirror.
## 1491 04/29/1999 03:11 pm employee was walking down an embankment when his foot slipped. Employee sat down on the ground for a while and was unable to get up immediately. He then felt a sharp pain in the middle of his back. There was loose dirt on the em
## 1492 04/29/1999 03:23 pm employee reached up with left hand to get a pen from sun visor felt sharp pain in his left shoulder.
## 1493 04/29/1999 09:46 am possible carpal tunnel syndrome caused by writing daily diaries and signing tickets over the past 35 years.
## 1494 04/29/1999 10:07 am while employee was cutting up old carteret wheel house with a torch, a metal object fell into his left ear.
## 1495 04/29/1999 10:28 am employee was climbing up the side of a dump truck to put pins in the tailgate. His right foot slipped and he lost his balance. He fell on pavement hitting his head and his back.
## 1496 04/29/1999 10:44 am employee was checking linkage at the air cylinder for loose play (the tailgate would not open). The cylinder released and pinched, mashed, cut right little finger.
## 1497 04/29/1999 10:57 am employee was using a shovel; when he reached back with it and cut his left pinky finger on a bush ax. The ax was held by another employee standing near by.
## 1498 04/29/2010 10:59 am (slee) employee was operating broom sweeper on sr 1912, blind bridge road. Pov traveling 50-60 mph crashed into back of sweeper. Pov knocked sweeper into the ditch. Other person involved was isabed dominquez, 1401 blind bridge r
## 1499 04/30/1999 03:48 pm employee was riding in rear bed of a kawasaki mule. He crossed a bad rut throwing the employee against metal frame. This caused him pain in lower back with a possible occult rib fracture. 03/25/2003 10:36 am (kbarefoo)
## 1500 04/30/1999 04:08 pm employee was on the maintenance yard. The employee stepped backward, tripped over the edge of the sidewalk and fell on her hip.
## 1501 04/30/1999 10:07 am employee was in stock room and bent over to pick up a test on the floor. When she stood up (with the aid of the shelf), she felt pain and heat underneath my arm and her fingers went numb.
## 1502 04/30/2001 02:51 pm (sshort) employee was struck on his left knee on 4/23/2001. He was cutting trees with chainsaw; when the tree kicked back striking Mr. Blanton. Supervisor: m. H. Brewer
## 1503 04/30/2002 07:31 am (fblackmo) employee was going to sit on lounge couch and mis-judged location and fell to the floor. Supervisor: t. L. Gray
## 1504 04/30/2002 07:44 am (fblackmo) employee was brushing around culvert number 101 in cumberland county. Employee stepped in unseen hole that had grass growed over it, causing employee to twist and hurt left knee. Supervisor: keenie covington
## 1505 04/30/2002 08:33 am (fblackmo) employee in the stockroom getting broom to sweep the floor. Employee got his foot tangled with the broom, causing him to fall to the floor, cutting left eye. Supervisor: c. C. Denton
## 1506 04/30/2002 08:44 am (fblackmo) employee stepped on uneven surface in parking lot. Twisted ankle on left foot. Supervisor: d. I. Clapp
## 1507 04/30/2002 09:14 am (fblackmo) employee has experienced a chronic dermatitis over his entire body. The cause is unknown and the of contact is also unknown. As a result it is also unknown if this is a job related incident. Employee routinely works I
## 1508 04/30/2002 09:28 am (fblackmo) employee was helping move extension ladder that was in upright position. Ladder got over-balanced and employee strained muscle in his neck trying to keep the ladder from falling. Supervisor: w. D. Watkins
## 1509 04/30/2002 09:37 am (fblackmo) employee states that, lost footing while on top on high bank and slid down embankment for about 20' then rolled 20' feet end over end to bottom landing on rear. Supervisor: r. D. Hensley
## 1510 04/30/2003 02:08 pm (fblackmo) employee was working with ground wire when, the hit him in his left eye. Supervisor: marty headen
## 1511 04/30/2003 02:18 pm (fblackmo) employee was exiting truck when, he slipped and fell causing the injury to his right knee. Supervisor: greg godwin
## 1512 04/30/2003 04:20 pm (slee) employee was operating a pan on a grading project. He was driving down a dirt road when the hydraulic hose on the right steering column busted. He lost control, running off of the road, to the right hitting the ditch and e
## 1513 04/30/2003 11:08 am (fblackmo) employee states, she was conducting audits in concord and kannapolis nc area when, she slipped and fell. Supervisor: will williamson
## 1514 04/30/2003 11:58 am (fblackmo) employee states while repairing leaks he, felt pain in his left shoulder area. Supervisor; d. Ferguson
## 1515 04/30/2003 12:41 pm (fblackmo) employee was lifting steel post into back of pick up truck when, he experienced pain in his lower back. Supervisor; ray smith
## 1516 05/01/2000 02:25 pm employee was operating a jackhammer when he felt a sharp pain in his lower back (right side). Supervisor: al smith
## 1517 05/01/2000 02:32 pm employee was moving the fork on the forklift; when he mashed his left middle finger causing his nail to be removed. In order to lift the fork, he had to shake it and then pick it up. Supervisor: j. D. Bell
## 1518 05/01/2000 03:00 pm employee was operating a pan on a grader job; when he stepped off he sprain his left knee. Supervisor: davis c. Diggs
## 1519 05/01/2000 03:16 pm employee was installing a boom to lift tack tank up; when an inmate pulled the hose to fast causing the handle to hit employee in his right wrist (contusion). Supervisor: bruce k. Dyer
## 1520 05/01/2000 04:07 pm employee was using utility knife to cut tape when the blade was pulled across the left ring finger. Employee was not firmly holding or securing the item being cut. Supervisor: dan spurling
## 1521 05/01/2000 04:13 pm employee was picking up a bale of straw under a shoot; when bale came down striking employee on right knee. Supervisor: keith hill
## 1522 05/01/2000 04:20 pm employee was cutting a 3" tree that was leaning into right of way with a bush axe. The bush axe twisted causing pain in his right shoulder and arm. Supervisor: k. L. Anderson
## 1523 05/01/2001 10:29 am (sshort) employee was on back of spreader cleaning out frozen salt using a silt fence post on 3/6/01. After cleaning the spreader, Mr. Welch threw the post down and started climbing off the spreader. The employee lost his footing o
## 1524 05/01/2001 10:40 am (sshort) Mr. Dawkins was diagnosed with an allergic conjunctivitis in his left eye; due to irritation while operating a mower while cutting rye grass. Supervisor: charles frank vick
## 1525 05/01/2001 10:48 am (sshort) employee was removing a rusted, frozen nut with a hammer and chisel on 4/23/01. The nut broke free with great speed, and it became airborne. It glanced off of metal rail striking employee in the mouth breaking his left f
## 1526 05/01/2001 11:01 am (sshort) employee was on pipe trying to unhook cable; when he felt pain in his right lower back. Supervisor: coleman c. Coggins
## 1527 05/01/2001 11:07 am (sshort) employee was operating a boom mower; when he experienced total body numbness. He stopped the mower and attempted to dismount when he lost consciousness and fell onto roadway. Supervisor: r. D. Smith, jr
## 1528 05/01/2001 11:21 am (sshort) employee sprain/twisted his left knee while turning towards gas pumps on 4/25/01. Officer vinson has just stepped out of his patrol car to pump gas at time of incident. Supervisor: sgt. Cynthia floyd
## 1529 05/01/2001 11:28 am (sshort) employee was walking on boardwalk; when he tripped and fell on warped board and fractured his left finger. Supervisor: t. L. Gray
## 1530 05/01/2003 02:24 pm (fblackmo) employee was giving a drivers' exam when, the customer hit the brake instead of the gas causing the injury to his back. Supervisor: penny boren
## 1531 05/01/2003 02:41 pm (fblackmo) employee states while lifting bag of lime he, felt pain in his lower back area. Supervisor: keith hill
## 1532 05/01/2003 02:53 pm (fblackmo) employee states his left hand became injured while cleaning the top of a tandem dumb truck. Supervisor: archie lee smith
## 1533 05/01/2003 03:08 pm (fblackmo) employee was stepping across a pipe when, he slipped and fell causing the injury to his right knee. Supervisor: h. E. Worley
## 1534 05/01/2003 03:18 pm (fblackmo) employee states while conducting a cdl skills exam, he injured his right hand. Supervisor: gerald r. Holland 09/17/2003 10:53 am (gwhite) doctor's urgent care referring bryant matthewson to cape fear ortho for ev
## 1535 05/02/2001 08:46 am (sshort) employee cut his right index finger, while qualifying with off duty and shooting weak handed slide. The weapon and struck his finger. Requiring 4 stitches to close laceration. Supervisor: lt. Snypes
## 1536 05/02/2001 09:00 am (sshort) while cutting brush from right of way on 4/24/01, Mr. Hildreth was bitten by a bee or fire ants on his left leg. Supervisor: h. M. Thompson
## 1537 05/02/2001 09:20 am (sshort) employee was operating a jackhammer on hard asphalt; when he felt a sharp pain in his groin. Supervisor: a. L. Smith
## 1538 05/02/2001 09:25 am (sshort) employee has pain and swelling in both wrists/hands and she has numbness in her right hand due to repetitive typing at work. Supervisor: jere e. Hyder
## 1539 05/02/2001 09:31 am (sshort) employee was removing a radiator from bulldozer on 4/19/01. He placed his foot on the track pad to pull himself up; when his foot slipped causing him to scrap his lower left leg. Supervisor: r. W. Feher, jr
## 1540 05/02/2001 09:43 am (sshort) employee was staking radius on us 70; when a foreign object blew into his left ear. The wind was blowing extremely hard on 4/17/01. Mr. Daniels states his left ear became uncomfortable and could not hear as well. Superv
## 1541 05/02/2002 01:12 pm (fblackmo) employee states that while shoveling rocks out of road on state road 1768 he, felt pain in his lower back. Supervisor: noel a. Chilton
## 1542 05/02/2002 01:24 pm (fblackmo) employee was working on road and noticed 2 ticks on his left upper back and right side of chest. R. A. Ellington
## 1543 05/02/2002 11:54 am (fblackmo) employee was working on state road 1193 dot crew was cutting right of way. Tree had been felled across the road with cut end on top of bank. Employee was acting as ground guide for dump truck towing brush chipper. A 1
## 1544 05/03/1999 01:30 pm employee holding steering wheel for long lengths of time caused carpal tunnel in both hands and wrists. Machines/vehicles used: trackhoe, backhoe, grader, pan (scraper).
## 1545 05/03/1999 01:58 pm examiner garrett was sitting at her desk, customer walked over to her asking for a road test. Upon inspecting customers insurance form, examiner garrett explained the form was no good since it was dated 11/98. Customer snatched fo
## 1546 05/03/1999 02:53 pm employee was tapping a grade stake with bush axe, employee hit short splitting grade stake and cutting his left index finger.
## 1547 05/03/1999 08:25 am employee was delivering warrants when Mr. Orr (who is know to have hepatitis c); deliberately coughed in his face.
## 1548 05/03/1999 08:41 am employee was giving a driving test to a customer (in order to prevent an accident), Mr. Lanier grabbed the steering wheel, twisting his left arm and elbow.
## 1549 05/03/1999 12:56 pm while attempting to put some equipment from one side of fence to another, I lifted a bush axe up and it caught on some vines and slipped out of my hand and then the axe landed on the fence and bounced off the fence and the handle hi
## 1550 05/03/2011 11:57 am (slee) when sov slowed down for traffic, pov failed to slow down it hit sov in the rear. 05/03/2011 02:56 pm (slee) other person: marget francisco, winston-salem, 27127, 336-201-2666. 5/3/2011 06:07 pm (barnes) employee
## 1551 05/04/1999 03:15 pm employee was getting into a trac-hoe, when he lost his footing and fell to the ground, hitting a rock. Neck and middle of back injury. 02/01/2000 01:11 pm
## 1552 05/04/1999 04:20 pm employee reached to turn on light switch and struck metal cover cutting right little finger.
## 1553 05/04/2001 09:28 am (sshort) employee was helping put up concrete forms for a pipe headwall; while standing on 2x6's not nailed down. The 2x6 slipped when he stepped on it, causing him to lose his balance and fall 4-5 feet. Mr. Ervin fractured his r
## 1554 05/04/2001 09:34 am (sshort) employee was cutting down trees with a chainsaw on 4/24/01; when the tree kicked back and fell on Mr. Fox's left leg. Supervisor: bill boone
## 1555 05/04/2001 09:43 am (sshort) employee was performing surveying activities (walking up and down slopes) when he strained his right achilles tendon/ankle. Supervisor: kelly a. Elliott
## 1556 05/04/2001 09:58 am (sshort) employee has second degree burns on his right hand due to an accident on 4/9/01. Someone put a strap from the lumber on back of the crew cab; and it fell on the battery of the generator. He automatically grabbed the stra
## 1557 05/04/2001 10:09 am (sshort) state truck was turning left on highway 19; when a summit truck truck it from behind. Mr. Byrd was a passenger and sustained multiple contusions on his body. Supervisor: r. E. Bennett
## 1558 05/04/2001 10:15 am (sshort) employee slipped and fell at work on 4/20/01. Ms. Turner was entering room 108 when she lost her balance. She grabbed the wall for protection and cut her hand, and fell on her left side. Ms. Turner has injuries to her h
## 1559 05/06/1999 03:22 pm employee was cutting a top from a plastic bottle when the knife slipped and cut two fingers. (left thumb and left index finger)
## 1560 05/06/2003 02:16 pm (fblackmo) employee was picking up trash from beside the road when, he felt pain in his lower back area. Supervisor: j. P. Ingram
## 1561 05/06/2003 08:30 am employee states while leaning over to lift sign he, felt pain in his lower back area. Supervisor: todd f. Whitaker 04/08/2004 01:48 pm (gwhite)
## 1562 05/06/2003 09:01 am (fblackmo) employee states while trimming and clearing bushes one of the limbs poked him in his right eye. Supervisor: t. K. Wheeler
## 1563 05/06/2003 09:11 am (fblackmo) employee states the injury occurred to his right thumb while trying to un-stop the chipper. Supervisor; w. H. Lynch
## 1564 05/06/2003 09:21 am (fblackmo) employee was repairing a loop for traffic sign when, he came into contact with poison ivy. Supervisor: c. D. Rice
## 1565 05/06/2003 09:33 am dot crew was picking up debris on us 501 north in right lane when, a private vehicle struck the attenuator causing the injury to employees neck and back area. Supervisor: clyde h. Wintead
## 1566 05/06/2003 09:46 am (fblackmo) employee was cutting hedges and weeds around bridge when, he came into contact with poison ivy. Supervisor: t. J. Davis
## 1567 05/06/2003 10:14 am (fblackmo) employee states while shoveling cold mix she, felt pain in her right leg. Supervisor: r. J. Hollifield
## 1568 05/06/2003 10:53 am employee was straightening bent sign post in front of asphalt storage tank. While pulling post by hand, post broke off at ground level, causing employee to fall backwards, striking head on rear bumper of pick up truck. Supervisor:
## 1569 05/06/2003 11:50 am (fblackmo) employee states while operating a dump truck something bit him on his left elbow area. Supervisor: w. E. Mcclendon jr
## 1570 05/06/2003 12:04 pm (fblackmo) employee states his right arm struck the chain saw. Supervisor: jack l. Matheny
## 1571 05/06/2003 12:20 pm (fblackmo) employee was adjusting coulter on a no-till grain drill when, the gears in the ratchet he was using slipped causing the injury to his right thumb. Supervisor; glenn koepp
## 1572 05/06/2003 12:30 pm (fblackmo) employee was cutting a pine tree as other employees was pushing the tree. The tree went to the ground, hit a log and striking employee in his chest area. Supervisor: g. W. Johnson
## 1573 05/07/2001 01:52 pm (sshort) employee slipped off bumper of truck and sprained/twisted his right knee. Supervisor: kenny williams
## 1574 05/07/2001 02:00 pm (sshort) employee was struck by a private vehicle on 4/26/01. The employee was inside a parked van when the accident happened. Mr. Adams has several injuries to his head and back. Supervisor: douglas r. Mcneal
## 1575 05/07/2001 11:21 am (slee) while entering curve employee met oncoming car taking evasive action he went to left side of road running into ditch, trying to regain control, came back on road causing vehicle to turn on its side in center of road.
## 1576 05/07/2002 07:11 am (fblackmo) employee was riding in the right front passengers seat while conducting a road test. The driver of another vehicle failed to yield the right of way of an oncoming vehicle and struck the vehicle in the passenger side. S
## 1577 05/07/2002 07:31 am (fblackmo) employee was taking sign post apart when he dropped the post causing the injury to fingers on left hand. Supervisor: jerome locklear
## 1578 05/07/2002 07:47 am (fblackmo) employee was struck in chest by stabilizers machine while setting up. Supervisor: charles whitfield
## 1579 05/07/2002 08:04 am (fblackmo) employee put right root on the tailgate of truck to get in bed. Foot slipped off causing the injury to his right knee. Supervisor: michael e. Brady
## 1580 05/07/2002 08:29 am (fblackmo) centerline truck was traveling south on nc 94 in tyrrell county when it met a eastern fuels tanker truck heading north, when passing each other the mirrors struck breaking both mirrors causing glass to fly back hitting
## 1581 05/07/2002 08:42 am (fblackmo) employee states that while loosening bolts on mold board motor grader, the wrench slipped mashing his right thumb. Supervisor: s. Stepp
## 1582 05/07/2002 08:54 am (fblackmo) employee was removing a bundle of thread rods with another employee. Employee squatted and lifted one end of the bundle when he felt pain in his chest on the left side. Supervisor: t. J. Davis
## 1583 05/07/2002 09:05 am (fblackmo) employee states that while cutting brushes around sign post that she came into contact with poison oak. Supervisor: roger l. Arrowood
## 1584 05/07/2002 09:16 am (fblackmo) employee was using a handsaw while repairing a gate stand operator when something flew into his left eye. Supervisor: nils l. Long
## 1585 05/07/2002 09:26 am (fblackmo) employee was unloading pipe pulled pipe off trailer with chain resulting in hand being caught between pipe. One pipe loaded inside larger diameter pipe. Supervisor: greg g. Caudill
## 1586 05/07/2002 09:37 am (fblackmo) employee was walking down a small hill when he slipped on some debris left by a road patching crew. Supervisor: mojdeh mashpour
## 1587 05/07/2002 09:49 am (fblackmo) employee was covering asphalt with canvas, rubber strap slipped hitting employee in the face. Supervisor: prentice grady
## 1588 05/07/2002 11:26 am (fblackmo) employee states that while weighing truck, right foot caught pavement causing him to twist his right knee. Supervisor: ssg. G. B. Warren
## 1589 05/07/2002 11:41 am (fblackmo) employee was qualifying for firearms on a combat course. Employee was running and stepped in a hole and twisted his right knee. Supervisor: sgt. R. Powell
## 1590 05/07/2002 11:52 am (fblackmo) employee was putting new canvas on his truck. Employee hit the rail and a object flew under his glasses and lodged in his left eye. Supervisor: r. T. Mcmanus jr
## 1591 05/07/2002 12:10 pm (fblackmo) employee was working in file cabinet, raised head hitting corner of an open drawer, causing laceration of right side of nose. Supervisor: henry t. Moon
## 1592 05/07/2002 12:22 pm (fblackmo) employee was dumping bags at landfill when she felt something bite her on the right ear. Supervisor: h. M. Coats
## 1593 05/07/2002 12:34 pm (fblackmo) employee was standing on a foote of an embuttment, putting whaler onto wallties while another employee on the other side was doing the same. The wall-ties was sticking through the wall. The person on the other side pus
## 1594 05/07/2002 12:47 pm (fblackmo) employee was lifting blade on motor grader and pulled tendons on left forearm. Supervisor: j. D. Shelton
## 1595 05/07/2002 12:55 pm (fblackmo) employee was attempting to open a box with a knife when he cut his right hand. Supervisor: j. A. Dodson
## 1596 05/08/2000 04:19 pm employee was mowing slope when trash flew into his eyes on 4/20/00. Supervisor: d. W. Knight
## 1597 05/08/2000 04:28 pm employees left thumb was mashed while repairing sideboards on flatbed truck. The sideboard fell down on top of his fingernail. Supervisor: hugh c. Williams
## 1598 05/08/2000 04:37 pm employee was lifting a large piece of lumber onto truck; when he got his left thumb caught between lumber and the truck bed. Supervisor: hugh c. Williams
## 1599 05/08/2000 08:57 am employee was taping off windows to prepare for a painting job. As he reached to continue taping off windows; he felt a sharp pain in his left shoulder. Supervisor: william loch weems
## 1600 05/08/2000 09:02 am employee was mowing grass on an wet embankment; when mower started spinning and slid over edge of embankment. Employee was thrown off the mower onto the ground where he injured his right wrist (broken bone). Supervisor: d. E. B
## 1601 05/08/2000 09:14 am employee was pushing a mower up the ferry ramp; when he turned his left ankle over while stepping on the ramp. Supervisor: ben p. Wilkins
## 1602 05/08/2000 09:20 am employee was lifting a pole trailer when he injured his lower back. Supervisor: eric allen schenz
## 1603 05/08/2000 11:09 am employee was doing a level 1 inspection on tt driver; when the driver handed him bills with blood on it. The driver was cut on his hands causing Mr. Anders exposure to blood on his right hand. Supervisor: sgt. R. P. Brigman
## 1604 05/08/2000 11:22 am employee was working on barricades; when he stepped on nail inside of barricade injuring his right foot. Supervisor: johnny coleman
## 1605 05/08/2000 11:27 am employee was giving a road test; when she stepped up into truck to sit on passenger seat injuring her left leg. Supervisor: tex kidd
## 1606 05/08/2000 11:33 am employee left hand was caught between umbrella support post and the stone spreader machine on 4/18/00. He was operating the belts on the machine; when the wind started to blow causing the injury to his hand. Supervisor: david hens
## 1607 05/09/2001 02:06 pm (sshort) employee was driving a truck on sr 2028; when she hit a rough spot in the road. She bruised the top of her head, jammed her neck and strained her right shoulder. Supervisor: sarah g. Foster
## 1608 05/09/2001 02:12 pm (sshort) employee twisted/sprain his right ankle while hopping over fallen trees on 4/30/01. He twisted his right ankle on a branch hidden by leaf litter. Supervisor: andy spielvogel
## 1609 05/09/2001 02:20 pm (sshort) employee was trimming hedges around building and loading trimmings on front end loader; when he cam in contact with poisonous plants. He has contact rash on both arms/shoulders and his back. Supervisor: terri lynn poppe
## 1610 05/09/2001 02:29 pm (sshort) employee was conducting a pre-trip inspection for a tractor trailer cdl license. Mr. Stofford was attempting to clim into tractor trailer; when he pulled a muscle in his mid-back area. Supervisor: josephine lewis
## 1611 05/09/2001 02:48 pm (sshort) employee was walking to gas island; when she tripped and fell on debris/rocks. She has multiple injuries to ankles, shoulders, and knees. Supervisor: jerry lane
## 1612 05/09/2001 02:59 pm (sshort) employee was pulling on a nylon mooring line on marine vessel; when he noticed a stinging pain on his left side groin. Mr. Williams suffers from an inguinal hernia. Supervisor: k. J. Morris
## 1613 05/09/2001 03:06 pm (sshort) employee is not sure how she got a foreign object in her right middle finger, causing it to become infected. (employee had been to the warehouse getting supplies) supervisor: r. A. Mason
## 1614 05/09/2001 04:36 pm (sshort) employee was working on sr 1631 in anson county on 4/30/01; when he was bitten by a tick on his left leg. Supervisor: h. M. Thompson
## 1615 05/09/2001 04:47 pm (sshort) employee states while driving state vehicles; he experienced numbness and pain in both wrists. Supervisor: joyce wilson
## 1616 05/09/2001 05:07 pm (sshort) employee was surveying on reedy creek road in wake county; when he was bitten by a tick on his left hip. Supervisor: larry t. Williford
## 1617 05/09/2001 05:16 pm (sshort) employee was operating motor grader; when foreign object flew into his right eye causing irritation. Supervisor: tommy kilpatrick
## 1618 05/10/1999 09:18 am employee stepped out of a gang truck onto the ground & twisted his ankle.
## 1619 05/10/2000 09:54 am employee sprained both ankles when he opened garage door a motor fell from the roof striking his right ankle. He fell against a truck causing him to sprain his left ankle. Supervisor: z. R. Knight
## 1620 05/10/2000 10:09 am employee was taking off a strap that was holding a clamshell bucket on back of boom truck. The bar he was using slipped causing him to lose his balance and fall against tool box on truck. Employee has a cut on his left eyebrow re
## 1621 05/10/2000 10:22 am employee was hand loading blasting sand; when he felt a sharp pinching pain in his chest area. Supervisor: s. B. Hudspeth
## 1622 05/10/2001 12:44 pm (sshort) employee states his right leg/knee started bothering him while getting off of slope mower machine on 4/27/01. The pain continued to get worse over the weekend and began to swell. Supervisor: jerry pate
## 1623 05/11/1999 10:54 am employee stated while moving a 4 x 8 timber (the other man dropped his end); causing all the weight on the injured employees end. This caused his back strain. 02/01/2000 12:59 pm
## 1624 05/11/2000 03:06 pm employee was swinging a sledge hammer while tapping generator to line up bolt holes to an anchor; when he pulled muscles in his lower back. Supervisor: a. L. Clark
## 1625 05/11/2000 03:17 pm employee is experiencing swelling/pain in right wrist and hand due to cutting licenses up at dmv office. Supervisor: k. C. Mayo
## 1626 05/11/2000 03:29 pm employee states he has hearing loss due to loud noises from diesel trucks at work. Supervisor: d. A. Rackley
## 1627 05/11/2000 03:50 pm employee was hit by a 7" nail that flew up and punctured his chin after another employee hit it. Supervisor: t. K. Southard
## 1628 05/11/2000 04:01 pm employee was struck from behind by a private vehicle while sitting at a traffic light. Mr. Eudy neck and upper back was injured. Supervisor: t. E. Simpson
## 1629 05/11/2000 04:11 pm employee was moving (throwing) rip-rap on jobsite; when he felt pain in his lower back. Supervisor: l. E. Cotton
## 1630 05/11/2010 10:28 am (vyount) private vehicle crossed center line and struck state vehicle.
## 1631 05/12/1999 10:23 am employee caught his foot in air hose while changing motorgrader blades. His hands were full of bolts and he probably fell on them when he hit the concrete floor. Injured was his ribs on the right side, strained back, and abrasion
## 1632 05/12/1999 10:33 am employee was manually lifting tires to the bed of a dump truck. Employee strained his back while lifting.
## 1633 05/12/1999 10:43 am employee was loading 4 x 8 pieces of lumber onto the back of dump truck. Employee strained his left shoulder and arm. 02/04/2000 03:05 pm
## 1634 05/12/1999 10:49 am employee struck the door of a wood locker and a splinter stuck in his left arm from the door. 02/01/2000 12:55 pm
## 1635 05/12/1999 11:01 am employee was injured while lifting a hammer to place in compaction machine. His right arm was injured.
## 1636 05/13/2002 01:33 pm (slee) employee was traveling on rp 1156 when another driver failed to see right of way and pulled out in front of employee. Driver who failed to see right of way was attempting to cross employees lane, to travel either direction
## 1637 05/13/2002 02:07 pm (fblackmo) employee states that, while starting to sit back down in her chair from checking customers height she, missed the chair and fell to the floor causing the injury to her back. Supervisor: ava b. Parker
## 1638 05/13/2002 03:01 pm (fblackmo) on April 29, 2002 employee was marching and running in army boots to stop traffic at an intersection when she experienced pain in her right knee. Employee states that on April 30, 2002 her knee and ankle became tight and
## 1639 05/13/2002 03:17 pm (fblackmo) employee was using jack hammering in basket cement. Cement had hard and soft spots. Jack hammer hit one of the soft spots, forcing body to hit hammer and basket hard on right side area. Supervisor: charlie watson jr
## 1640 05/13/2002 03:30 pm (fblackmo) employee states that while unloading straw and feeding blower straw mites bite him. Supervisor: t. R. Burns
## 1641 05/13/2002 03:47 pm (fblackmo) employee states that while lifting lime to put in hydro seeder, felt a pop in his right side. Supervisor: wm. David silver
## 1642 05/13/2003 02:15 pm (fblackmo) employee was picking up litter along the shoulder of the road when, a bottle shattered causing a laceration to his right arm area. Supervisor: r. I. Matthews
## 1643 05/13/2003 02:26 pm (fblackmo) employee experienced pain in his right ankle after he stepped in a hole. Supervisor: marty headen
## 1644 05/13/2003 02:39 pm (fblackmo) employee was trying to catch a falling sign when, she cut her left hand. Supervisor: mark l. Fogleman
## 1645 05/13/2003 02:47 pm (fblackmo) employee was walking on deck when, he slipped and fell causing the injury to his left elbow. Supervisor: r. J. Downes
## 1646 05/13/2003 03:44 pm (fblackmo) employee slipped off the back of a truck causing the injury to his head and shoulder. Supervisor: thomas johnson
## 1647 05/13/2003 09:56 am (fblackmo) employee was riding in backseat of crew cab truck when, it was hit in the rear by a private vehicle. Supervisor: cleve woodard
## 1648 05/13/2003 10:13 am (fblackmo) employee was reaching to catch falling object when, he felt pain in his back area. Supervisor: mike perkins 11/07/2003 10:06 am (gwhite)
## 1649 05/13/2003 10:23 am (fblackmo) employee was walking across kitchen floor when, she slipped and fell. Supervisor: r. E. Hamilton
## 1650 05/13/2003 10:36 am (fblackmo) employee was operating a tractor for several hours when, he felt pain in his lower left leg. Supervisor: r. L. Taylor
## 1651 05/13/2003 11:06 am (fblackmo) employee cut right index finger while setting up a tripod. Supervisor: jeffery kidd
## 1652 05/13/2003 11:22 am (fblackmo) employee was climbing onto machine when, his foot slipped causing him to fall. Supervisor: andrew costner
## 1653 05/13/2003 11:42 am (fblackmo) employee was moving ac unit when, he felt pain in his lower back area. Supervisor: b. R. Moore
## 1654 05/13/2003 11:53 am (fblackmo) employee states she slipped while exiting crew truck. Supervisor: l. W. Sehorn
## 1655 05/13/2003 12:06 pm (fblackmo) employee states he was loading 50lb bag of fertilizer when, he felt pain in his abdomen area. Supervisor: j. F. Sloop
## 1656 05/14/1999 08:39 am employee was loading a push mower onto the rear of a pickup and felt a pain in his lower back.
## 1657 05/14/1999 09:25 am employee was using a power saw to cut a tree, when the wind caused a tree limb to hit employee in he head and chest.
## 1658 05/14/1999 09:31 am employee was cutting right of way, when employee came into contact with poison oak covering most of the body and face.
## 1659 05/14/2001 03:33 pm (sshort) employee stepped out of truck to stretch his legs; when one leg gave way. Mr. Slaughter fell and dislocated his right knee. Supervisor: r. N. Harden
## 1660 05/14/2001 11:39 am (sshort) employee was operating dozer on 5/3/01. He began to dismount the dozer when his knee gave way. He fell against the dozer's track and fractured 2 ribs. Supervisor: t. J. Wilcox
## 1661 05/14/2003 07:20 am (fblackmo) employee was conducting a driving test when, the customer slammed on brakes and hit a mailbox causing the injury to his neck. Supervisor: heather broome
## 1662 05/14/2003 07:33 am (fblackmo) employee was climbing up on forklift when, his center finger was caught in a hole on handle. Supervisor: keith smith
## 1663 05/14/2003 08:16 am (fblackmo) employee was removing sign when, dust flew into his left eye. Supervisor: chris baker
## 1664 05/14/2003 08:28 am (fblackmo) employee was performing work inside a junction box when, the lid hit him on his head. Supervisor: will simons
## 1665 05/14/2003 08:59 am (fblackmo) employee was installing a bed spreader when, he pinched his ring finger on right hand. Supervisor: r. E. Austin
## 1666 05/15/2000 04:57 pm fellow employee was brushing rust & paint chips from beam; when a gust of wind blew trash in Mr. Deaver's left eye. Supervisor: c. G. Woodley
## 1667 05/15/2000 05:00 pm employees left middle finger was pinched and caught between tailgate of truck and chain. He was in the process of dumping stones when he grabbed the tailgate chain to open the tailgate. Supervisor: david l. Lane
## 1668 05/15/2000 05:05 pm employee was painting hand rails on bridge when he felt something bite his right hand. He took off his gloves and saw nothing at the time until later. Supervisor: c. G. Woodley
## 1669 05/15/2000 05:13 pm employee was standing on sidewalk curb getting supplies out of trunk of car; when she turned to step down twisting/sprain her left ankle and feel down on her right knee. Supervisor: joyce wilson
## 1670 05/15/2000 05:22 pm employee was loading bale of straw; when he twisted/strained muscles in his back. Supervisor: g. M. Fisher
## 1671 05/15/2002 07:59 am (fblackmo) employee states that while completing daily duties working with maps and performing data entry on computer keyboard, has experienced pain in her right wrist and hand repetitively. Supervisor: kent taylor
## 1672 05/16/2001 08:59 am (sshort) employee was putting paper in printer and didn't realize she was that close to the table. Employee struck her right elbow on table. Supervisor: bobbie clark
## 1673 05/16/2001 10:21 am (sshort) employee was unscrewing latch to dump trailer on 4/26/01; when he mashed two fingers on his left hand and one finger on his right hand. Employee released tailgate before the latch was pulled down in the correct position.
## 1674 05/16/2001 10:29 am (sshort) employee was checking a commercial vehicle; when the driver applied brakes causing debris (dirt) to blow into his left eye. Supervisor: capt. J. F. Jones
## 1675 05/16/2001 10:37 am (sshort) employee was on a road construction project cutting dead trees limbs on 5/8/01. The tree limbs was thrown away from employees; when the limbs sprung back (flew) and struck Mr. Walker's left hand. Supervisor: t. L. Pucke
## 1676 05/16/2001 10:46 am (sshort) employee was painting heat numbers on piles; when he lost his balance and fell on piles. Mr. Leggett injured his right arm, left wrist, and both legs. Supervisor: e. E. Gurganus
## 1677 05/16/2001 10:55 am (sshort) employee was carrying several bush axes into the wood on 5/4/01. Employee loss control of axes as they began to slip. Ms. Whitehurst tried to grab one bush axe with one hand and then another axe slid down her left arm. E
## 1678 05/16/2001 11:04 am (sshort) employee cut his upper lip while splicing a u-channel steel post on 5/3/01. Employee was using a ratchet wrench and socket to tighten bolt nuts when the injury occurred. Supervisor: wayne williams
## 1679 05/16/2001 11:10 am (sshort) employee came in contact with poison plant while doing road work on sr 1434. Mr. Mclaughlin has contact rash on his upper body, face and arms. Supervisor: e. W. Spivey
## 1680 05/16/2001 11:16 am (sshort) employee was a passenger in state dot truck; when he was involved in an accident on latta road on 5/7/01. Mr. Leroy hutchins (driver) struck the back of a city waste truck after it pulled out and stopped suddenly for a pi
## 1681 05/16/2002 04:07 pm (fblackmo) employee was outside when the wind blew debris in his right eye. Supervisor: jack rollins
## 1682 05/16/2002 04:17 pm (fblackmo) employee was performing a cvsa level one inspection at the camden welcome center, employee asked the driver of the vehicle to apply the brakes, the brakes was released a loud pop occurred that caused the injury to employ
## 1683 05/16/2002 04:33 pm (fblackmo) employee states that while crossing a muddy ditch on a construction project to make repairs to an excavator he felt a pain in his left leg. Supervisor: d. E. Clapton
## 1684 05/16/2002 07:21 am (fblackmo) employee was asked to crush boxes in back of swb dump truck which took about 3 minutes. Another employee asked employee to do a karate drop; he proceeded to do this, a corner of a box hit him in his side and he got up
## 1685 05/16/2002 08:13 am (fblackmo) employee was walking in high grass under pine trees when he found three ticks on his feet and stomach area. Supervisor: donald king
## 1686 05/16/2002 08:26 am (fblackmo) employee was moving furniture around to paint. Supervisor: henry sturdivant
## 1687 05/16/2002 08:38 am (fblackmo) employee was helping with traffic control on us 321 southbound bridge for bridge department, bridge department crews were welding on expansion joints. Employee stated that he was not looking at welder, but they were to
## 1688 05/16/2002 10:06 am (fblackmo) employee was positioning joist for placement in a sitting position and left hand was caught between float and pile at bent number one. Supervisor: s. R. Davis
## 1689 05/16/2002 10:30 am (fblackmo) employee was cutting a tree on state road 1937 when he came into contact with poison oak. Supervisor: danny worrell
## 1690 05/16/2002 11:03 am (fblackmo) employee was cutting bushes around a bridge with a bush axe when, his back pop. Supervisor: j. Ronald lee
## 1691 05/16/2002 11:13 am (fblackmo) employee states that he found a tick bite on his upper right leg, approximately 2 weeks ago and the area became red and swollen. Supervisor: j. W. Marler
## 1692 05/16/2002 11:27 am (fblackmo) employee was filing when she stuck her finger with a staple that was attached to a file. By friday night 5/3/2002 employee states that her right index finger showed signs of infection. Employee went to the doctor satur
## 1693 05/16/2002 11:40 am (fblackmo) employee was cleaning off truck seat with towel, rubbed his eyes with the same cloth and materials from the towel went into his eyes. Supervisor: lonnie barefoot
## 1694 05/16/2002 11:51 am (fblackmo) employee fell when climbing down from tractor trailer causing the injury to his left side and arm. Supervisor: v. D. Summers
## 1695 05/16/2002 12:00 pm (fblackmo) employee was using desk saw when something got into his right eye. Supervisor: roger l. Arrowood
## 1696 05/16/2002 12:24 pm (fblackmo) employee was cutting trees on I-40. He was struck behind another tree causing him to lose control while trying to keep his balance, ran saw into his left leg. Supervisor: gary cooper
## 1697 05/16/2003 09:51 am (fblackmo) employee was attending concrete certification training class. Performing the test employee experienced pain in his back area. Supervisor: r. R. Fuller
## 1698 05/16/2003 10:01 am (fblackmo) employee was picking up cones on roadway when, the drive hit the brakes to hard causing employee to fall to the ground. Supervisor: c. H. Winstead
## 1699 05/16/2003 10:41 am (vsulliva) pov pulling tobacco rig crossed over the centerline and the back of tobacco rig stuck the sov driver's side mirror.
## 1700 05/16/2003 10:48 am (fblackmo) employee was crossing gulley underneath bridge when, he slipped and fell hitting bridge beam. Supervisor; ricky ball
## 1701 05/16/2003 10:59 am (fblackmo) employee was setting slope stakes on embankment when, he slipped and fell causing the injury to his back area. Supervisor: wanda h. Roach
## 1702 05/16/2003 11:11 am (fblackmo) employee was using a drill to connect water cooler when, the drill jammed up causing the injury to his right hand. Supervisor: k. E. Morris
## 1703 05/16/2003 11:21 am (fblackmo) employee was cutting plastic when, the injury occurred. Supervisor: pam carriker
## 1704 05/16/2003 11:42 am (fblackmo) employee was lifting up spreader lip when, he felt pain in his back area. Supervisor: don carpenter
## 1705 05/16/2003 11:53 am (fblackmo) employee was lifting a 95 pound hammer when, he felt pain in his back area. Supervisor: f. E. Roberts 09/08/2003 04:37 pm (gwhite)
## 1706 05/16/2003 12:35 pm (fblackmo) employee was tossing logs off of right of way when, he felt pain in his left shoulder area. Supervisor: r. W. Rhodes, jr 09/08/2003 12:49 pm (gwhite)
## 1707 05/17/1999 11:11 am employee was driving post on u. S. 74 with hand driver, when driver caught top of post. This caused driver to kick back striking me (the employee) in the head.
## 1708 05/17/1999 11:23 am employee was under vehicle removing snow plow frame with a hydraulic jack. After removing bracket around the axle, the plow frame slid off hydraulic jack. The jack landed on employee left hand causing a painful injury.
## 1709 05/17/1999 11:32 am employee was cutting a piece of lumber with the sill saw, when saw dust blew into his eye. 02/04/2000 09:42 am
## 1710 05/17/1999 11:40 am employee was grinding weld bead from side of truck body, when a piece of metal flew into his right eye.
## 1711 05/17/1999 11:48 am employee picked up steel drilling rod (which slipped out of his hands), this trapped his fingers between a steel post and the drill rod.
## 1712 05/17/1999 11:56 am employee twisted knee while running across the road.
## 1713 05/17/1999 12:10 pm employee was lifting a case of printer paper that was stacked against a metal fence. Employee scrapped finger against the metal fence.
## 1714 05/17/1999 12:18 pm employee knocked teeth off the loader bucket, when a piece of the punch broke off and hit employee in lower abdominal area.
## 1715 05/17/1999 12:26 pm employee was working in the head of the m/v drink water with his hand in the door frame, when the door shut on his right hand (injuring 3 fingers).
## 1716 05/17/1999 12:54 pm employee came into contact with poison ivy while cutting survey line.
## 1717 05/17/2001 10:48 am (sshort) employee states he has hearing loss in both ears due to working around loud equipment over his 38 years of service. Supervisor: r. F. Barnette
## 1718 05/17/2001 11:27 am (sshort) employee was pulling on pto shaft knob to put it in gear; when his left shoulder popped out of socket. Supervisor: tommy kilpatrick
## 1719 05/17/2001 11:33 am (sshort) while cutting limbs with hand saw; a thorn lodged in Mr. Marion's right hand (middle knuckle area) causing a puncture wound. Supervisor: steve ingold
## 1720 05/17/2001 11:42 am (sshort) employee was working on repairing damaged bridge on 4/25/01. Mr. Covington was bitten by an unknown insect on his upper right arm. Mr. Covington noticed the pain and a red spot on his arm immediately after bite occurred.
## 1721 05/17/2001 11:48 am (sshort) employee was drilling a hole with gas auger; when the blade became hung in the hard clay. This action caused Mr. Amic to twist/sprain his left knee. Supervisor: henry rich 8/11/2004 08:58 am (gwhite) 11/6/2006 0
## 1722 05/18/2001 09:41 am (sshort) employee was traveling west on nc highway 55, e; when he met a private vehicle that pulled out in front of him. The private vehicle apparently was trying to pass in a curve on double yellow line. Mr. Ward tried to avoid
## 1723 05/18/2001 09:57 am (sshort) employee stated he was putting out signs in work zone on 5/9/01. He went to take the sign out of the rack on truck; when it slipped out of his hand and fell on his left big toe (broke/fractured). Supervisor: l. W. Curri
## 1724 05/18/2001 10:14 am (sshort) employee was attempting to lift a five (5) gallon water cooler full of bolts; when he strained his lower back muscles. Supervisor: ivy g. Morgan
## 1725 05/18/2001 10:33 am (sshort) employee stepped on a bottle and slipped and fell into a ditch. Employee fell onto some weeds and brush and came in contact with poisonous plants. Mr. Bostic has contact rash on both arms/shoulders and back. Supervisor:
## 1726 05/19/1999 03:39 pm employee was pulling a piece of rip rap between truck body and tailgate, when tailgate shut and smashed middle finger on the right hand.
## 1727 05/19/1999 03:47 pm employee was coming down the left side of a dump truck (feet was on the ground), when he took a step backwards and tripped over an out rigger on backhoe. Employee hit the ground and head hit the lower part of the backhoe boom.
## 1728 05/19/1999 03:55 pm employee was using a chain saw to cut a tree with no safety chaps on, when chain struck right leg causing an injury.
## 1729 05/19/1999 04:05 pm employee was removing scale from trunk of patrol car, when scale got hung by the rubber at the bottom. This caused officer smith to pull a muscle in her neck and right arm
## 1730 05/19/1999 04:17 pm employee was cutting a 4-6 inch dead oak tree limb using a gas powered pole prunner. He was standing on the ground 10-12 feet from the limb with the prunner extended 11 feet. He made the proper preliminary cuts and then cut the 3
## 1731 05/20/1999 03:45 pm employee was doing physical fitness training, when he slipped off the monkey bars to the ground and twisted his right knee.
## 1732 05/20/1999 04:12 pm employee was attempting to pull drift at bridge 60-042, when the hook on snatch block broke hitting him on his left leg just below the knee.
## 1733 05/20/1999 11:53 am employee stepped off of asphalt roller onto high grass and shoulder. Ridge of dirt had been left causing employee to twist his right ankle.
## 1734 05/20/1999 12:02 pm employee was jumping down on front left side of trailer, when his ring caught in the ladder of the trailer. This caused his ring to cut finger.
## 1735 05/21/1999 09:39 am employee injury is in his right forearm, elbow due to repetitive motion throughout daily job routine.
## 1736 05/21/1999 09:48 am employee was lifting tailgate causing pain in his right shoulder.
## 1737 05/21/2001 02:06 pm (sshort) employee was checking the oil on a tractor (loaded on a trailer) on 5/9/01. Mr. Tedder dismounted the truck and stepped wrong when he pulled muscles in his lower right side of back. Supervisor: randy raynor
## 1738 05/21/2001 02:21 pm (sshort) employee right ring finger was caught in tripod while putting it in the ground to gather other equipment. The tip of his finger was cut and he went to the emergency facility that same day. Supervisor: mojdeh masihpour
## 1739 05/21/2001 04:50 pm (sshort) employee was operating a skid loader; when a private vehicle ran into the loader on 5/10/01. Mr. Moore was knocked onto safety cage from the impact of the accident. He has a soreness/bruised left elbow was was seen at al
## 1740 05/21/2001 05:10 pm (sshort) employee states he has pain in his lower back. Supervisor: a. B. Slaughter
## 1741 05/21/2001 09:43 am (sshort) employee was in a single vehicle accident on 4/27/01. Mr. Langley was driving a dump truck on sr 1329; when he lost control and overturned the vehicle. Mr. Langley has minor abrasions on body from the broken glass and a
## 1742 05/21/2001 09:51 am (sshort) employee was gathering up hay to put on trailer for the seeding process on 5/01/01. Mr. Reaves had an allergic reaction to the hay; causing a rash on both legs. Supervisor: c. H. Winstead
## 1743 05/21/2002 02:24 pm (fblackmo) employee was walking on shoulder of I-40 near a tunnel and three tractor trailers went by causing dust and grit to get in employees eyes. Supervisor: ron turpin
## 1744 05/21/2002 03:12 pm (fblackmo) examiner conducting a road test in a motor vehicle. Examiner was secured by the seatbelt on the passenger side. When accident occurred, the restraint of seat belt pulled tight across examiners neck, shoulder and arm.
## 1745 05/21/2002 09:35 am (fblackmo) employee states that while conducting a road test the customer was to back up but instead put the vehicle in drive hitting the curb at high speed causing the injury to her lower back. Supervisor: sylvia spain
## 1746 05/21/2002 10:12 am (fblackmo) employee states, a lane closure was implemented to do maintenance on the highway. Employee was sitting still at the beginning of the taper with the arrow board. Traffic approached the taper an accident among several veh
## 1747 05/21/2002 10:32 am (fblackmo) employee states, doing daily duties such as writing, typing, operating computer, calculator, filling, lifting boxes of supplies, and other general office duties has caused pain in her right and left hands. Supervisor: c
## 1748 05/21/2002 10:47 am (fblackmo) employee was helping another employee remove pins from tailgate when his right thumb got caught between the backhoe tailgate causing the injury to his finger. Supervisor: a. L. Smith 05/29/2002 10:09 am (twerner)
## 1749 05/21/2002 11:11 am (fblackmo) employee was driving steel pins in aggregate base course for nuclear densities using an 8lb sledge hammer. Employee states he felt pain in his lower back which grew worse and spread to the back of his left leg as the da
## 1750 05/21/2002 11:25 am (fblackmo) employee was driving a dump truck, when she shifted gears she felt pain in her lower back. Supervisor: k. L. Anderson
## 1751 05/21/2002 11:36 am (fblackmo) employee states that while exiting his state vehicle he felt pain on his right hand. Employee right center finger was swollen. Supervisor: jeff drayer
## 1752 05/21/2002 12:08 pm (fblackmo) employee was working on state road 1315, cutting bushes around bridge number 8, when he came in contact with poison ivy plants. Supervisor: j. B. Creech 05/29/2002 10:07 am (twerner)
## 1753 05/21/2002 12:39 pm (fblackmo) employee was shoveling gravel and experienced pain in his lower back. Supervisor: r. T. Mcmanus jr
## 1754 05/21/2002 12:48 pm (fblackmo) employee climbed out of the passenger-side of a small dump truck to remove a tree limb from state road 2044. Employee stepped on a soft spot on the steeply slope shoulder which, caused his right ankle to twist. Supervi
## 1755 05/21/2002 12:59 pm (fblackmo) employee was climbing out of backhoe the area where he placed his foot was lower than he thought and he felt a pull across the lower part of his back. Supervisor; john thomason
## 1756 05/21/2003 08:01 am (fblackmo) employee states; numbness in both hands from operating heavy equipment for thirty years. Repetitive motion. Supervisor: j. Mark crook
## 1757 05/21/2003 08:32 am (fblackmo) employee was sanding the edge of plexy-glass when, the sander came off hitting employee between the eyes. Supervisor: james willis twiddy sr
## 1758 05/21/2003 09:04 am (fblackmo) employee was pushing asphalt rake when, he felt pain in his rib cage area. Supervisor: stephen g. Dillon
## 1759 05/21/2003 09:20 am (fblackmo) employee was shoveling stones when, he hit his right elbow on side of truck. Supervisor: k. R. Davis
## 1760 05/21/2003 09:50 am (fblackmo) employee was lifting a sign when, he felt pain in his lower back area. Supervisor: j. A. Ridge
## 1761 05/21/2003 11:25 am (fblackmo) employee experienced wrist pain while typing on computer. Supervisor: michelle hinton
## 1762 05/21/2003 11:47 am (fblackmo) employee was cutting logs on secondary road project when, one of the logs hit him in his back area. Supervisor: t. L. Hall
## 1763 05/21/2003 11:58 am (fblackmo) employee was rolling stones when, foreign matter flew into his eyes. Supervisor; mike brady
## 1764 05/22/2003 02:47 pm (fblackmo) employee was walking around vehicle to put up scraper when, she was hit on her right arm by the mirror of a private vehicle. Supervisor; h. M. Coates
## 1765 05/22/2003 03:11 pm (fblackmo) employee was preparing to knock a bearing off a counter shaft with a punch and hammer. He place the punch on bearing and hit the punch causing a small piece to hit him in his abdomen area. Supervisor: joseph lee
## 1766 05/22/2003 03:26 pm (fblackmo) employee was surveying on state road when, he came into contact with poison ivy. Supervisor; phil manley
## 1767 05/22/2003 03:36 pm (fblackmo) employee states he experienced pain in his right arm and shoulder area while, lifting boxes of license plates. Supervisor: lois warren
## 1768 05/22/2003 12:44 pm (fblackmo) employee was trying to push a stick into the ground when, the edge cut his right hand. Supervisor: r. J. Hollifield
## 1769 05/22/2003 12:53 pm (fblackmo) employee was supervising inmates on state road when, he found a tick on his waist area. Supervisor: d. L. Lane
## 1770 05/23/2000 01:02 pm employee was crossing the guardrail when his pants caught on sharp edge of steel post. Employee fell and twisted/hit his left knee. Supervisor: a. E. Moore
## 1771 05/23/2000 01:10 pm employee was trying to pull a float under the ferry ramp; when a grain of sand blew into his left eye. Supervisor: c. G. Woodley
## 1772 05/23/2000 01:15 pm employee was moving a weedeater; when he came in contact with poison ivy on entire left side of his body. Supervisor: r. E. Queen
## 1773 05/23/2000 01:36 pm employee was flagging traffic on sr 1941, later that day he found a tick embedded in his private area. He reported it first thing the following morning.
## 1774 05/23/2000 01:55 pm employee was getting out of truck and made a wrong step and twisted left knee.
## 1775 05/23/2000 02:15 pm pressure release from valve on sewage utility, forced employee off balance and fell onto rocks hurting right hip, deep cut on right knee, and cuts and scrapes on right forearm.
## 1776 05/23/2000 02:17 pm employee was dismounting from a truck; when he stepped down on concrete curb causing him to twist/sprain his right ankle. Supervisor: larry s. Carpenter
## 1777 05/23/2000 02:35 pm employee was working on new construction at approximately 08:30 am on 5/4/00 and was bitten or stung on his left wrist.
## 1778 05/23/2000 10:30 am Mr. Smith was in straw shed getting ready to load truck with straw. When Mr. Smith bent over to lift the bale of straw, he grabbed the bale of straw and started to lift it when he felt a sharp pain in his side.
## 1779 05/23/2000 10:55 am steel container fell off psssing truck into travel lane. Employee stopped torremove off road to prevent traffic accident. Edges were cut and employee cut right index finger on edge.
## 1780 05/23/2000 12:23 pm employee was cut on his right hand above his thumb on 5/5/00. Employee was sharpening a bush axe; when he put the axe on table beside him it slipped off causing the injury. Supervisor: stephen sparks
## 1781 05/23/2000 12:29 pm employee was holding a grade rod in a ditch; when he turned to climb up steep ditch he pulled muscles in his lower back. Supervisor: w. T. Mckenzie
## 1782 05/23/2000 12:36 pm employee was operating a patch roller machine on a steep hill; when the roller lost traction and flipped over on its side. Mr. Finney has injuries to his chest, ribs, and scratches on his left leg. Supervisor: b. W. Whitaker
## 1783 05/23/2000 12:41 pm employee was cutting trees when he felt a sharp pain behind his left knee. Supervisor: h. F. Spain
## 1784 05/23/2000 12:48 pm employee was using an eight pound hammer, when the hammer slipped and hit his right foot. Supervisor: k. E. Anderson
## 1785 05/23/2000 12:53 pm employee was driving a map unit on I-40; when a private vehicle went by blowing dust and debris into his right eye. Supervisor: s. L. Hall
## 1786 05/23/2001 10:26 am (slee) employee in vehicle #1 was traveling north on hwy. 49 in cabarrus county when the vehicle #2 in front slowed quickly. Employee did not see the brake lights of vehicle #2 and swerved to right in an attempted to Miss Vehicle
## 1787 05/24/1999 03:44 pm employee sneezed and felt pain in lower back.
## 1788 05/24/1999 09:33 am employee was hit when wind caught ferry door, bruising his left ankle.
## 1789 05/24/2001 09:00 am (sshort) employee was crossing a log when he lost his balance and fell. Mr. Brigmon twisted/sprain his left knee when he struck the ground. Supervisor: o. T. Anderson
## 1790 05/24/2001 09:05 am (sshort) employee was driving state vehicle when he swerved to avoid hitting dogs in the road on 3/6/01. Mr. Stewart loss control of the vehicle and hit a light pole causing injuries to his head and neck. Supervisor: d. L. Bagwe
## 1791 05/24/2001 09:13 am (sshort) the wind blew debris off flatbed trailer and into employees eyes on 5/14/01. The employee continued his run to winston salem and back to raleigh when he had to seek medical assistance. Supervisor: william t. Stone
## 1792 05/24/2001 09:24 am (sshort) employee was picking up trash on 5/14/01; when he stepped in a grass covered deep hole. This misstep caused pain in Mr. Candler's neck and left shoulder. Supervisor: keith hill
## 1793 05/24/2001 09:33 am (sshort) employee was using improper lifting/posture procedures while operating a forklift machine on 5/7/01. Mr. Singh has pain in his upper torso (back) and right side. Supervisor: mike jefferys
## 1794 05/24/2001 09:41 am (sshort) employee was mowing in ditch line on sr 1177 on 4/30/01. He turned around to motion a motorist by; when a tree limb struck his nose causing a fracture and mild concussion. Supervisor: d. L. Carpenter
## 1795 05/24/2001 09:46 am (sshort) employee was securing down backhoe on 5/16/01; when she stretched the chain & binder causing her to strain/sprain her chest area and left arm/hand. Supervisor: j. F. Walls
## 1796 05/24/2001 10:10 am (sshort) employee was mowing right of way on us 64 on 5/17/01. A private vehicle approached/passed employee causing debris to blow into Mr. Walston's left eye. Supervisor: p. P. Mansfield
## 1797 05/24/2001 10:39 am (sshort) employee was cutting brush from right of way; when he came in contact with poison ivy plants and insects. Mr. Gibbons has contact rash and bites on both arms and legs. Supervisor: s. G. Dillon
## 1798 05/24/2001 10:44 am (sshort) employee was using hammer to drive survey stakes into ground; when he missed the stake and struck his lower left leg (shin). Supervisor: j. K. Bartlett
## 1799 05/24/2001 10:51 am (sshort) employee has pain in her right arm and hand due to repetitive motion while keying, adding cards, etc... On the job. Supervisor: lynn chalk
## 1800 05/24/2001 11:02 am (sshort) employee was lifting a beam to put it in place underneath bridge; when he strained muscles in stomach. Supervisor: r. E. Cox
## 1801 05/24/2001 11:08 am (sshort) employee was setting right of way points near an electric fence on 5/17/01. Mr. Carter backed into it, resulting in a temporary lapse of unconscious. Mr. Carter sustained an electric shock to his back. Supervisor: davi
## 1802 05/24/2010 07:22 am (slee) employee was traveling in backhoe on nc 210, when tandem truck came up behind and hit backhoe in the rear. Other person involved: john a. Temple, 142 cove side lane, hampstead, nc.
## 1803 05/25/1999 03:42 pm employee was standing in work zone, when truck came through knocking cones protecting work zone over and into him injuring his right leg.
## 1804 05/25/1999 03:57 pm employee was exiting water, when wave and tide action caused hardhat to hit side of ship. This action chipped his bottom left molar tooth.
## 1805 05/25/1999 04:07 pm employee was cutting bushes, when his pants leg became caught on branch causing him to fall.
## 1806 05/25/1999 04:17 pm employee was going to move router. While moving router, he stepped into the path of a pickup towing another router on a trailer. The fender contacted his left leg and the tire ran over his foot.
## 1807 05/25/1999 04:27 pm while surveying in tall grass in the median of us 1. Employee was bitten (infected) by a tick bite on his lower abdomen/upper groin area. (approx. 50mm below navel).
## 1808 05/26/1999 01:47 pm employee was putting scale back into truck of patrol car, when he hurt his left shoulder and arm.
## 1809 05/26/1999 01:55 pm employee developed scoliosis and a pinched nerve in lower back and bottom vertebra. Employee has been sitting in an uneven chair/uneven floor over a period of 4 plus years. Note: reported injury because actual cause of injury is
## 1810 05/26/1999 02:04 pm an accident occurred while employee was helping load sandbags on a hand truck. The hand truck was leaned forward so that it could be jerked from under the bags and the handle struck the employee on his left elbow. 02/01/2000 1
## 1811 05/26/1999 02:15 pm employee was out on a road test when he told customer to do a three point turn. The customer hit brakes really hard causing him to twist his back causing bad pains.
## 1812 05/26/1999 02:25 pm employee experiencing pain in hands, fingers, wrists and shoulders.
## 1813 05/26/1999 02:40 pm employee states shoulders and neck pain everyday. Pain is constant and only occurs after sitting for a period of tim keying title work.
## 1814 05/26/1999 03:17 pm employee was removing shaft from drive unit flywheel with hammer & brass drift. He hit the brass drift, but did not make good contact and struck left hand fifth finger against the flywheel.
## 1815 05/26/1999 03:38 pm employee was unloading a joint router from trailer. As the router started down the trailer ramp it was pulled tight quickly causing crank handle winch strap feed to get away from him. This handle struck employee on his right arm.
## 1816 05/26/1999 03:50 pm employee was cutting top out of a card board box when knife slipped and cut his middle finger.
## 1817 05/26/1999 04:07 pm employee thinks he May have scratched his index finger while putting his hand into glove.
## 1818 05/26/1999 04:19 pm employee was measuring pipe when he slipped and fell injuring his back.
## 1819 05/26/1999 04:33 pm employee was removing trash from roadway, when he threw hub cap in truck it struck a bottle. A piece of glass from bottle flew into his left eye.
## 1820 05/26/1999 09:02 am employee was heating asphalt at tailgate to get it to close properly, when hot asphalt dropped on right hand holding the torch. Employee dropped torch receiving third degree burns.
## 1821 05/26/1999 09:14 am employee stated he was loading trash bags into truck, when something sharp stuck through the bag cutting the palm of his right hand.
## 1822 05/26/1999 09:21 am while employee was moving gasoline dispenser, his left thumb got pinched between the take up real post and dispenser housing.
## 1823 05/29/2002 01:02 pm (fblackmo) employee was preparing to work on a motor grader blade when the locking pin released, causing the blade to shift and knocked employee down hitting his right leg. Supervisor: m. B. Mizelle
## 1824 05/29/2002 01:30 pm (fblackmo) employee was closing tailgate on spreader when he hit his ring finger on left hand, causing a tear in his gloves and cutting his finger. Supervisor: d. Chapman
## 1825 05/29/2002 01:43 pm (fblackmo) employee states, using computer and talking with customers on the phone, repetitive motion in both arms. Supervisor: paula windley
## 1826 05/29/2002 01:54 pm (fblackmo) employee was driving pan going to spread dirt on road when, his left elbow h it against the cab. Supervisor; curtis harrell
## 1827 05/29/2002 02:05 pm (fblackmo) employee was attempting to cross cable when, he tripped and fell. Supervisor: jerry snead
## 1828 05/29/2002 02:32 pm (fblackmo) employee states, while bending over to pick up large stone his foot got caught between the hole and hand rail causing his left knee to twist. Supervisor; d. C. Gordon
## 1829 05/29/2002 10:18 am (fblackmo) employee states, this is a carpal tunnel syndrome injury in both wrists and developed over the past years due to secretarial work, typing repetitive computer input and calculator. Supervisor: j. F. Sloop 05/29/2002 10:3
## 1830 05/29/2002 10:38 am (fblackmo) employee was dragging and lifting vacuum hoses to load on truck when he felt something pull in his lower back. Supervisor: w. E. Evans
## 1831 05/29/2002 10:52 am (fblackmo) employee was under bridge working on beam using a socket and a wrench to loosen bolts. Employee placed wrench on beam so that he could relocate his position, shifting of weight caused the wrench to fall from beam striki
## 1832 05/29/2002 11:15 am (fblackmo) employee was scrubbing when his skin became irritated, itching and swelling. Supervisor: dale bullard
## 1833 05/29/2002 11:27 am (fblackmo) employee was closing the vehicle door when he got his left small finger caught in the door. Supervisor: j. N. Mixon
## 1834 05/29/2002 11:43 am (fblackmo) employee states that while performing routine sign maintenance, came into contact with poison ivy. Supervisor; j. A. Ridge
## 1835 05/29/2002 11:53 am (fblackmo) employee was using a bush axe on state road 2424 butler dairy road cutting a limb, the limb hung on some briar, and swung back and hit him in the right eye, causing a corneal abrasion. Supervisor; t. F. Bray
## 1836 05/29/2002 12:48 pm (fblackmo) employee was removing tailgate to dump a load of trash when something bite him on his right ring finger. Supervisor: w. E. Evans
## 1837 05/30/2002 01:24 pm (fblackmo) employee was sliding a piece of concrete off tailgate of truck when, he felt something pop in his right elbow. Supervisor: a. L. Clark
## 1838 05/30/2002 01:35 pm (fblackmo) employee states that he was bitten by a spider on the chest area while work on state road 1665. Supervisor: floyd mull
## 1839 05/30/2002 01:45 pm (fblackmo) employee states that while clearing intersection on state road 1136 a limb hit him in his left eye. Supervisor; j. C. Penland
## 1840 05/30/2002 01:56 pm (fblackmo) employee was helping clean dirt, grass, and weeds off concrete island in roadway with a shovel. Employee hit a crack in concrete with shovel causing the end to hit employee in the ribs. Supervisor: anthony edwards
## 1841 05/30/2002 02:07 pm (fblackmo) employee was mowing and weed eating in different locations. Several days later employee reported allergic reaction to poisonous plant. Supervisor: johnny m. Brown cme
## 1842 05/30/2002 02:23 pm (fblackmo) employee was using a hammer to remove an auger head from a hollow-stem auger when, a piece of metal flew off and cut his right index finger. Employee treated the cut with a banadaid, x-rays taken six weeks later showed
## 1843 05/31/2000 10:33 am employee was stepping off/climbing down off tractor broom when he twisted/sprain his right knee. Supervisor: larry koontz.
## 1844 05/31/2000 10:37 am employee was stepping down out of truck into a hole; when he pulled muscles in his lower back. Supervisor: marc p. Morgan
## 1845 05/31/2000 10:44 am employee was stepping out/climbing down out of his truck; when he hit his right leg on running board of truck. Supervisor: marc p. Morgan
## 1846 05/31/2000 10:47 am employee was loading stone machine binding the chains; when he strained his right shoulder, arm and neck. Supervisor: david hensley 11/6/2006 01:33 pm (fblackmo) claim closed. Clinched on 06/14/2005. Do not use.
## 1847 05/31/2000 10:54 am employee was lifting/moving 55 gallon drum of waste water to a pallet to raise with fork lift; when he pulled muscles in his right groin area. Supervisor: don ferguson
## 1848 05/31/2000 11:45 am employee was standing watching a bridge concrete pouring; when flying object punctured his right arm (triceps). Supervisor: tawana brooks
## 1849 05/31/2000 11:54 am employee was operating steel wheel roller on steep grade; when roller began to vibrate and roll backwards. The employee jumped from the roller and bruised her upper right leg. Supervisor: r. B. Hardy
## 1850 05/31/2000 12:08 pm employee was bending a bent frame on mower; when his hand slipped causing him to cut his left hand. Supervisor: w. H. Lynch
## 1851 05/31/2000 12:12 pm employee was setting up survey signs on rack; when he turned and twisted the wrong way straining his back. Supervisor: larry r. Absher, jr
## 1852 05/31/2000 12:26 pm Mr. Suebert was driving/returning from division shop when traffic stopped on west bound market street. A private vehicle failed to stop rear ending Mr. Suebert. Employee suffered contusions, bruises and neck and back strain due to
## 1853 05/31/2001 09:06 am (sshort) employee was removing tree branches from roadway; when he felt a pain in his lower back area. Supervisor: n. S. Gibson
## 1854 05/31/2001 09:12 am (sshort) employee states he hit something on shoulder or road while mowing on 5/15/01. When he hit the object it caused the steering wheel to spin around and jam his left little finger. Supervisor: thomas j. Burchell
## 1855 05/31/2001 09:17 am (sshort) employee was pulling lever to spray tar on roadway; when he pulled it back his right elbow struck another lever. Supervisor: j. M. Leatherman
## 1856 05/31/2001 09:23 am (sshort) employee was walking on project to check the grand when he twisted/sprain his right knee. Supervisor: marvin wayne currie
## 1857 05/31/2001 09:29 am (sshort) employee was retrieving an accident victim from a vehicle under water on 5/14/01. The victims blood and bodily fluids came in contact with Mr. Carlisle's body and clothes. Supervisor: l. Michelle podeszwa
## 1858 05/31/2001 09:37 am (sshort) employee was repairing a sign post that had been struck by a vehicle on 5/21/01. When Mr. Harrison pushed the post back up to its upright position; the post sprang back and struck him on top of his head. He was using a p
## 1859 05/31/2001 10:23 am (sshort) employee was installing a keyboard tray under desk; when a sliver of metal fell into his left eye. Supervisor: j. A. Medford
## 1860 05/31/2001 10:29 am (sshort) employee was pulling a tractor that was stuck using a 20' chain with her tractor on 5/22/01. The chain broke under the stress and flew into webber's windshield causing it to shatter. Several shards of glass cut her on he
## 1861 05/31/2002 03:17 pm (fblackmo) employee states, injured was traveling east on us 644/264 when a private vehicle was traveling in opposite direction and swerved when he met injured vehicle. The mirrors on both vehicles hit and broke. Glass from mirro
## 1862 05/31/2002 03:36 pm (fblackmo) employee was lifting augers when he felt a sharp pain in his chest area. Supervisor: robert r. White
## 1863 05/31/2002 03:55 pm (fblackmo) employee states that doing a road test on statesville roadway a private vehicle hit them in the rear. Supervisor: vernon canady
## 1864 05/31/2002 10:15 am (fblackmo) employee states loss hearing from working with continuios operations of heavy equipment. Supervisor: matt taylor
## 1865 06/01/1999 02:00 pm employee and others were lifting tile ( about 2 inches from the ground) to put a chain under it to remove tile from ditch. Employee injured left lower muscle in back. (strain)
## 1866 06/01/1999 02:07 pm employee was operating wand of sealant kettle using the shoulder strap provided, when he injured his right shoulder, arm and leg strain/sprain.
## 1867 06/01/1999 02:14 pm employee injured left ringer finger, when loading 100 pound cylinder onto a flatbed truck.
## 1868 06/01/1999 02:22 pm employee was dropping fertilizer tablets and using foot to force them into wetlands soil, when employee felt pain in right knee.
## 1869 06/01/1999 02:50 pm employee was pulling plastic coating off electric wire, when piece of the inner wire popped off and stuck in left eye making a small puncture.
## 1870 06/01/1999 03:01 pm employee experienced numbness to arms, fingers, hands, neck pain, and lumbar strain, when brakes on vehicle failed. Employee was descending a long steep grade, when brakes failed. He was carrying 12 tons of asphalt in his truck.
## 1871 06/01/1999 03:09 pm employee was changing tire when he injured his right wrist. While applying pressure, lug nuts finally popped loose and injured employee.
## 1872 06/01/1999 03:20 pm employee was shoveling dirt, when he felt a pop in his left shoulder.
## 1873 06/01/1999 03:31 pm employee was cutting a tree in half to place it in the chipper, when the chipper was engaged the end of log swung towards him striking him in the left leg.
## 1874 06/01/1999 04:10 pm employee had been grinding with a portable grinder, when something scratched his left eye. Employee was wearing uvex safety glasses.
## 1875 06/01/1999 11:18 am verbal abuse mental stress and anguish.
## 1876 06/02/1999 08:39 am employee was assisting a customer when she turned to go to the office she fell over a chair. She hit her left arm below the wrist trying to break her fall and hit her head between the eyes on the printer table. This caused swelli
## 1877 06/02/1999 08:48 am employee was using a sledge hammer on scaffold (33'' off ground), when he lost footing and fell on his right elbow. 02/01/2000 01:24 pm
## 1878 06/02/1999 08:54 am employee was preparing to unload the backhoe off of a trailer, when he loosened the binder to release the chain. The employees hand flew up causing him to mash right ring finger.
## 1879 06/02/1999 09:01 am employee was moving hose from kettle back to crs-2 tank, after filling kettle he was handing hose to another employee who when he injured his right wrist.
## 1880 06/02/2000 01:56 pm employee was slowing down to pull off the roadway; when a private vehicle was coming along behind employee. The private vehicle was unable to stop, causing the employee to hit his head on the back of glass in pickup truck. Supervi
## 1881 06/02/2000 02:07 pm enforcement officer baker was attempting to pull a pickup for speeding; when he approached an intersection a van pulled out in front of him. Officer baker hit van (he did everything he could and was following all policies and proc
## 1882 06/02/2003 02:12 pm (fblackmo) employee was helping to load a back hoe when, the lever hit him on his right arm. Supervisor: jack rollins
## 1883 06/02/2003 02:28 pm (fblackmo) employee was walking to give road test when, she stepped off the curb wrong twisting her left ankle. Supervisor; gail smith
## 1884 06/02/2003 02:39 pm (fblackmo) employee was leaving the building and tripped on the floor mat causing the injury to her left knee. Supervisor; linda brown
## 1885 06/02/2003 02:56 pm (fblackmo) employee was on ladder using painter when, he lost his foot causing him to fall. Supervisor; ron turpin
## 1886 06/02/2003 11:31 am (fblackmo) employee states a private vehicle struck his dot truck on the right side while truing to make a right turn. Supervisor: iris h. Mccombs
## 1887 06/02/2003 11:48 am (fblackmo) employee was traveling on state road when a private vehicle pulled out in front of him. Employee ran off the road to keep from hitting the private vehicle which caused the injury to his abdominal area. Supervisor: s.G
## 1888 06/02/2003 12:03 pm (fblackmo) employee was shoveling asphalt from the back of the crew cab when, he lost his balance causing him to fall backwards. Supervisor; wayne knight
## 1889 06/02/2003 12:15 pm (fblackmo) employee was using a air wrench when, the bolt hit him on his finger causing a laceration to his center finger. Supervisor: russell ramsey
## 1890 06/02/2003 12:28 pm (fblackmo) employee was using an axe to drive stakes into the ground when, the stake broke causing employee to hit his right leg with the axe. Supervisor; gerald harris
## 1891 06/02/2003 12:44 pm (fblackmo) employee lost his footing while pulling panels up from the floor to the top of the spreader. Supervisor; james hoffman
## 1892 06/02/2003 12:58 pm (fblackmo) employee was bitten on his left hand by a dog. Supervisor; ed craver
## 1893 06/03/1999 10:05 am employee was leaving sun deck walking down to the vehicle deck, when he slipped and fell off the last step injuring his right ankle. Steps were believed to be wet. 5/25/99 a new non-skid tread plate was installed as a result from
## 1894 06/03/1999 10:46 am employee was removing chain from tailgate of truck, when he pulled tailgate back with right hand. The tailgate slipped and struck his left hand bruising 3 fingers.
## 1895 06/03/1999 10:54 am employee was checking air hose under water tank, when he raised up striking his head on the handle of the spray bar end cap. The employee cut his scalp receiving stitches.
## 1896 06/03/1999 11:11 am employee came in contact with poison ivy while cutting survey line.
## 1897 06/03/1999 11:25 am employee was getting ready to install a driveway pipe, when he stepped on a board with a nail in it. He was walking through tall grass when the nail punctured his right foot.
## 1898 06/03/2002 11:11 am (fblackmo) bilateral hearing loss, result of exposure to loud noises. Supervisor: not given on form 18
## 1899 06/03/2003 09:25 am (fblackmo) employee was working on state road when, he pulled a tick off his back. Supervisor: jeremy b. Creech
## 1900 06/03/2003 09:37 am (fblackmo) employee stepped on the sidewalk from running when, he felt pain in his right ankle. Supervisor; s. I. C. Tim collins
## 1901 06/03/2003 09:51 am (fblackmo) employee was using a knife to cut open a box when, the knife closed on his right finger causing a cut. Supervisor: a. M. Lewis jr
## 1902 06/03/2003 10:06 am (fblackmo) employee was walking along property line through the woods along the river line when, he twisted his knee. Supervisor; d. B. Henson
## 1903 06/03/2003 10:18 am (fblackmo) employee was spraying weeds on embankment when, he lost his footing causing the injury to his hip. Supervisor; bruce myers
## 1904 06/03/2003 10:34 am (fblackmo) employee states while typing continuously she felt pain in her right wrist. Supervisor; michelle hinton
## 1905 06/03/2003 11:29 am (fblackmo) employee was working on sheepfoot tractor where the switch on the clutch was broken when, another employee mashed his finger between the clutch and metal piece on floorboard. Supervisor; danny williamson
## 1906 06/03/2003 11:42 am (fblackmo) employee was pulling power cable when, he felt pain in his neck. Supervisor; (not stated)
## 1907 06/03/2003 11:53 am (fblackmo) employee was removing old jack to put into dumpster when, he felt pain in his lower back. Supervisor: a. R. Wells
## 1908 06/03/2003 12:23 pm (fblackmo) employee was cleaning around asphalt storage tanks when, his finger was caught between the wall and a bucket of asphalt material. Supervisor: tommy f. Richardson
## 1909 06/03/2003 12:37 pm (fblackmo) employee states the brakes locked up on his truck while trying to stop. Supervisor: roger faulkner
## 1910 06/04/1999 04:10 pm employee was tapping cases of paper to be shipped. She was picking them up and moving onto a flat bed cart, when she pulled a muscle in back. Note: this event was made non-reportable on 10/04/99 and was previously entered as an
## 1911 06/04/2001 05:15 pm (sshort) employee was on her way to lunch while walking down the steps her ankle popped causing her to fall. She severely sprained her left ankle and was seen at rex hospital. Supervisor: alex price
## 1912 06/04/2001 05:22 pm (sshort) employee was setting up traffic control area on 5/21/01; when he sprain/strained his lower back. Mr. Mcfalls was picking up a 4' sign to place it in easel at time of incident. Supervisor: m. D. Brooks
## 1913 06/05/2001 09:18 am (sshort) employee was struck by a private vehicle on 5/29/01. Mr. Starnes has strain to his neck and upper back area stiff and sore. {vehicle #1 was attempting to go straight across the intersection; while Mr. Starnes was making
## 1914 06/05/2001 09:28 am (sshort) examiner taylor was on a road test with a customer on 5/21/01. The customer backed into a mailbox and onto a curb while making a 3 point turn. Examiner taylor was in the passenger seat; when the seat fell all the way bac
## 1915 06/05/2001 09:37 am (sshort) employee stated he placed rip rap stones around pipe on work site project; when fingers got caught between two rocks. Mr. Jordan has abrasions, contusions and strains/sprains to his right middle and ring fingers. Supervi
## 1916 06/05/2001 10:17 am (sshort) employee stepped backwards off pavement while flagging and twisted/strain/sprain her right leg on 5/7/01. A vehicle failed to step for stop sign, causing Ms. Lambdin to drop flagging sign and step back. Supervisor: j. N.
## 1917 06/05/2001 10:24 am (sshort) employee was working on sr 1309 when he came in contact with poison ivy plants and has contact rash on his neck. Supervisor: larry n. Helms
## 1918 06/05/2001 10:29 am (sshort) employee was trying to move discharge chute of a chipper machine; when his foot slipped off fender. His left lower leg scraped the side of the fender causing a laceration. Supervisor: glenn koepp
## 1919 06/05/2001 10:37 am (sshort) employee hit his right elbow on the step of a truck on 5/16/01. Mr. Powell turned and moved too quickly causing him to strain his elbow. Supervisor: mark hartman
## 1920 06/05/2002 07:15 am (fblackmo) employee stopped to assist a motorist while on shoulder of I-40, employee was stung by a bee. Employee had an allergic reaction and had to be transported by ambulance to duke medical center. Supervisor: t. W. Kirk
## 1921 06/05/2002 07:28 am (fblackmo) employee was putting up red top survey stakes to mark a washout using a 4lb hammer. The top of the red top stake broke, causing him to strike his left hand. Supervisor: rodney c. Wood
## 1922 06/05/2002 07:40 am (fblackmo) employee lifted his right leg to push down a support handle on a crane while lifting his leg he felt a sharp pain. Supervisor: thomas e. Johnson
## 1923 06/05/2002 08:11 am (fblackmo) employee was cutting away brush from a construction easement, a portion of a tree limb struck him above the right eye. Supervisor: j. E. Johnson
## 1924 06/05/2002 08:30 am (fblackmo) employee states while attempting to get a 10 x 12 timber unstuck, it swung around and struck his right leg. Supervisor: r. L. Johnson
## 1925 06/05/2002 08:57 am (fblackmo) employee was cutting dead pin trees on state road 1412 (n. Turnpike road). Employee removed a tick on friday 5/24/2002 from his right forearm. The head of the tick remained embedded in his forearm. Supervisor: william
## 1926 06/05/2003 02:16 pm (fblackmo) employee state his vehicle was struck by a side mirror from an on coming tandem dump truck. Supervisor: c. W. Wethington
## 1927 06/05/2003 03:01 pm (fblackmo) employee states while pulling on mail box she, felt pain in her neck area. Supervisor; b. R. Knowles
## 1928 06/05/2003 03:28 pm (fblackmo) employee was removing the cover of a ceiling light when, he cut his finger. Supervisor; harvey magnum
## 1929 06/05/2003 12:06 pm (fblackmo) employee was climbing out of rescue boat when, his finger was caught between the rail and ladder. Supervisor: k. J. Morris
## 1930 06/05/2003 12:43 pm (fblackmo) employee was walking down a slope when, he felt pain in his right ankle. Supervisor: h. W. Hicks jr
## 1931 06/06/2000 01:01 pm employee strained his lower back while raising tailgate lever on truck on 5/22/00. Mr. Helms states his back and his right leg has been hurting ever since incident. Supervisor: marc p. Morgan
## 1932 06/06/2000 02:17 pm employee was getting into vehicle after assisting a motorist; when he slipped on wet step injuring his left shoulder. Supervisor: don l. Carpenter 06/05/2002 03:42 pm (hoxendin)
## 1933 06/06/2000 02:23 pm employee was walking into foyer; when she slipped and fell on the floor injuring her left side and lower back. Supervisor: tina varney
## 1934 06/06/2000 02:35 pm employee found a tick embedded in his scalp while working on guardrails on I-40/buncombe county. Supervisor: wayne l. Miller
## 1935 06/06/2000 02:50 pm employee was sitting on nc 58 with traffic stopped both directions waiting for paint truck to turn into sr 1102, when a dump truck went around the stopped traffic in south bound lane. Crossing on a double yellow line gong approx. 6
## 1936 06/06/2000 02:55 pm employee was driving sign truck when vehicle ran off road. The right front tire went down in a hole causing employee to injured right knee and strain/twisted left side of back. Supervisor: f. E. Faircloth
## 1937 06/06/2000 03:22 pm the driver of the dump truck forgot to pull the latch to unlock the tailgate. Employee climbed on the side board to pull the latch. When the tailgate opened, someone yelled, "let it down. " the bed came down striking Mr. Willett
## 1938 06/06/2000 03:36 pm passenger was locked in bathroom on ferry vessel. Mr. Scarborough gained access through rusted door vent to assist passenger; when he received cuts/scrapes to his left hand. Supervisor: terry l. Gray
## 1939 06/06/2000 12:56 pm employee strained his lower back while lifting dredge pipes on 5/15/00. Supervisor: h. F. O'neal
## 1940 06/06/2001 01:56 pm (sshort) employee was cleaning vines and debris from the paddles on the athey loader on 5/16/01. He came in contact with poison ivy/oak plants and has contact rash on his left arm and left side. Supervisor: r. D. Powell
## 1941 06/06/2001 02:01 pm (sshort) employee was chopping/clearing bushes on 5/17/01; when he came in contact with poison ivy plants. Mr. Hughes has contact rash on both legs, arms and his face. Supervisor: wesley grindstaff
## 1942 06/06/2001 02:17 pm (sshort) employee was mowing grass when mower hit dirt and gravel, causing foreign matter to enter Mr. Roper's right eye. Supervisor: w. H. Lynch
## 1943 06/06/2001 02:22 pm (sshort) employee was reaching for a shovel off back of pick up truck; when his right hand was punctured by a splinter. (on webbing of right hand between thumb and fore finger) supervisor: r. D. Powell
## 1944 06/06/2001 02:37 pm (sshort) during lunch Mr. Brown decided to get on broom tractor to sit down on 5/21/01. While getting on tractor, he struck his head on a piece of metal that holds the mirror. Mr. Brown has a cut requiring 3 stitches on top of hi
## 1945 06/06/2001 02:48 pm (sshort) employee was using grout material working on bridge #156 on 5/22/01; when material got into his left eye. Supervisor: ronald canady
## 1946 06/06/2002 10:41 am (fblackmo) employee was mowing grass when some foreign matter landed in his left eye. Supervisor: carl vestal
## 1947 06/06/2002 11:01 am (fblackmo) employee states that wind blew debris into his right eye. Supervisor: b. Moore
## 1948 06/06/2002 12:56 pm (fblackmo) employee was climbing stairs and knee buckled causing employee to fall injuring left knee. Supervisor: jamie c. Duckworth
## 1949 06/06/2003 08:56 am (fblackmo) employee states while lifting a set of 11x17 set of plans she, felt pain in her right hand and wrist. Supervisor; kimberly l. Canady
## 1950 06/07/1999 02:25 pm employee was driving a steel post into asphalt with 8 pound sledge hammer, when he felt something pull on his left side, lower back area.
## 1951 06/07/1999 02:30 pm employee was walking by a bay door, when the wind blew trash in his right eye.
## 1952 06/07/1999 02:37 pm employee was sharpening a bush axe with a file, when his hand slipped and he cut his left thumb. 02/01/2000 01:01 pm
## 1953 06/07/1999 03:26 pm employee was removing a lid off a 55 gallon drum to place a sample of aggregate inside, when he cut his right small finger on sharp lid.
## 1954 06/07/1999 03:35 pm employee was lifting density weight from storage box, when her right thumb caught between edge of box and weight. The box sharp edge cut her thumb.
## 1955 06/07/1999 03:58 pm employee was exposed to poison oak plants on lower legs.
## 1956 06/07/1999 09:37 am employee was lifting a heavy piece of scrap metal, when he felt a twitch in his lower back. The twitch went away, but came back on 5/27/99.
## 1957 06/07/1999 09:49 am employee was driving a post into the ground. When he lifted the hand driver too high, it deflected off top of the post and hit his head. The right side top of head was cut requiring stitches.
## 1958 06/07/1999 09:57 am employees right middle finger was caught between the tailgate and the dump body. He was removing a piece of rip rap that was lodged.
## 1959 06/07/1999 10:04 am employee was loading hydraulic pump in the back of pickup truck. He lifted the pump over the side and laid it on bed. When he let go of the pump; he twisted to find a different way to lay in in the bed of pickup. When the pump t
## 1960 06/07/1999 11:26 am employee had backed under hopper to get a load of asphalt. The hopper doors were not closed, when the operator of the asphalt plant dumped 9 tons of asphalt into truck. This caused the truck to bounce injuring employees back.
## 1961 06/07/2000 10:21 am while working with patch crew laying stabilization fabric, employee stepped into a hole under fabric twisting his right ankle/foot. Supervisor: d. L. Parson
## 1962 06/07/2002 09:01 am (fblackmo) employee found a tick on his left arm while doing patch work on state road 1753. Employee states that later that night before taking shower he found a tick embedded under the skin and had to go to the hospital to get it
## 1963 06/08/1999 03:21 pm employee was mixing concrete when the wind blew sand into his eye. 02/01/2000 12:52 pm
## 1964 06/08/2000 01:01 pm employee was using a weed eater when something flew into his right eye. Supervisor: g. R. Mcginnis
## 1965 06/08/2000 10:43 am employee was putting up traffic signs with a gasoline hole digger (auger); when he broke and cut his right middle finger. Supervisor: r. D. Bass
## 1966 06/08/2000 10:49 am employee fell over a cigarette butt container injuring his right elbow. The employee was leaving the building through a garage door at time of incident. Supervisor: capt. G. P. Ramsey
## 1967 06/08/2000 10:56 am employee was assisting motorist load a utility trailer; when he heard his right wrist pop. Mr. Bobbitt has a fractured bone above his right thumb. Supervisor: steve clayton
## 1968 06/08/2000 11:03 am employee was removing a keel cooler from the dredge merritt. He was leaning on his left side removing nuts; when he felt pain in his lower back. Supervisor: richard dewhurst
## 1969 06/08/2000 11:08 am employee was picking up trash bags on sr 1933 and tossing them into dump truck; when she felt pain in her right shoulder. Supervisor: r. D. Holland
## 1970 06/08/2000 11:12 am employee had just finished a road test with a customer on 6/2/00. While in parking lot, customer stamped on brakes causing examiner to go back and forth several times in vehicle. Ms. Young injured her neck and upper back. She a
## 1971 06/08/2000 11:33 am employee was installing a door on a tractor; when the door slipped off the hinge pulling him forward and twisted his left knee. Supervisor: j. C. Sloan
## 1972 06/08/2000 11:39 am employee was helping two other employees push the tailgate up on dump truck; when he felt pain in his right hand. Supervisor: p. M. Barnes
## 1973 06/08/2000 11:44 am employee was lying his head against the wall to install pipe; when he came in contact with poison ivy. He has contact rash on arms, legs, and eyes. Supervisor: z. D. Metcalf
## 1974 06/08/2000 12:15 pm employee was putting down asphalt strips; when he came in contact with a tick on his upper right thigh. Supervisor: terry j. Shaw
## 1975 06/08/2000 12:55 pm employee was standing on top of gas tank of dump truck pushing limbs; when limbs moved the canvass became free, snapped back in position striking him in his left shoulder. Supervisor: arthur glenn short
## 1976 06/08/2010 08:19 am (slee) employee's were stopped on I-40 at mm 365 to put out signs for grouting project, a tractor trailer traveling west at 70 mph drifted onto paved shoulder, struck arrow board being pulled by dot truck and hit the truck. 06/08
## 1977 06/09/1999 05:01 pm employee had his hearing checked at the wellness fair by beltone representative. He had a follow up appointment on 11/04/98. The examination indicated hearing loss that May require a hearing aid. Employee states he thinks the ca
## 1978 06/09/1999 10:28 am employee slipped and fell on wet grass while contacting property owner. She injured her left leg as a result from the fall.
## 1979 06/09/2010 08:30 am (slee) sov operated by employee traveling north on new alignment unpaved roadway when vehicle lost control, hitting median embankment causing vehicle to roll several times coming to rest on its side.
## 1980 06/10/1999 10:34 am employee was riding back to duty station with r. L. Cartrette (driver of the state vehicle). Traveling west on us 74/76 when a vehicle traveling on sr 1740 ran a stop sign at the intersection and collided with the state vehicle.
## 1981 06/10/1999 10:44 am employee was guiding concrete pipe into place by pushing and pulling on chain holding the pipe. Employee has an old lower back injury which flared up during this incident.
## 1982 06/10/1999 10:49 am employee was using a welding torch to burn with, when it struck his coveralls and caught fire. Employee suffered burns to his left leg.
## 1983 06/10/1999 11:07 am employee was cutting limbs off of bradfrod pear trees when limb fell against base of tree. The limb bounced trunk and struck his left wrist.
## 1984 06/10/1999 11:25 am employee was inspecting a truck tractor, when wind blew door shut on his left hand bruising his fingers.
## 1985 06/10/1999 11:40 am employee was assisting in operating a two-man auger, when the auger struck a rock causing the employees right hand to come in contact with fence rail. Employee has cuts and abrasions on upper side of his right hand.
## 1986 06/10/1999 11:50 am employee was walking to parking lot to give a motorcycle road test, when she tripped over cement block in pathway injuring her right hand, left wrist, and both knees.
## 1987 06/10/1999 12:16 pm employee was cutting right of way with a chainsaw and pulling/chipping brush on sr 1314. The employee did not have any pain on 5-28-99, but the next morning did experience pain in left lower back. Employee went to emergency room
## 1988 06/10/1999 12:26 pm employee was trying to pry apart a table using a pry bar. He was prying upwards lifting a heavy load and strained his back.
## 1989 06/10/2003 02:00 pm (fblackmo) employee jerk back to get out of the way of a falling log when, he felt pain pain in his lower back area. *show all bills to joyce*
## 1990 06/10/2003 02:21 pm (fblackmo) employee was working in the engine room removing water with an eliminator when, foreign object went into his left eye. Supervisor: thomas foster bowser
## 1991 06/10/2003 02:42 pm (fblackmo) employee was working in high grass when, she found a tick on her right knee. Supervisor: kevin bowen
## 1992 06/10/2003 03:40 pm (fblackmo) employee was hitting the pin with a hammer when, paint went into his right eye. Supervisor: randall jackson 08/29/2003 11:42 am (gwhite) 09/08/2003 10:48 am (gwhite)
## 1993 06/10/2003 03:55 pm (fblackmo) employee was putting tailgate on up on dump-truck when, he slipped and hit his right hand on the gate. Supervisor; dennis brann
## 1994 06/10/2003 09:36 am (fblackmo) employee states while walking to go home she, fell on the sidewalk. Supervisor: michelle hinton
## 1995 06/10/2003 09:59 am (fblackmo) employee stepped on a running board to adjust a mirror when, he felt pain in his lower back area. Supervisor: stephen dillon
## 1996 06/10/2003 10:42 am (fblackmo) employee states he found a tick on his head while doing his daily sign maintenance duties. Supervisor; tim foster
## 1997 06/10/2003 11:27 am (fblackmo) employee was conducting a bridge inspection when, he slipped on a vine causing him to fall. And injury his right foot. Supervisor: e. Guerra
## 1998 06/10/2003 11:38 am (fblackmo) employee states while lifting a tire he, felt pain in his back. Supervisor: russell ramsey
## 1999 06/10/2003 11:47 am (fblackmo) employee states he was picking up cleaner to clean bathroom when, some of the cleaner caught on his hands. Supervisor: master avery
## 2000 06/10/2003 12:02 pm (fblackmo) employee was driving a dump truck when, a private vehicle caused him to lose control of the truck and overturned his equipment. Supervisor; don carpenter
## 2001 06/11/2001 01:48 pm (pward) employee's finger was caught in the steering wheel when the right rear brakes locked up. Jammed left ring finger. Supervisor: rudy batchelor
## 2002 06/11/2001 01:56 pm (pward) employee was cleaning up dump truck, which was parked on the maintenance yard. He turned the wrong way while shoveling towards the back of the truck. Twisted back supervisor: h. Watson
## 2003 06/11/2001 02:03 pm (pward) employee was working in bucket truck with 3/8" wire, making a grounding connection, when bending span around clamp connection span slipped out of employee hands and hit him on the chin. It cut his chin, doctor put in 5 sti
## 2004 06/11/2001 02:53 pm (sshort) employee was trying to free wire rope from between a bean and the pile; when the rope struck Mr. O'neal's right hand and thumb. He fractured his right thumb and bruised his right hand. Supervisor: m. J. Gray
## 2005 06/11/2001 03:05 pm (sshort) employee was sitting in driver's seat of vehicle; when it was struck in the rear by a private vehicle. Mr. Cash has stiffness and pain in his back, neck, and shoulder areas. Supervisor: melvin dorsey
## 2006 06/11/2001 04:17 pm (pward) employee was either bitten or stung by a insect while operating a truck. Supervisor: c. N. Edwards, jr.
## 2007 06/11/2001 11:36 am (pward) employee was moving several hundred feet of metal pipe with forklift, but had to move some by manual arrangement. Pain in back and leg. Supervisor: s. G. Dillon
## 2008 06/11/2001 11:52 am (pward) ofc. R. B. Baker was inspecting number 2 & 3 axle springs when his hard hat fell off. He started out from under truck and hit the left side of his head on bottom of trailer causing a laceration to his scalp. Supervisor: ssg
## 2009 06/11/2001 12:03 pm (pward) inspector lilley was getting out of the patrol vehicle in the rain and twisted his body which caused a sprain to his left lower calf and knee causing him to fall backward hitting his right forearm and elbow causing contusio
## 2010 06/11/2001 12:14 pm (pward) employee was on her way to restroom and around the corner are cubicles stacked against the wall to be installed. One of the workers was doing something with the cubicle and one slipped out and fell toward employee.. She le
## 2011 06/11/2002 01:37 pm (fblackmo) employee states while conducting a road test the customer hit a concrete wall while trying to turn in to park to car. Supervisor: lorrie sineath
## 2012 06/11/2002 01:51 pm (fblackmo) employee states that while giving road test the customer ran into a parked car. Supervisor: teresa h. Clodfelter
## 2013 06/11/2002 02:06 pm (fblackmo) employee walked out of engine room as engineer was pulling electrical shore tie cable causing employee to trip and fall, watching weight on left hand and wrist. Supervisor: t. L. Gray
## 2014 06/11/2002 02:16 pm (fblackmo) employee states that while working on mower the jack stand slipped causing the mower to fall on his right arm. Supervisor: w. M. Horne
## 2015 06/11/2002 02:34 pm (fblackmo) employee states had an reaction to grinder on trailer. Medical notes states that contact dermatitis likely was due to hair dye, non-work related condition. Supervisor: hosea blount
## 2016 06/11/2002 02:51 pm (fblackmo) employee was returning home from performing fabrication plant audits. Employee states while in the east bound side of I-40 in knoxville, tn, following a group of tracker trailers when some objects came out from under one
## 2017 06/11/2002 03:19 pm (fblackmo) employee states while doing survey a tick bite him on his right leg. Supervisor: jerry lindsey
## 2018 06/11/2002 03:39 pm (fblackmo) employee was running a chainsaw when a woodchip flew into his left eye. Chip was lodged between upper eyelid and eyeball. Supervisor: j. B. Campbell
## 2019 06/11/2002 03:49 pm (fblackmo) employee was weedeating bridge rails and guard rails when he came into poison oak. Supervisor: w. T. Teague
## 2020 06/12/2000 05:15 pm employee stated he was in a squatted position placing boards under a snow plow hook up; when he felt a pull pain in his lower back. Supervisor: w. L. Thompson
## 2021 06/12/2000 05:18 pm employee was working on bridge # 17 in scotland county; when he was stung by a wasp on his left forearm. Supervisor: w. T. Lowery, jr
## 2022 06/12/2000 05:23 pm employee found a tick on his right arm while putting down stakes on a construction sight on 5/26/00. Supervisor: r. A. Vause
## 2023 06/12/2000 05:28 pm employee was shoveling asphalt; when he felt a pop/pain in his right shoulder. Supervisor: k. L. Anderson
## 2024 06/12/2000 05:36 pm employee stepped off a curb, causing him to suffer traumatic events injuring his lower back, neck and both hips. Supervisor: michael g. Jarman
## 2025 06/12/2001 04:57 pm (sshort) employee was sweeping off peedee river bridge on 5/24/01; when a vehicle passing by caused debris to blow into Mr. Gathings left eye. Supervisor: h. M. Thompson
## 2026 06/12/2001 05:02 pm (sshort) employee was finishing up doing a digout with jackhammer on 5/31/01. The jackhammer was on the bumper of air compressor to do the next dig; when it slipped and fell on top of his right foot. Supervisor: a. L. Smith
## 2027 06/12/2001 05:09 pm (sshort) employee was welding on side of road with safety shield on; when a large truck passed by causing gravel/debris to blow into Mr. Bivins left eye. Supervisor: r. L. Tipton
## 2028 06/12/2001 05:14 pm (sshort) employee was operating backhoe; when the hydraulic hose busted loose. The hose sprayed fluid into his face and left eye. He immediately used eye wash from first aide kit and went for medical attention on 5/24/01. Superv
## 2029 06/12/2001 05:19 pm (sshort) employee was removing brakes with a hammer on 5/30/01; when debris fell from truck frame into his left eye. Supervisor: d. E. Francis
## 2030 06/12/2001 05:23 pm (sshort) employee was working on sr 1435 near sturgeon creek on 6/4/01; when he removed a seized tick from his right side. The site became red and swollen overnight causing employee to seek treatment for tick bite. Supervisor: r
## 2031 06/12/2001 05:31 pm (sshort) employee was working on chip spreader operating belt; when he was stung by a bee on his upper right arm on 5/30/01. Supervisor: t. E. Johnson, jr
## 2032 06/12/2002 07:14 am (fblackmo) employee was moving cut up and decayed wingwall boards form the back of the truck bed to the front to keep pieces from falling off during transport and to make room to load additional materials. Employee was walking on
## 2033 06/12/2002 07:32 am (fblackmo) employee was clearing scrubbing a sight distance on state road 1805 in lenoir county. Employee was swinging the bush axe with one hand cutting the brush and weeds close to ground level, when the axe struck a stub causin
## 2034 06/12/2002 07:44 am (fblackmo) employee bent down to cut string to put on weedeater, tried to cut four strings at a time and knife slipped hitting employee in right leg around knee area. Supervisor: hugh williams
## 2035 06/12/2002 08:58 am (fblackmo) employee was cutting steel plate with torch. Piece of steel did not fall off. Employee struck plate with left hand causing plate to fall on left forearm. Supervisor: r. D. Sherrill
## 2036 06/12/2002 09:17 am (fblackmo) employee was stepping up steps to the tractor and pulled something in his right knee. Supervisor: t. J. Burchell
## 2037 06/12/2002 09:43 am (fblackmo) employee was operating weed eater along guardrail on hwy 168. Employee stopped for a few minutes, put his arm down and burned his arm on the weed eater motor. Supervisor: r. E. Langley
## 2038 06/12/2003 10:53 am (fblackmo) employee was lifting on bar to place plate for bolts to be inserted on the lee-boy when, his right ankle gave away. Supervisor: randall jackson
## 2039 06/12/2003 11:36 am (fblackmo) employee was walking on shoulder of road when, he stepped into a trench causing the injury to his back. Supervisor; l. W. Lyall
## 2040 06/12/2003 11:55 am (fblackmo) employee found a tick on his groin area which, caused employee to experience pain and swelling. Supervisor; jeff allen
## 2041 06/13/2000 02:25 pm employee was knocking scarefire points off to change them; when a piece of metal hit him on the left side of his chin. Supervisor: c. B. Lunsford
## 2042 06/13/2000 02:34 pm employee was operating a sheepfoot roller (packing dirt); when he pulled a muscle in his right leg and hip. Roller was rolling backwards and ran over a big rock, causing machine to jolt his leg causing the injury. Supervisor: mark
## 2043 06/13/2000 02:42 pm employee was lifting burlap bags; when sand from the bag flew into employees left eye. Supervisor: r. D. Sherrill
## 2044 06/13/2000 03:50 pm employee was manually loading wood from a fallen tree into a backhoe front bucket; when he twisted/strained his lower back (left side). Supervisor: m. H. Brewer
## 2045 06/13/2000 03:57 pm employee was repairing guardrails on I-40; when he was bitten by a tick on his right leg above ankle. Supervisor: vernon smith
## 2046 06/13/2000 04:05 pm employee was loading a dump truck with the front end loader; when a gust of wind blew dirt into his right eye. Supervisor: mike ennett
## 2047 06/13/2000 04:15 pm while adjusting timber post, the bolt being used for a hand hold slid causing his left thumb sprain. Supervisor: glenn crews
## 2048 06/13/2002 02:06 pm (fblackmo) employee was clearing right-of-way on state road 1605, running chainsaw and pulling brushes. Working 30 to 45 minutes employee complained of being too hot and was sick on the stomach. Supervisor: d. M. Pressley
## 2049 06/13/2002 02:18 pm (fblackmo) employee was helping remove old deteriorated nail boards from bridge floor, he tripped over debris falling off board that he and another employee was removing. The fall caused pain in his lower left side. Employee did n
## 2050 06/13/2002 02:33 pm (fblackmo) employee was bending down and twisted back while holding a hand held calculator to retrieve data from a water level monitor gauge. Supervisor: clint b. Little
## 2051 06/13/2002 02:45 pm (fblackmo) employee states while lifting a box of hand books, felt pain in right arm. Supervisor: terry blevins
## 2052 06/13/2002 02:57 pm (fblackmo) employee was working with crew clearing the right of way around bridges when, came into contact with poison oak. Supervisor: terry j. Davis
## 2053 06/13/2002 07:35 am (fblackmo) employee was weed-eating around bridges on us 23-74 by pass, came into contact with poison ivy. Supervisor: hugh williams
## 2054 06/13/2002 07:50 am (fblackmo) employee was driving back to asphalt plant, fumes from the truck caused him to become sick on the stomach, headache, and felt light headed. Supervisor: d. A. Hensley
## 2055 06/13/2002 08:21 am (fblackmo) employee states he was bitten by a tick on his left ankle. Supervisor: r. G. Crews
## 2056 06/13/2002 09:50 am (fblackmo) employee states the truck he was riding in was traveling on (old 75) the car in front of them made a sudden stop to make a left turn onto hebron road. The driver of their truck applied his brakes to avoid a rear-end col
## 2057 06/13/2002 10:46 am (fblackmo) employee states that while keying, felt pain in right hand and arm. Supervisor: phillip carlisle
## 2058 06/13/2002 12:25 pm (fblackmo) employee was taking disinfectant off shelf and bottle was punctured causing liquid to fall into employees left eye and down his neck. Supervisor: e. F. Goodwin
## 2059 06/13/2003 07:50 am (fblackmo) employee fell off the back of a truck while loading equipment. Supervisor: tim southard
## 2060 06/13/2003 08:07 am (fblackmo) employee states that he was the passager in front seat of vehicle when, the vehicle was hit in the rear. Supervisor: teddy l. Greene
## 2061 06/13/2003 08:22 am (fblackmo) employee cut his forehead while cutting a new edge on backhoe bucket. Supervisor: james keith smith
## 2062 06/13/2003 08:34 am (fblackmo) employee felt pain in his back while trying to pick up a pipe to line a driveway. Supervisor; lindsey o. Ethridge
## 2063 06/13/2003 08:52 am (fblackmo) employee states while working on road project, he slipped and fell on a wet rock causing the injury to his right thumb. Supervisor: teddy l. Greene
## 2064 06/13/2003 11:27 am (fblackmo) employee was caring new battery down to engine room when, he felt pain in his lower back. Supervisor: jeff m. Credle 10/29/2003 07:43 am (gwhite)
## 2065 06/14/2000 09:20 am employee was climbing ladder while carrying items in his right hand. When he reached the top he reached for the hand rail and missed; causing him to fall backwards landing on deck of boat. Mr. Howell bruised his left leg/thigh. Su
## 2066 06/14/2000 09:25 am employee was going down steps; when her foot slipped and missed a step. She tried to catch herself causing her to bruise her left elbow and left knee contusion. Supervisor: pam guptill
## 2067 06/14/2000 09:31 am employee was trimming scrubery around power poles in chowan county on 5/15/00. Later that night he noticed and removed a tick from his stomach area. Supervisor: d. L. Lane
## 2068 06/14/2000 09:37 am employee was driving down a rough, bumpy road on 5/25/00. She states when she shifted gears she felt a pain in her lower back. Supervisor: tim simpson
## 2069 06/14/2000 10:00 am employee was raking asphalt when he pulled muscles in his stomach. Supervisor: jerry pate
## 2070 06/14/2000 10:30 am employee found a tick in his groin area after working in a pasture erecting a fence on 5/23/00. Supervisor: marty craig tillman
## 2071 06/14/2000 10:35 am employee was climbing out of motor grader; when he struck his left elbow on the mirror. The mirror cut him requiring six stitches to close the wound. Supervisor: marty craig tillman
## 2072 06/14/2000 10:45 am employee was climbing down on wet ladder on marine vessel; when he slipped and fell on the deck below. Mr. Sawyer sprained his right hand, left elbow and has several lacerations and abrasions. Supervisor: t. L. Gray
## 2073 06/15/1999 03:56 pm employee was driving in state vehicle to a project site, when a private vehicle hit vehicle in rear. This accident caused the employee back and middle shoulder area strain.
## 2074 06/15/1999 04:12 pm employee was installing wheel on truck on 6-4-99, when tire being aired up in cage behind the employee exploded. The employee twisted to see what happened and felt mild to sharp muscle pains and discomfort in lower back.
## 2075 06/15/1999 04:34 pm employee hit right knee on edge of truck door, when he turned to secure a utility bin on side of truck.
## 2076 06/16/2000 09:49 am employee was driving us 52 south on 6/2/00; when he was struck from behind by a private vehicle. Mr. Sandoval has injuries to his lower and upper back from accident. Supervisor: r. D. Brown
## 2077 06/16/2000 09:57 am employee was moving/lifting a road barrier; when the wood of the cross barrier broke/slipped and struck employee in his nose. Supervisor: colby flaherty.
## 2078 06/16/2000 10:00 am employee suffered from heat exhaustion on 5/31/00 while working on katie court in forsyth county. She states she got out of truck experiencing feelings of dizziness, nausea, faintness, clammy skin, and a really sick feeling. Super
## 2079 06/16/2000 11:52 am employee was stepping down off the back of a truck; when his left foot landed in a hole in the ground. He lost his balance and fell sprained his left ankle. Supervisor: f. E. Faircloth
## 2080 06/16/2000 12:14 pm employee was working on a piece of steel plate; when it slipped and fell on his left shin/ankle. Supervisor: kevin lamar cooke
## 2081 06/18/1999 04:24 pm employee was cutting bushes around bridges with a brush cutter, when he came in contact with poison plants. Both arms and under his neck was injured. Note: employee was wearing a long sleeve shirt, gloves, and using poison preven
## 2082 06/18/2001 01:44 pm (sshort) employee was lowering his welding shield over his face; when a piece of metal got in his right eye. Supervisor: kevin lamar cooke
## 2083 06/18/2001 01:48 pm (sshort) employee was picking up diskettes that fell on the floor; when she sat up and struck her right elbow on countertop. Supervisor: rosa gill
## 2084 06/18/2001 02:35 pm (sshort) employee was driving pickup truck on 6/6/01; when he felt something (an insect) bite him twice on his back. Supervisor: w. J. Turner
## 2085 06/18/2001 02:52 pm (sshort) employee was working on mechanical cutter on 6/7/01; when a piece of material came off cutter bit when he struck it with a hammer. The material struck Mr. Light in his left eye. Supervisor: robert graham
## 2086 06/18/2001 10:47 am (sshort) employee was picking up a load binder from the floor of trailer; when a splinter entered his right little finger. Supervisor: s. E. Propst
## 2087 06/18/2001 10:56 am (sshort) employee was working on laurel fork road on 5/30/01; when a piece of fence wire struck him in the forehead above his right eye. He was standing by state vehicle when object flew through the air and struck him. Supervisor
## 2088 06/18/2001 11:02 am (sshort) employee pulled muscles in chest area while trying to move barricade hanging on top of tandem truck tailgate. Supervisor: jack rollins
## 2089 06/18/2001 11:07 am (sshort) employee was exiting tractor on 6/7/01; when he pulled muscles in his lower back area. Supervisor: j. G. Cloninger
## 2090 06/18/2001 11:17 am (sshort) employee was walking to the back of tandem truck to check if load had been completely dumped. He stepped on the edge of some solid and soft mixed material and strain/sprained his right ankle. Supervisor: j. Dennis harre
## 2091 06/18/2001 11:25 am (sshort) employee was climbing down ladder into the engine room on ferry vessel; when his foot slipped on step. He fell and strained his left knee. Supervisor: r. E. Hill
## 2092 06/18/2001 11:43 am (sshort) employee was putting signs up in work zone on 5/25/01; when he got a splinter in his little right finger. Supervisor: b. K. Glover
## 2093 06/18/2001 11:49 am (sshort) employee was weighing a truck on 6/4/01; Mr. Posey was struck on forehead by a front end loader of dump truck. The loader made a small chip in his tooth when it struck him in the mouth. No vehicle was involved or propert
## 2094 06/18/2002 02:00 pm (fblackmo) employee had opened truck door to enter, holding to bar inside cab to pull up onto seat. Employee turned away from truck to speak to another employee but continued to hold bar. Wind blew door and slammed employees righ
## 2095 06/18/2002 02:12 pm (fblackmo) employee removed tick from light hip. Rash developed along with joint pain, fatigue and headache. Supervisor: j. G. Nance
## 2096 06/18/2002 02:51 pm (fblackmo) employee was removing portable scales when he felt pain in his lower back. Supervisor: sgt. Powell
## 2097 06/18/2002 03:03 pm (fblackmo) employee states that on 6/11/02 she had to slam on brakes very hard to avoid a collision with another vehicle. She seemed to be okay the rest of the day. Employee complained of soreness in her right side and leg on 6/1
## 2098 06/18/2002 10:37 am (fblackmo) employee was walking next to half buried aluminum pipe when, ground gave way causing injury to his left knee. Supervisor: e. R. Gurganus jr
## 2099 06/18/2002 10:50 am (fblackmo) adjusting tailgate on dump truck when tailgate slipped pinning his right hand between tailgate and chain. Supervisor: george coe
## 2100 06/18/2002 11:31 am (fblackmo) employee was under flat bed truck hooking up the pole trailer when he was bitten on the left temple. Supervisor: w. L. Saunders
## 2101 06/18/2002 11:52 am (fblackmo) employee was working on a clearing operation on blackrock ranch road, came into contact with poison oak. Supervisor: r. E. Austin
## 2102 06/18/2002 12:08 pm (fblackmo) employee was walking up a flight of stairs and she slipped and fell down about 3 or 4 stairs. Supervisor: john carter
## 2103 06/18/2002 12:55 pm (fblackmo) employee was scrubbing on the top half slope it had dirt on the bottom half concrete. The concrete was covered with dirt and leaves causing employee feet to slip from under him. Supervisor: dale bullard
## 2104 06/18/2003 02:02 pm (fblackmo) employee was removing a rack from the back of the truck when, she slipped and fell in a ditch. Supervisor: danny a. Worrell 7/5/2007 03:55 pm (lvaughan) per #19 injured l-knee
## 2105 06/18/2003 02:15 pm (fblackmo) employee was building a fence when he stepped on a rusty nail. Supervisor: n. C. Mckinney
## 2106 06/18/2003 02:33 pm (fblackmo) employee was in a hole when another employee passed his a sheet of plywood, plywood slipped falling on employees right foot. Supervisor: timothy. Southard
## 2107 06/18/2003 02:44 pm (fblackmo) employee was shoveling cold mix when, he slipped and fell off the back of the truck. Supervisor: d. R. Summers
## 2108 06/18/2003 02:58 pm (fblackmo) employee was cutting with die grinder when, a piece of steel went into his right eye. Supervisor: d. E. Clapton 08/29/2003 11:40 am (gwhite)
## 2109 06/18/2003 09:10 am (fblackmo) employee was hit in the rear by a tractor trailer while stopping on I-40 east. Supervisor: j. E. Stepp
## 2110 06/18/2003 09:34 am (fblackmo) employee was hit in the rear while trying to make a left turn. Supervisor: teddy l. Greene
## 2111 06/18/2003 09:49 am (fblackmo) employee states a private vehicle backed into him while walking along project line. Supervisor: b. V. Smith
## 2112 06/18/2003 10:16 am (fblackmo) employee felt pain in his lower back while, unhooking a water pump. Supervisor: t. A. Temple
## 2113 06/18/2003 10:50 am (fblackmo) employee states while working with laurel ticket the wire flag struck him in his left eye. Supervisor: paul r. White
## 2114 06/18/2003 11:02 am (fblackmo) employee states while walking into building she, slipped and fell on wet floor due to the rain. Supervisor: albert e. Joyner
## 2115 06/18/2003 11:12 am (fblackmo) employee came into poison ivy while classifying photos. Supervisor: t. K. Wheeler
## 2116 06/18/2003 11:23 am (fblackmo) employee was using a grinder for welding when, the disc on the grinder came apart causing the injury to his arm. Supervisor: samuel j. Gupton
## 2117 06/18/2003 11:40 am (fblackmo) employee was lifting a computer monitor when, he felt pain in his lower back area. Supervisor: c. S. Mcdonald
## 2118 06/18/2003 11:55 am (fblackmo) employee found a tick on his upper left thigh are. Supervisor: w. E. Price
## 2119 06/18/2003 12:09 pm (fblackmo) employee was getting her belongs out of dump truck when, the wind blew the door close on her left leg. Supervisor: shelton james
## 2120 06/19/2001 10:12 am (sshort) employee jumped off porch and sprained her ankle. Supervisor: mary ann buck
## 2121 06/20/2001 12:24 pm (fblackmo) employee barringer was at digitized station taking customers picture and hit right knee on cabinet door.: supervisor: vivian gail beck.
## 2122 06/20/2002 07:18 am (fblackmo) employee states that while leave form third floor walking down stairs, fell down at least two steps. Supervisor: pam guphill
## 2123 06/20/2002 07:47 am (fblackmo) employee states that due to repetitive motion of daily duties at computer work station and the office furniture, caused pain to back and shoulders. Supervisor: chuck dumas
## 2124 06/20/2002 08:04 am (fblackmo) employee was taking hoses off skid steer loader. The hose popped loose and struck the end of his finger and tore the finger nail off. Supervisor: r. T. Mcmanus jr
## 2125 06/20/2002 08:33 am (fblackmo) employee was walking down slope of ditch under construction causing injury to left ankle. Supervisor: e. E. Simmons
## 2126 06/20/2002 09:15 am (fblackmo) employee states that while performing field work on the shoulder of us 64 in rocky mount, found tick on inner thigh area. Supervisor: gregory a. Smith
## 2127 06/20/2002 09:28 am (fblackmo) employee states that while leaving the office for the day she felt a twitch under her buttocks area. Supervisor: susan stewart
## 2128 06/20/2002 09:48 am (fblackmo) employee was attempting to pull herself up on roller when, she felt a sharp pain in her right shoulder and arm area. Supervisor: c. D. Childress
## 2129 06/21/1999 03:00 pm employee bruised head on wooden ovehang of bridge while inspecting erosion control on a project.
## 2130 06/21/1999 03:06 pm employee was loading p. V. C. Pipe from a state vehicle when a bee stung him on back of his neck. The employee had an allergic reaction to the sting.
## 2131 06/21/1999 03:40 pm employee injured lower back while supervising paving operations on nc 51. A car drove too close to the cones and the driver side mirror hit her across her lower back.
## 2132 06/21/1999 03:48 pm employee was changing a flat tire on carryall vehicle, when he pulled muscle in right shoulder. Employee was tightening the lug nuts on the wheel when injury occurred.
## 2133 06/21/1999 03:54 pm employee was loading a sign onto a truck, when he cut his left wrist. He was reaching out to pull the sign into place when his hand slipped.
## 2134 06/21/1999 04:01 pm employee was removing old boards from building, when he steeped off bucket truck. When this occurred he punctured left foot with nail.
## 2135 06/21/1999 08:34 am employee came in contact with poison ivy while clearing survey line. The rash is on his right arm.
## 2136 06/21/1999 08:42 am employee was using weedeater to cut bushes and weeds, when he injured his right shoulder. (strain)
## 2137 06/21/1999 08:48 am employee was bitten by a tick during survey work. Tick back occurred on his upper back area.
## 2138 06/21/1999 08:53 am employee was walking out of the office, when her left foot slipped out from underneath her. This caused her to fall on her left side, injuring her left index finger and left arm pit.
## 2139 06/21/1999 09:31 am employee has repetitive usage injury to right wrist by performing office procedures. (tendonitis)
## 2140 06/21/1999 09:43 am employee was checking air hose under water tank, when he struck his head on handle of spray bar end cap. This caused the employee to cut his scalp receiving stitches.
## 2141 06/21/1999 09:55 am employee slid when soil gave out while climbing down steep river bank. He reached out to catch himself causing him to cut his right ring finger on metal scrap piece in the ground.
## 2142 06/21/1999 10:01 am employee was using chainsaw to cut right of way, when he stood up and swung chainsaw around it struck him on back of his left leg behind the knee cap. (the throttle did not cut back and the chain was still running)
## 2143 06/21/1999 10:22 am employee was pushing hinge pin into boom, when pin became stuck. Employee then took a hammer to pound/drive it in place, when hammer blow broke piece of steel from the pin. A fragment struck and embedded in her forehead one inch
## 2144 06/21/2000 08:50 am employee sprained his right elbow when rip rap rock rolled out of tailgate causing the injury. Other employees had loaded the tailgate full of the rock, so when Mr. Martin tried to open the tailgate to let some out, he could not ho
## 2145 06/21/2000 08:54 am employee state vehicle was struck by a private vehicle that had ran a stop light on 6/13/00. Mr. Couch has cervical (upper back) and shoulder strain due to this accident. Supervisor: sean sizemore
## 2146 06/21/2000 09:01 am employee strained his left knee on 6/7/00; when he stepped down off the back of a truck onto a gravel parking lot. His foot hit the gravel and rolled over to one side, throwing his knee out of socket. Supervisor: arnold cabe
## 2147 06/21/2000 09:14 am employee strained lower back area while cleaning his tracks with a bush axe on 6/8 & 6/9/00. He was required to climb up and down from his dozer at least fifty times a day. Mr. Smith was directing trucks to dump dirt at time of in
## 2148 06/21/2000 09:40 am employee strained/sprained his left ankle while walking through tall grass. He was assisting a stranded motorist when he stepped in a hole on 5/9/00. Supervisor: roy long
## 2149 06/21/2001 10:32 am (sshort) employee was welding steel plate; when the the wind blew debris into his eye. Supervisor: r. E. Cox
## 2150 06/21/2001 10:47 am (sshort) Mr. Whitaker cut his left knee on a chainsaw on 6/11/01. He had just put a new chain on saw; when he walked by it snagged/cut his knee. Supervisor: stan pararone
## 2151 06/21/2001 10:55 am (sshort) employee was walking on a slop checking for broken water lines; when his right foot became stuck in mud causing him to fall. Supervisor: b. G. Bumgarner
## 2152 06/21/2001 11:00 am (sshort) employee was help another person lift a barrel to stack on top of other barrels on 6/5/01. Mr. Alston strained/pulled muscles in his abdomen. Supervisor: c. E. Moore
## 2153 06/21/2001 11:34 am (sshort) employee was trying to lift a jogger off machine when she strained muscles in her lower back area. Supervisor: richard holloman
## 2154 06/21/2001 11:46 am (sshort) employee was operating a pick up truck; when her vehicle was struck by a private vehicle on 6/5/01. She has a bruise on her upper chest area due to the activation of the air bag. Supervisor: r. M. Freeman
## 2155 06/21/2001 11:54 am (sshort) employee was traveling east on queen street on 5/8/01; when a private truck ran a stop sign on mosley street. The employee crashed into side of truck and caused Mr. Terry to have strains/bruises to his back, neck and left
## 2156 06/21/2002 01:49 pm (fblackmo) employee was picking up limbs from the road when, the limb hit his right middle finger breaking tip. Supervisor: j. V. Riddick
## 2157 06/21/2002 02:01 pm (fblackmo) employee states that while climbing out of dump truck, heard left knee pop. Employee had severe pain in left knee. Supervisor: d. S.L
## 2158 06/21/2002 02:12 pm (fblackmo) employee was attempting to climb over to weed around bridge culvert. Employee put weight on his leg to step over the rail when the road caved in under him causing employee to fall into a cavity. Supervisor: hugh willia
## 2159 06/21/2002 02:23 pm (fblackmo) employee was lifting 14 x 24 motor grader tire when he felt intense pain in his right side. Supervisor: joyce brim
## 2160 06/21/2002 02:35 pm (fblackmo) employee acquired poison oak when he was driving r/w stakes and cutting brush on secondary roads. Supervisor: andrew murphy
## 2161 06/21/2002 02:49 pm (fblackmo) employee acquired poison oak when he was driving r/w stakes and cutting brush on secondary roads. Supervisor: andrew murphy
## 2162 06/21/2002 03:00 pm (fblackmo) employee was sitting in front passenger side of vehicle and had right hand extended outside window above his head. Co-worker closed door on right index finger. Supervisor: d. R. Roberts
## 2163 06/21/2002 03:09 pm (fblackmo) employee was conducting a field investigation when he was bitten by a tick. Supervisor: randy turner
## 2164 06/21/2002 03:27 pm (fblackmo) employee states while under tuck checking transmission something blew in his right eye. Supervisor; f. M. Burk
## 2165 06/22/1999 02:16 pm employee was driving front end loader to the job site, when a private vehicle hit him in the rear causing him to be thrown around inside of cab. He strained his muscles in lower back and neck.
## 2166 06/22/1999 02:30 pm employee inured his lower back while lowering machine leads and pile hammer. He was holding the lead straight when the cable came loose and struck employee. 02/01/2000 12:47 pm
## 2167 06/22/1999 02:56 pm employee was working with patching crew on sr 2271 in robeson county, when he fainted. The rescue unit was dispatched to the work site, he was not injured on the job. 01/11/2000 01:33 pm
## 2168 06/22/1999 03:25 pm employee was walking to the back of truck to check spreader gate, when he stepped on a board with nails in it. A nail penetrated his boot and punctured his right foot.
## 2169 06/22/1999 03:32 pm employee was working under a lowboy trailer, when dirt/trash got in his right eye.
## 2170 06/22/1999 03:37 pm employee was working with a co worker, when fiber glass particle got into his right eye. They were pushing back insulation to wire a water heater.
## 2171 06/22/1999 04:39 pm employee was helping co workers pick up signs, when center pole of sign rack hit employee on his left leg.
## 2172 06/22/1999 04:48 pm employee was climbing into cab of scraper, when he hit the top of his head on the rear view mirror on scraper.
## 2173 06/22/1999 11:21 am employee was trying to free a limb from the bed of a dump truck, when it came loose causing him to fall backward into a pile of tree limbs and debris. He has a small laceration on his left forearm.
## 2174 06/23/1999 03:44 pm employee states he loss hearing due to operating motor grader machine. For the past 24 years working on dirt roads and on construction projects when needed.
## 2175 06/23/1999 09:58 am employee was supervising crew on sr 2019 in surry county, when she was bitten on the chin by an unknown insect. She has rash to chin and neck.
## 2176 06/23/1999 10:05 am employee was bite on the right hand by a brown spider while operating tractor mower.
## 2177 06/23/1999 10:11 am employee was hit by tree on top of his hard hat, this caused a cut on his left ear.
## 2178 06/23/1999 10:21 am employee was involved in vehicle accident on 5-26-99. He was struck in the rear by private vehicle. He sustained muscle soreness and strain in his lower strain.
## 2179 06/23/1999 10:42 am employees left forearm was injured while holding a metal can. He struck the can to put a hole in it when the chipping hammer bounced off the can.
## 2180 06/23/1999 10:56 am employee was lifting limbs (approx. 8' in length, 75-100 lbs. ) when he injured his lower back. He was dragging the limb from 2 travel lanes onto the shoulder of road. He twisted to swing the limb off shoulder guardrail when injur
## 2181 06/23/2003 02:16 pm (fblackmo) employee fell over guard rail while helping another employee lift a grate into the back of a pick-up truck. Supervisor: william e. Berry
## 2182 06/23/2003 02:32 pm (fblackmo) employee was lifting a roadway light when, his finger was caught in between the edge of the truck bed. Supervisor: a. C. Culpper
## 2183 06/23/2003 03:15 pm (fblackmo) employee was standing outside of vehicle reaching in when, the door slammed on his left hand. Supervisor: j. M. Laviner
## 2184 06/23/2003 03:25 pm (fblackmo) employee was putting up a fence when, he hit his finger on metal post. Supervisor: j. L. Mckinney
## 2185 06/23/2003 03:38 pm (fblackmo) employee was exiting vehicle when, the door swung back striking him on his right knee. Supervisor: derek smith
## 2186 06/23/2003 03:49 pm (fblackmo) employee was cleaning windows when, he lost his footing causing the injury to his left hand. Supervisor: jerry green
## 2187 06/23/2003 12:58 pm (fblackmo) employee states while assisting other crew members pump water, the hose locked up causing him to fell pain in his neck and right shoulder area. Supervisor: h. D. Wiggins
## 2188 06/24/1999 08:28 am employee was standing on the ground on drivers side of flatbed crew cab. He was preparing to raise the hood for inspection, when he felt a sharp pain in the middle of his back. He also heard a loud pop causing severe pain in his
## 2189 06/24/1999 08:41 am employee was a passenger in vehicle accident. They were hit from behind by a private vehicle. Mr. Morgan's injuries involved strain in the neck and between shoulders.
## 2190 06/24/1999 09:02 am employee was clearing bush for the purpose of slope-staking, when he came in contact with poison ivy. He broke out with the rash on his face, neck, both arms and hands.
## 2191 06/24/1999 09:11 am employee twisted his right knee, while climbing up steep slope taking cross sections.
## 2192 06/24/1999 09:20 am employee was setting up stakes on roadway, when he was bit by a dog on his right thumb. The employee had a stake in his hand and the dog lunged for the stake and bit his hand.
## 2193 06/24/1999 09:27 am employee came in contact with poison ivy in the field
## 2194 06/24/1999 09:40 am employee was tightening down clamp on tension spring while co worker was holding wrench. The wrench slipped off the spring bolt end striking his right hand on back of knuckles.
## 2195 06/24/1999 09:47 am employee was operating a belt loader, when dust and debris consumed his body given him a rash on entire body. Dust and debris was in the air due to the weather.
## 2196 06/24/1999 09:56 am employee was hit on top of head with the handle of a powered post. The employee turned the handle to the inside while driving.
## 2197 06/24/1999 10:10 am employee was s passenger in state vehicle, when employees head struck the top of truck injuring his neck. The accident happened at muddy creek bridge in forsyth county.
## 2198 06/24/2002 03:49 pm (fblackmo) employee was driving a broom tractor on us 301 pulled off shoulder of road to let traffic by. Tractor was shaking back and forth causing pain to left shoulder and neck. Supervisor: t. J. Burchell
## 2199 06/24/2002 10:51 am (fblackmo) employee was flagging, he blacked out and fell. Employee hit right elbow on pavement causing a laceration. Supervisor: ronald e. Joyce
## 2200 06/24/2003 11:12 am (fblackmo) employee came into contact with poison ivy while surveying for highway construction project. Supervisor: w. T. Anderson
## 2201 06/24/2003 11:30 am (fblackmo) employee states while loading steel, his finger became caught between the pile and the lead. Supervisor: dale bullard
## 2202 06/24/2003 11:42 am (fblackmo) employee fell from dump truck while repairing a tare, causing the injury of his neck, shoulder, and left elbow. Supervisor: q. M. Watson
## 2203 06/24/2003 12:01 pm (fblackmo) employee was cutting tree limbs when, one of the trees twisted and fell on employee's head and chest area. Supervisor: t. Cothran
## 2204 06/24/2010 09:57 am (slee) sov was struck by pov on the front driver's side and was spun around. Sov rolled several times along us hwy. 117. 06/24/2010 04:19 pm (slee) other person: jeremy truzy, 110 e. Williamson st., mt. Olive, nc. 07/26/201
## 2205 06/25/1999 02:39 pm employee was drilling out hydraulic fitting, when the drill bit grabbed causing the drill to rotate. This caused the drill to slam and fracture his right hand.
## 2206 06/25/1999 03:18 pm employee came into contact with poison ivy while surveying in mecklenburg county. The rash is located in various places.
## 2207 06/25/1999 03:29 pm employee was bitten by a spider on her right thigh, while moving old fence posts.
## 2208 06/25/1999 03:36 pm employee struck his right knee on canvas rail bolt, while mounting side of dump truck body. He has bruises and an abrasion on right knee.
## 2209 06/25/1999 03:42 pm employee was walking on shoulder of road, when he slipped and fell striking a guardrail. He cut his right ear from this incident.
## 2210 06/25/1999 04:00 pm employee was loading straw on truck while lifting bale of straw he felt a sharp pain in his left side. Hernia on left side of body.
## 2211 06/25/2001 02:35 pm (fblackmo) the employee was cleaning around bridge, pulled on a vine with pitchfork, wasp came out of vines and stung the employee on the nose. Supervisor: a. W. Smith
## 2212 06/25/2001 03:00 pm (fblackmo) the employee was dismounting vehicle and when he stepped onto the pavement his weight shifted and he turned his ankle. Doctor determined it to be a sprained ankle of moderate severity. Supervisor: travis j. Spicer
## 2213 06/25/2001 03:20 pm (fblackmo) the employee was cutting right of way and was in poison oak. Supervisor: j. D. Hazelwood
## 2214 06/25/2001 04:24 pm (fblackmo) the employee was mowing grass. He apparently breathed in some type of fumes, causing irritation to throat and lungs. Supervisor: charles frank vick
## 2215 06/25/2001 12:01 pm (fblackmo) employee had gotten out of truck and was walking toward the work area to help with shoveling rocks of asphalt, thats when a private vehicle struck him from behind. Employee states that he did not fill any pain until app
## 2216 06/25/2003 02:32 pm (fblackmo) employee was pulling tree limbs when, the limb hit her leg. Supervisor: eddie guganious
## 2217 06/25/2003 02:47 pm (fblackmo) employee was walking across parking lot when, he was stung on his right arm. Supervisor: victor long
## 2218 06/25/2003 03:22 pm (fblackmo) employee states he felt pain in his lower back area while, handing a 50lb bag of fertilizer from the back of a truck. Supervisor: j. F. Sloop
## 2219 06/25/2003 03:34 pm (fblackmo) employee was using a chainsaw to clear right of way when, the tree snapped and kicked back striking employee on his lower left leg. Supervisor: mark williams
## 2220 06/26/2001 09:06 am (fblackmo) the employee was welding hinge onto dump truck frame. When the employee started to get up he used his left hand to pull himself up and he felt pain in his shoulder. Supervisor: k. R. Burrell
## 2221 06/26/2001 09:36 am (fblackmo) the employee, while running the long arm (mower), his left foot pressing on the clutch caused a blister to form. The blister did not bust until friday when he pulled his boot off. Supervisor; marc p. Morgan
## 2222 06/26/2001 10:13 am (fblackmo) the employee, Mr. Floyd had to remove brush from bridge in order to complete the bridge inspection. During the removal of the brush he came into contact with poison ivy. Supervisor; w. L. Hicks
## 2223 06/26/2001 10:21 am (sshort) employee was trying to get in truck to turn on pto; when the step split/broke causing Mr. Jarrett to sprain/strain his right knee. Supervisor: r. D. Isley
## 2224 06/26/2001 10:26 am (sshort) employee was getting off loader machine on 6/20/01; when he turned to walk away he twisted his left ankle. Supervisor: c. N. Edwards, jr
## 2225 06/26/2001 10:34 am (fblackmo) the employee walked into the holder for cones on front of carryall. Supervisor; mark l. Fogleman
## 2226 06/26/2001 10:40 am (sshort) employee was getting off roller machine; when he missed a step and fell backwards onto leeboy paver. Mr. Adams strain/sprained his left shoulder and injured his back and right ear. Supervisor: r. D. Peeler
## 2227 06/26/2001 10:46 am (sshort) employee was waiting on forklift driver to bring her supplies to be loaded onto truck on 6/15/01. When her right foot was accidentally run over by forklift. Mrs. Jackson 3rd toe on her right foot was crushed and her 2nd
## 2228 06/26/2001 10:54 am (sshort) employee stated on or about 6/1/01 her right elbow began to hurt. Ms. Burris went to the doctor on 6/13/01 and was diagnosised with epicondylitis (tennis elbow) and was restricted to modified duty. Supervisor: roger l.
## 2229 06/26/2001 10:55 am (fblackmo) the employee, officer christopher newbern injury occurred as his right hand was holding the pocket knife and he was forcing the blade toward his left hand area. The knife slipped and caused the blade to strike the left
## 2230 06/26/2001 11:01 am (sshort) employee was getting off motorgrader machine; when he lost his balance and fell to the ground. Mr. Sizemore sprained his right ankle on 6/18/01. Supervisor: t. M. Smith
## 2231 06/26/2001 11:08 am (sshort) employee was picking up roadside litter on 6/6/01; when he was bitten by a tick on his back. Supervisor: joe h. Mckinney
## 2232 06/26/2001 11:19 am (fblackmo) the employee was operating chainsaw and cut into a stump that was covered in poison ivy. Supervisor; l. S. Carpenter, jr
## 2233 06/26/2001 11:21 am (sshort) employee was using a bushaxe to cut trees around bridge on 6/12/01. When he hit a small tree the bushaxe twisted and sprained Mr. White's left wrist and forearm. Supervisor: steve a. Hardin
## 2234 06/26/2001 11:41 am (fblackmo) the employee was trying to load steel wheel roller in rain. Roller started to slide on wet trailer and tilted over. Bruised right knee and left wrist. Supervisor; mark l. Fogleman
## 2235 06/26/2001 11:55 am (fblackmo) the employee was exposed to poison ivy while manually clearing vegetation along a fence line on state road 1324. Clearing of the right of way was being conducted in preparation of secondary road improvements on this unp
## 2236 06/26/2001 11:56 am (sshort) employee was dragging and chipping a brush that had poison ivy plants on it; when he got contact rash on both of his arms. Supervisor: m. H. Brewer
## 2237 06/26/2001 12:02 pm (sshort) employee was unloading traffic cones in warehouse; when he fractured his right wrist/hand. Supervisor: charles whitfield
## 2238 06/26/2002 02:34 pm (fblackmo) employee states while pulling an asphalt sled with a dump truck, the chain attaching to the truck came a loose. The sled was spinning around when it struck employee on his left side, causing him to fall in the road. Sup
## 2239 06/26/2002 02:44 pm (fblackmo) employee states he was bitten by a tick on his left leg while doing surveying. Supervisor: jerry lindsey
## 2240 06/26/2002 02:55 pm (fblackmo) employee was working on gallimore dairy road in guilford county when a unknown insect bite him on his upper lip. Supervisor: s. G. Dillon
## 2241 06/26/2002 03:10 pm (fblackmo) employee was directing vehicle onto ferry, dog bite employee through the rear window on his left arm. Supervisor: t. L. Gray
## 2242 06/26/2002 03:22 pm (fblackmo) employee was in truck that was being loaded by excavator. Employee states the excavator hit the truck causing the injury to his right shoulder. Supervisor: kenny w. Smith
## 2243 06/26/2002 03:33 pm (fblackmo) employee was leaving office for parking lot. Stepped in a pot hole causing her foot to turn, hitting the pavement. Supervisor: jo lewis
## 2244 06/27/2000 11:54 am Mr. Cogdell was driving a truck assisting with the clean up of flooded areas; when began to have chest pain and numbness in his limbs. Supervisor: max abernethy
## 2245 06/27/2000 12:13 pm employee has pain in her right hand, right shoulder and neck from entering data on keyboard. Supervisor: james w. Rand
## 2246 06/27/2000 12:19 pm employee was operating concrete saw when it got hung in the concrete. Employee was pulling on saw while using a jackhammer to loosen the saw. Mr. Coghill strained his back at the time of incident. Supervisor: j. A. Hobgood
## 2247 06/27/2000 12:27 pm employee was responding to an emergency traffic signal call on 6/14/00. Employee was in the process of changing out a malfunctioning monitor shorten out causing an electric surge to wound his left hand. Supervisor: james d. Edwa
## 2248 06/27/2000 12:43 pm employee was in state vehicle and in the process of setting up traffic control signs; when he was struck from behind and the left side by a private vehicle on 6/6/00. Mr. Faircloth has pain in neck and upper back areas. Supervis
## 2249 06/27/2001 03:55 pm (fblackmo) the employee was driving a stake with an axe. The corner of the stake broke. The employee lost his grip on the axe, the axe hit the employee in his right ankle. Supervisor: o. T. Anderson
## 2250 06/27/2001 04:25 pm (fblackmo) the employee was cutting trees covered in poison ivy. The chainsaw threw the leaves and bark on him. Supervisor: p. J. Acuff
## 2251 06/27/2001 04:50 pm (fblackmo) the employee was trying to push a rock out of the ground. The blade from the drill slipped up, the rock caught onto other piece of rock, throwing him forward and twisting his shoulder. Supervisor: robert w. Rodes, jr.
## 2252 06/27/2001 05:08 pm (fblackmo) the employee was driving one of the two dump trucks, the two trucks struck each others mirrors causing small pieces of glass to fall. Supervisor: c. W. Burleson
## 2253 06/27/2002 03:20 pm (vsulliva) private vehicle drove through work zone hitting left rear of asphalt hopper.
## 2254 06/27/2002 07:14 am (fblackmo) employee was working on state road 1803, decomposing of a deer carcass. The next evening employee removed a tick from his upper right thigh area. Supervisor: james m. Tyndall
## 2255 06/27/2002 07:28 am (fblackmo) employee was walking across yard when he stepped on a rock, left foot turned causing the injury. Supervisor: r. C. Wood
## 2256 06/27/2002 07:39 am (fblackmo) employee did not wait for table saw blade to stop before moving wood. Supervisor: henry sturdivant
## 2257 06/27/2002 07:49 am (fblackmo) employee was with crew installing driveway pipe. Employee started to get in ditch, slipped on mud and fell twisting right knee. Supervisor: robert l. Winslow
## 2258 06/27/2003 11:02 am (fblackmo) employee was hooking up a hoses on a snow plow when, he felt pain in his right wrist. Supervisor: b. J. Berryhill, jr
## 2259 06/27/2003 11:24 am (fblackmo) employee came in from lunch break when, he passed out. Supervisor: c. E. Moore
## 2260 06/27/2003 11:36 am (fblackmo) employee came into contact with poison ivy while surveying for highway construction project. Supervisor: w. T. Anderson
## 2261 06/27/2003 12:10 pm (fblackmo) employee was using restroom when, he felt pain in his back. Supervisor: shawn mebane
## 2262 06/28/2000 01:01 pm employee was assisting bridge maintenance unit in installing 142' x 91' cspa; when a tick bit him on the right hip. Mr. Baker has a severe rash on his back. Supervisor: elpidio guerra
## 2263 06/28/2000 10:10 am employee was cutting brush with a bush axe; when she started having pain in her left wrist (repetitive motion). Supervisor: m. R. Hollifield
## 2264 06/28/2000 10:15 am employee was grinding brush when he came in contact with poison ivy. He has contact rash on left forearm and in his left eye. Supervisor: g. D. Fine
## 2265 06/28/2000 10:27 am employee was inspecting a support bracket; when dust/dirt particle blew into his left eye. Supervisor: chester e. D. Gartin
## 2266 06/28/2000 10:32 am employee stepped off a backhoe trailer and lost his footing/balance on 5/26/00. He landed on the tire rim causing his weight to shift and his left knee to twist/strain. Supervisor: r. P. Griffin
## 2267 06/28/2000 10:37 am employee was removing a nut with a wrench; when the wrench spun catching his right little fingernail. Supervisor: david leon pruitt
## 2268 06/28/2000 11:02 am employee was raking asphalt; when he felt pain in his chest area on 2/22/00. Supervisor: howard v. Inscoe
## 2269 06/28/2000 11:10 am employee was using a shovel to remove reflective pavement markers form asphalt pavement on 5/30/00. After bending and stooping all day he began to feel pain in his neck and back areas. Supervisor: l. O. Ethridge
## 2270 06/28/2001 08:59 am (fblackmo) the employee got hit on I-85 north by a private vehicle in the rear. Supervisor: wayne childress
## 2271 06/29/1999 01:57 pm employee was cleaning out a pipeline with a shovel, when he stepped down in the ditch and his foot slipped. He bruised his right knee at time of incident.
## 2272 06/29/1999 02:09 pm employee was working in the office, when he banged his right knee against the desk while attempting to walk by the desk.
## 2273 06/29/1999 02:21 pm employee was walking down the stairs from the 4th floor taking work to the 3rd floor, when she stepped wrong causing her left ankle to pop and start hurting.
## 2274 06/29/1999 02:53 pm employee was getting out of truck at the time of injury. He had his hand on the handle behind the door of the truck. He shut the door and caught his fingers between door and frame of the truck. He cut and bruised his left little
## 2275 06/29/1999 03:07 pm employee was clearing right of way on I-40 in haywood county, when he came in contact with poison oak on both arms.
## 2276 06/29/1999 03:13 pm employee was painting bridge rails, when a tick was found in the employees head. 02/01/2000 12:43 pm
## 2277 06/29/1999 03:21 pm employee was clearing right of way on I-40 in haywood county, when he came in contact with poison oak on both arms and hands.
## 2278 06/29/2001 02:58 pm (fblackmo) the employee was sharping his bush axe when he missed the blade and cut the fore part of his right arm. Supervisor: j. W. Sutton, jr.
## 2279 06/29/2001 03:18 pm (fblackmo) the employee was removing vegetation from beside the highway with his bush axe and walked into poison ivy. Supervisor: j. W. Sutton, jr.
## 2280 06/29/2001 03:33 pm (fblackmo) the employee was doing work in sampson county when a tick got on his left shoulder. Supervisor: b. D. Underwood
## 2281 06/29/2001 03:50 pm (fblackmo) the employee strain his back lifting and replacing bolts and bearings on a disc harrow. He felt a sharp pain in his lower back as he was getting up. Supervisor: j. D. Tucker
## 2282 06/29/2001 04:07 pm (fblackmo) the employee attempted to lift a heavy box full of paper. When she tried to flip the box over the incident occurred, causing severe pain to the chest. Supervisor: alan fitzgerald
## 2283 06/30/1999 08:38 am employee was placing pipe hooks in a pipe, while lifting the pipe hook, the employee strained his lower back. 01/14/2002 10:04 am (kbarefoo) *show all bills to joyce* 11/6/2006 01:39 pm (fblackmo) claim closed. Clinche
## 2284 06/30/1999 08:48 am employee received blister on outside of his left heel, when sparks of molten steel drops was falling around him. A piece of molten steel got into his shoe past tongue and laces. His foot was burned.
## 2285 06/30/1999 09:06 am employee was setting right of way monuments (which required cutting bushes with bush axe), when the rebar fell into poison ivy bushes. The employee reached in to get instrument out of bushes when he became affected with rash on bo
## 2286 06/30/2000 04:34 pm employee twist/strained his lower back and left leg when he stepped into a hole covered with grass. Employee was attempting to conduct a cvsa inspection on a stopped vehicle. Supervisor: ssg. M. A. Dunn
## 2287 06/30/2000 05:07 pm employee was using a drilling into a wooden desk; when the bit slipped off the screw and caught his left index finger. (puncture wound and possible tissue damage) supervisor: harvey mangum
## 2288 06/30/2000 05:08 pm employee was trying to tighten a large nut on end of blade shaft; when the pipe wrench twisted causing him to cut his right foot. Supervisor: d. M. Honeycutt
## 2289 06/30/2000 05:26 pm employee was picking up litter on shoulder of highway; when he stepped on a nail in a board causing a puncture to his left foot. Supervisor: s. E. Propst
## 2290 06/30/2000 11:44 am employee stepped down out of truck into a hole on shoulder of roadway twisting his right knee. Supervisor: g. C. Dry
## 2291 06/30/2003 03:48 pm (fblackmo) employee was riding in state vehicle when, something hit the window striking employee over his right eye. Supervisor: charles david childress
## 2292 07/01/1999 01:16 pm employee was hit from behind in a car accident. The car behind him failed to stop causing muscle strain and lower back pain.
## 2293 07/01/1999 01:54 pm employee was cutting cross sections sheets at the layout table with an x-acto knife, when he cut his left thumb.
## 2294 07/01/1999 02:01 pm employee came in contact with poison oak while clearing overgrowth around bridges. The rash/allergic reaction is over large part of upper body and arms. 02/01/2000 10:57 am
## 2295 07/01/1999 02:10 pm employee was backing up grader when rear wheels hit an obstruction an bounced over it. He turned to see what was behind him, when he felt a pop in his middle back area.
## 2296 07/01/1999 03:10 pm employee was cleaning debris off a bolt with grinding wheel, when grinder grabbed bolt and left index finger. This incident tore skin off index finger.
## 2297 07/01/1999 03:23 pm employee was cutting right of way at the intersection when he came in contact with poison ivy. Contact of poison plant was on face, neck, both hands and back.
## 2298 07/01/1999 03:30 pm employee was removing handrail from bridge, when a board with a nail in it fell on top of right foot. 02/01/2000 01:07 pm
## 2299 07/01/1999 03:37 pm employee was bitten on the left thumb, while trying to remove a stray kitten off the bus. Note: due to severe cases of rabies the doctor (mary k. Tucker) recommended he take a series of rabies shots.
## 2300 07/01/1999 04:04 pm employee was given a diagnosis of carpal tunnel syndrome on 5-26-99 due to repetitive motion (keying, writing, filling). Both hands, wrist, and 3 fingers and thumb.
## 2301 07/01/1999 04:13 pm employee was cutting brush around bridge, when he cut skin on left index finger. 02/01/2000 01:27 pm
## 2302 07/01/2002 01:50 pm (fblackmo) employee was in dare co. Planting grass on a mitigation site. The job called for her to be squatted over and moved forward by shuffling her feet. The job had her in this position for around six hours. On the way back
## 2303 07/01/2002 02:10 pm (fblackmo) employee states that unhooking a safety lanyard form sign, cut hand on a rigged strap. Supervisor: patti g. Newsome
## 2304 07/01/2002 02:22 pm (fblackmo) employee was adjusting brakes on tandem dump truck. Employee changed position, hit head on hydraulic tank brackets. Supervisor: sanford barton
## 2305 07/01/2002 02:31 pm (fblackmo) employee was drilling on a catch basin form and a piece of metal came off and went into his eye. Supervisor: r. A. Ellington
## 2306 07/01/2002 02:41 pm (fblackmo) employee was walking across flower bed to get to roadway and got bit by a spider on leg. Supervisor: gene johnson
## 2307 07/01/2002 02:52 pm (fblackmo) employee was operating a chainsaw cutting a tree from travel way when, came into contact with poison ivy. A rash occurred on 6/21/02 but employee did not seek medical attention until 6/25/2002. Supervisor: f. E. Roberts
## 2308 07/01/2002 03:08 pm (fblackmo) employee was truck spotting on state road 1005 for paving machine. Employee was sitting on top of the paving machine when a private vehicle hit the asphalt and slid into the paving machine. Supervisor: alonza b. Sawyer
## 2309 07/01/2002 10:09 am (fblackmo) employee states while assisting another employee lift a water buffalo to truck, he felt pain in his lower back. Supervisor: thomas ray twiddy
## 2310 07/01/2002 10:33 am (fblackmo) employee stated that he developed a sore lower back caused by shoveling and raking asphalt. Supervisor: s. D. Chandler
## 2311 07/01/2002 10:51 am (fblackmo) employee was scraping clay of the fin of his truck when he struck the jagged fin and injured his right pinky finger. Supervisor: j. R. Price
## 2312 07/01/2002 12:15 pm (fblackmo) employee was painting boxing outside of maintenance building with a roller when, felt sudden pain in his chest area. Supervisor: c. M. Conner
## 2313 07/01/2002 12:36 pm (fblackmo) employee states while bending rebar with pipe to shape it, rebar broke pinning middle finger on right hand between workbench and pipe causing injury to finger and wrist. Supervisor: j. L. Cornell
## 2314 07/01/2002 12:47 pm (fblackmo) employee was helping unload pallet of silt fence. Top layer shifted, employee lost footing and hit left knee on remaining stack of pallet. Supervisor: j. D. Shelton
## 2315 07/02/2002 01:48 pm (fblackmo) on 6/15 employee was conducting a field investigation when, found tick bite on back and hip area. Supervisor: hal bain
## 2316 07/02/2002 02:02 pm (fblackmo) employee was walking to visit another employee when, slipped on wet floor. Supervisor: charles burton
## 2317 07/03/07 supv. Work detail eci firing range all day, got home to shower, tick on neck, got sick 07/10/07, Dr On 07/11/07.
## 2318 07/03/2000 04:30 pm employee was cutting bushes around bridge when he came in contact with poison ivy on 6/8/00. He has contact rash on both arms, legs, stomach and face. Supervisor: r. J. Terry
## 2319 07/03/2000 04:35 pm employee was driving a diesel pan loader moving soil on 6/1/00. The pan bounced up causing him to bump his left knee on signal light switch. Supervisor: james e. Burleson
## 2320 07/03/2000 04:45 pm employee was trying to get pipe out of dump truck; when he pulled disc in his lower back by lifting up on the tailgate. Supervisor: terry a. Woody
## 2321 07/03/2000 04:50 pm employees right index finger was caught between truck tailgate and chain on 6/8/00. Employee didn't realize other employee had released the tailgate, causing his finger to be mashed. Supervisor: ralph thomas mcmanus, jr
## 2322 07/03/2000 04:55 pm employee was working with asphalt crew on us highway 117 when he was bitten by a tick on his upper left leg. Supervisor: joe justice
## 2323 07/03/2000 05:00 pm employee was mowing grass when debris flew up from mower into his left eye. Supervisor: t. C. Tilley
## 2324 07/03/2000 05:15 pm employee came in contact with poison ivy while waiting for a load of material at jobsite on 6/9/00. He has contact rash on both arms, ears, neck, and face. Supervisor: w. D. Laughter
## 2325 07/03/2000 08:29 am a car had stopped to make left turn was rear ended and knocked into the path of state vehicle, causing $4000. 00 damages to state vehicle. 08/02/200 09:00 am employee was traveling east on us 117 when a private vehicle struck a
## 2326 07/03/2003 10:10 am (fblackmo) employee was opening pain when, paint and fumes hit him in his eyes. Supervisor: roger pulcheon
## 2327 07/03/2003 10:24 am (fblackmo) employee states while driving down road, he struck another vehicle that was turning. Supervisor: jerome lcoklear
## 2328 07/03/2003 10:54 am (fblackmo) employee was preparing to put fuel in a compactor when, he placed his left hand on the hot muffler resulting in a burn to his fingers. Supervisor: b. Singleton
## 2329 07/03/2003 11:12 am (fblackmo) employee was cutting a pipe when, the pipe twisted causing a cut to his little finger. Supervisor: jackie matheny
## 2330 07/03/2003 11:20 am (fblackmo) employee tripped over gas pump hose while fueling up vehicle. Supervisor; t. M. Mckeel
## 2331 07/03/2003 11:36 am (fblackmo) employee was cutting right of way for road construction project when, he felt pain in his right hand and wrist. Supervisor: a. R. Hensley
## 2332 07/03/2003 11:51 am (fblackmo) employee was picking up old bed frame from out of the road when, he cut his finger. Supervisor: r. D. Pittman
## 2333 07/03/2003 12:03 pm (fblackmo) employee was walking between two microfilm readers when, she tripped over some exposed wires. Supervisor: paula windley
## 2334 07/05/2000 03:44 pm customer was on a road test when he pulled into traffic in front of tractor trailer. The tractor hit state vehicle on the front passenger side. Mr. Moxley strained muscles in his upper back. Supervisor: t. M. Bailey
## 2335 07/05/2000 03:51 pm employee was driving down highway 74 on 6/22/00; when an inmate hit him in the head twice with a ball peen hammer. Supervisor: m. D. Warwick 09/08/2004 03:51 pm (kbarefoo) Dr. Rao has requested that an ambulatory eeg 1
## 2336 07/05/2000 04:00 pm employee states she has stress and anxiety-related conditions on the job. Supervisor: timothy v. Rountree
## 2337 07/05/2000 09:15 am employee was driving a wooden survey stake into the ground with a 4 pound hammer; when she bruised her left hand. Supervisor: tom bohrer
## 2338 07/05/2000 09:20 am employee was feeding brush into chipper; when a limb became jammed in the chipper. When he jerked the limb his hand hit the flap of the chute cutting his right middle finger. Supervisor: j. N. Mixon
## 2339 07/05/2000 09:25 am employee was inspecting crossing pipes when he came in contact with poison ivy. He has contact rash on both arms, legs and face. Supervisor: k. L. Anderson
## 2340 07/05/2000 09:30 am employee scraped/cut his right forearm from his elbow to back of hand on 6/13/00. He was holding end of lumber with one hand when it rolled over and slid down his forearm. Supervisor: gerald messer
## 2341 07/05/2000 09:37 am employee was in a wooded area locating survey points; when he was stung by a bee/wasp underneath his left eye. Supervisor: o. T. Anderson
## 2342 07/05/2000 09:50 am employee was answering phones on 6/14/00; when lightning struck into phone system causing damage to her left ear. Supervisor: tracey conrad-pittman
## 2343 07/05/2000 10:00 am employee pulled muscles in his right shoulder on 6/15/00. He was dragging tree limb to chipper; when glove hung up on tree limb causing him to twist his shoulder. Supervisor: j. W. Dyson
## 2344 07/05/2000 10:05 am employee was sitting in pickup truck on 6/16/00; when the driver of the truck backed into a tree. Ms. Riddle sprained/strained her neck and upper back (cervical) due to this incident. Supervisor: g. M. Taylor
## 2345 07/05/2000 10:20 am employee was stung by a wasp while loading state vehicle on 6/19/00. Unknown location of sting. Supervisor: j. E. Beverly
## 2346 07/05/2000 10:30 am employee was driving a metal fence post with a t-post driver; when he struck post the driver struck him in his head. Supervisor: l. S. Carpenter, jr
## 2347 07/05/2000 10:36 am employee cut her right knee requiring a tetanus shot on 6/20/00. She picked up a metal trash can with a rusted bottom causing the injury to her leg. Supervisor: rebecca simpson
## 2348 07/05/2001 02:45 pm (fblackmo) the employee was driving fence stakes on steep using a hand held driver which slides up and down. The driver came off the stake striking the employee in the head. Supervisor: d. L. Carpenter
## 2349 07/05/2001 03:11 pm (fblackmo) the employee was working with a patching crew, and was bit by a tick. Supervisor: r. E. Bennett
## 2350 07/05/2001 03:34 pm (fblackmo) the employee was cutting a rope on the emergency generator stair on the m/v chicamacomcio, while cutting the rope the employee lost his balance and fell on the stairs causing the injury to his leg. Supervisor: thomas fo
## 2351 07/05/2001 03:58 pm (fblackmo) the employee was cleaning the stopped up chipper by hand. The employee cut his finger when he caught it between the wheel and metal cover on the machine. Supervisor: d. L. Carpenter
## 2352 07/05/2001 04:16 pm (fblackmo) the employee was lifting a piece of guard railing and strained his back. Supervisor: barry f. Kizziah
## 2353 07/05/2001 04:31 pm (fblackmo) the employee was removing a 8'' diameter 4' long tree limb from the roadway when he felt a pain in his back. Supervisor: prudencio casas
## 2354 07/05/2001 04:54 pm (fblackmo) the employee was on job site refueling tractor. Insect bit employee on left side of arm. Supervisor: t. A. Harrington
## 2355 07/05/2001 05:15 pm (fblackmo) the employee hurt his hand at work station while on the ferry. Supervisor: e. M. Farrow
## 2356 07/05/2001 05:42 pm (fblackmo) the employee stepped into the channeled out area, he placed his foot onto an area that was not level, which caused his left ankle to twist. Supervisor: d. R. Bryan
## 2357 07/06/1999 03:56 pm employee was mounting a sign onto a u-channel galvanized post. He was drilling a bolt hole with a hand held drill, when drill bit became lodged causing the drill to spin into the employee right hand. His right wrist was twisted a
## 2358 07/06/2001 09:32 am (fblackmo) the employee states she has numbness in all fingers on left hand and extreme pain in left arm. Supervisor: teresa cone
## 2359 07/06/2001 09:58 am (fblackmo) the employee states his right shoulder has been bothering him since he was racking asphalt on May 24, 2001. Supervisor: charles frank vick
## 2360 07/06/2001 10:31 am (fblackmo) the employee was assaulted by an another employees wife. The employee was hit with a telephone handset, fist, and knocked to the floor. Supervisor: richard bass
## 2361 07/06/2001 10:52 am (fblackmo) the employee was running tractor broom when dump truck came through work zone passing a flagman holding a stop sign and hit the tractor in the rear. Supervisor: steve w. Davis
## 2362 07/07/1999 01:50 pm employee was entering data into computer, when she turned left in her chair she striking her left hand on back of computer. 02/01/2000 11:33 am
## 2363 07/07/1999 01:58 pm employee was surveying for a bridge project, when she found a tick lodged in her head.
## 2364 07/07/1999 02:12 pm employee was standing on office table to open air conditioning vent, when her left foot turned causing her right knee to bend inward. She fell approx. 2 1/2 feet to the floor injuring her right knee.
## 2365 07/07/1999 08:44 am employee was getting down from back of a truck, when his foot slipped and hit his left arm on the bed of the truck.
## 2366 07/07/1999 09:09 am employee was using an electric drill to install a window screen in a van, when drill slipped causing a drill bit to poke him in left lower eyelid.
## 2367 07/07/1999 09:17 am employee was walking across bluebell lot performing a pre-trip inspection, when he stepped in a hole and twisted his left foot.
## 2368 07/07/1999 09:30 am employee squatted down to move a 12" x 12" timber block, when his lower back popped. At this time he felt a lot of pain.
## 2369 07/07/1999 09:41 am employee was bending over to look in a pipe, when an otter jumped out of water into his face. The employee jumped and fell on his hands hurting his left shoulder. 02/04/2000 10:10 am
## 2370 07/07/2000 02:30 pm employee was conducting a road test when customer failed to stop at sign. He jammed the brakes causing the vehicle to stop abruptly. This caused pain in her neck and upper back (cervical) strain. Supervisor: sylvia r. Spain.
## 2371 07/07/2000 02:41 pm employee climbed on wet bulwarks on port bow of marine vessel to remove a mooring line from hook. She slipped and fell back on deck, fracturing her left elbow and sprain/twist her right ankle. Supervisor: kenneth j. Morris
## 2372 07/07/2000 02:48 pm employee has carpal tunnel syndrome in both hands due to the vibration from progressive use of chainsaw on job. Supervisor: roger d. Peeler
## 2373 07/07/2000 02:52 pm employee was under bridge loosening a bolt; when a chunk of asphalt fell on his left forearm. Supervisor: w. D. Watkins
## 2374 07/08/1999 09:34 am employee was getting out of a truck, when a bee stung him on the left side of his head.
## 2375 07/08/1999 09:59 am employee was in a 30' rcp grouting up a hole, when he felt a pull and slight pain in his chest. The employee went to the next job and the pain became severe. Pulled a muscle in upper right side of chest.
## 2376 07/08/1999 10:26 am employee was mowing around bridges with a weed eater, when he came in contact with poison ivy on both arms and face. 02/01/2000 01:27 pm
## 2377 07/08/1999 10:33 am employee was spraying roundup herbicide in heavy vegetation area, when he tripped and fell due to uneven terrain. He bruised/sprained his back at the base of his spine.
## 2378 07/08/1999 10:40 am employee was clearing right of way on I-40 in haywood county, when he came in contact with poison oak on both arms and hands.
## 2379 07/08/2003 01:42 pm (fblackmo) employee was giving road test when, the driver ran off road striking traffic control box. Supervisor: lorrie sineath 10/27/2003 11:25 am (kbarefoo) 8/2/2005 02:13 pm (fblackmo) show all bills to joyce before
## 2380 07/08/2003 01:53 pm (fblackmo) employee hit a private vehicle in the rear when, the private vehicle slammed on its brakes to turn into a service station. Supervisor: r. J. Downes
## 2381 07/08/2003 02:06 pm (fblackmo) employee felt pain in his back while, lifting a paint barrel. Supervisor: franklin bullock
## 2382 07/08/2003 02:17 pm (fblackmo) employee was climbing down ladder when, he felt pain in his left knee. Supervisor: leonard dills
## 2383 07/08/2003 02:28 pm (fblackmo) employee was walking down trailer ramp when, he felt pain in his left foot. Supervisor: r. S. Burton
## 2384 07/08/2003 02:43 pm (fblackmo) employee was loading limestone into hydro seeder when, his foot became hung underneath the pallet. Supervisor; r. E. Warren
## 2385 07/08/2003 03:27 pm (fblackmo) employee was putting in drain pipe when, he cut his left hand. Supervisor: r. D. Davis
## 2386 07/08/2003 03:45 pm (fblackmo) employee was helping another employee who was stuck in the mud when, he felt pain in his left knee. Supervisor: d. Chad kimes
## 2387 07/08/2010 03:07 pm (slee) employee became disoriented while setting at asphalt loading scales and struck sidewall of scales when leaving.
## 2388 07/09/2001 03:16 pm (fblackmo) the employee was lifting an a/c condenser to set in place. Supervisor: donald l. Ferguson
## 2389 07/09/2001 03:41 pm (fblackmo) the employee was clearing r/w on new grade project. Removed a tick off himself on thursday 6/28/01. On monday the tick bite was red, the employee was sent to doctor. Supervisor: w. H. Lynch
## 2390 07/09/2001 04:13 pm (fblackmo) the employee started down the steps of loading dock to go to the dumpster, he missed his step causing him to fall. Supervisor: t. M. Boland
## 2391 07/09/2001 05:08 pm (fblackmo) the employee was using water pump with gas engine. Employee removed gas line, line came loose gas got into employees eyes. Supervisor: w. H. Lynch
## 2392 07/09/2001 05:28 pm (fblackmo) the employee was walking beside road, grass and weeds was high. Supervisor: thomas b. Johnson
## 2393 07/09/2002 01:28 pm (fblackmo) employee was sitting in d. O. T. Vehicle when it was struck in the rear by an oncoming private vehicle. Supervisor: jim allen
## 2394 07/09/2002 01:40 pm (fblackmo) employee was giving road test when the customer of the vehicle failed to yield to on coming traffic, private vehicle struck the car on the left side. Supervisor: l. Moose and tex kidd
## 2395 07/09/2002 02:01 pm (fblackmo) employee was lifting ramps off trailer floor and felt sharp pain in lower right side. Another employee(t. T. Holifield)witnessed the incident. Supervisor: l. D. Greene
## 2396 07/09/2002 02:19 pm (fblackmo) employee was walking across parking lot when he made a Miss-Step and twisted his left ankle. Supervisor: r. M. Marion
## 2397 07/09/2002 02:52 pm (fblackmo) employee was using a two pound maul to hammer nails into the pavement for surveying purposes. Employee missed the nail and hit his ring finger on left hand. Supervisor: boyd tharrington
## 2398 07/09/2002 03:05 pm (fblackmo) employee was using hand saw or head to cut down limbs. The repetitive motions from the saw caused him to experience pain in left arm. Supervisor: james isaac,
## 2399 07/09/2002 03:20 pm (fblackmo) employee states while doing surveying in wooded area, tick bite on groin area. Supervisor: r. J. Downes
## 2400 07/09/2002 03:40 pm (fblackmo) employee tripped while exiting building and fell through glass window pane in door. Supervisor: s. H. Kinner
## 2401 07/09/2002 03:56 pm (fblackmo) employee was cutting trees with poison oak on them and around them when he came into contact. Supervisor: t. L. Hall
## 2402 07/09/2003 07:27 am (fblackmo) employee was loading trash in bin when, he cut his arm on a piece of metal. Supervisor: chris baker
## 2403 07/09/2003 08:03 am (fblackmo) employee was stripping the outer jackets off traffic signal wiring with a electric knife when, the knife slipped causing a cut to his finger. Supervisor: james g. Tyler
## 2404 07/09/2003 08:23 am (fblackmo) employee states he cut his right arm while installing a tool box on flat bed truck. Supervisor: a. B. Davis
## 2405 07/09/2003 08:38 am (fblackmo) employee stated dust flew into his eyes while completing repairs on a lowboy trailer outside. Supervisor: charles hatley
## 2406 07/09/2003 08:54 am (fblackmo) employee states while driving in center lane she met a school bus; mirrors hit causing glass to fly cutting employees face and neck area. Supervisor: w. D. Silver
## 2407 07/09/2003 09:46 am (fblackmo) employee states he struck his right lower leg on guardrail supervisor: m. L. Smith
## 2408 07/10/2000 05:25 pm employee noticed on 5/16/00 his hands were numb and ache after drilling all day. He went to orthopaedic on 6/12/00 and was told he has carpal tunnel syndrome. Supervisor: e. A. Witort 10/21/2003 03:09 pm (gwhite) 11/24/20
## 2409 07/10/2000 05:29 pm employee was rolling a piece of 18" pipe along level ground; when he felt a sharp pain in his lower back, left hip and thigh area. Supervisor: w. D. Laughter
## 2410 07/10/2000 09:57 am employee was fueling diesel truck; when foreign object (fuel) splashed up into his left eye. Supervisor: alvin davis.
## 2411 07/10/2002 03:01 pm (fblackmo) employee was flagging for patching operation. When relieved for water break, employee approached the crew cab door on the ditch side of the cab. Employee slipped and tried to catch himself on the steps. Supervisor: r.
## 2412 07/10/2002 03:14 pm (fblackmo) employee was bitten by a tick from being in a grassy and wooded area in granville county. Supervisor: d. L. Bagwell
## 2413 07/10/2002 03:28 pm (fblackmo) employee was clearing brush when came into contact with poison oak plant. Supervisor: doug mcneal
## 2414 07/10/2002 03:36 pm (fblackmo) employee was clearing brush on us 70 when came into contact with poison ivy. Supervisor: doug mcneal
## 2415 07/10/2002 03:55 pm (fblackmo) employee was clearing brush when she came into contact with poison ivy planet. Supervisor: doug mcneal
## 2416 07/10/2002 07:25 am (fblackmo) employee states that while doing bridge work, came into contact with poison plant. Supervisor: a. L. Clark
## 2417 07/10/2002 07:37 am (fblackmo) employee states that he was working on the m/v roanoke when he began to feel light headed, weak, and vomiting. Employee was taken to supervisor and then to outer banks hospital. Supervisor: kevin lamar cooke
## 2418 07/10/2002 07:50 am (fblackmo) employee was exiting truck, foot slipped off side step causing the injury to knee. Supervisor: thomas cruse
## 2419 07/10/2002 08:03 am (fblackmo) employee was operating sheepfoot roller when he felt a sting to his left hand. Supervisor: marc p. Morgan
## 2420 07/10/2002 08:49 am (fblackmo) employee was working on patch crew when she felt something bite her below her right eye. Supervisor: david lowery
## 2421 07/10/2002 08:57 am (fblackmo) employee states while installing signs to paint road and working on special marking crew, was stung by bees on right hand. Supervisor: w. R. Wall
## 2422 07/10/2002 09:14 am (fblackmo) employee was working on gaillimore dairy road in guilford county when something bite him on his upper lip. Supervisor: s. G. Dillon
## 2423 07/10/2002 09:22 am (fblackmo) employee was walking out of the equipment department when he stepped on a bolt causing him to fall scraping the skin on right forearm. Supervisor: r. T. Mcmanus jr
## 2424 07/10/2002 09:36 am (slee) employee was stopped in the southbound lane of us 117 waiting for another vehicle to make a left turn. Private individual was traveling southbound on us 117 also. Private vehicle failed to stop and rear-ended sov.
## 2425 07/10/2003 03:12 pm (fblackmo) employee experienced heat exhaustion while working on pavement. Supervisor: greg godwin
## 2426 07/11/2000 08:52 am employee was picking up a 12 foot sign post from the ground; when he sprained/strained his lower back. Supervisor: j. L. Day
## 2427 07/11/2000 08:56 am employee was left hanging in safety bucket of a truck; when the hydraulic valve struck the boom. This caused the bucket to slam into the utility bed of the truck. Mr. Miller has soreness to his abdomen due to this incident. Super
## 2428 07/11/2000 09:04 am employee was picking up debris on the sides of the road on 4/26/00. He stepped in a hole that was covered by grass and sprain/strained his left knee. Supervisor: mark e. Stafford
## 2429 07/11/2000 09:10 am employee was trying to put chain on power saw; when his hand slipped causing a laceration to his right ring and little fingers. Supervisor: w. H. Lynch
## 2430 07/11/2000 09:16 am employee was building a fence; when he bent over to pick up a post he strained his lower back (right side). Supervisor: d. C. Capps
## 2431 07/11/2000 09:21 am employee was trimming around bridge #144; when he came in contact with poison ivy. He has contact rash on both arms. Supervisor: e. W. Huffman
## 2432 07/11/2000 09:28 am employee was performing sign maintenance on various roads in chatham county on 6/13/00. This task required him to walk in tall grass along the roadside; when later that day he found a tick on his left leg seeking medical attention
## 2433 07/11/2000 09:36 am employee strained his lower back while loading a truck on 6/13/00. A rock got hung in truck bed causing the truck to go up in the air. When the truck came back down he injured his back. Supervisor: leoda mathis
## 2434 07/11/2000 11:16 am employee was cutting down dead trees and pushing the trees so they could fall in the right position; when he was bitten by an insect on his left thigh. Supervisor: c. H. Winstead
## 2435 07/11/2000 11:22 am employee was working on a patch crew shoveling/raking asphalt on 6/14/00. The next morning he had numbness in his left arm and hand. Supervisor: a. S. Bailey
## 2436 07/11/2000 11:28 am employee was cutting down a tree on 6/15/00; when he came in contact with poison ivy. Employee has contact rash on his left forearm. Supervisor: c. N. Edwards, jr
## 2437 07/11/2000 11:40 am employee was clearing the right of way on lake view drive when he came in contact with poison ivy. He has contact rash on his face, right hand, and right wrist. Supervisor: mark e. Stafford
## 2438 07/11/2000 11:45 am employee was trying to get back into truck when his foot slipped and he fell landing on pavement. He hit a brick wall first and then fell to the ground injuring his lower back. Supervisor: r. D. Brown
## 2439 07/11/2000 11:52 am employee stated that he was standing in one place while flagging on 6/14/00. He decided to move around and when he took a step he turned/twisted his right ankle. Supervisor: j. E. Corbett
## 2440 07/11/2000 11:58 am employee became nauseated and vomit twice after eating lunch on 5/18/00. After he vomit the second time, employee fell backwards bruising his elbows. Supervisor: r. W. Lewis note: employee brought a sandwich from home for lunch
## 2441 07/11/2000 12:23 pm employee was hauling abc aggregate stone to a work site project on 6/9/00. As he was approaching the intersection a private vehicle pulled out in front of him. This caused his vehicle to collide into the private vehicle. Mr. Aur
## 2442 07/11/2002 07:29 am (fblackmo) employee was clearing brush on us 70 when came into contact with poison ivy. Supervisor: doug mcneal
## 2443 07/11/2002 07:45 am (fblackmo) employee was assisting sheriff officer with h. I. V. Patient. Supervisor: e. C. Bristle
## 2444 07/11/2003 04:34 pm (fblackmo) employee was stacking oak boards when, he felt pain in his back. Supervisor: dennis baker
## 2445 07/12/1999 08:22 am employee was working on the top of passenger lounge of m/v hunt, when a gust of wind blew foreign object into his right eye. Supervisor: david l. Pruitt.
## 2446 07/12/1999 08:29 am employee was welding/needle gunning metal in hull shop, when a piece of hot slag (foreign object) flew into his left eye. Supervisor: richard dewhurst.
## 2447 07/12/1999 08:34 am employee was shoveling asphalt, when he strained his right arm from pushing shovel. Supervisor: j. S. Walker
## 2448 07/12/1999 08:42 am employee was traveling in denver colorado when he was injured in a rented vehicle. Employee was on passenger side while going to the airport in colorado. The car was struck on that side injuring his right hip. Supervisor: davi
## 2449 07/12/1999 08:51 am employee was working with a ditching crew on sr 1434 in halifax county. The employee went to the bathroom in woods, when he found a tick in his right groin area late the next day. Supervisor: t. J. Shaw.
## 2450 07/12/2010 10:30 am (slee) sov was headed north on us 401 and pov was headed east on forrestville road.. Both vehicles entered the intersection at the same time and collided. Red light violation on the sov. 07/21/2010 12:22 pm (slee) other pe
## 2451 07/13/1999 09:06 am employee was lifting guardrail with another employee, when he felt pain in his lower back. Supervisor: w. L. Saunders, jr. 02/01/2000 12:50 pm
## 2452 07/13/1999 09:15 am employee pulled on string attached to a nail in the wall of building, when nail came out and struck his left arm near his wrist. Supervisor: roy donald pittman.
## 2453 07/13/1999 09:20 am employee was pulling heater hose from engine, when anti-freeze splashed into trache tube and into his face. He inhaled small amount of anti-freeze into his lungs. The hose would not come off easily. The anti-freeze went through
## 2454 07/13/1999 09:29 am employee was cutting right of way with a frail mower, when he came in contact with chiggers insects. Chigger bites throughout body and all limbs. Supervisor: m. H. Brewer.
## 2455 07/13/1999 09:36 am employee was operating an asphalt roller, when he lost control of the machine injuring and bruising his right side and mid back area. Supervisor: m. H. Brewer.
## 2456 07/13/1999 09:55 am employee lost footing while standing on concrete wall. He fell on wall bruising his sternum (chest area). Supervisor: c. R. Styles.
## 2457 07/13/2000 09:13 am employee was removing a rear spring on truck; when the spring slipped and caught his right little finger. He has a mashed off portion underneath the finger nail. Supervisor: c. D. Watkins
## 2458 07/13/2000 09:55 am employee was removing brush from right of way (trimming trees); when he came in contact with poison ivy. He has a severe contact rash on both legs and the back of his heels. Supervisor: arthur glen short
## 2459 07/13/2000 10:00 am employee states he has been having problems with his hands due to repetitive motion from working 13 years. Both wrists falls to sleep and has been occurring over period of time. Supervisor: r. D. Isley
## 2460 07/13/2000 10:33 am employee was welding metal catch basin lid on 6/28/00. The lid was propped up with a piece of angle iron. A tractor trailer passed by causing the ground to shake and the lid to fall on both of his legs. He has a deep cut on his
## 2461 07/13/2000 10:40 am employee hit his head when he walked into dump truck side view mirror on 6/26/00. Supervisor: j. S. Walker
## 2462 07/13/2000 10:47 am employee was mowing with a long arm attachment when the tractor became hooked on pine logs and threw the tractor side ways. She has injuries to her upper back (cervical & thoracic strain). Supervisor: k. R. Davis 08/03/200
## 2463 07/14/1999 01:13 pm employee was flagging traffic standing on side of the road, when a van hit her right hand. She turned the paddle slow to allow van to go through the workzone area, when the van got to close to her. Supervisor: w. E. Newton jr.
## 2464 07/14/1999 01:40 pm employee was lifting timber to throw onto the scrap pile, when employee felt his back pop in lower back. Supervisor: hugh williams. 02/01/2000 01:20 pm
## 2465 07/14/1999 01:48 pm employee found a tick stuck on center of back.
## 2466 07/14/1999 01:55 pm employee was removing old brake shoe rollers on rear of truck, when hammer chipped roller piece of steel went in his left leg. Supervisor: ne
## 2467 07/14/1999 02:06 pm employee was stung by a bee on his right hand while working in the field. Supervisor: v. Marcus lowery.
## 2468 07/14/1999 02:59 pm employee was checking oil in a truck. While lifting the hood, he experience pain between shoulder blades causing his arms to seem numb. Supervisor: j. E. Belk.
## 2469 07/14/1999 08:47 am employee was pushing stones on jobsite (yard), when he slipped in loose stones hurting his left leg and back. He was trying to get off dozer. Supervisor: hazel hough.
## 2470 07/14/2000 09:53 am employee suffered heat exhaustion on 6/16/00 while working on dry creek road in montgomery county. He was shoveling asphalt at time of injury. Supervisor: d. J. Shepard
## 2471 07/14/2000 09:58 am employee was pushing crash cushion to line up holes for a locking pin; when he strained his left side area. Supervisor: charles r. Sharp
## 2472 07/14/2000 10:04 am employee was walking into the woods to use the bathroom; when he came in contact with poison ivy. He has contact rash on both arms. Supervisor: d. R. Chapman
## 2473 07/14/2000 10:13 am employee was hauling gravel on 6/26/00. He got out to push tarp back on truck and let it go, causing him to hit his left elbow on the step on the trucks bed. Supervisor: r. D. Peeler
## 2474 07/14/2000 10:25 am employee was bit by a spider on her right buttocks on 6/27/00. Employee was spraying cleaner on asphalt distributor (backpack sprayer) at time of the incident. Supervisor: j. D. Tucker
## 2475 07/14/2000 10:31 am employee was transporting stones in a tandem; when he ran off the shoulder of road losing control. The vehicle slid sideways and overturned causing injuries to his head, chin, right leg and arm. Supervisor: mike brady
## 2476 07/14/2000 10:39 am employee was driving a post into the ground with a sledge hammer; when he missed the post hitting his left leg. Supervisor: mike campbell
## 2477 07/14/2000 10:45 am employee was turning clamshell bucket to straighten the cable; when his fingers on his right hand got mashed in the bucket. Supervisor: r. F. Barnette
## 2478 07/15/1999 04:33 pm employee was trying to pull up a sign post by hand we he injured his lower back. Supervisor: f. E. Faircloth.
## 2479 07/15/1999 04:41 pm employee was traveling in state vehicle, when hit by a private vehicle injuring his lower back. Supervisor: tommy kilpatrick.
## 2480 07/15/1999 04:54 pm Mr. Perry was operating his patrol vehicle in the south bound lane of capital blvd., in raleigh. He stopped due to traffic, when he was hit on the rear of vehicle injuring his neck and shoulders. Supervisor: lt. Isaiah green.
## 2481 07/15/1999 08:35 am employee was walking to vehicle across a wet parking lot, when he slipped on pavement twisting his left knee. This caused sharp pain and some swelling developed in that late afternoon. Supervisor: a. W. Roper.
## 2482 07/15/2002 10:27 am (fblackmo) employee came into contact with poison oak while helping crew clearing a beaverdam from a pipe culvert. Supervisor: robert junior ingram
## 2483 07/15/2002 10:43 am (fblackmo) employee was using a pipe wrench to hold bra out of drilled hole. Pipe wrench was caught on rod, when rods was lifting, employees right hand was caught between the pipe wrench and steal piece of the drill. Supervisor:
## 2484 07/15/2002 10:57 am (fblackmo) employee was cutting bushes and vines from a pipe and telephone box when he came into contact with poison ivy. Supervisor: a. S. Bailey
## 2485 07/15/2002 12:36 pm (fblackmo) employee was assisting an inmate to place corrugated aluminum pipe in a ditch. The inmate dropped his end without warning, as the pipe fell, employees fingers were cut by the end he was holding. Supervisor: r. G. Davis
## 2486 07/15/2003 01:25 pm (fblackmo) employee was struck by backhoe bucket and fell off the side of bridge causing the injury to her elbow and shoulder. Supervisor: s. B. Hudspeth
## 2487 07/15/2003 02:10 pm (fblackmo) employee was conducting a drivers test when, the customer closed the door on her arm. Supervisor; marcia l. Smith
## 2488 07/15/2003 03:08 pm (fblackmo) employee states while fabricating sheet metal pans he, cut his right hand. Supervisor; bobby thrower
## 2489 07/15/2003 03:45 pm (fblackmo) employee was pulling a post that was split when, he felt pain in his back. Supervisor; donald griffith
## 2490 07/15/2003 11:05 am (fblackmo) employee states while using a bar to operate a tire machine, he experienced pain in his right hip. Supervisor; ray gay
## 2491 07/15/2003 11:30 am (fblackmo) employee states that he and another employee was taking a propane tank off the back of a flat bed truck when, he felt pain in his stomach area. Supervisor: h. M. Thompson
## 2492 07/15/2010 07:13 am (slee) sov was traveling east on hwy. 70 when pov struck front end of sov. Pov ran a stop sign. 07/15/2010 08:02 am (slee) other person: julia mclaughlin, -828-632-0307.
## 2493 07/16/2002 10:36 am (fblackmo) employee states, using the computer keyboard and mouse for extended periods of time and on a routine basis has caused carpal tunnel syndrome in both wrists. Supervisor: Dr. Mrinmay biswas
## 2494 07/16/2002 11:19 am (fblackmo) employee was shoveling abc stone at driveway when he started having chest pains. Supervisor: j. V. Riddick
## 2495 07/16/2002 11:34 am (fblackmo) supervisor states, employee s must have hurt his foot at work on May 23, 2002. Employee said he had been operating a tractor mower the whole day and with the clutch a lot with his left foot or stepped wrong. Employee s
## 2496 07/16/2003 07:35 am (fblackmo) employee was bitten by ticks on his left knee and hip area. Supervisor: njoroge w,. Wainaina
## 2497 07/16/2003 08:46 am (fblackmo) employee was weed eating when, he hit old metal sign post causing a piece of the metal to hit him in his stomach area. Supervisor: w. M. Tosto
## 2498 07/16/2003 08:59 am (fblackmo) employee was climbing off the back of a truck from cleaning amber light when, she hit her tooth on the end of the screwdriver. Supervisor; john farrow
## 2499 07/16/2003 09:19 am (fblackmo) employee was loading trash bags onto a dump truck when, she felt pain in her back. Supervisor: eddie surganious *show joyce all bills*
## 2500 07/16/2003 09:33 am (fblackmo) employee was assisting mechanic jump start vehicle battery when, he inhaled fumes from the battery. Supervisor: marty morris
## 2501 07/16/2003 10:38 am (fblackmo) heat exhaustion. Supervisor: dale loflin
## 2502 07/17/2000 04:09 pm employee was cutting the right of way when he came in poison ivy on 6/29/00. He has contact rash on neck and his face. Supervisor: w. D. Watkins
## 2503 07/17/2000 04:19 pm employee was working on a signal head that had corrosion on 6/29/00. The wind blew dirt or grime into his left eye. Supervisor: tim bell
## 2504 07/17/2000 04:27 pm employee stopped on us highway 74 to move a block of wood in the road. When he lifted the wood, he felt a pain in his lower back. Supervisor: james e. Burleson
## 2505 07/17/2000 04:36 pm employee was sitting on tailgate of truck when the driver began to back up. Employee was telling the driver to "woe", but the driver thought the employee was saying"go". The driver continued to back crushing her left leg between
## 2506 07/17/2000 04:49 pm employee was helping unload a stack of lumber off a truck using a boom truck. A bee flew up from lumber hack and stung him on his right hand. Supervisor: j. C. Gunter
## 2507 07/17/2001 02:04 pm (fblackmo) employee was operating a chain saw in the chipping procedure, when poison oak contact occurred. Supervisor: todd bray
## 2508 07/17/2001 02:20 pm (fblackmo) employee was cutting trees when one tree did not fall immediately causing it to jump back. The branch struck the employee on the back of his head. Employee was thrown approx. 20 feet. Supervisor: coy griffin
## 2509 07/17/2001 02:40 pm (fblackmo) employee was removing battery box cover, cover came off suddenly causing the injury. Supervisor: edison tripp
## 2510 07/17/2001 02:59 pm (fblackmo) employee jumped off of swivel boom truck and landed on left leg causing the injury. Supervisor: w. D. Watkins
## 2511 07/17/2001 03:19 pm (fblackmo) employee bumped back of head while retrieving parts stored under steel stairwell. Supervisor: don ferguson
## 2512 07/17/2001 03:36 pm (fblackmo) employee was cutting wooded area, employee stung by bees. Supervisor: steve brown
## 2513 07/17/2001 03:49 pm (fblackmo) employee was mowing on I-85 and cut over a bees nest, bees stung him on the head. Supervisor: d. R. Summers
## 2514 07/17/2001 04:02 pm (fblackmo) employee was mowing on I-85. Supervisor: d. R. Summers
## 2515 07/17/2001 04:12 pm (fblackmo) employee loaded excavator onto lowboy trailer. As employee stepped off trailer, left leg twisted. Supervisor: d. S. Lee
## 2516 07/17/2001 04:25 pm (fblackmo) employee was cutting post bolts under bridge when stung by bee/spider. Supervisor: eric allen schenz
## 2517 07/17/2001 04:38 pm (fblackmo) employee was working with survey party staking road way. Employee fell down incline. Supervisor: steven w. Nance
## 2518 07/17/2001 10:40 am (fblackmo) employee was driving to job site. Employee blacked out and lost control of the pick up truck. Employee is a diabetic. Supervisor: h. L. Silverthorne
## 2519 07/17/2001 11:04 am (fblackmo) employee was using a backhoe to pick up roller. The roller came unhooked and the handle struck him on the foot. Supervisor: bobby wayne flinchum
## 2520 07/17/2001 11:32 am (fblackmo) employee rolled front end loader onto left side. Employee pulled himself up to exit right door of loader. While pulling up, he felt a pop in right shoulder. Supervisor: d. L. Lane
## 2521 07/17/2003 09:33 am (fblackmo) employee states he injured his left wrist while lifting a cardboard box from a traffic signal cabinet to perform a inspection. Supervisor: kelvin peele
## 2522 07/17/2003 09:47 am (fblackmo) employee was jogging in the hallway when, she tripped on her sandles and fell. Supervisor: angela williams
## 2523 07/17/2003 10:02 am (fblackmo) employee was lifting and replacing a grate that was broken when, he felt pain in his back. Supervisor; t. Jordan
## 2524 07/17/2003 10:12 am (fblackmo) employee states he experienced pain in his lower back while moving topping from sled. Supervisor; stephen dillon
## 2525 07/17/2003 11:23 am (fblackmo) employee was pulling hose when, he tripped and fell causing the injury to his right knee. Supervisor: g. K. Dozier
## 2526 07/18/2000 08:57 am employee was fixing washout along the shoulder of I-40 on 3/27/00. At some point, while riding on the trunk she aggravated her neck due to the banging/jerking of the truck tailgate (truck movement). She has moderate severe cervic
## 2527 07/18/2000 09:07 am employee told his supervisor that his left upper arm was sore and swollen around a tetanus shot area. He received the tetanus shot in September 1999. Supervisor: h. V. Inscoe
## 2528 07/18/2001 08:56 am (fblackmo) employee was working on state road, buried a dead deer, cat, and dog came into contact with ticks. Supervisor: r. A. Lewis
## 2529 07/18/2001 09:12 am (fblackmo) employee, while probing muck in the woods and along the roadside came into contact with chiggers causing the injury. Supervisor: robert r. White
## 2530 07/18/2001 09:32 am (fblackmo) employee was in bucket of state owned bucket truck changing bulb in signal head on us 70. Privately owned vehicle struck bottom of bucket. Supervisor: charles durwin rice
## 2531 07/18/2002 02:48 pm (fblackmo) employee states while handling renewal cards had an allergic reaction to the material. Supervisor: lynn chalk
## 2532 07/18/2002 03:38 pm (fblackmo) employee was shoveling asphalt when he turned, felt pain in his lower back on right side. Supervisor: greg vinson
## 2533 07/18/2002 03:50 pm (fblackmo) employee was loading truck with pellets and old wooden blocks slipped and lost it balanced, hitting employee in his ribs and head. Supervisor: r. W. Feher
## 2534 07/19/1999 11:05 am employee was lifting a box of mapping paperwork files to place it on a cart, when employee experienced lower back pain. Supervisor: c. A. Nedwidek.
## 2535 07/19/1999 11:09 am employee injured right knee by repeatedly getting off bed of pickup truck while operating a gps rover. Supervisor: mojdeh masihpour.
## 2536 07/19/1999 11:18 am employee was clearing right of way, when he came in contact with bees. He was trying to get out of the way and tripped/fell off the bank onto the road. He injured his left knee, and has contusion on left side of chest. Superviso
## 2537 07/19/1999 11:25 am employee fell backwards while trying to remove a limb from the bed of a dump truck. He has small lacerations on left forearm. Supervisor: johnny r. Kriner.
## 2538 07/19/1999 11:31 am employee slipped and bruised his right shoulder. Employee was walking in the entrance of shop area, when hydraulic oil seeped under rug. Supervisor: d. J. Staley.
## 2539 07/19/1999 11:37 am employee was clearing out underbrush while surveying, when he came in contact with poison ivy on his right arm. Supervisor: t. L. White.
## 2540 07/19/1999 11:43 am employee exposed to poison ivy while staking right of way easement on us 70 in iredell county. Contact rash is on arms, chest, and other areas on body. Supervisor: b. R. Trivette, jr.
## 2541 07/19/1999 11:50 am employee came in contact with poison ivy, while cutting brush on survey line in johnston county. Rash on left arm and shoulder. Supervisor: a. K. Alford
## 2542 07/19/1999 11:56 am employee came in contact with a bees nest and poison ivy, while clearing the right of way in jackson county. Supervisor: m. G. Wilkes
## 2543 07/19/1999 12:03 pm employee was staking on sr 1354 on c. Fowler road, when he noticed a red bump with a dot in center on his upper right thigh. He believes he was bitten by a spider. Supervisor: david b. Clay.
## 2544 07/19/1999 12:21 pm employee was fueling equipment on main road of job site, when he was bitten by a tick on upper right thigh. This bite caused numbness and weakness in right thigh. Supervisor: c. H. Bennett
## 2545 07/19/1999 12:27 pm employee was working on a slope mower on job site on 6-25-99. He found a tick on his left side. He then began to fell weakness, numbness around his face, neck and arms over the weekend. Supervisor: c. H. Bennett.
## 2546 07/19/2002 07:22 am (fblackmo) employee was assisting welder by holding the rebar in place on bridge number 409 in pitt county. Later into the night employee experienced discomfort to his eyes. Supervisor: chris bland
## 2547 07/19/2002 07:39 am (fblackmo) employee states, while beginning to conduct a cdl road test he reached up to grab a handle to help pull himself into the cab of the vehicle. Employee felt something pull in his right shoulder area. Supervisor: joan j.
## 2548 07/19/2002 08:19 am (fblackmo) employee was picking up a long base signal cabinet and while trying to load on truck his right hand twisted causing pain. Supervisor: marty headen
## 2549 07/19/2002 08:32 am (fblackmo) employee was chipping tree limbs and brush on state road 2226 in cleveland county. Limbs was covered with poison ivy and made contact with employees skin. Supervisor: d. R. Roberts
## 2550 07/19/2002 08:46 am (fblackmo) employee states, while getting off back of flat bed truck, left arm hit the crash attenuator. Supervisor: franklin bullock
## 2551 07/19/2002 08:58 am (fblackmo) employee was cutting bushes under bridge # 32 when, wasp flew up and stung him on his right hand. Supervisor: w. T. Lowery jr
## 2552 07/19/2002 09:37 am (fblackmo) employee was crossing highway when he felt pain in right knee. Supervisor: r. A. Brower
## 2553 07/19/2002 09:57 am (fblackmo) employee was going to lunch when she stepped down off curb, missed the step causing the fall. Supervisor; sharon clark
## 2554 07/20/1999 04:00 pm employee was involved in vehicle accident while driving a state vehicle pulling trailer load of lumber. The truck jack-knife and laid over on the driver side. The employee suffered injury to his contusions left shoulder, left hip
## 2555 07/20/1999 04:12 pm employee was a passenger in state vehicle that was pulling a trailer load of lumber, when accident happened. The truck jack-knife and laid over on driver side. The employee suffered injury to right forearm. Supervisor: terry l.
## 2556 07/20/1999 04:44 pm employee injured right side of groin, while operating tamp to compact backfill material around storm drainage pipe. After he completed the task and shut off tamp, he felt a severe pain in his groin. Supervisor: roger elliott.
## 2557 07/20/1999 04:51 pm employee was assisting driller with lowering drill string onto bridge deck, when he injured finger on left hand and bruised his left thigh. Supervisor: stuart s. Bowman.
## 2558 07/20/1999 05:00 pm employee was knocking pin out of tailgate, when foreign matter fell into his left eye. Supervisor: h. L. Carter.
## 2559 07/20/2001 10:32 am (fblackmo) employee was lifting u-channel post off truck that was stuck together. Supervisor: ronnie isley
## 2560 07/20/2001 10:54 am (fblackmo) employee injury occurred while installing an 18'' aluminum pipe on state road 1314. Supervisor: r. E. Brake
## 2561 07/20/2001 11:14 am (fblackmo) employee wiped his face off with a terry cloth, minutes later the employee experienced itching, burning, and his eye became swollen. Supervisor: l. Michelle podeszwa
## 2562 07/20/2001 11:46 am (fblackmo) employee was loading empty paint barrels onto truck when, one barrel fell and caught his fingers between it and another barrel. Supervisor: franklin bullock
## 2563 07/20/2001 12:02 pm (fblackmo) employee was trying to break loose a rusted bolt on a sign using his cordless drill and turned up the speed. When the employee went back to install the new sign he forgot about the speed of the drill, which jerk his wr
## 2564 07/21/1999 10:02 am employee was in the process of bending over to put the state money into safe, when she felt something give in her lower back. She has a hard time standing up straight. Supervisor: dwight godwin. 04/08/2004 01:56 pm (gwhite)
## 2565 07/21/1999 10:15 am employee cut his head on scalp while trying to go under a protruding tree limb while surveying. Supervisor: h. R. Boles.
## 2566 07/21/1999 10:49 am employee left eye was injured while working outside doing an evaluation study for replacement housing. A hard shell bug flew into his left eye. Supervisor: donald e. Mauldin
## 2567 07/21/1999 10:56 am employee injured his left elbow while shoveling asphalt off a truck. Supervisor: j. S. Walker
## 2568 07/21/1999 11:01 am employee injured her right shin (front part of lower leg) while stepping over a pipe. She slipped in mud and fell on the pipe. Supervisor: adam biddix.
## 2569 07/21/1999 11:10 am employee was picking up a piece of 4"x 6' x 14" lumber, when five pieces of the lumber fell and hit his right leg, pinching leg against metal sign post. He has a contusion on right lower leg. Supervisor: terry l. Harris. 02/01
## 2570 07/21/1999 11:16 am employee came in contact with poison ivy while clearing brush and overgrowth. Contact rash on right arm and right leg. Supervisor: r. E. Joyce.
## 2571 07/21/1999 11:34 am employee was cleaning debris from bridge, when he hurt his right shoulder. Supervisor: r. E. Cox
## 2572 07/21/1999 11:41 am employee left shoulder was injured while operating slope mower. Two slope mower were operating on dirt road, when the first mower picked up and threw a piece of wire into the second mower. The wire entered through a safety fence.
## 2573 07/21/1999 11:49 am employee came in contact with poison ivy on both hands, while checking the width of fill section with cloth tape. Supervisor: wilkes county.
## 2574 07/22/1999 10:18 am employee was bitten by a tick near his ground area. Supervisor: r. L. Bowers. 02/01/2000 11:06 am
## 2575 07/22/1999 10:24 am employee cut left index finger while moving air hose causing the welding box to fall on hi finger. Supervisor: d. R. Foster.
## 2576 07/22/1999 10:28 am employee came into contact with poison ivy all over her body, while cutting right of way in burke county. Supervisor: e. D. Zimmerman
## 2577 07/22/1999 10:33 am employee injured her left wrist due to repeatedly keying and writing on her job. Supervisor: paula windley.
## 2578 07/22/1999 10:40 am employee was helping pull a water line hose to drill on a location, when he injured his left shoulder. Supervisor: f. R. Glass
## 2579 07/22/1999 10:45 am employee was working in pipe shop using a pipe threader, when something got in his right eye. The foreign object made a scratch to his right eyelid. Supervisor: david leon pruitt.
## 2580 07/22/1999 10:53 am employee was using a pocket knife to trim wood for deck awning, when knife slipped and cut his third knuckle on his left hand. Supervisor: charles r. Sharp
## 2581 07/22/1999 11:02 am employee was driving stake 48" with an axe, when top broke on stake, causing the axe to slip and hit him on the right shin. Supervisor: stonie d. Woolard.
## 2582 07/22/2002 02:04 pm (fblackmo) employee was exiting the building when, her foot got caught in the doormat injuring her left knee. Supervisor: john wells
## 2583 07/22/2002 02:27 pm (fblackmo) employee was hammering a hub and as the hammer hit the concrete caused employee to experience sharp pain in his chest area. Supervisor: a. C. Mccoy
## 2584 07/22/2002 02:55 pm (fblackmo) employee was loading boxes onto a pallet when the handle from the pallet fell hitting employee on the head. Supervisor: william h. Williams
## 2585 07/22/2002 03:25 pm (fblackmo) employee states that while, digging a hole to bury a large animal he hit his hand on the shovel causing pain to finger. Supervisor: b. J. Berryhill jr
## 2586 07/22/2002 12:37 pm (fblackmo) employee was placing a bag of asphalt in his truck when the bag of asphalt slipped off the bumper. Employee naturally responded by trying to catch catch the bag when he felt a sharp pain in his groin area. Supervisor:
## 2587 07/22/2002 12:52 pm (fblackmo) employee states while running a weedeater debris got into his right eye. Supervisor: c. W. Vestal
## 2588 07/22/2003 01:58 pm (fblackmo) employee stated he lost his balance on rip rap. Which caused the injury to his lower back. Supervisor: alan hancock
## 2589 07/22/2003 07:29 am (fblackmo) employee was walking on deck to un-tie line when, he felt pain in his left knee. Supervisor: r. E. Hill
## 2590 07/22/2003 07:47 am (fblackmo) employee was directing traffic when, he was hit by a vehicle. Supervisor; j. R. Bell
## 2591 07/22/2003 08:20 am (fblackmo) employee fell off back of truck. Supervisor: d. R. Ross
## 2592 07/22/2003 08:33 am (fblackmo) employee states he found a tick on his right ankle. Supervisor: c. E. Lassiter
## 2593 07/22/2003 08:55 am (fblackmo) employee was shoveling concrete when, he felt pain in his back. Supervisor; c. E. Watson
## 2594 07/22/2003 09:14 am (fblackmo) employee was shoveling dirt to cover manhole when, he lost his balance and fell into the hole causing the injury to his back. Supervisor; w. R. Friddle
## 2595 07/22/2003 10:04 am (fblackmo) employee experienced pain in her wrist while and elbow area. Supervisor: george tatum
## 2596 07/22/2003 10:22 am (fblackmo) employee was cleaning out pipe when, foreign matter hit him on his right knee area. Supervisor: b. Boone
## 2597 07/22/2003 10:33 am (fblackmo) employee was shoveling asphalt when, felt pain in his chest area. Supervisor: j. R. Clark
## 2598 07/22/2003 11:01 am (fblackmo) employee was operating a motor grading machine on secondary road when, he was shot. Supervisor: e. C. Thomas
## 2599 07/22/2003 11:44 am (fblackmo) employee was working in a heavy wooded area when, he found ticks on multiple areas on his body. Supervisor; c. S. Mcdonald
## 2600 07/22/2003 11:58 am (fblackmo) employee was walking out of warehouse at loading dock area when, he slipped on water from a leaking ice machine. Supervisor: bruce myers
## 2601 07/22/2003 12:11 pm (fblackmo) employee experienced muscle and joint pain after removing a tick from his arms and legs. Supervisor: michael e. Lemons
## 2602 07/23/1999 02:39 pm employee injured his left knee while trying to avoid/run from a snake. The employee was working in a swamp with rubber boots on when he twisted his knee. Supervisor: t. L. Godwin
## 2603 07/23/1999 02:46 pm employee injured his back while repairing cable on nc 403 in duplin county. He was holding one end of the cable, while the other end was being rethreaded. Supervisor: dean meacer.
## 2604 07/23/1999 02:54 pm employee injured lower back while strapping 2" metal shovel handles together with plastic tie straps. Supervisor: j. V. Riddick.
## 2605 07/23/1999 03:34 pm employee and coworker were lifting a bundle of burlap bags on to back of a flat-bed truck. Employee said he felt a sharp pain in lower back and left leg. Supervisor: j. M. Tant 02/01/2000 12:50 pm
## 2606 07/23/1999 04:01 pm employee injured right wrist and hand due to repetitive use of hands tool ie. Shovel, rake.
## 2607 07/23/1999 04:10 pm employee has pain/soreness in right shoulder and areas on his chest due to a vehicle accident on 1/05/99. The employee was driving a state pickup truck, when he was hit from behind. The person failed to stop hitting state vehicle
## 2608 07/23/1999 08:25 am employee was a passenger in a imap truck, when driver hit the brakes to avoid hitting a vehicle in front of him. The driver veered to the right on wet pavement, which caused the vehicle to slid into the vehicle in front of him. T
## 2609 07/23/2002 09:04 am (fblackmo) employee was doing an inspection on bridge number 193 in gaston cont on 06/26/2002 when he felt something on his left side around his rib area. A tick was found and removed causing the area to become a red and infected.
## 2610 07/23/2002 10:16 am (fblackmo) employee complained to his supervisor of pain in right hand and finger when operating impact gun and tire changing tools. Supervisor: keith smith
## 2611 07/24/2000 03:11 pm employee was climbing down off a truck; when he lost footing and fell twisting his right ankle. Supervisor: walter b. Crumpler
## 2612 07/24/2000 03:30 pm employee was placing traffic cones on the back of a truck and proceeded to climb down; when she twisted her left knee upon jumping off the truck. Supervisor: d. W. Rascoe
## 2613 07/24/2000 03:36 pm employee was walking in high grass; when his right foot went into a hole turning/twisting his ankle. Supervisor: r. N. Wright
## 2614 07/24/2000 03:45 pm employee was clearing brush while surveying on 6/20/00; when the crew disturbed a yellow jackets nest. Mr. Broome was stung on his left ankle. Supervisor: l. T. Williford
## 2615 07/24/2000 04:29 pm employee was working on ferry vessel when he slipped and sprained his left foot while stepping over the bilge on 7/12/00. Supervisor: richard dewhurst
## 2616 07/24/2000 04:35 pm employee customer was giving a road test; when customer turned right too fast and ran off the road. The customer ran down an embankment and struck a tree causing injuries to her chest, arm, shoulder. She has several bruises, scra
## 2617 07/24/2001 08:51 am (fblackmo) employee was unloading sod from flatbed truck. Truck was parked on slight incline and body of truck was wet because sod had been watered. Employee picked up a roll of sod, his foot slipped causing the injury. Supervisor
## 2618 07/24/2001 09:18 am (fblackmo) employee contacted poison oak while cutting a tree off interstate 26. Supervisor: m. H. Thomas
## 2619 07/24/2001 09:35 am (fblackmo) employee was putting in right of way monuments, and temporary construction easement flags on bank side cut of nc 294 project. Employee came into contact with poison oak vines.
## 2620 07/24/2001 09:55 am (fblackmo) employee was putting lug-hook back into trailer when, his hand slipped causing the injury. Supervisor: c. N. Vaughn
## 2621 07/24/2003 02:33 pm (fblackmo) employee was operating a hydro seeder when, he was struck in the jaw by the handle of the machine. Supervisor: f. K. Blazer
## 2622 07/24/2003 02:49 pm (fblackmo) employee was cutting undergrowth under bridges when, he came into contact with poison ivy. Supervisor: r. E. Joyce
## 2623 07/24/2003 03:17 pm (fblackmo) employee was moving from between two cars when, he felt pain in his ankle. Supervisor: master avery
## 2624 07/24/2003 03:37 pm (fblackmo) employee was carrying a 48" sign when, he felt pain in his neck. Supervisor: j. A. Ridge
## 2625 07/24/2003 03:53 pm (fblackmo) employee was moving office furniture when, desk fell of hand truck striking his left foot. Supervisor: cecil jones
## 2626 07/24/2003 04:06 pm (fblackmo) employee was weed-eating when, he was bitten by a spider on left leg. Supervisor: d. H. Johnson
## 2627 07/25/2000 09:45 am employee was standing in front of file cabinet pulling out a file drawer; when he felt a pop in his right wrist. He was diagnosed with a ganglion cyst caused from the trauma to his wrist. Supervisor: chris corriher
## 2628 07/25/2000 10:00 am employee was walking into the edge of woods when a bee stung employee on his left leg. Supervisor: james spivey
## 2629 07/25/2000 10:10 am employee was cutting grass on sr 1500 in robeson county. When he flipped the sickle blade to clean off the grass, debris (poison ivy particles) flew up landing on his right arm. Supervisor: w. D. Pittman
## 2630 07/25/2000 10:17 am employee was cleaning out plant beds when he was stung by fire ants on his left hand. Supervisor: hardie tillett
## 2631 07/25/2000 10:25 am employee was mowing around an explosive shed on 7/6/00; when he was stung by an insect on his left upper arm. Supervisor: kent d. Boyer
## 2632 07/25/2001 03:57 pm (fblackmo) employee was giving road test when, customer lost control of the vehicle and ran across the road median and hit the tree. Customer was driving to fast to make right turn, and was not paying attention to the examiners p
## 2633 07/25/2001 04:27 pm (fblackmo) employee, while attempting to remove a ncdot sign form the sign rack, grabbing the bottom. The bottom of the sign slipped and fell on employees left hand middle finger. Supervisor: c. Tapp
## 2634 07/25/2001 04:39 pm (fblackmo) employee was cutting wire on fence when a section of the fence broke his finger nail. Three days later the area became sore and infected. Supervisor: c. L. Edwards
## 2635 07/25/2001 04:56 pm (fblackmo) employee was attempting to dig hole with shovel when, shovel slipped on hard ground. Employees right foot extended to far causing the pain in his right leg. Supervisor: e. J. Anderson
## 2636 07/25/2001 05:22 pm (fblackmo) employee was working on the rear mower of ford tractor. When pushing roller upward roller slipped and bent employees left wrist backwards. Supervisor: lee patrick 07/26/2001 08:44 am (fblackmo)
## 2637 07/25/2001 12:52 pm (sshort) employee was installing pc's and crawling underneath desks to connect power plugs, when she injured her left knee (baker's cyst). Ms. Burton installs pc's regularly on her job, therefore her injury May be caused by repetit
## 2638 07/26/1999 02:51 pm employee came in contact with poison ivy while cutting brush to clear paths. Contact rash is on his forearms and hands. Supervisor: r. P. Hunter.
## 2639 07/26/1999 02:55 pm employee came in contact with poison ivy while cutting brush to clear paths. Contact rash is on face, legs, and arms. Supervisor: r. P. Hunter.
## 2640 07/26/1999 03:00 pm employee stepped out of wrecker truck and slipped on loose gravel in bridge yard. He fell on his left wrist trying to break his fall. Supervisor: r. F. Barnette. 02/04/2000 09:46 am
## 2641 07/26/1999 03:16 pm employee pulled muscle in back while helping unload silt fence material on 7/20/99. Supervisor: j. S. Walker.
## 2642 07/26/1999 03:35 pm employee was assisting another employee putting pins back into tailgate, when the other employee hand slipped and jerked her arm back striking her elbow against the bed of tailgate. Supervisor: j. D. Andrews.
## 2643 07/26/1999 03:40 pm employee was bitten on his right hip by a tick while checking bench mark in the woods. Supervisor: jackson provost
## 2644 07/26/1999 03:45 pm employee was bitten by a tick on the right side of lower back. Supervisor: a. L. Smith
## 2645 07/26/2000 09:00 am employee was helping install a six way plug in bumper of truck on 7/6/00. A co-worker was cutting a hole in bumper with a saw; when a metal particle entered employees right eye. Supervisor: d. C. Sherrod
## 2646 07/26/2000 09:04 am employee was showing the backhoe operator the end of pipe was; when he was struck on top of his head with the rear bucket. Employee was trying to get out of the way at time of incident. Supervisor: r. L. Adcock
## 2647 07/26/2000 09:08 am officer lee strained/twisted his lower back and his left leg on 7/10/00. He had just stopped a vehicle when this injury occurred. Supervisor: lt. G. F. Inman
## 2648 07/26/2000 09:11 am employee lifted the tailgate to remove a rake hung up in the tailgate; when she lost her grip causing the tailgate to fall on her left hand. She has a cut and bruised little left finger requiring 7 stitches. Supervisor: t. C. Till
## 2649 07/26/2000 09:17 am employee was conducting a road test on 7/10/00. He was climbing/stepping down when he missed a step causing him to catch himself on door. He has injuries to his left index and middle fingers. Supervisor: joan j. Holland
## 2650 07/26/2000 09:25 am employee was installing rock guard using an air wrench; when a piece of metal fell on his right eye. Supervisor: cecil w. Bowser, jr
## 2651 07/26/2000 09:42 am employee had his left hand on tailgate when another employee threw a tree limb in the truck on top of his hand. Supervisor: floyd roberts
## 2652 07/26/2000 09:49 am employee found a tick attached to the top of his head. Employee had previously worked on job sites in guilford county picking litter in weed areas. Supervisor: a. L. Smith
## 2653 07/26/2000 10:00 am employee was cutting trees around poison ivy with a weed eater; when he came in contact with poison plants. He has contact rash all over his body. Supervisor: a. L. Smith
## 2654 07/26/2001 02:28 pm (fblackmo) employee, while inspecting parcels for review on nc 11 in lenoir county got out of the vehicle that was parked on the shoulder of road and twisted his back. Supervisor: fred n. Davis jr
## 2655 07/26/2001 08:45 am (fblackmo) employee slipped and fell in main lobby causing the injury to her left hand. Supervisor: edith mcdaniel
## 2656 07/26/2001 09:05 am (fblackmo) employee complains of pain in right shoulder, arm, and wrist when operating the remittance processors. Operating the processors consist of inserting a stack of checks and cards into an automatic feed. The processor the
## 2657 07/26/2001 09:24 am (fblackmo) employee was dumping brushes and weeds from truck hauling away from jobsite when branches became tangled in tailgate. Employee then removed the branches. Supervisor:
## 2658 07/26/2001 09:41 am (fblackmo) employee is experiencing pain and swelling in left wrist and hand. Supervisor: linda davis
## 2659 07/26/2001 10:14 am (fblackmo) employee was leaving the crew cab pickup after returning to the maintenance yard, when he twisted to get out of the truck he felt a sharp pain in his back. He told his supervisor at that time employee began to walk aro
## 2660 07/26/2001 11:13 am (fblackmo) employee was ministering a road test when customer got her foot tangled up in gas paddle. Vehicle hit guard rail and bounced off. Supervisor: patricia glenn
## 2661 07/26/2001 11:37 am (fblackmo) employee stopped moving paint operation to clear obstruction from bead gun. Employee opened side bin for piers to remove bead gun nozzle. When the door opened an aerosol can of brake cleaner fell from shelf and landed
## 2662 07/26/2002 01:10 pm (fblackmo) employee was attempting to retreive stock in the warehouse. Ladder slipped causing the employee to fall to the floor. Supervisor; tim roberts
## 2663 07/26/2002 01:21 pm (fblackmo) employee was getting u-channel off the back of truck when she lost her footing and fell. Supervisor: doug anderson
## 2664 07/26/2002 01:33 pm (fblackmo) employee was putting floor down on bridge and pulled a grab hook to move a 3x6 when he felt pain in his right side and lower back area. Supervisor: hugh williams
## 2665 07/26/2002 01:56 pm (fblackmo) employee was walking down steps when she fell on her right side. Supervisor; shawn a. Troy
## 2666 07/26/2002 09:11 am (fblackmo) employee stop to use bathroom when he felt something bite him on his lower right leg. Supervisor: charles e. Moore
## 2667 07/26/2002 09:25 am (fblackmo) employee was giving a road test when the driver was pulling into parking spot instead of braking, customer accelerated hitting two cars. Supervisor: dwight langley
## 2668 07/26/2002 10:11 am (fblackmo) employee states that while trying to explain the proper paper work to a customer that she became anger and grabbed the paper work out of employees hand. Employees' hand became twisted in the ordeal. (see form 19). Sup
## 2669 07/26/2002 10:27 am (fblackmo) employee was removing trees from job site when he came into contact with poison ivy. Supervisor: a. L. Smith
## 2670 07/26/2002 10:38 am (fblackmo) employee was clearing fence line when he came into contact with poison ivy. Supervisor: a. L. Smith
## 2671 07/26/2002 11:04 am (fblackmo) employee was doing an inspection of contractor paving operation on groomtown road when he found ticks on his neck and buttocks. Supervisor: david crotts
## 2672 07/26/2002 11:17 am (fblackmo) employee was removing barricade stands and boards when a nail penetrated his shoe. Supervisor: dwayne a. Bauguess
## 2673 07/26/2002 11:28 am (fblackmo) employee was adjusting burner on asphalt tanker when the injury occurred. Supervisor: r. L. Supervisor
## 2674 07/26/2002 11:40 am (fblackmo) employee was bitten by ticks while working on bridge replacement project site in nash county. Supervisor: k. E. Honeycutt
## 2675 07/26/2002 11:52 am (fblackmo) employee was attempting to make an arrest when the suspects' sister jumped on his back, pulling him by his neck causing the injury. Supervisor: m. L. Harrell
## 2676 07/27/2000 03:46 pm employee was performing a road test; when client pulled out in front of a semi-truck and was struck from behind. Employee has neck and upper back strain/pain. Supervisor: jo lewis
## 2677 07/27/2000 03:59 pm employee was performing routine office duties; when she noticed numbness, tingling in her left wrist. Employee has carpal tunnel syndrome. Supervisor: chuck white
## 2678 07/27/2000 04:13 pm employee was operating swb dump truck on 7/17/00. The truck went over an embankment when the shoulder gave way under the truck. Mr. Clark has pain/soreness in his left shoulder. Supervisor: greg g. Caudill
## 2679 07/27/2000 04:19 pm employee was investigating roadway project; when he was attacked by a swarm of yellow jackets. He has multiple stings over his entire body, above his knees and excessive swelling and pain. Supervisor: steve brown
## 2680 07/27/2000 04:25 pm employee was struck by a tree and then fell on his left ankle on 7/17/00. He was across the road; when a track hoe swung a tree across the road to be cut. Supervisor: k. R. Davis
## 2681 07/28/2003 02:47 pm (fblackmo) employee was pushing on beams when, he felt pain in his back. Supervisor: mason thompson
## 2682 07/28/2003 02:57 pm (fblackmo) employee states he felt pain in his back while lifting a post onto the back of truck. Supervisor: j. A. Ridge
## 2683 07/28/2003 03:08 pm (fblackmo) employee states while inspecting columns under bridges he, came into contact with poison oak. Supervisor: greg johnson
## 2684 07/28/2003 03:24 pm (fblackmo) employee was flagging traffic when, he was bitten by a tick on his right leg. Supervisor: w. T. Teague 10/02/2003 04:09 pm (gwhite)
## 2685 07/28/2003 03:34 pm (fblackmo) employee was moving straw when, found rash on his lower arm. Supervisor: van ellis
## 2686 07/28/2003 03:45 pm (fblackmo) employee states he felt pain in his back while trying to replace a pin in tractor broom. Supervisor: d. T. Cottrell
## 2687 07/28/2003 04:04 pm (fblackmo) employee was using water pump when, he hit his head on truck. Supervisor: w. J. Timberlake
## 2688 07/29/1999 02:25 pm employee was trying to install a trailer tongue on a message board, when he picked up the tongue he heard his back pop. He has pain in lower back-lumbosacral strain. Supervisor: jerry w. Linder.
## 2689 07/29/1999 02:34 pm employee was traveling west on us 74 on his way in from rest area, when a private vehicle hit him in the rear. This knocked him into the guardrail several times and he sustained injuries to his face and neck. Supervisor: danny b
## 2690 07/29/1999 03:15 pm employee was changing tires on a 1 ton truck, when tire slipped out of his hands pulling him to the left side. The tire hit his left foot while his right hand was still holding the tire. He sprained his lower back and his left wr
## 2691 07/29/1999 11:15 am employee came in contact with poison ivy and has rash on arms. Supervisor: allan nance.
## 2692 07/29/1999 11:20 am employee came in contact with poison ivy while loading tree limbs into a dump truck. Affected areas are his eyes, right arm, behind his right ear, and groin area. Supervisor: t. H. Swayne
## 2693 07/29/1999 11:27 am employee suffered bee stings, 2 to his lower back area and 1 on upper right arm. He was taking dtm shots on a hillside, when he stepped into a yellow jacket nest. Supervisor: ricky tipton
## 2694 07/29/1999 11:33 am employee was sliding a form from back of truck, when a 2x6 with an exposed nail came loose puncturing his left index finger. Supervisor: ernest w. Huffman.
## 2695 07/29/1999 11:45 am employee was surveying wooded area in cumberland county, when he found a tick around front waistline area. Supervisor: lisa m. Privette
## 2696 07/29/1999 12:02 pm employee injured fingers on his right hand when he jerked a limb down. He had cut the limb with a bush axe blade while on survey project. Supervisor: h. R. Boles.
## 2697 07/29/1999 12:10 pm employee came in contact with poison ivy while cutting right of way trees. Contact rash on face, neck and both arms. Supervisor: alan e. Brown.
## 2698 07/29/1999 12:35 pm employee and an inmate was handling buckets of stone down from bed of dump truck, when Mr. Church pulled a muscle in his left upper arm. Supervisor: c. B. Lunsford.
## 2699 07/30/2001 02:08 pm (fblackmo) employee was conducting a wetland investing and was stung by a wasp. Supervisor: gordon cashin
## 2700 07/30/2001 02:32 pm (fblackmo) employee was loading the lowboy grader. When the employee started to put the chains on the grader, one chain came loose and hit the back of the trailer causing the chain to pull the employee arm and shoulder. Superviso
## 2701 07/30/2001 04:50 pm (fblackmo) employee was cutting bushes over pipe when a bee stung him on his right hand. Supervisor: charlie watson
## 2702 07/30/2001 05:00 pm (fblackmo) employee was burying a dead animal on I-95. He hurt his back while shoveling dirt to cover up the hole. Supervisor: h. Watson
## 2703 07/30/2001 05:13 pm (fblackmo) employee became dizzy and disoriented while operating belts on a chip spreader. Supervisor: j. W. Weatherman
## 2704 07/30/2001 09:34 am (fblackmo) employee was on ridding mower and was backing up the mower when his back started to hurt. Supervisor: jack rollins
## 2705 07/30/2001 10:01 am (fblackmo) employee bent over to pick up bag of asphalt when he stood up to pick up the bag he felt his shoulder pop causing severe pain. Supervisor: Jan t. Womble
## 2706 07/30/2001 10:21 am (fblackmo) employee moved to answer telephone and hit knee on the desk cabinet. Supervisor: j. Scott cole
## 2707 07/30/2001 10:48 am (fblackmo) employee was bite by a tick on his upper left arm. Bite area became inflamed and itchy. Supervisor: marvin wayne currie
## 2708 07/30/2001 12:05 pm (fblackmo) employee was using weedeater to clear weeds from bank when he struck a yellow jackets nest, resulting in bee sting to ear, arm, and legs. Supervisor: steven cannon
## 2709 07/30/2001 12:27 pm (fblackmo) employee was trying to open a 5 gallon paint can with knife. Knife slipped and closed up on employee right index finger causing a cut. Supervisor: jim craven
## 2710 07/30/2002 09:04 am (fblackmo) employee was taking a log chain back to the top of a truck when he stepped into a hole or an uneven ground causing him to fall hurting his left foot. Supervisor: w. T. Teague
## 2711 07/30/2002 09:17 am (fblackmo) employee was helping with repairs to bridge when he came into contact with poison ivy. Supervisor: t. L. Harris
## 2712 07/30/2002 09:30 am (fblackmo) employee was loading batteries into the back of a pickup truck when one fell off the truck onto another battery causing some of the battery acid to fly up hitting employee in both eyes. Supervisor: arlene mozingo
## 2713 07/30/2002 09:43 am (fblackmo) employee was lifting front wheel off truck when he felt pain in his lower back. Supervisor: edison tripp
## 2714 07/30/2002 10:15 am (fblackmo) employee was working on a piece of equipment that required he be up in the cab area. Employee was dismounting the equipment when he stepped down off the equipment and felt pain in his left knee. Supervisor: russell ram
## 2715 07/30/2002 10:39 am (fblackmo) employee was tighten down mooring lines when he felt pain to his back. Supervisor: s. H. Kinner
## 2716 07/30/2002 11:20 am (fblackmo) employee was welding on truck body when he was bitten by a insect. Supervisor: hays bennett
## 2717 07/31/2000 03:13 pm employee was lowering side of a tractor mower; when his hand slipped off the lever and hit the hydrolic box. He sprained his right index finger at time of incident. Supervisor: r. E. Burnett
## 2718 07/31/2000 03:23 pm employee was taking down and putting up new signs when he pulled a muscle in his left shoulder. Supervisor: roger lawrence arrowood
## 2719 07/31/2000 03:31 pm employee was struck by a piece of bark hitting the employee in the head and lodged in his right ear. (two employees where involved in horseplay) supervisor: lindsey o. Ethridge
## 2720 07/31/2000 03:48 pm employee was inspected pavement operation and was walking in grassy area; when he noticed ticks on his clothing, tick bites on his torso. Supervisor: d. A. Poindexter
## 2721 07/31/2000 03:59 pm employee was in a ditch line installing pipes; when he came in contact with poison ivy on 7/14/00. He has contact rash on both arms and face areas. Supervisor: lindsey o. Ethridge
## 2722 07/31/2000 04:13 pm employee was trying to turn key in a hard to open lock; when his left hand thumb was injured. Supervisor: j. Scott cole
## 2723 07/31/2000 04:22 pm employee was lifting up cones; when he felt severe pains in his lower back. Supervisor: r. L. Joyce
## 2724 07/31/2000 04:29 pm employee was mowing grass on sr 1510; when a towel became tangled in side mower deck. Employee raised the deck to try to remove the towel by pulling on it. Employee then felt a pop in his right shoulder. Supervisor: k. L. Ander
## 2725 07/31/2001 09:27 am (fblackmo) employee suffered from heat exhaustion due to extreme temperatures while working on kivett drive. Supervisor: a. L. Smith
## 2726 07/31/2001 09:42 am (fblackmo) employee was mowing on state road 1229. He had his right hand on the levers of the tractor when he hit a hole. Employee felt a pop in his right shoulder. Supervisor; k. L. Anderson
## 2727 07/31/2001 10:54 am (fblackmo) employee was helping to hook up the messageboard to the pickup truck assigned to take the board. Employee relizedthe messageboards hook up was lower than the truck he tried to lift the board with his hands, causing him
## 2728 07/31/2003 01:29 pm (fblackmo) employee was installing silt fence when, the ground gave way causing employee to fall and injury his left hand. Supervisor: m. B. Smith
## 2729 07/31/2003 01:44 pm (fblackmo) employee was moving jacks when, he felt pain in his back. Supervisor: ricky ball
## 2730 07/31/2003 01:56 pm (fblackmo) employee was moving a 21'' monitor when, he felt pain in his lower back. Supervisor; john pilipchuk
## 2731 07/31/2003 02:07 pm (fblackmo) employee states a truck hit a cone knocking him down, causing the injury to his legs and hip area. Supervisor: t. F. Rhodes, jr 08/29/2003 12:17 pm (gwhite)
## 2732 07/31/2003 02:20 pm (fblackmo) employee was walking back to his vehicle from conducting a audit when, he slipped and fell causing the injury to his left leg, right knee, back, and nose. Supervisor: w. T. Ballentine
## 2733 07/31/2003 02:35 pm (fblackmo) employee was stung by a bee while setting up traffic signal lights. Supervisor: victor long
## 2734 07/31/2003 02:43 pm (fblackmo) employee was pruning around signs when, he stepped into a hole when the injury occurred to his right ankle and foot. Supervisor: jason leonard
## 2735 07/31/2003 02:53 pm (fblackmo) employee was bitten by a tick while mowing. Supervisor: greg jordan
## 2736 07/31/2003 03:01 pm (fblackmo) employee was trying to lift a barrel when, he felt pain in his chest and right shoulder. Supervisor; mark anderson
## 2737 07/31/2003 09:15 am (fblackmo) employee was bolting up a sign when, the sign slipped causing employee to experience pain in his right shoulder. Supervisor: roger faulkner
## 2738 07/31/2003 09:26 am (fblackmo) employee was getting out of motor grader when, he slipped causing the injury to his right shoulder. Supervisor: j. E. Walters 04/08/2004 01:45 pm (gwhite)
## 2739 07/31/2003 09:50 am (fblackmo) employee was driving the attenvator on I-40 when, he was struck in the rear by a car causing the injury to his back. Supervisor: corey sudderth
## 2740 07/31/2003 10:37 am (fblackmo) employee states she was having breathing problems because of another employees cologne. Supervisor: dorene creech
## 2741 07/31/2003 11:12 am (fblackmo) employee jump off beam and landed wrong on his feet causing the injury to his knee and right shoulder. Supervisor: h. M. Thompson
## 2742 07/31/2003 11:27 am (fblackmo) employee was in the process of calling a customer when, she tripped and stumbled hitting her head and shoulder on the wall. Supervisor: brenda p. Grady
## 2743 07/31/2003 11:42 am (fblackmo) employee was walking on edge of woods when, briar penetrated his pants leg causing a cut on his knee. Supervisor: d. R. Summers 12/05/2003 11:09 am (gwhite)
## 2744 07/31/2003 11:57 am (fblackmo) employee was climbing out of backhoe when, he lost his footing causing the injury to his left ankle. Supervisor: dennis brann
## 2745 08/01/2001 03:16 pm (fblackmo) employee strained his back while loading boxes onto shelf in supply building. Supervisor: h. L. Rollinson
## 2746 08/01/2001 03:31 pm (fblackmo) employee was in the process of unloading a motor grader off the back of the trailer. He had removed the exhaust cap and was moving down off the equipment when, he lost his balance and fell. Supervisor: charles jones
## 2747 08/01/2001 04:29 pm (fblackmo) employee was exiting kitchen when she tripped over the twisted door mat, causing her to fall and twist right ankle and scrap left knee. Supervisor: s. D. Padgett
## 2748 08/01/2001 04:45 pm (fblackmo) employee was working around a high grassy area when a tick attached itself to the employee just below his belt line on right side. Supervisor: john thomason
## 2749 08/01/2002 02:32 pm (fblackmo) employee found three ticks, one attached to his neck(left side below hair line) and others in his hair while working on I-85. Supervisor: chuck white
## 2750 08/01/2002 02:45 pm (fblackmo) employee was cutting around bridge #275 in burke county when he came into contact with poison ivy. Supervisor: ken anderson
## 2751 08/01/2002 03:02 pm (fblackmo) employee states that while walking across a bridge holding onto the wood handrail, a splinter got into his right hand. Supervisor: c. M. Rhyne
## 2752 08/01/2002 03:20 pm (fblackmo) employee was removing bulb when he cut his hand on the detector shield. Supervisor; jimmy paschal
## 2753 08/01/2002 07:11 am (fblackmo) employee was stepping off tailgate of pickup truck when, he stepped into a hole causing the injury to his left ankle. Supervisor: chris crump
## 2754 08/01/2002 07:30 am (fblackmo) employee was putting on a backpack sprayer when, the sprayer shifted causing the injury to his left shoulder. Supervisor: brian k. Glover
## 2755 08/01/2002 07:51 am (fblackmo) employee was lifting and pulling brushes during a road clearing operation(davis chapel road) when, he felt pain in his lower abdomen area. Supervisor: r. J. Hollifield
## 2756 08/01/2002 08:06 am (fblackmo) employee states that while doing filing the file cabinet starting tipping over. Employee tried to catch the tipping file cabinet when the injury occurred to his ring finger on right hand. Supervisor: trice craddock
## 2757 08/01/2002 08:25 am (fblackmo) employee was cleaning out refrigerator when, she hit her head on the door handle. Supervisor: doyle lytle
## 2758 08/01/2002 08:43 am (fblackmo) employee was cutting bushes on state road 1637 when, he felt something bite him on his left hand. Supervisor: tim b. Elliott
## 2759 08/01/2002 08:58 am (fblackmo) employee states that while retrieving her keys to assigned equipment she, felt something sting her on the back of her neck. Supervisor: d. R. Bryan
## 2760 08/01/2002 09:14 am (fblackmo) employee states that while attempting to open a paint can by the taps, cut right index finger. Supervisor: thomas foster bowser
## 2761 08/01/2002 09:46 am (fblackmo) employee was walking to gas pump when he slipped on loose rock and concrete. Supervisor: joseph c. Pruitt jr
## 2762 08/01/2002 10:02 am (fblackmo) employee states she was bitten by a tick under her right arm. Supervisor: randy turner
## 2763 08/01/2002 10:15 am (fblackmo) employee was standing on the side of a steep bank cutting a tree. The ground gave away causing feet to slide. Employee caught his right leg on a rock causing the injury to his knee. Supervisor: p. J. Acuff *show all bi
## 2764 08/01/2002 10:48 am (fblackmo) employee was bending over rinsing out bucket when he felt pain in his back. Supervisor: chris rainey
## 2765 08/02/2000 08:45 am employee was placing pin in a chute of mulch blower preparing it for transport; when the chute broke off and hit him on top of his head. He has a 2 inch cut on head and soreness in his neck and shoulders. Supervisor: t. E. Simpso
## 2766 08/02/2000 08:50 am employee has carpal tunnel syndrome in right hand due to daily use of computer keyboard at work. Supervisor: lisa m. Privette
## 2767 08/02/2001 03:22 pm (fblackmo) employee was conducting a vehicle road test. When they entered the parking lot of the driver license office she observed a private vehicle backing out and informed the customer of it. The customer failed to stop and bo
## 2768 08/02/2001 03:41 pm (fblackmo) employee was between the girder on nc 65-62036 jobsite. He twisted around to nail some boards in place when he felt a pull in his lower back. Supervisor: r. E. Joyce
## 2769 08/02/2001 08:42 am (fblackmo) on 7/11/01, employee was performing subsurface investigation for proposed infiltration basins near wilmington. The next morning 7/12/01, he found a tick seized to his left hip which later became swollen and red. Superv
## 2770 08/02/2001 09:19 am (fblackmo) employee was working on highway right of way putting up signs. When he went to the back of the truck to pick up the sign he stepped on some loose rocks causing him to slide down and twist his left knee. Supervisor: leo
## 2771 08/02/2001 09:39 am (fblackmo) employee was driving dump truck west on tickle road. Reaching down to answer the radio he ran off the edge of the road and went into a ditch, turning roller over. The truck finally stopped and employee hit his leg on t
## 2772 08/02/2001 10:10 am (fblackmo) employee came in contact with poison ivy while surveying for property irons. Supervisor: iris mccombs
## 2773 08/02/2001 10:27 am (fblackmo) employee received scheduled hearing test and was subsequently refined to a hearing specialist for further evaluation. Supervisor: james h. Trogdon
## 2774 08/02/2001 11:27 am (fblackmo) employee had been driving dump truck daily for a period of over two weeks, he began to have pain and swelling in his left knee. Supervisor: d. M. Baynard
## 2775 08/02/2001 11:44 am (fblackmo) employee was getting out of truck, when she turned around to close the door she hit her left elbow on the door. Supervisor: p. J. Acuff
## 2776 08/03/1999 03:42 pm officer was making an arrest, when the subject resisted giving him scratches and cuts on both arms. Also the subjects blood got on officer. Supervisor: r. N. Mitchell.
## 2777 08/03/1999 03:53 pm employee was mowing the right of way when he came in contact poison ivy. Contact rash to arms and trunk. Supervisor: robert dale loflin
## 2778 08/03/1999 04:01 pm employee was stepping off back of truck when he lost his balance and sprain his right ankle. Supervisor: charles r. Sharp
## 2779 08/03/1999 04:10 pm employee was using the band saw to cut an oak board, when the blade grabbed the board slamming it down on his fingers. Lacerations to 3rd, 4th, and 5th fingers on his right hand. Also cracked bone of index finger, sutures required
## 2780 08/03/1999 09:22 am employee suffered hearing loss in both ears due to operating different types of equipment over the years. Supervisor: earl d. Bell.
## 2781 08/03/2000 03:25 pm employee was trying to release clogged dirt from tailgate of dump truck; when his left hand got caught in tailgate. Supervisor: w. H. Adkins
## 2782 08/03/2000 03:30 pm employee was attempting to close tailgate on dump truck; when he cut his right little finger on a metal spur. Supervisor: william edward mcclendon, jr
## 2783 08/03/2000 04:00 pm employee fell and twisted his left knee on pile of dirt and rocks on 7/10/00. Supervisor: g. W. Mcguire
## 2784 08/03/2000 04:11 pm employee was operating asphalt patching machine; when an insect stung him on his left forearm. Supervisor: h. L. Cox
## 2785 08/03/2000 04:55 pm employee was pre-lining turn lanes for an entrance into a new driveway on 7/17/00. The crew was moving a vehicle with braided nylon rope on a spool. The rope caught between the front tire of a parked dot vehicle and asphalt and wr
## 2786 08/03/2000 05:00 pm employee was putting down asphalt when she came in contact with poison ivy plants. She has contact rash over most of her body. Supervisor: r. D. Peeler
## 2787 08/03/2000 05:05 pm employee was cutting bushes around bridge; when he came in contact with poison ivy plants. He has contact rash on right arm, wrist, face and in his right eye. Supervisor: r. J. Terry
## 2788 08/04/1999 03:39 pm employee injured his left knee, when his left foot slipped off the bumper of truck. He was stepping out of the truck and fell out. Supervisor: bill moyers
## 2789 08/04/1999 03:44 pm employee was trying to get by another employee, when co-worker slid his chair back causing his left foot to hit chair. He tried to avert the collision and twisted his left knee in the process. His knee is swollen and painful. Sup
## 2790 08/04/1999 04:02 pm employee suffered scratches on head and right shoulder due to falling to the ground. He was attempting to lower tailgate when another worker knocked out the pins. Supervisor: c. N. Edwards, jr.
## 2791 08/04/1999 04:15 pm employee stepped out of truck onto a running board, when her left knee popped. Supervisor: archie francis smith
## 2792 08/04/1999 09:29 am employee bent down to pick up a shovel, when he raised up, his lower back popped. Supervisor: t. D. Clement
## 2793 08/04/1999 09:43 am employee was cutting asphalt with saw, when the machine jammed on him. He had to use excessive force to correct the problem causing him to bruise his ribs on the left side. Supervisor: j. S. Walker.
## 2794 08/04/1999 09:53 am employee was assisting paving crew shoveling asphalt, when he suffered from heat exhaustion. He was hot and briefly fainted, upon regaining consciousness he experienced numbness in both hands. Supervisor: robert junior ingram.
## 2795 08/04/1999 10:30 am employee was fitting a plate on dredge schweizer on the port side, when he was bitten by a spider on his left middle finger. Supervisor: david leon pruitt
## 2796 08/04/1999 10:38 am employee strained back, left shoulder and left wrist while switching chairs in office. She lifted the chairs one at a time over her head and other equipment in the office. In just a few minutes she started having pain. Superviso
## 2797 08/04/1999 10:43 am employee injured left index finger while closing door. Supervisor: tola m. Bailey
## 2798 08/04/1999 10:50 am employee suffered bee stings to right arm and left hand while working in the field. Supervisor: v. Marcus lowery
## 2799 08/04/2000 10:00 am employee was getting out of truck when he felt sharp pain in lower back. Supervisor: michael s. Venable
## 2800 08/04/2000 10:06 am employee was operating a dynamic cone penetrometer when his hand slipped off the weight. He smashed his right middle finger causing a partial amputation. Supervisor: l. T. Packer
## 2801 08/04/2000 10:34 am employee was retrieving a box of paper towels when he felt pain in his neck and down in his right arm and hand. Supervisor: charles r. Sharp
## 2802 08/05/2003 02:51 pm (fblackmo) employee was raking asphalt when, she became overheated. Heat exhaustion. Supervisor: p. J. Acuff
## 2803 08/05/2003 03:28 pm (fblackmo) employee was operating a backhoe when, he twisted his back because the seat would not move. Supervisor: leslie reynolds
## 2804 08/05/2003 03:46 pm (fblackmo) employee was removing a engine when, he cut his finger on his left hand. Supervisor: charles watkins 09/12/2003 12:12 pm (gwhite)
## 2805 08/05/2003 03:59 pm (fblackmo) employee states while lifting a four gallon bucket from the platform he, felt pain in his lower back. Supervisor: d. W. Rascoe
## 2806 08/05/2003 04:11 pm (fblackmo) employee states while inspecting the ed braswell utility worksite, foreign matter went into his right eye. Supervisor: anthony roper
## 2807 08/05/2003 04:22 pm (fblackmo) employee states while installing mowing deck on tractor he, lost his balance and hit his right side with the lift bar. Supervisor: richard f. Jernigan
## 2808 08/05/2003 12:33 pm (fblackmo) employee was taking fuel tank off dozer with hoist when, he felt pain in his groin area. Supervisor: j. C. Sloan
## 2809 08/06/1999 03:10 pm employee was changing a. C. Filter, when right foot slipped and he hit his hip on the right side. Supervisor: edision tripp.
## 2810 08/06/1999 03:23 pm employee suffered a contusion on his left foot while climbing down off vibratory roller. His foot slipped off the bottom step which had mud on it. Supervisor: c. E. Moore. 10/05/1999 10:59 am
## 2811 08/06/1999 03:35 pm employee bruised his left foot while unhooking a water pump trailer from dump truck. The tongue of trailer hit the frame of truck, which caused the tongue to fall and hit his foot. Supervisor: k. B. Whitmore.
## 2812 08/06/1999 03:46 pm employee was pulling himself up onto running board of truck to enter cab, when he injured his right little finger. He also has pain in his right wrist. Supervisor: j. K. Smith
## 2813 08/06/1999 04:35 pm employee was cleaning up on the dredge schweizer, when a spider bit him on his left hand palm. Supervisor: david leon pruitt.
## 2814 08/06/1999 04:44 pm employee was using a bar to change a tire, when he suddenly lost feeling in his left arm and hand. Supervisor: james e. Isaac.
## 2815 08/06/2001 03:15 pm (fblackmo) employee was working on state road 1789 with a grader. It had started to rain, therefore, employee stopped the grader to close the doors. The right door was unable to be closed from the ground because the handle was bro
## 2816 08/06/2001 03:38 pm (fblackmo) employee came into contact with poison ivy while cutting trees and chipping them on a state force construction program. Supervisor: w. H. Adkins
## 2817 08/06/2001 03:50 pm (fblackmo) employee stepped on fire ant hill. Employee has allergic reactions to wasp bites. Supervisor: jim cravens
## 2818 08/06/2001 04:04 pm (fblackmo) employee was trimming bushes on us 17 bypass right/way on thursday 7/26/2001. Employee found tick friday 7/27/2001. Tick had bitten employee on left leg behind his knee. Supervisor; d. L. Lane
## 2819 08/06/2001 04:19 pm (fblackmo) employee was stung by a wasp when he entered his vehicle. Supervisor: vermon smith
## 2820 08/06/2002 07:13 am (fblackmo) employee was cutting grass on state road 1556. Employee turned around to check the traffic when, he felt pain in his back. Supervisor: c. I. Lucas
## 2821 08/06/2002 07:30 am (fblackmo) employee was working on a paving repair operation on state road 1527 when, he found a tick on his arm. Supervisor: c. S. Johnson
## 2822 08/06/2002 08:16 am (fblackmo) employee states he was bitten by a tick while completing mussel surveys in chatham county. Supervisor: hal bain
## 2823 08/06/2002 08:28 am (fblackmo) employee states that while conducting a road test customer hit the gas to hard causing the car to jump a curb hitting a sign. Employees' seat belt lock up causing the injury to her shoulder. Supervisor: dwight godwin
## 2824 08/06/2002 08:51 am (fblackmo) employee states while pulling up weeds, came into contact with poison ivy. Supervisor: brian herron
## 2825 08/06/2002 09:23 am (fblackmo) employee was sharpening bush axe when. His hand slipped off of file causing a cut to his wrist. Supervisor: d. C. Kimes
## 2826 08/06/2003 07:56 am (fblackmo) employee was mowing on state road when, he found a tick on the middle of his back. Supervisor: anthony harris
## 2827 08/06/2003 09:22 am (fblackmo) employee was removing a pin from a trackhoe using a short steel rod as a punch; in process he struck his thumb with hammer. Supervisor: ernest simmons
## 2828 08/06/2003 09:37 am (fblackmo) employee was moving a tamp when, it road up on his foot causing a contusion and punctured his toenail. Supervisor; roy d. Pittman
## 2829 08/06/2003 10:56 am (fblackmo) employee was pulling a tree with a rope when, he felt pain in his left shoulder. Supervisor: r. E. Austin
## 2830 08/06/2003 11:07 am (fblackmo) employee was pulling asphalt when, his brakes locked up and sent the truck into a spin. The roller caused the truck to jack knife and employee to hit his head on the cab. Supervisor; h. D. Wiggins * let joyce see all
## 2831 08/06/2003 11:17 am (fblackmo) employee was picking up pieces of steel-belted radial tires from roadway when, a piece of steel went into his thumb. Supervisor: s. E. Propst
## 2832 08/06/2003 11:29 am (fblackmo) employee was getting out of excavator(drott) and slipped on steps due to mud causing him to slip and strain his left wrist and shoulder. Supervisor: wayne knight
## 2833 08/06/2003 11:52 am (fblackmo) employee states while bending to fill gallon of cleaning supplies she, felt pain in her back. Supervisor: ellen goodwin
## 2834 08/07/2000 04:13 pm employee was hitching neck back to lowboy supply line when it came out causing him to mash his right index finger. Supervisor: tommy kilpatrick
## 2835 08/07/2000 04:30 pm employee was pouring a 5 gallon can of part a resin into a 1 gallon can; when some of the material splashed into his left eye. Supervisor: larry d. Woodard
## 2836 08/07/2000 04:38 pm employee was getting out of pickup truck to assist a motorist; when the truck door closed catching his right thumb. Supervisor: timothy e. Simpson
## 2837 08/07/2000 04:45 pm employee was sealing roads in guilford county; when he came in contact with poison ivy. He has poison ivy contact rash on both arms and his neck. Supervisor: a. L. Smith
## 2838 08/07/2000 04:57 pm employee was pulling down a limb for supervisor to cut it with chainsaw; when the limb glazed him on his left forearm. Supervisor: v. Dean summers
## 2839 08/07/2001 02:27 pm (fblackmo) employee was standing in road on construction site waiting for excavator to be fueled 100' down road. Debris blew into eye. Supervisor: r. E. Brake
## 2840 08/07/2001 02:42 pm (fblackmo) employee was unclogging pressurized bead line. Hose slipped back in hand when clog came out causing air and beads to hit hand. Supervisor: dwayne a. Bauguess
## 2841 08/07/2001 02:55 pm (fblackmo) employee was picking up a dead beaver with his pitch fork when he felt a pain in his back. Supervisor: donald king
## 2842 08/07/2001 10:33 am (fblackmo) employee was inspecting the existing condition of soil at a cut section (8. 1943601) I-40. Employee became light headed and dizzy when climbing down from cut. Employee experienced nausea and his hands and feet felt numb
## 2843 08/07/2001 10:52 am (fblackmo) employee was cutting diaphragms out of bridge, when sparks fell on pants leg causing it to catch a fire. Employee ran off bridge and jumped in the water to put the fire out. Supervisor: horace s. Huff
## 2844 08/08/2000 02:19 pm employee shut tailgate with his right hand on top of truck and pinched/cut his right index finger. Supervisor: j. P. Ingram
## 2845 08/08/2000 02:45 pm employee was sharpening bush ax; when it started falling. He tried to grab the blade to catch it; when he cut his left thumb. Supervisor: k. E. Anderson
## 2846 08/08/2000 03:01 pm employee was clearing/grubbing slope with an excavator; when a foreign object blew into his left eye. Supervisor: t. B. Adams
## 2847 08/08/2000 03:15 pm employee went into pipe on sr 1104; when he was bitten by insects on both legs. Supervisor: r. E. Cox
## 2848 08/08/2000 03:20 pm employee slipped and fell off back of pickup truck while unloading plywood on 7/20/00. Mr. Knowles injured his lower back. Supervisor: r. E. Cox
## 2849 08/08/2000 03:35 pm employee was moving a wooden block from forklift. While putting block down, his right middle finger was caught under the block. Supervisor: charles f. Spencer
## 2850 08/08/2000 03:47 pm employee was replacing timber caps and I-beams on bridge #402 in chatham county. He was struck by post and has abrasions to his right leg and left shoulder. Supervisor: j. L. Cornell
## 2851 08/08/2000 03:55 pm employee was using a shovel to clear broken pavement from edges of stump hole; when he felt pain in his left hip causing his knees to buckle. Supervisor: arthur glenn short
## 2852 08/08/2000 04:05 pm employee was cutting bolts out of an old backhoe blade; when a portion of the blade fell and cut his left foot. Supervisor: f. M. Bush
## 2853 08/08/2000 04:15 pm employee was loading oxygen tanks on side of truck; when the tank slipped and fell on his left foot. Supervisor: a. E. Moore
## 2854 08/08/2000 12:15 pm employee was in bucket of truck working on signal heads; when the bucket was struck by a log truck. This caused the bucket to turnover and employee fell to the ground. He fractured his right hip, ribs, collapsed right lung, cervica
## 2855 08/08/2002 02:13 pm (fblackmo) employee was cleaning tar kettle with big orange, a liquid used for cleaning. The liquid splashed into employee eyes. Supervisor: doug mcneal
## 2856 08/08/2002 02:22 pm (fblackmo) employee was clearing vegetation away from road signs when, he was stung on his left hand finger. Supervisor: n. C. Mckinney
## 2857 08/08/2002 02:32 pm (fblackmo) employee was loading limbs on truck, limbs scraped and bruised his left hand. Supervisor: r. L. Faulkner
## 2858 08/08/2002 02:44 pm (fblackmo) employee was using a weed eater on us 401 when, he came into contact with poison ivy. Supervisor: william t. Lowery jr
## 2859 08/08/2002 09:27 am (fblackmo) employee was bitten by a tick on July 17, 2002 while standing on shoulder of the road flagging traffic. Supervisor: l. C. Mckeel
## 2860 08/08/2002 09:57 am (fblackmo) employee states he has experienced loss of hearing in both ears caused by prolonged noise. Supervisor: d. E. Williams
## 2861 08/08/2002 10:09 am (fblackmo) employee states, he experienced hearing loss in both ears caused by prolonged noise. Supervisor: s. L. Emory
## 2862 08/08/2002 10:22 am (fblackmo) employee was operating a weed eater when, he stepped into a hole causing the injury to his left knee. Supervisor: c. E. Watson/b. D. Burton
## 2863 08/08/2002 10:35 am (fblackmo) employee states that while cleaning a pipe on state road 1135 was stung by a insect on his back. Supervisor: l. C. Bass
## 2864 08/08/2002 10:46 am (fblackmo) employee states while pulling on a box to move it out of the way to reach another box that contained the drivers license handbooks, she felt pain in her shoulder. Supervisor: pat glenn
## 2865 08/08/2002 11:00 am (fblackmo) employee was standing in the hall near the supply room at the buncombe maintenance office building. Another employee (Mr. Buckner) came up behind employee picked him up, and squeezed him causing pain in his chest area.
## 2866 08/08/2002 11:13 am (fblackmo) employee states he came into contact with poison ivy while conducting surveys in a wooded work site. Supervisor: jeff allen
## 2867 08/08/2002 11:29 am (fblackmo) employee states she was bitten by a tick on her left side. Supervisor: brice ellis
## 2868 08/08/2003 08:25 am (fblackmo) employee was in a motor vehicle accident with another vehicle when, the injury occurred to multiple body parts. Supervisor: matthew oliverson 08/28/2003 03:32 pm (gwhite) 09/05/2003 02:28 pm (gwhite)
## 2869 08/08/2003 08:40 am (fblackmo) employee was repairing road signs with a post driver sledge hammer when, he felt pain in his lower back area. Supervisor: roger faulkner
## 2870 08/08/2003 08:53 am (fblackmo) employee was clearing survey line when, he was stung between the eyes. Supervisor: t. K. Wheeler
## 2871 08/08/2003 09:04 am (fblackmo) employee was struck by the door on his truck while retrieving tools. Supervisor: danny king
## 2872 08/08/2003 09:15 am (fblackmo) employee was working on the lcu when, something flew into his left eye. Supervisor: kevin lamar cooke
## 2873 08/08/2003 09:39 am (fblackmo) employee was working under bridge lifting a joist overhead when, he felt pain in his abdomen area. Supervisor: kevin d. Smith
## 2874 08/08/2003 09:50 am (fblackmo) employee was a passenger of vehicle that ran off road and coming to rest on passenger side, causing the injury to his back. Supervisor: iris h. Mccombs
## 2875 08/08/2003 10:03 am (fblackmo) employee was picking up a piece of plywood when, he felt pain in his left shoulder. Supervisor: dennis baker
## 2876 08/08/2003 10:10 am (fblackmo) employee was surveying on new construction project when, he was bitten by ticks. Supervisor: marvin wayne currie
## 2877 08/08/2003 10:37 am (fblackmo) employee was clearing survey line when, he came into contact with poison ivy. Supervisor: t. K. Wheeler
## 2878 08/08/2003 11:37 am (fblackmo) employee was walking down slope when, he slipped and fell causing the injury to his back. Supervisor: j. Ahimark
## 2879 08/09/1999 09:35 am employee slipped on oily deck while cleaning bilges on ferry vessel in hyde county. He has bruises and a cut to right leg. Supervisor: cliff swindell.
## 2880 08/09/1999 09:42 am employee slipped and fell going down a creek bank at bridge site in wayne county. Mr. Fuquay injured his left knee. Supervisor: r. L. Bowers 02/01/2000 01:19 pm
## 2881 08/09/1999 09:50 am employee was operating a chain saw removing debris from us 421, when he felt pain in lower back and his left hip. Supervisor: j. N. Mixon
## 2882 08/09/1999 10:09 am employee was securing backhoe to trailer with chain and binder, when chain slipped causing employee to hit his right wrist on trailer. Supervisor: d. M. Pressley.
## 2883 08/09/1999 10:19 am employee was working next to asphalt paver, when he got nauseated, lost his balance, and stepped back. Mr. Armstrong suffered from heat exhaustion and he drove himself to the doctor. Supervisor: o. T. Anderson.
## 2884 08/09/1999 10:27 am employee strained lower back while assisting another employee into their diving equipment. Supervisor: glenn williams
## 2885 08/09/2001 02:51 pm (fblackmo) employee was assisting in installing an oil pan on generator tightening bolts. Employee was laying on side turning and twisting bolts. Was put on light duty on May 15, 2001 not to lift over 10lbs. Supervisor: don ferg
## 2886 08/09/2001 03:13 pm (fblackmo) employee found a tick bite under his right arm. Supervisor: c. C. Coggins
## 2887 08/09/2001 03:27 pm (fblackmo) employee was assisting his supervisor and an inmate in cutting a dead tree on road way. The tree fell opposite of intended fall. The limbs struck the employee in the back knocking him into the road. Supervisor: a. T. Ca
## 2888 08/09/2001 03:40 pm (fblackmo) employee pulled up to gas pumps, when she opened the door she fell landing on her knee. Employee was having trouble adjusting to her new bifocals. Supervisor: larry sehorn
## 2889 08/09/2001 03:56 pm (fblackmo) employee is slowly losing his hearing while working with equipment. Test results from last test enclosed. Supervisor: terry j. Davis
## 2890 08/09/2001 07:59 am (slee) vehicle #1 was stopped at the end of the ramp waiting for traffic to clear. Vehicle #2 rear ended vehicle #1.
## 2891 08/09/2001 09:22 am (fblackmo) employee was test driving truck, had windows down. The dirt from the floor board of the vehicle blew into employees eyes. Supervisor: h. D. Buchanan
## 2892 08/09/2001 09:42 am (fblackmo) employee was conducting a state road test. The employee instructed the driver to make preparations for a left turn. Employee informed the driver to slow down, driver continued at normal speed. The vehicle struck a tre
## 2893 08/09/2001 10:25 am (fblackmo) employee was cutting a piece of cloth and the blade slipped, causing a cut on his right middle finger. Supervisor: gary morris
## 2894 08/09/2001 10:35 am (fblackmo) employee was clearing work area from debris, stepped on a nail protruding from a piece of plywood. Supervisor: t. P. Moorefield
## 2895 08/09/2001 11:10 am (fblackmo) employee was working with patch crew, went to pick up road sign and passed out. Employee was admitted to hospital and stayed in until 6/17/01. Supervisor: as bailey
## 2896 08/09/2002 12:53 pm (fblackmo) employee states while lifting boxes, felt pain in his back. Supervisor: dennis baker
## 2897 08/11/1999 08:36 am employee was traveling east on market street when he was hit by another person driving north on elm street. The light was red when the person at fault hit Mr. Mcadams. He has a bruised upper left arm, and pain in left side of neck
## 2898 08/11/1999 08:54 am employee was doing a road test with a customer, when the vehicle left the road and hit curb and a bush. The vehicle came to a sudden stop, making her entire body sore and stiff. Examiner morton was seated in the front seat durin
## 2899 08/11/1999 09:27 am employee was putting up mail boxes and became too hot. Mr. Oxendine suffered from heat exhaustion. Supervisor: j. E. Spivey.
## 2900 08/11/1999 09:34 am employee sprained his left ankle when he stepped off a trailer. The trailer was 3 feet above the ground, when his ankle went out. Later he experienced pain and swelling. Supervisor: k. R. Davis.
## 2901 08/11/1999 09:45 am employee had given a cdl road test when she jumped out of large vehicle injuring her right ankle. Supervisor: sheila b. Mcadams
## 2902 08/11/1999 11:43 am employee was underneath truck unhooking tar kettle. Employee reached to pull himself out from under the truck, he hit his mouth on back of truck chipping his tooth. Supervisor: j. D. Hensley.
## 2903 08/12/1999 08:36 am employee was bitten on the back of his left knee by an insect causing redness and swelling. Supervisor: hugh s. Matthews.
## 2904 08/12/1999 08:46 am employee was outside painting, when he found ticks crawling all over his body. He found at least four ticks that had already stuck to his skin. Supervisor: charlie e. Watson jr.
## 2905 08/12/1999 08:57 am employee was putting a plow bolt on plow point with an air wrench, when the bolt turned and cut his left middle finger. Supervisor: k. R. Burrell
## 2906 08/12/1999 09:00 am employee was standing in doorway, as he turned, his left middle finger got caught in the door. He has contusions on left hand and fingers became swollen. Supervisor: h. C. Barton
## 2907 08/12/1999 09:39 am employee was lifting a tire into bin location, when he strained his mid back area. Supervisor: william t. Stone
## 2908 08/12/1999 09:52 am employee was driving back to the office, when a black hornet stung his left hand between thumb and index finger. Supervisor: david b. Black
## 2909 08/12/2003 04:42 pm (fblackmo) employee stepped into a hole while walking on shoulder of highway, causing the injury to his right knee. Supervisor: mark turlington
## 2910 08/12/2003 04:55 pm (fblackmo) employee was rear ended by a private vehicle, causing the injury to her neck and back. Supervisor: eric boyette
## 2911 08/12/2003 05:10 pm (fblackmo) employee was tightening chain crank and while lifting he felt pain in his lower back. Supervisor: neil roberson
## 2912 08/13/1999 02:08 pm employee injured his back while drilling holes in passenger lounges inside of m/v hunt for rivets. He felt back fatigue and aching. Supervisor: richard dewhurst
## 2913 08/13/1999 02:23 pm employee was struck in the head by a backhoe. The employee jumped across a hole that was being dug to unhook lumber from the boom of truck. Supervisor: eric allen schenz 02/04/2000 03:07 pm
## 2914 08/13/1999 03:05 pm employee experienced back pain after lifting tailgate on dump truck. He also was shoveling and raking asphalt that day. Supervisor: e. W. Spivey
## 2915 08/13/1999 03:17 pm employee stepped on a piece of insulation board that had a nail in it, which penetrated through his left foot. Supervisor: b. L. Myers.
## 2916 08/13/2001 02:17 pm (fblackmo) employee stated, that he was getting out of his truck and his hand slipped off the handrail. Employee fell on his right elbow and hip. Supervisor: robert w. Ipock
## 2917 08/13/2001 03:23 pm (fblackmo) employee was drilling holes for diaphragm bolts when plywood liner flew up and hit him in mouth, chipping tooth. Supervisor: larry d. Woodard
## 2918 08/13/2001 03:50 pm (fblackmo) employee was lifting dynamite out of truck bed when he felt a pull in his back. Supervisor: r. E. Austin
## 2919 08/13/2001 04:06 pm (fblackmo) employee was stung by a wasp on his left thumb while, he was clearing right-of-way bruch with bush axe. Employee became concerned when the area continued to swell with increased pain the next day. Supervisor: k. R. Davis
## 2920 08/13/2001 04:21 pm (fblackmo) employee was traveling back to maintenance facility when a private car ran a stop sign. Employee tried to avoid the accident and edged to the shoulder of the road but, the car kept coming toward him. Employee crossed t
## 2921 08/13/2001 04:59 pm (fblackmo) employee was climbing into the back of truck, when he was pulling himself up he felt a pop in his lower back. Supervisor: todd whitaker
## 2922 08/13/2001 05:13 pm (fblackmo) employee was helping replace bridge floor. Employee picked up 4'x8'x20' timber when, he twisted to the side he injured his back. Supervisor: h. L. Silverthorne
## 2923 08/13/2001 11:25 am (fblackmo) employee was working on state road 1127 ( massey road) with grade crew. Employees supervisor instructed employee to get the crane (boom) truck to put some fence post back in the ground. While employee was walking back
## 2924 08/13/2001 12:04 pm (fblackmo) employee was welding on an exhaust pipe on the rv long bay, as he finished welding, he began to chip with his hammer and a piece of hot slag got into his eye. Supervisor: kevin lamar cooke
## 2925 08/13/2001 12:26 pm (fblackmo) employee was cracking jack on 10 ton trailer when she felt a pull in her lower right back area. Employee was adjusting height of trailer in order to attach to flatbed. A tractor 0301 was on the trailer at the time she
## 2926 08/13/2001 12:42 pm (fblackmo) employee was putting roll out matting in a ditch line and stepped on a rock causing him to twist his foot. Supervisor: sam wilson
## 2927 08/13/2002 02:58 pm (fblackmo) employee states, while exiting toll booth at the southport operation, ran into the yellow caution pole. Employee experience pain in her back from the fall. Supervisor: k. J. Morris
## 2928 08/13/2002 03:36 pm (fblackmo) employee was leaving work for the day when, she stepped in a hole, causing the injury to her right ankle. Supervisor: peggy barnhill
## 2929 08/13/2002 03:52 pm (fblackmo) employee was cutting vegetation from around bridge when, he came into contact with poison ivy. Supervisor: j. Ronald lee
## 2930 08/14/2000 04:55 pm employee was checking and reinforcing steel; when he struck his right foot while stepping over concrete formwork. Supervisor: b. R. Trivette, jr
## 2931 08/14/2000 05:00 pm employee was climbing off rock spreader; when he missed the bottom step and fell to the ground. He injured his left elbow due to the fall on 7/24/00. Supervisor: s. R. White
## 2932 08/14/2000 05:06 pm employee was trimming under brush while walking on rip rap; when he stepped/lost his balance/ and fell bruising and twisting his left knee. Supervisor: e. W. Huffman
## 2933 08/14/2000 05:11 pm employee was working with crew cutting back trees from right of way; when he came in contact with poison ivy. He has contact rash on both arms. Supervisor: marc p. Morgan
## 2934 08/14/2000 05:18 pm examiner drake was conducting a road test; when the customer slammed on brakes while backing. Employees head jerked back and forward, causing him to experience pain in his neck. Supervisor: k. C. Mayo
## 2935 08/14/2001 08:42 am (fblackmo) employee mashed thumb while loading concrete median on tractor and trailer. Supervisor: r. E. Austin
## 2936 08/14/2002 01:59 pm (fblackmo) employee lost control of vehicle wheel trying to avoid an accident. Employees vehicle overturned causing, laceration on left arm. Supervisor: m. S. Venable
## 2937 08/14/2002 02:11 pm (fblackmo) employee came into contact with poison ivy while, conducting highway survey in macon county. Supervisor: t. B. Adams
## 2938 08/14/2002 02:30 pm (fblackmo) employee states while cutting brushes with axe he came into contact with poison ivy/oak. Supervisor: m. E. Plummer
## 2939 08/14/2002 07:19 am (fblackmo) employee was lifting straw when, he felt a sharp pain in his left shoulder area. Supervisor: w. D. Silver
## 2940 08/14/2002 07:38 am (fblackmo) employee struck her right elbow while unhooking air lines from truck. Supervisor: w. L. Thompson
## 2941 08/14/2002 08:08 am (fblackmo) employee was walking to put up lane closing sign when, he stepped in a hole. Employee states, has pain in his neck and shoulder area. Supervisor: ray warlick
## 2942 08/14/2003 02:33 pm (fblackmo) employee slipped on grass from pulling brushes. Supervisor: a. O. Eply
## 2943 08/14/2003 02:44 pm (fblackmo) employee states while weed-eating he was stung by a bees on his lip, hand, leg, and back. Supervisor: b. G. Herron
## 2944 08/14/2003 02:58 pm (fblackmo) employee states, while holding a cable that was being cut with a torch, the cable coiled wand struck his forearm. Employee received 2nd degree bruns and laceration. Supervisor: gerald messer
## 2945 08/14/2003 08:16 am (fblackmo) employee was stepping up into truck when, he felt pain in his left knee. Supervisor: jack rollins
## 2946 08/14/2003 08:28 am (fblackmo) employee was using a screw driver to support an engine while removing bolts. The screw driver slipped and caught his finger between the engine and support. Supervisor: leroy farrish
## 2947 08/14/2003 08:46 am (fblackmo) employee was stepping up to a higher elevation on embankment when, his foot slipped causing the injury to his right knee. Supervisor: tim k. Southard 12/01/2009 04:29 pm (slee)
## 2948 08/14/2003 09:10 am (fblackmo) employee was exiting vehicle when, she twisted her left knee. Supervisor: lydia kimbrough 6/23/2004 10:26 am (sshort)
## 2949 08/14/2003 10:31 am (fblackmo) employee was stepping off embankment at pipe installation location when, he felt pain in his right knee. Supervisor; j. Ronald lee
## 2950 08/14/2003 10:49 am (fblackmo) employee states when he sat down he, felt pain in his lower back area. Supervisor: larry young
## 2951 08/14/2003 11:06 am (fblackmo) employee states, the pain in his left wrist occurred while performing inspection duties. Supervisor: stephen c. Walton
## 2952 08/14/2003 11:19 am (fblackmo) employee states he went to lunch from doing field inspection and felt pain in his left knee area. Supervisor: clark morrison
## 2953 08/14/2003 11:34 am (fblackmo) employee was driving a stop sign post into the ground when, the bolts in the post broke causing the injury to his left hand. Supervisor: r. L. Johnson
## 2954 08/15/2000 04:00 pm employee was cutting limbs hanging over road and blocking view of stop light. Employee picked up a piece of limb and threw it into back of truck. He then felt pain in his lower back. Supervisor: anthony e. Edwards
## 2955 08/15/2000 04:11 pm employee injured his neck while scrubbing deck plates in engine room on 7/24/00. His head struck a vent duck causing the injury. Supervisor: e. M. Farrow
## 2956 08/15/2000 04:25 pm employee has multiple chest contusions; when ferry vessel shifted catching her between ramp and the ferry vessel. Supervisor: donald f. Meekins
## 2957 08/15/2000 04:37 pm employee was removing deck hatch for access to the steering compartment; when he injured his right shoulder. Supervisor: b. R. Moore
## 2958 08/15/2001 01:57 pm (fblackmo) employee was lifting hollow augers for subsurface investigation and hurt left shoulder. Supervisor: t. P. Shelton
## 2959 08/15/2001 02:42 pm (fblackmo) employee state that while, lowering life boat during a uscg drill the brake failed to hold life boat and winch handle came around and hit him on his right wrist. After they winced the boat back up, the brake started wor
## 2960 08/15/2001 03:00 pm (fblackmo) employee felt pain after shoveling, sweeping and bending placing cones on interstate assisting bridge department in traffic control on August 1, 2001. Supervisor: k. R. Davis
## 2961 08/15/2001 03:18 pm (fblackmo) employee was mowing around bridge when, his foot got tangled in the vines causing him to fall. Supervisor: t. J. Davis
## 2962 08/15/2001 03:51 pm (fblackmo) employee was removing wailers from form, and the top wailer on the front wall broke while removing rolled out of other employees hands and fell on the back of left knee. Supervisor: james calvin bostic
## 2963 08/15/2001 04:09 pm (fblackmo) employee was opening gate to enter cdl test rile and the gate jammed causing employee to twist back. Employee had immediate pain and burning in lower back. Supervisor: g. L. Stout
## 2964 08/15/2001 04:23 pm (fblackmo) employee stepped on a rusty nail while trying to read heating tar gauge. Supervisor: j. D. Tucker
## 2965 08/15/2001 04:48 pm (fblackmo) employee was walking in a wooded area, tripped and fell. His hand slid down a wooden stake he was carrying and a piece of wood stuck in his hand. Supervisor: a. C. Cochran
## 2966 08/15/2001 05:02 pm (fblackmo) employee was putting a radiator on a grader, stepped off to get a wrench and slid when feet touched the ground he twisted his right knee. Supervisor: rufus c. White
## 2967 08/15/2001 05:15 pm (fblackmo) employee came back into office at end of working day feeling dizzy, headache, and flushed. Employee was also weak in both legs. Employee had operated dump truck all day. Supervisor: s. G. Dillion
## 2968 08/15/2001 12:39 pm (fblackmo) employee states, muscles in neck and shoulder area were strained while moving a small table from room 107 down the hall to room 334. Supervisor: brenda freeman
## 2969 08/15/2002 02:15 pm (fblackmo) employee noticed on June 05, 2002 that his hands were ache and numb feeling at the end of the day. Employee went to doctor on July 30, 2002 and was told that he has carpal tunnel syndrome. In 1993 employee was original
## 2970 08/15/2002 02:38 pm (fblackmo) employee states while walking down embankment, misjudged the distance causing, pain to his neck and back. Supervisor: d. L. Cr0tts
## 2971 08/15/2002 02:53 pm (fblackmo) employee was driving a dump truck (0205) that was towing a patch roller, employee was stopped on nc 8 (winston road) due to traffic waiting for signal to change. The driver of a private vehicle failed to reduce speed an
## 2972 08/15/2002 03:28 pm (fblackmo) employee was using a rake to pull and level materials on the shoulder of road. Supervisor: r. E. Langley 08/27/2002 04:05 pm (sshort)
## 2973 08/16/1999 09:42 am employee came in contact with poison ivy in the woods while clearing area for survey. Contact rash on forearms, legs, stomach, and hands. Supervisor: d. W. Jernigan
## 2974 08/16/1999 09:52 am employee sprain/strained his right hand and thumb, while cutting cement with a hammer drill. The bit in the drill got caught between the cement and steel bar. The drill locked and twisted the employees hand. Supervisor: willia
## 2975 08/16/1999 10:02 am employee was replacing a hose, when the hose slipped causing the employee to hit his left elbow. Supervisor: michael rhodes.
## 2976 08/16/2000 09:30 am employee was changing and replacing blades when he cut his right middle finger. Supervisor: j. E. Walters
## 2977 08/16/2000 09:38 am employee was pulling a log from truck tailgate when he strained his lower back and left leg. Supervisor: e. W. Spivey
## 2978 08/16/2000 09:43 am employee was evaluating ways to clear under brush from an equipment path to gain access for drilling. As he turned to walk out, a pine branch caught him in his left eye. Supervisor: neil t. Roberson
## 2979 08/16/2000 09:50 am employee was in the process of pulling a sign post; when the hydraulic line on the puller ruptured and lacerated his right hand. Supervisor: c. R. Woody
## 2980 08/16/2001 03:37 pm (sshort) employee was rear-ended while driving state vehicle on 8/8/01. Mr. Conner has pain/strain to his mid back area. The accident happened at the intersection of us 117 and nc 53 in pender county. Supervisor: k. T. Cross
## 2981 08/16/2001 03:46 pm (sshort) employee was cutting limbs on sr 1142; when he was stung by bees on the left side of his neck. Supervisor: r. E. Langley
## 2982 08/16/2001 03:52 pm (sshort) employee was flagging traffic on hart road; when he passed out (fainted) from heat exhaustion. Mr. Shelton sprain/strained his right hand when he fell to the ground. Supervisor: j. D. Shelton
## 2983 08/16/2001 03:58 pm (sshort) employee was spraying herbicides around sign posts on primary roads; when he felt pain in his right eye. Supervisor: a. L. Lassiter
## 2984 08/17/2001 04:42 pm (fblackmo) employee was surveying near us 70. Found tick in left ear. Supervisor: d. C. Bodenhamer
## 2985 08/18/1999 02:04 pm Mr. Leonard punctured his right hand palm while collecting water drippings from the ac unit into cab of athey loader. A piece of wire punctured his palm. Supervisor: s. G. Dillon.
## 2986 08/18/1999 02:21 pm employee twisted his right ankle, when he stumbled as he walked in the parking lot of restaurant during his lunch area. Supervisor: a. L. Smith
## 2987 08/18/1999 02:35 pm employee was bitten by a copperhead snake, while waiting on job site for the next asphalt truck. Mr. Rogers put his hand on rock while sitting in the shade with contractor. Supervisor: nathan k. Turner/w. K. Brazell.
## 2988 08/18/1999 04:22 pm employee was climbing upon trailer/tractor to pull harrow further up on disc, when he lost his balance. He put his hand down to catch himself bending his left thumb. Supervisor: j. D. Tucker
## 2989 08/18/1999 04:44 pm employee came in contact with poison ivy while cutting bushes around bridges. Contact rash various parts of the body. Supervisor: lemuel e. Cotton. 02/04/2000 11:01 am
## 2990 08/18/1999 04:51 pm employee injured his right shoulder rotator cuff, when he slipped of step of mower tractor. Supervisor: c. N. Edwards, jr.
## 2991 08/18/1999 04:56 pm employee injured right index finger while closing lid to box on a truck. The chains broke causing the lid to drop. The lid latch was hard to close, so employee had to slam the lid down, catching his finger in the process. Supervi
## 2992 08/18/1999 05:13 pm Mr. Cantrell was bushing under brush, when he slipped and fell into a bunch of blackberry briars. The briars stuck in his left eye lid, scratching his eye. Supervisor: j. C. Gunter.
## 2993 08/18/1999 05:18 pm employee punctured left foot while walking on bank below a bridge. There was a board hidden in the grass that had a nail in it penetrating through his shoe to his foot. Supervisor: wayne l. Miller.
## 2994 08/18/1999 05:26 pm employee suffered second degree burns to left forearm. Mr Brantley tripped and fell into hot asphalt burning his arm. Supervisor: a. L. Smith.
## 2995 08/18/1999 10:27 am employee hit his head and re-injured his right knee when he tripped on loose rug used to cover electrical outlet and fell. Supervisor: c. E. Lassiter, jr. 10/05/1999 11:29 am
## 2996 08/18/1999 10:52 am employee bruised left rib cage while exiting a truck from the passengers side. He slipped on the running board, hitting his ribs. Supervisor: b. D. Underwood.
## 2997 08/18/1999 11:05 am employee injured his back while cutting trees off right of way. The saw was caught in the tree, when Mr. Rowland tried to remove the saw he felt his back catch (pain). Supervisor: tommy kilpatrick.
## 2998 08/18/1999 11:18 am employee was flagging traffic in work zone, when he became nauseous and fatigued. He was treated for heat exhaustion on 7/23/99 and diagnosed with kidney stones on 7/24/99. Supervisor: f. L. Wiggins. 02/04/2000 10:05 am
## 2999 08/18/2000 01:33 pm employee was walking out the door; when he slipped and fell on rainy wet steps injuring his left knee. Supervisor: mehdi haeri
## 3000 08/18/2000 10:50 am employee was laying on bridge deck with his left leg over the edge of form spreading concrete. When he stood up his left leg was numb on inside of thigh to below the knee. Supervisor: emmitt bullman
## 3001 08/18/2000 10:56 am employee was spraying herbicide when he developed an allergic reaction over his body and face. He has watery eyes and itching. Supervisor: steven p. Adams
## 3002 08/19/2003 02:19 pm (fblackmo) employee states while keying on a daily basis she experienced pain in both hands. Carpal tunnel syndrome. Supervisor: scott matthews
## 3003 08/19/2003 02:38 pm (fblackmo) employee was operating a long arm mower when, he came into contact with poison oak. Supervisor: leslie reynolds
## 3004 08/19/2003 03:54 pm (fblackmo) employee was dis-mounting from front end loader when, he felt pain in his right ankle. Supervisor: paul. R. Draughn
## 3005 08/19/2003 12:10 pm (fblackmo) employee states while stepping out of vehicle he, felt pain in his left knee. Supervisor; brandon w. Whitaker
## 3006 08/19/2003 12:41 pm (fblackmo) employee states, he was thrown from a tractor that was hit by a motor vehicle. Supervisor: g. M. Taylor
## 3007 08/19/2010 09:13 am (slee) pov rear-ended sov while traveling at a slow speed. 08/19/2010 09:35 am (slee) other person: james tuttle, 3442 nc hwy. 135, stoneville, 27048.
## 3008 08/20/1999 08:48 am employee was working near the intersection of overby & sizemore road on 8/2/99, when the wind blew a piece of trash in his right eye. Supervisor: d. E. Taylor/k. D. Boyer.
## 3009 08/20/1999 09:20 am employee was getting out of grader, when he experienced a sharp pain. This pain caused the employee to fall and sprain left ankle. Mr. Thomas had surgery on January 28, 1999 on his right knee. Supervisor: d. A. Hensley.
## 3010 08/20/1999 09:47 am Mr. Corn was waiting to turn at a stop light in patrol car, when he was struck from behind by a one ton truck. He suffered pain in his neck, back, and upper shoulders. Supervisor: lt. D. L. Austin.
## 3011 08/20/2001 10:09 am (fblackmo) employee took the customer on a road test, customer attempted to make a 3 point turn. At the time of the turn the customer pushed the gas pedal instead of the brake pedal and drove over two hedge bushes and hit a tree.
## 3012 08/20/2002 03:12 pm (fblackmo) employee was lifting a sign when, he felt pain in his chest. Supervisor: a. L. Smith
## 3013 08/20/2002 03:25 pm (fblackmo) employee was operating metal hook-up on the back of athey loader on the morning of 08/12/2002 when, he complained of pain in his lower right arm. Supervisor: j. D. Wilson
## 3014 08/20/2002 03:36 pm (fblackmo) employee was walking down in a ditch, stepped on a pile of dirt twisting is right foot. Supervisor: j. E. Spivey
## 3015 08/20/2002 03:48 pm (fblackmo) employee started to sit in a seat by the side of state road 1448 when, the seat broke. Supervisor: w. D. Silver
## 3016 08/20/2002 07:14 am (fblackmo) employee was driving spikes and wooden stakes into ground. Employee attempted to stand up when, he felt a pain in his lower back. Supervisor: doug kimes
## 3017 08/20/2002 07:39 am (fblackmo) employee states she is experiencing carpal tunnel syndrome in her left hand. Supervisor: mike salisbury
## 3018 08/20/2002 08:14 am (fblackmo) employee was checking construction site at turtle creek sub-division on old salisbury road. Employee was walking beside construction work when, his right leg fell in utility hole. Supervisor: robert mcmath
## 3019 08/20/2002 08:29 am (fblackmo) employee was unloading mud off the back of his pick up truck when, he felt pain in his left eye. Supervisor: clinton b. Little
## 3020 08/20/2002 08:55 am (fblackmo) employee was moving 55 gallon drum of alcohol when, he felt pain in his side. Supervisor: francis n. Champion
## 3021 08/20/2002 09:17 am (fblackmo) employee was cutting right of way on state road 1433 in alleghany county when, he came into contact with poison ivy. Supervisor: roger todd
## 3022 08/20/2002 09:30 am (fblackmo) employee was helping unload fuel drop into tanks when, his hand slipped off the handle causing pain in his right hand. Supervisor: sanford barton
## 3023 08/20/2002 10:20 am (fblackmo) employee was dismounting wooden fence when, he stepped on a board that had a nail in it. The nail penetrated through his boots and into his left foot. Supervisor: william edward mcclendon jr
## 3024 08/20/2003 02:59 pm (fblackmo) employee was exiting vehicle when, he stepped on uneven ground causing the injury to his right ankle. Supervisor: ron bennett
## 3025 08/20/2003 03:18 pm (fblackmo) employee ran off the road due to heavy rain which, caused the injury to his back. Supervisor: j. A. Medford
## 3026 08/20/2003 03:34 pm (fblackmo) employee states she mashed her finger when, the air cylinder did not open. Supervisor: j. F. Bishop
## 3027 08/20/2003 03:44 pm (fblackmo) employee was flagging on a leeboy paving operation when, the hot asphalt caused employees feet to blister. Supervisor: t. F. Rhodes
## 3028 08/20/2003 03:55 pm (fblackmo) employee went into the woods when, he was bitten by a bug or spider on his right lower leg. Supervisor: evarick thomas
## 3029 08/20/2003 07:24 am (fblackmo) employee states, that a chip spreader ran into the back of his truck causing the injury to his neck. Supervisor: w. T. Garrett
## 3030 08/20/2003 08:43 am (fblackmo) employee was bitten by a tick on his left leg while weed eating and cutting grass. Supervisor: h. D. Wiggins
## 3031 08/20/2003 09:00 am (fblackmo) employee was clearing brush along right of way when, he came into contact with poison ivy. Supervisor: c. E. Moore 10/27/2003 08:27 am (kbarefoo)
## 3032 08/20/2003 09:10 am (fblackmo) employee was mowing right of way when, he stung by a bee above his left eye. Supervisor; s. G. Dillon
## 3033 08/20/2003 09:37 am (fblackmo) employee was stepping out motor grader when, he slipped causing pain in his back and neck. Supervisor: m. B. Smith
## 3034 08/20/2003 10:12 am (fblackmo) employee states he fell on left knee at the loading dock. Supervisor; donna beasley
## 3035 08/20/2003 10:52 am (fblackmo) employee was driving the tandem dump truck when, he felt pain in his knee while pushing in clutch. Supervisor: k. L. Anderson
## 3036 08/21/2000 02:52 pm employee stated while he was cutting bolt from caps he was laying face down on the bridge deck. He felt something snap in his right rib while reaching under bridge with the torch. Supervisor: eric allen schenz
## 3037 08/21/2000 03:00 pm employee was driving down chub lake road when he felt something bite him on center of his back. Supervisor: j. W. Oliver, jr
## 3038 08/21/2000 03:11 pm employee suffered heat exhaustion while cleaning weeds on I-95 on 8/1/00. Supervisor: j. E. Walters
## 3039 08/21/2000 03:30 pm employee jumped off of truck to keep from falling off. As he jumped he hit his arm and knee on the truck. He landed hard on his feet hurting his back as well. Supervisor: roger d. Peeler
## 3040 08/21/2000 04:00 pm employee was carrying supplies into work area; when he slipped and fell on a slick tree limb injuring his right knee. Supervisor: ricky a. Tipton
## 3041 08/21/2000 04:35 pm employee was driving a truck when he felt a sting on his upper back. He also felt pain in his chest/shoulder area. Supervisor: charles f. Vick
## 3042 08/21/2000 04:40 pm employee was working at a worksite in randolph county on 8/4/00; when he found a tick on groin area. Mr. Epps has aches, pains, and fever due to the tick bite. Supervisor: a. L. Clark
## 3043 08/21/2001 03:40 pm (fblackmo) employee was weeding plants by hand when, bees flew on his arms and head. 08/27/2001 02:54 pm (twerner)
## 3044 08/21/2001 03:54 pm (fblackmo) employee was walking over to file cabinet to set down a small piece of wood, as he twisted he felt a catch in his lower back. Supervisor: t. C. Privette
## 3045 08/21/2001 08:44 am (fblackmo) employee was working with crew on state road-1528. Employee began having trouble breathing, called 911, employee was transported to hospital in franklin. Supervisor: w. H. Lynch
## 3046 08/21/2001 09:17 am (fblackmo) employee, while walking/climbing up a hill, developed a pain in chest. The pain caused a shortness of breath and some dizziness. Supervisor: gary crowder
## 3047 08/21/2001 09:42 am (fblackmo) employee came into contact with poison oak while cutting right of way. Supervisor: t. L. Hall
## 3048 08/21/2001 10:03 am (fblackmo) employee stepped on a nail which penetrated the sole of his right shoe and then entered into his foot. Supervisor: r. Preston hunter
## 3049 08/22/2001 01:47 pm (fblackmo) employee was cutting plastic from around wood stakes. The plastic was on right but, a small wood splinter was thrown into employees eye when he cut off the plastic. Supervisor: michael biedell
## 3050 08/22/2001 02:00 pm (fblackmo) employee was working on the drott when he crawled under and came in contact with poison ivy. Supervisor: m. B. Mizelle
## 3051 08/22/2001 02:18 pm (fblackmo) employee was traveling on us 264 when a rock from a dump truck hit his windshield. The employee notice that the tailgate from the truck was not latched so he flagged the driver and help to latch his tailgate. The rock
## 3052 08/22/2001 02:56 pm (fblackmo) employee was pulling a piece of 50 pound density equipment toward the tailgate of a pick-up truck when he felt a pull in his shoulder. Supervisor: danny wrench
## 3053 08/22/2002 09:52 am (fblackmo) employee had been advised by his doctor approximately one year ago that he had a small hernia, while at work on tuesday 08/06/2002, he turn around causing the hernia to pop out. Supervisor: thomas foster bowser
## 3054 08/22/2002 10:18 am (fblackmo) employee states while pulling herself up into the truck, she felt a pull in her back. Supervisor: dwight godwin
## 3055 08/22/2002 10:47 am (fblackmo) employee was working on asphalt crew on state road 1336 shoveling and raking asphalt when, starting experiencing heat exhaustion. Supervisor: s. R. Ross
## 3056 08/24/1999 09:11 am two employees had a conflict which turned physical on 7/27/99. One employee pushed the other and Mr. Hunter ended up with a cut on his head. He hit his head on the front of a crew cab causing a four inch laceration. He also brui
## 3057 08/24/1999 09:23 am employee was stung by bees when he stepped on a yellow jacket nest. He fell when running from the bees injuring his left thumb. Supervisor: ricky tipton.
## 3058 08/24/1999 09:32 am employee experienced pain in lower back and right hip while pulling wrench repeatedly and drilling. Supervisor: d. P. Murphy
## 3059 08/24/1999 09:36 am employee cut his right index finger while cutting belt with a knife. Supervisor: j. D. Shelton
## 3060 08/24/1999 09:45 am employee was driving truck to the job site, when a car pulled out in front of Mr. Gleason. He suffers cervical strain to his neck due to this accident. Supervisor: jimmie evans
## 3061 08/24/1999 09:53 am employee sprained her left ankle, when she stepped off truck step. She lowered herself too quickly while getting out of the truck. Supervisor: james taylor
## 3062 08/24/1999 09:58 am employee fractured her right hand when she fell on 8/17/99. Employee was walking on cemented area, when she tripped over a raised slab of cement 1 and 1/2 inches higher. Supervisor: c. F. Edwards
## 3063 08/24/2000 09:54 am Mr. Harrison supervisor told him to take the asphalt pouring pot on 8/1/00. Employee did not have on gloves when he burnt tow fingers on his right hand. Supervisor: h. D. Wiggins
## 3064 08/24/2000 10:00 am employee was removing signs from right of way; when he pulled muscles in his neck and shoulders. Supervisor: j. B. Hunsinger
## 3065 08/24/2000 10:53 am car in front of employee stopped. Employee was almost stopped when a truck behind him failed to stop, hitting employee from behind pushing employee's truck into car ahead of him.
## 3066 08/24/2000 12:25 pm employee was flagging for road crew patching sr 2105; when he came in contact with poison ivy. He has poison ivy contact rash on both arms and legs. Supervisor: mark e. Stafford
## 3067 08/24/2000 12:38 pm employee was removing dead trees on sr 1307; when he came in contact with poison ivy plants. He has contact rash on his left arm and his back. Supervisor: keith lance
## 3068 08/24/2000 12:43 pm employee was chipping brush when he came in contact with poison ivy plants. He has contact rash on both arms. Supervisor: alan brown
## 3069 08/24/2000 12:48 pm employee was cleaning asphalt off the patch roller, when she came in contact with chemical on her right leg. Supervisor: a. L. Smith
## 3070 08/24/2001 02:01 pm (fblackmo) employee was clearing weeds off of I-240 in buncombe county when, came into contact with poison oak. Supervisor: keith hill
## 3071 08/24/2001 02:15 pm (fblackmo) employee came into contact with poison oak while clearing weeds off highway 240 in buncombe county. Supervisor: keith hill
## 3072 08/24/2001 02:28 pm (fblackmo) employee was clearing weeds from around scrub beds when, he came into contact with poison oak. Supervisor: keith hill
## 3073 08/24/2001 02:40 pm (fblackmo) employee was pouring used oil from catch pan into used oil tank, when he bent over to start pouring the oil, he felt a sharp pain in his lower back. Supervisor: d. R. Parker
## 3074 08/24/2001 02:56 pm (fblackmo) Mr. Wilkins was closing the lounge door behind him but did not notice that employee quidley was behind him. Employee quidley right middle finger was caught between the door. Supervisor: b. P. Wilkins
## 3075 08/24/2001 03:14 pm (fblackmo) employee was showing another employee a tree limb to be cut and stepped into a hole causing him to twist his ankle and fell down. Supervisor: marc p. Morgan
## 3076 08/24/2001 03:27 pm (fblackmo) employee was cleaning piping between sea chest and cooling pump when he stood up he felt a pop in his lower back. Supervisor: s. H. Kinner
## 3077 08/25/1999 10:03 am employee was climbing off of a scaffold, when he twisted his right ankle. The cinder block was kicked out from under his foot, when he stepped down on the ground. Supervisor: ken anderson.
## 3078 08/25/1999 10:17 am employee suffered from heat exhaustion and dehydration on 8/18/99. Air conditioner unit was broken and the temperature that day was over 100. Unknown location of injuries to report. Supervisor: robert e. Bell, jr.
## 3079 08/25/1999 10:30 am examiner robbins was getting out of car when she felt her lower back pop causing her pain. She had just completed giving a customer a driving test. Supervisor: reba mitchell
## 3080 08/25/1999 10:48 am employee was removing brush when he stepped in to a yellow jackets nest causing them to sting him six times. Later he started having chest pains. Was stung on head/face, arm wrist, leg, thigh, waist.
## 3081 08/25/1999 11:06 am employee was cutting undergrowth in bridge right of way and got into a nest of yellow jackets. Was right ear, right arm/shoulder. 02/01/2000 10:54 am
## 3082 08/26/1999 02:40 pm employee hit left hand on tailgate latch trying to break fall, after dislodging rock from tailgate. Left hand, 4th finger fractured.
## 3083 08/26/1999 02:56 pm employee was filling a spray bottle with asphalt release(zep 004) turned off tank, set bottled down when the liquid splashed in his face. Eyes were injured.
## 3084 08/26/1999 10:02 am employee was helping set a fence off the right of way, when later in the day he noticed he had red bugs on him. Red bugs found on both legs, stomach, and back. Supervisor: j. D. Cabaniss.
## 3085 08/26/1999 10:10 am Mr. Sawyer was clearing survey area, when he found a tick attached on the inside of his left leg below his calf. He found several ticks on his body, but missed the one already attached on leg. Supervisor: a. K. Alford
## 3086 08/26/1999 10:25 am constantly working on heavy equipment. Lateral epicondylitis.
## 3087 08/26/1999 10:55 am employee was removing timber 12 x 12 x 3' from top of timber pile, timber 12 x 12 fell catching his hand between bracing. Right hand. 02/01/2000 01:23 pm
## 3088 08/26/1999 11:12 am employee was painting a timber bridge handrail and put his hand back behind the rail to paint the post when he was struck a wasp nest. 02/01/2000 11:28 am
## 3089 08/26/2003 01:48 pm (fblackmo) employee was shoveling gravel on shoulder of road when he became over heated. Supervisor: c. E. Moore
## 3090 08/26/2003 02:32 pm (fblackmo) employee lost his balance and fell from the back of a truck. Employee grabbed the sign post but the shaking caused the brace to unbolt striking his head. Supervisor: charles m. Jackson jr
## 3091 08/26/2003 02:44 pm (fblackmo) employee was lifting metal sign from back of truck when, he felt pain in his left shoulder: sarah foster
## 3092 08/26/2003 07:39 am (fblackmo) employee states while assisting another employee in pushing a pilot truck out of a ditch he, felt pain in his back area. Supervisor; archie lee smith jr
## 3093 08/26/2003 07:55 am (fblackmo) employee was spraying around planting projects using a backpack sprayer. The straps was adjusted to tight causing bruising on his right shoulder and a minor back strain. Supervisor: brian k. Glover
## 3094 08/26/2003 08:38 am (fblackmo) employee was pulling up mailboxes when, his hemorrhoids starting giving him problems. Supervisor: eddie gurganious
## 3095 08/26/2003 09:01 am (fblackmo) employee was helping another employee lift a chipper on truck when, he felt pain in his back. Supervisor: t. J. Shaw
## 3096 08/26/2003 09:10 am (fblackmo) employee was attempting to roll a loader tire off the truck when, he lost his balance and fell off the back of the truck causing the injury to his right wrist. Supervisor: d. Shane edwards
## 3097 08/26/2003 09:27 am (fblackmo) employee was working on aggregated spreader when, a rock flew up from the belts into his eye. Supervisor: m. V. Price
## 3098 08/26/2003 09:36 am (fblackmo) employee had an allergic reaction to some insects and vegetation while working in the field causing a rash to form all over his body. Supervisor: jeffery kidd
## 3099 08/26/2003 09:52 am (fblackmo) employee was walking down steps when, her foot slipped causing the injury to her chin and lip. Supervisor: joe lockamy
## 3100 08/26/2003 10:23 am (fblackmo) employee was stepping off of back hoe when, he felt pain in his left shoulder area. Supervisor: jimmy walls
## 3101 08/26/2003 11:01 am (fblackmo) employee was using bar to reposition form when, he hit his arm on pipe causing a cut to his right arm. Supervisor: c. C. Coggins
## 3102 08/26/2003 11:11 am (fblackmo) employee was drilling through two pieces of metal when, metal kicked sideways injuring employees left hand. Supervisor: d. M. Presley
## 3103 08/26/2003 11:31 am (fblackmo) employee stepped up on cross-tie and twisted his left ankle. Supervisor: j. D. Shelton
## 3104 08/26/2003 11:44 am (fblackmo) employee was pulling on tailgate on tandem dump truck so that the mud could fall out, he slipped in mud and tailgate slammed on two fingers on his left hand. Supervisor: b. W. Jackson
## 3105 08/26/2003 11:56 am (fblackmo) employee pulled muscle in his neck while working with drill crew. Supervisor; r. R. White
## 3106 08/26/2003 12:07 pm (fblackmo) employee sustained a tick bite on the calf of his left leg while working with paint gun on the shoulder of the road. Supervisor: joe s. Parker
## 3107 08/26/2003 12:25 pm (fblackmo) employee was removing a license plate light bulb, bulb broke causing a cut to his left index finger. Supervisor: d. C. Sherrod
## 3108 08/26/2003 12:35 pm (fblackmo) employee tripped over a stack of lumber, he used his arm to break his fall causing the injury to his right wrist. Supervisor: b. W. Jackson
## 3109 08/26/2003 12:45 pm (fblackmo) employee was inspecting paving operations when, he collapsed falling into asphalt causing burns to his elbows. Supervisor: stephen sparks
## 3110 08/27/2002 01:10 pm (fblackmo) employee was trying to cut a tree that had fallen; on slope mower tractor with bush axe that had no handle cutting his right hand. Supervisor: w. R. Loyd jr
## 3111 08/27/2002 01:24 pm (fblackmo) employee was pulling brush when, he came into contact with poison ivy/oak. Supervisor: marc p. Morgan
## 3112 08/27/2002 01:34 pm (fblackmo) employee was climbing up the side of a creek bank when, he lost his footing. Supervisor: ken presson
## 3113 08/27/2002 01:46 pm (fblackmo) employee tripped on weeds and brushes while going down embankment. Supervisor: w. D. Frye jr tegs
## 3114 08/27/2002 01:57 pm (fblackmo) employee was replacing tool handles when, he took a step back he fell over push mower. Supervisor: d. L. Lane
## 3115 08/27/2002 03:28 pm (fblackmo) employee was clearing right-of-way on state road 1565 when, he came into contact with poison/oak. Supervisor: k. L. Anderson
## 3116 08/27/2002 03:44 pm (fblackmo) employee was loading a density testing gauge into the back of his dot van. Supervisor: phil l. Stanberry
## 3117 08/27/2002 09:57 am (fblackmo) employee was putting stanchion into place when; his right hand was caught between the ramp and stanchion. Supervisor: t. L. Paul
## 3118 08/27/2002 10:12 am (fblackmo) employee and inmate was shoveling asphalt from the back of pickup truck. Inmate hit employee on his right arm(elbow area) with a shovel full of hot asphalt when, employee turn around to refill his shovel. Supervisor: w
## 3119 08/27/2002 10:47 am (fblackmo) employee was at rest area on I-95 south when, and insect bite him on his right eye. Supervisor: sgt. Cynthia floyd
## 3120 08/27/2002 11:01 am (fblackmo) employee was loading a signal cabinet onto a truck. Employee felt pain in his lower back area. Supervisor: johnny coleman
## 3121 08/27/2002 11:14 am (fblackmo) employee was inspecting dot state project in a wooded area when, a tick bite him on his left arm. Supervisor: k. T. Cross
## 3122 08/27/2002 11:27 am (fblackmo) employee was lifting a stack on cones to load onto truck to be transported to job site when, he felt pain in his back. Supervisor: hugh williams
## 3123 08/27/2002 11:39 am (fblackmo) employee states while spraying straw with a tack wand he, felt pain in right wrist. Supervisor: h. M. Coates
## 3124 08/27/2002 11:51 am (fblackmo) employee was chaining backhoe down on trailer when, the chain slipped causing injury to his hand. Supervisor: n. S. Gibson
## 3125 08/27/2002 12:52 pm (fblackmo) employee states, the compressor cut off and he climbed up on the pickup to check for the mile-function. Employee lost his balance, grabbing the exhaust pipe of the compressor to keep from falling. Supervisor: charles m
## 3126 08/28/2002 07:05 am (fblackmo) employee states that while pulling tree limbs out of median of road, caused injury to back. Supervisor: donald king
## 3127 08/28/2002 07:23 am (fblackmo) employee states while lifting up ramp for rock spreader, he felt pain in his lower back area. Supervisor: mm. I. Fogleman
## 3128 08/28/2002 07:36 am (fblackmo) employee states came into contact with poison ivy while, removing a fallen tree out of roadway. Supervisor: ken pruett
## 3129 08/28/2002 08:02 am (fblackmo) employee states while removing fallen tree from roadway, came into contact with poison ivy. Supervisor: ken pruett
## 3130 08/28/2002 09:27 am (fblackmo) employee was servicing a large tandem truck on a lift. The lift does not go high enough for employee to walk under. Employee bumped his head(left side of forehead) on the main rail. Supervisor: d. E. Bowers jr
## 3131 08/28/2002 09:42 am (fblackmo) employee states while bending over for a long period of time removing survey nails from roadway, experienced pain in his back. Supervisor: c. D. Kimes
## 3132 08/28/2002 09:53 am (fblackmo) employee was loading straw when, a rash broke out on his arms. Supervisor: sam wilson
## 3133 08/28/2002 10:06 am (fblackmo) employee was inspecting bridge 44 in moore county when, his foot slipped off a barrier rail at pier # 3. Supervisor: mark wade
## 3134 08/28/2002 10:49 am (fblackmo) employee was using a hammer to drive a hub into the ground when, he felt pain in his lower back. Supervisor: ruxton bobbitt
## 3135 08/28/2002 11:00 am (fblackmo) employee was loading nuclear gauge into storage box on bed of pickup and pinned left hand between storage box door and nuclear gauge. Supervisor: e. A. Burwell
## 3136 08/28/2002 11:21 am (slee) Mr Hess was driving a single axle dump truck along hurdle mills road traveling east when a private tandem double axle crossed the center line. Mr. Hess slowed down and tried to avoid the private party by drifting towards t
## 3137 08/28/2002 12:55 pm (fblackmo) employee was getting out of dump truck and twisted his left ankle. Supervisor: ralph thomas mcmanus jr
## 3138 08/29/2000 04:23 pm employee felt sharp pain in his lower back while attempted to swing a surveying instrument case. Supervisor: phil d. Manley
## 3139 08/29/2000 10:29 am employee got out of cart to walk into the building when he twisted/sprained his left leg. Supervisor: desmond r. Foster
## 3140 08/29/2000 10:44 am employee was brazing a steel hydraulic pipe on excavator boom; when the heat from the brazing process ignited the oil vapor. Employee has 2nd degree burns to legs (between his knees and groin) and 2nd degree burns to both hands. S
## 3141 08/29/2000 10:56 am employee was coming back from weigh station from checking a vehicle; when he stepped back from a truck. He missed the curb and started to fall. He caught himself and then heard his back pop and immediately started having pains in
## 3142 08/29/2000 11:16 am employee was preparing his crew to pull asphalt sled onto sr 1956 on 8/16/00. A private vehicle came through work zone striking Mr. Walker from behind and knocking him onto the pavement. He has injuries to his upper and lower bac
## 3143 08/29/2001 01:00 pm (fblackmo) employee was dumping trash cans into dumpsters and was bitten by a spider. Trash cans were stationed on island at fuel pumps. Supervisor: t. C. Tilley 09/07/2001 08:29 am (twerner)
## 3144 08/29/2001 02:07 pm (fblackmo) employee was loading steel wheel roller on trailer. Trailer was wet from rain. The roller began to slide, employee jumped off the roller and struck the railer with the left side of his buttocks. Supervisor: robert hol
## 3145 08/29/2001 02:31 pm (fblackmo) employee was using the weedeater around bridge when a nest of ground bee swarmed out at him and stung him on the hand and back several times. Employee was taken to doctor. Supervisor: gerald woodley
## 3146 08/29/2001 03:02 pm (fblackmo) employee was walking in the rear parking lot area of dmv( close to back door entrance) when she was hit in the head by a falling object. Supervisor: jennifer johnson
## 3147 08/29/2001 03:20 pm (fblackmo) employee was moving ramps on trailer when his finger got caught in ramp. Supervisor: b. G. Herron 08/29/2001 03:25 pm (fblackmo) later in the evening, employee was mowing on exit ramp I-40 when, the wind blew trash
## 3148 08/29/2001 03:39 pm (fblackmo) employee was stacking steel on racks when he was stung by wasp multiple times. Supervisor: w. E. Evans
## 3149 08/29/2001 10:44 am (fblackmo) employee was driving broom tractor back to maintenance yard from work site when, it was struck by a tractor trailer. Employee was thrown from the tractor in impact and suffered various injuries. Supervisor: r. W. Baucom
## 3150 08/29/2001 11:31 am (fblackmo) employee was cutting down trees and got exposed to poison oak. Supervisor: k. L. Anderson
## 3151 08/29/2001 11:50 am (fblackmo) employee was clearing road way on state road 1401 with the trackhoe. One of the branches of the tree he was taking down broke and a piece of it flew in his eye through the opened side door. Employee stopped his operati
## 3152 08/29/2001 12:33 pm (fblackmo) employee was walking down hall and fell. Not sure if she slipped on something or ankle gave way. Supervisor: paula windley
## 3153 08/29/2001 12:45 pm (fblackmo) employee fractured left pinkie finger while trying to secure driller platform. His hand slipped while securing locking mechanism. Supervisor: dean n. Argenbright
## 3154 08/30/1999 04:55 pm employee has tenderness in his lower back.
## 3155 08/30/1999 11:50 am employee was driving a stake in the ground when side of stake broke off causing sledge hammer to glance off stake and hit left hand.
## 3156 08/30/1999 12:08 pm employee was putting watering radiator of a tandem truck when foot slipped from tie rod he was standing on causing him to fall and injury lower back.
## 3157 08/30/2000 03:58 pm employee states she injured her back unloading several dump trucks. (March 1999) supervisor: b. L. Jones
## 3158 08/30/2000 04:00 pm employee was trying to help another employee stand up after situp exercises; when he felt a pulling pain in his right ankle. Supervisor: sgt. T. I. Hickman
## 3159 08/30/2000 04:15 pm employee was clearing work site project when he came in contact with poison ivy. He has contact rash on both arms and legs. Supervisor: christy wright
## 3160 08/30/2000 04:42 pm employee was inspecting a bridge; when his foot slipped on a large rock causing his left leg to hit a rock. Supervisor: mark wade
## 3161 08/30/2000 04:52 pm employee was cutting and welding steel sheeting on 8/8/00; when flying debris got in his right eye. Supervisor: e. L. Taylor, jr
## 3162 08/30/2000 05:00 pm employee was inspecting paving jobs and walking along shoulder of road; when he felt a tick crawling on his leg and back. He was bitten on his back and leg. Supervisor: john whisnant
## 3163 08/30/2000 05:07 pm employee lost balance and fell onto pavement after stepping out of mobile unit on 8/11/00. She has injuries to her right elbow, left knee, left ankle and her whole body was jarred from the fall. Supervisor: linda c. Moose 02/2
## 3164 08/30/2000 09:16 am employee cut his left index finger through the bone on 8/21/00. Mr. Clayton was trying to release truck cover that was hung up by pushing the bar, causing his finger to get caught. Supervisor: jack rollins
## 3165 08/30/2000 09:24 am employee was stepping up into truck when he felt a pulling pain in his left foot. Supervisor: l. E. Cotton
## 3166 08/30/2000 09:29 am employee was cutting trees off right of way; when he came in contact with red bugs. He has bites and blisters on both legs. Supervisor: shelton james
## 3167 08/30/2000 09:38 am employee was operating a sweeping vehicle repetitively pulling its lever; when she injured her back. Supervisor: james w. Dyson
## 3168 08/30/2000 09:51 am employee was trying to pull hydraulic cable to re align it; when the cable slipped causing injuries to his right ring and little fingers. Supervisor: r. D. Isley
## 3169 08/30/2000 10:08 am employee suffered heat exhaustion from working extended hours in the heat on 8/9/00. Supervisor: k. C. Batchelor
## 3170 08/30/2000 10:22 am employee was cutting trees with chainsaw on 8/1500; when he came in contact with a bees nest. Mr. Courts was stung on the right side of his face. Supervisor: w. H. Adkins
## 3171 08/30/2000 10:27 am employee was moving a sign rack back on top of fender to get another sign; when the rack fell off striking his right hand. Supervisor: c. R. Woody
## 3172 08/30/2001 02:05 pm (fblackmo) employee was lifting an office chair onto the file cabinets in the file room so that the floors could be clean when he felt a pull in his groin area. Supervisor: dean harris
## 3173 08/30/2001 02:34 pm (fblackmo) employee was chipping limbs with wood chipper, wood chipper clogged up with chips, employee turned off the machine in order to clean out the hopper where the cutter wheel turns. Employee rotated the wheel with his left
## 3174 08/30/2001 02:50 pm (fblackmo) employee was getting into truck-pickup stick was laying in seat, employee hit stick with her leg, penetrating it. Supervisor: a. T. Rose *show all bills to joyce
## 3175 08/30/2001 03:25 pm (fblackmo) employee was shoveling asphalt from rear of truck when, he felt something pop in left arm near the elbow and felt severe pain. Supervisor: h. Southerland
## 3176 08/30/2001 03:40 pm (fblackmo) employee was using the foot of a barricade to dislodge the foot of another barricade. Employee missed the barricade and hit his own foot during the process. Supervisor: t. J. Brooks
## 3177 08/30/2001 03:52 pm (fblackmo) employee states she has pain and swelling from repetitive movements due to typing and keying duties. Supervisor: c. T. Corriher
## 3178 08/30/2002 03:25 pm (vsulliva) employee driving a fuel truck pulled in front of a train.
## 3179 08/30/2002 07:22 am (fblackmo) employee was lifting road closed sign to put on back of truck when; he felt pain in his middle back area. Supervisor: barry t. Coble
## 3180 08/30/2002 07:42 am (fblackmo) employee was going into the bathroom and became light headed. Employee tried to brace herself but fell on the floor. Supervisor: e. A. Burwell
## 3181 08/31/1999 02:20 pm employee was taking the form off and went to push the stud down with his foot and lost his balance and fell off the head wall spraining right wrist. 02/01/2000 01:16 pm
## 3182 08/31/1999 02:35 pm while helping a diver pull logs out of channel, employee needed to cut a rope into. Seas were very choppy and knife slipped and cut the top of his index finger on his left hand.
## 3183 08/31/1999 03:19 pm employee was holding a 3' long 2x6 block against a wedge being driven; under joist. While the block was being hit, it ricocheted off the wedge and caught employees finger between 2x6 and another joist. It fractured finger on left h
## 3184 08/31/1999 03:56 pm employee was shoveling asphalt and turning to throw the asphalt, when he felt strain in his lower back. Supervisor: m. H. Thomas
## 3185 08/31/1999 08:42 am employee stepped on uneven terrain while inspecting newly-erected work zone signs. Strained ligament or tendon on right knee.
## 3186 08/31/1999 10:04 am employee relining brakes on kodiak dump truck. Installing cam roller when pry-baring down the shoe slipped pinching left index finger between shoe and cam.
## 3187 08/31/1999 10:08 am employee injured the right side of his back while picking up parts of trees. He was throwing tree parts back in the woods when he pulled a muscle in his back. Supervisor: steve dillon
## 3188 08/31/1999 10:18 am employee was bending down to pick up a computer when he felt something pop in his neck. Supervisor: brian watkins
## 3189 08/31/1999 10:28 am employee was using a bush axe to clear a path for radar equipment. This was for radar survey of a bridge over tar river. As he was doing this water was splashing and he accidently swallowed some of the river water.
## 3190 08/31/1999 10:32 am employee was assisting an inmate when he got blood on his arm. Mr. Lowe requested to be tested. The inmate cut his arm on chainsaw causing him to bleed on Mr. Lowe. Supervisor: c. J. Hardy
## 3191 08/31/1999 11:08 am employee stopped in maint. Yard, open door to ask employee to help unload truck-turned sharply to right causing door to open wider, grabbed door which pulled employee out of truck onto asphalt pavement. Fell on back and scraped lef
## 3192 09/01/1999 08:48 am employee was operating the loader at the nc 901 stockpile (campbell's) loading sone into the tandem dump trucks and injured his back with the vibration of the loader. 12/05/2001 11:35 am (kbarefoo)
## 3193 09/01/2000 12:45 pm employee was attempting to cross an unsignalized divided highway, when he was struck in the side by a private vehicle.
## 3194 09/02/1999 01:08 pm climbing down side of truck on the ladder when left foot slipped and went to the ground while right leg was still in the air. It was raining and the step was wet.
## 3195 09/02/1999 01:19 pm employee was returning to truck and stepped on a hypodermic needle which stuck thru his shoe and into foot.
## 3196 09/02/1999 10:19 am employee stated on friday afternoon at job site in tyrrell county, at the end of the work day he was cleaning sand from chip spreader using a shovel he hurt his back. Employee has muscle strain in lower left side of back.
## 3197 09/02/1999 10:30 am concrete was being discharged into a 5 gal. Bucket from the truck. The asst. Superintendent handed the bucket to employee. Employee grabbed the handle with his right hand, as it was handed to him he attempted to support it with
## 3198 09/02/1999 11:10 am employee was flagging traffic on sr 1222. Employee passed out. Employee was taken to hospital. Doctor said employee was dehydrated.
## 3199 09/02/1999 11:21 am employee was fueling up a backhoe when he felt something in his shirt. Employee was stung twice- once on his chest and once on his abdomen, before the bee was removed from his shirt.
## 3200 09/02/1999 12:47 pm employee was working his way thru wooded area to get beneath bridge. He came upon a steep bank. He slipped, landing on his right ankle. Spraining and fracturing it. 10/05/1999 10:08 am 02/01/2000 12:38 pm
## 3201 09/03/1999 02:34 pm Mr. Roof is suffering from post traumatic stress syndrome since May 19, 1999. Mr. Roof filed a form 18, on May 21, 1999 due to job related stress arising from multiple traumatic situations in law enforcement. Note: Mr. Roof ha
## 3202 09/03/1999 08:35 am employee was positioning lumber to be cut and strained back causing injury. 02/01/2000 11:09 am
## 3203 09/03/1999 08:41 am employee punctured his left foot when he lost balance and stepped on a nail. Supervisor: r. D. Sherrill.
## 3204 09/03/1999 08:46 am employee stated her right hand has been hurting, cramping and she has stabbing pains in the palm of her right hand. She also complains of having pain in her arms, shoulders, and back areas. Supervisor: lynn chalk
## 3205 09/03/1999 08:48 am employee was setting slope stakes in heavy undergrowth. A lot of cutting & chopping was involved which included poison oak.
## 3206 09/03/1999 08:54 am employee was in state vehicle when he was hit from behind by a private vehicle. Employee has pain in his neck and shoulders since the accident. Supervisor: t. E. Simpson
## 3207 09/03/1999 09:01 am employee was struck from behind by a private vehicle while driving in state vehicle. The employees truck went off the road and across a deep hole causing him and another employee to bounce. Mr. Moss received a cut on the top of h
## 3208 09/03/1999 09:14 am Mr. Chavis injured his back while mowing grass on sr 1004. Employee was operating a ford tractor when he hit a hole on the shoulder of the road. Supervisor: harvey watson
## 3209 09/03/1999 10:31 am employee was bushing culvert, steppedin hole in deep grass and twisted left ankle. 02/01/2000 01:06 pm
## 3210 09/03/1999 10:54 am employee was using the asphalt lute when he felt pain in is lower back. Strain of lower back
## 3211 09/03/2002 10:00 am (slee) employee was traveling south on us 17 heading towards shallotte when he blacked out and his vehicle ran into the ditch on the opposite of the road. Test results made at the hospital are still pending.
## 3212 09/03/2002 11:44 am (fblackmo) employee states, because of the constant use of keying each day pain has developed in both hands and wrist. The original date of injury was not know, but was reported to supervisor on July 10, 2002. Supervisor: pat glen
## 3213 09/03/2003 02:20 pm (fblackmo) employee was breaking loose bolts on guardrail when, he felt pain in his right shoulder area. Supervisor: ronnie woodcock
## 3214 09/03/2003 02:38 pm (fblackmo) employee was pushing a limb back on a tree to tie a r/w monument when, limb struck him in his left eye. Supervisor: robert walston
## 3215 09/03/2003 02:54 pm (fblackmo) employee was opening some cardboard secured boxes with shipping tape. He pulled the tape to open the box and the tape hit him in his left eye. Supervisor: w. S. Richard
## 3216 09/03/2003 03:19 pm (fblackmo) employee had been operating a weed-earter all day when, he passed out. Supervisor: mike carriker
## 3217 09/03/2003 03:31 pm (fblackmo) employee was operating a chain/pole saw cutting a right of way when, he had an allergic reaction to the technetium on his arms. Supervisor: s. R. Ross
## 3218 09/03/2003 03:43 pm (fblackmo) employee was walking in tall grass to get on truck when, he found a tick on his right hip. Supervisor: c. L. Lucas
## 3219 09/03/2003 03:55 pm (fblackmo) employee was traveling on I-40 when, a rock from a tractor trailer hit the windshield causing a foreign matter to go into his right eye. Supervisor: c. L. Edwards
## 3220 09/03/2003 11:02 am (fblackmo) employees state vehicle was parked on the shoulder of the road in work zone when, a private vehicle struck his causing the injury to his neck. Supervisor: j. S. Tomlinson 11/21/2003 11:02 am (gwhite)
## 3221 09/03/2003 11:24 am (fblackmo) employee was conducting a road test when, the customer put the car in reverse and stepped heavily on the gas causing the injury to employees neck and left shoulder. Supervisor: t. M. Bailey
## 3222 09/03/2003 11:49 am (fblackmo) employee was giving a road test when, the customer backed into the car beside them causing the injury to her lower back. Supervisor; terry blevins
## 3223 09/03/2003 12:04 pm (fblackmo) employee was taking spring lines off of ferry when, he felt pain in his groin area. Supervisor: ellen goodwin
## 3224 09/03/2003 12:28 pm (fblackmo) employee caught his right index finger between a class b stone and pipe while loading concrete pipes. Supervisor: j. H. Freeman
## 3225 09/03/2003 12:40 pm (fblackmo) employee was using a sledge hammer at a broken wheel axle when, he hit his elbow on the corner of the bed of truck. Supervisor: jimmy creech
## 3226 09/04/2001 10:21 am (fblackmo) employee was operating chainsaw, gas came out of saw and ignited, catching employee on fire. Supervisor: j. W. Dyson
## 3227 09/04/2001 10:37 am (fblackmo) employee fell while getting trash out of truck. Employee lost balance and fell off the bumper. Supervisor: e. F. Goodwin
## 3228 09/04/2001 10:49 am (fblackmo) employee was scrubbing around bridge when, an insect bit/stung him on his left hand. Supervisor: w. T. Lowery jr 09/11/2001 01:36 pm (twerner)
## 3229 09/04/2001 11:02 am (fblackmo) employee was raking asphalt with a rake that had been laying in poison oak and got infected. Supervisor: delores m. Sturdivant
## 3230 09/04/2001 11:42 am (fblackmo) employee was completing paperwork on a concrete test when he began to experience chest pains. Supervisor: randy wise
## 3231 09/04/2002 08:46 am (fblackmo) employee was leaving the spruce pine equipment shop when he tripped and fell over a small drainage incline at the exit to the shop bay. Supervisor: joe h. Mckinney
## 3232 09/04/2002 09:12 am (fblackmo) employee was rolling, using a steel wheel roller on a steep hill incline on state road 2429(long branch road) in buncome county. Rolling on inside of the curve; roller flipped over onto its' side causing the injury to h
## 3233 09/04/2002 09:29 am (fblackmo) employee states that while working on state road 1710 doing pipe replacement, he was bitten by an insect. Supervisor: jeremy b. Creech
## 3234 09/04/2002 11:17 am (fblackmo) employee was assisting in pumping grout, when dust went into his left eye. Supervisor: jude pfeufer
## 3235 09/04/2002 11:31 am (fblackmo) employee was stung behind his right ear while exiting his truck. Employee experience swelling and broke out in a rash. Supervisor: ralph thomas mcmanus jr
## 3236 09/04/2002 11:43 am (fblackmo) employee was feeding brush chipper when he came into contact with poison ivy/oak. Supervisor: joe hilliard cinney
## 3237 09/04/2002 11:56 am (fblackmo) employee was walking on lose dirt when, he lost his footing. Supervisor; r. E. Austin
## 3238 09/05/2000 02:54 pm employee was digging a hole to put sign in the ground; when he sprain/strained his right arm. Supervisor: jim evans
## 3239 09/05/2000 03:00 pm employee was removing an illuminated sign form a shipping box; when he was bitten by a black widow spider on top of his left hand. Supervisor: john paul couch
## 3240 09/05/2000 03:06 pm employee was clearing right of way; when he found a tick on his right leg. A few days later he noticed a red spot on his leg. Supervisor: ralph thomas mcmanus, jr
## 3241 09/05/2000 03:11 pm employee was mowing rest area; when the mower hit the dirt causing particles to enter his left eye. Supervisor: carl w. Church
## 3242 09/05/2000 03:27 pm employee was pushing rocks with bull dozer on 8/16/00. He backed up to change angle of approach to remove rocks; when he hit a rock causing pain in his lower back. Supervisor: d. N. Brann
## 3243 09/05/2000 03:34 pm employee was walking down a creek bank; when he slipped and fell on rip rap injuring his right knee. Supervisor: g. D. Fine
## 3244 09/05/2000 03:39 pm employee slipped and fell on pallet beads on floor on 8/18/00. His feet slid out from under him and he fell on his tailbone. He has soreness to lower back, and numbness in his left leg. Supervisor: mike carriker
## 3245 09/05/2000 04:10 pm employee had just stepped out of pick up truck and started walking towards coworkers; when he noticed something had bitten him on his right leg. Supervisor: terry v. Leazer
## 3246 09/05/2000 04:16 pm employee was performing an on-site inspection; when a piece of debris flew into his left eye. Supervisor: brandon h. Jones
## 3247 09/05/2000 04:25 pm employee was holding bolts on motor grader blade with his bare hands; while another employee was loosening nuts on air wrench. The bolt turned into Mr. Disney's hand, cutting his left middle finger. Supervisor: e. W. Spivey
## 3248 09/05/2001 02:05 pm (fblackmo) employee was pressure washing on the syncrolift, while removing his safety shield something entered into his eye. Employee states that on the next day(friday) his eye became irritated and informed his supervisor. Super
## 3249 09/05/2001 02:22 pm (fblackmo) employee was conducting a road test in a rough riding commercial vehicle. Vehicle jarred employee in a manner that he felt pain and discomfort in his lower back to the neck area. Supervisor: j. M. Searcy 09/11/2001
## 3250 09/05/2001 02:40 pm (fblackmo) employee was coming in office from road test, he turned his ankle when stepping up on the curb causing him to fall face down on the curb striking his face. Supervisor: tex kidd
## 3251 09/05/2001 03:06 pm (fblackmo) employee was moving tree limbs along road side in grassy area when he found a tick on his leg. Tick bite caused an infection. Supervisor: c. H. Winstead
## 3252 09/05/2001 03:26 pm (fblackmo) employee was moving potted daylillies when she noticed what she thought were mosquito bites. Bites began to burn and enlarge and ache. Within a few hours bites had become raised. Supervisor: patricia p. Mansfield
## 3253 09/05/2001 03:49 pm (fblackmo) employee was cleaning out a pipe outlet on state road 2021 whit a shovel. The area had small bushes nd trees on the back of the ditch. Employee was stung by an insect on his left hand and chest. Employee states that h
## 3254 09/05/2001 04:05 pm (fblackmo) employee, while trying to remove a dog from the roadway that was blocking traffic, employee was bitten on the right index finger. Supervisor: ervin featherstone
## 3255 09/05/2001 04:18 pm (fblackmo) employee was working on a construction project hauling dirt when dust from the roadway blew into both his eyes. Employee was wearing safety glasses. Supervisor: j. D. Wilson
## 3256 09/05/2001 04:56 pm (fblackmo) employee was operating amz equipment with all warning devices in place, when motorist passing at high rate of speed swerved into work zone. The mirror on the vehicle struck upper right arm of employee spinning her aroun
## 3257 09/05/2001 11:43 am (fblackmo) employee states that while lifting tire up from vehicle he injured his right arm. Supervisor: w. E. Evans
## 3258 09/05/2001 12:01 pm (fblackmo) employee pulled shoulder while getting out of truck, misjudged distance to ground. Employee, while still holding on to door handle had trouble closing the tailgate because of the pain in his shoulder. Supervisor: l. Mic
## 3259 09/05/2001 12:27 pm (fblackmo) employee was filling water tank when hose came out of tank. Employee lost footing on wet tank and slipped off tank catching himself by the leg between the tank and truck. Supervisor: herbert mcdowell
## 3260 09/05/2001 12:42 pm (fblackmo) charlie hardy told paul r. Draughn at 5. 00 pm that on 8-16-2001 that he had pulled something in his back while setting posts on armsworthy road. Supervisor: p. R. Draughn
## 3261 09/05/2001 12:53 pm (fblackmo) employees' knee buckled when he was attempting to get out of tractor broom. When falling employee hit the fender above the left back tire. Supervisor: j. W. Dyson
## 3262 09/05/2003 01:45 pm (fblackmo) employee was passing a bucket of sand and water to the employee beside him when, he felt pain in his lower back. Supervisor: jack tanner
## 3263 09/05/2003 01:59 pm (fblackmo) employee was shifting gears in dump truck when, she felt pain in her right wrist. Supervisor: eddie gurganious *show joyce all bills*
## 3264 09/05/2003 07:42 am (fblackmo) employee states he found a tick on his right knee while inspecting rest area at division one. Supervisor: p. P. Mansfield
## 3265 09/05/2003 07:56 am (fblackmo) employee was flagging traffic for ditch operation and was standing in hot asphalt pavement for most of the day. Employees feet got really hot and sweaty causing the injury to both of his feet. Supervisor: c. W. Phelps
## 3266 09/05/2003 08:10 am (fblackmo) employee was pulling weeds out of flower bed when, he came into contact with poison ivy. Supervisor: p. P. Mansfield
## 3267 09/05/2003 08:31 am (fblackmo) employee was working on the patching crew when, he broke out in a rash on multiple body parts. Supervisor: m. B. Smith
## 3268 09/05/2003 08:46 am (fblackmo) employee was climbing down ladder when, he struck his left elbow on beam. Supervisor: ronald e. Speight
## 3269 09/05/2003 09:04 am (fblackmo) employee was flagging traffic when a modular home came by struck the sign; causing employee to lose his balance and fall to the ground injuring his left hip. Supervisor; t. F. Rhodes
## 3270 09/05/2003 09:20 am (fblackmo) employee was tossing drums from dock when, he felt pain in his right wrist. Supervisor: w. R. Wall
## 3271 09/05/2003 10:45 am (fblackmo) employee jumped off back of flat bed truck when, he finished loading pipes causing the injury to his right ankle. Supervisor: a. L. Clark
## 3272 09/05/2003 10:55 am (fblackmo) employee came into contact with poison ivy while cutting access to bore holes. Supervisor: robert r. White
## 3273 09/05/2003 11:07 am (fblackmo) employee was standing on back of truck when, the driver put the truck in motion. Employee fell of the back of truck causing injury to his arm/wrist. Supervisor: iris h. Mccombe
## 3274 09/05/2003 11:18 am (fblackmo) employee was installing a fence when, the injury occurred to his right wrist. Supervisor: b. Boone
## 3275 09/05/2003 12:57 pm (fblackmo) employee was climbing into back of state pickup and slipped and hit his right knee on the bumper of the truck. Supervisor: iris h. Mccombs
## 3276 09/06/2000 10:21 am employee was attempting to open a can of peas and carrots for lunch; when he cut his left hand on the lid. Supervisor: mark e. Stafford
## 3277 09/06/2000 10:26 am employee was sitting in class on 4/24/00; when he started feeling bad. He passed out striking his head against a table in the room. Supervisor: will williamson
## 3278 09/06/2000 10:35 am employee was walking down the hall when she tripped and fell. As she fell, she caught herself with her left hand. At that time she broke 2 bones in her left middle finger. Supervisor: rodney jenkins
## 3279 09/06/2000 10:42 am employee sustained a back injury on 6/15/00; while running over railroad tracks. The cause of the injury was the sudden and unexpected jerks while crossing the tracks. Supervisor: darrell parson
## 3280 09/06/2000 10:52 am employee states he has hearing loss due to the results of bilateral noise in the workplace. Supervisor: r. I. Matthews
## 3281 09/06/2000 10:58 am employee was removing chains from load of u-channel post on 8/21/00. He took a step back to get the next chain, when he stepped on uneven ground turning/sprained his left ankle. Supervisor: r. D. Isley
## 3282 09/06/2001 12:06 pm (fblackmo) employee states that while pulling stick from blade dirt flew into his eye. Supervisor: b. J. Vance 09/11/2001 01:40 pm (twerner)
## 3283 09/06/2002 08:14 am (fblackmo) employee was bending over to check the weight of a truck. Employee hit his head on a piece of plywood that was hanging over the tailgate. Supervisor; 1st sgt. D. B. Stamey
## 3284 09/06/2003 08:20 am (fblackmo) employee states he came into contact with poison ivy while removing a tree out of road. Supervisor: d. Shane edwards
## 3285 09/06/2003 08:31 am (fblackmo) employee was loading a arrow sign on back of truck when, he felt pain in his upper back area. Supervisor: ron turpin
## 3286 09/06/2003 08:40 am (fblackmo) employee had his arm behind the cab of the mudbug while backing onto the boring location. He turned the wheel to sharp and pinched his right wrist between the cab and the water tank. Supervisor: r. R. White
## 3287 09/06/2003 08:58 am (fblackmo) employee was attempting to cut a tree on steep slope of roadway. After cutting the tree he leaned out to observe and ensure the proper angle the tree was cut when, he fell down the embankment causing the injury to his l
## 3288 09/06/2003 09:11 am (fblackmo) employee was surveying through brushes when, he was bitten by a unknown insect on his right ring finger. Supervisor: l. T. Williford
## 3289 09/06/2003 09:25 am (fblackmo) employee states he acquired tick bites on his hip area while walking on b-4113 project site. Supervisor: j. D. Bradner
## 3290 09/07/1999 03:24 pm employee was working on r/w patching roadway with asphalt. He stepped into a bed of fire ants and did not realize it until the began crawling up his pants leg.
## 3291 09/07/1999 03:38 pm employee was surveying project in brushy ground area. Assumes he had tick attach to his leg while in this area. Tick embedded on upper back part of left leg.
## 3292 09/07/1999 03:57 pm Ms. Arthur is suffering from acute stress/ traumatic stress syndrome since November 8, 1997. Ms. Arthur filed a form 18, on August 17, 1999 due to sexual harrassment and threatening comments while employed with dot. She suffered
## 3293 09/07/2001 04:54 pm (fblackmo) employee suffered chest pains and dizziness while flagging traffic. Supervisor: s. G. Dillon
## 3294 09/07/2001 05:05 pm (fblackmo) employee stated that she strained her back sometime during the week of 8-20-2001 thu 8-24-2001. Due to heavy workload of processing mail and mail delivery. Supervisor: johnathan reed (acting) 09/11/2001 01:39 pm (t
## 3295 09/07/2001 05:17 pm (fblackmo) employee was climbing slope to measure the seedling on project replacement on moores' creek bridge. The rip rap gave way and he twisted his right knee. Supervisor: k. T. Cross
## 3296 09/07/2001 08:47 am (fblackmo) employee was cutting a forked tree. The tree he was cutting had a limb hung in another tree. The tree was hung up and when he went to cut it some more, it kicked off of the stump and fell on the employees left foot.
## 3297 09/07/2001 09:11 am (fblackmo) employee came into contact with a poisonous plant while cutting cross section in cumberland county. Supervisor: mike plummer
## 3298 09/07/2001 09:27 am (fblackmo) employee was installing a crossline pipe and came into contact with poison oak. Supervisor: c. E. Jenkins
## 3299 09/07/2001 09:41 am (fblackmo) employee was unloading a sign delivery when his foot slipped off the edge of flatbed. Supervisor: r. T. Moore 09/11/2001 01:37 pm (twerner)
## 3300 09/08/1999 07:50 am employee twisted back on right side and left knee while unloading supplies for driver license. Apparently twisted when turning.
## 3301 09/08/1999 08:05 am employee was cleaning out auger headstem when he felt a sharp pain in his upper right chest. A small 1/4 th inch hole was observed and bleeding became perfuse
## 3302 09/08/1999 09:07 am employee was bit in middle of back by a spider on 8/12/99. Supervisor: wayne knight.
## 3303 09/08/1999 09:19 am employee slipped on muddy stream bank while inspecting underside of a bridge. Mr. Hicks injured his right wrist and arm. Supervisor: john jefferys 02/01/2000 01:21 pm
## 3304 09/08/1999 09:32 am employee injured his right index finger when the fork of a forklift machine dropped on his finger. His finger was crushed and caught between the fork and the flatbar. Supervisor: david pharr.
## 3305 09/08/1999 09:44 am employee suffered from heat exhaustion on 7/21/99. He got overheated and broke into a cold sweat. Mr. Brown became dizzy and weak in the knees when he collapsed to the ground. Supervisor: terry shaw
## 3306 09/08/2000 03:28 pm employee was stepping down off a lead; when his harness cut the right side of his neck. Supervisor: t. K. Southard 10/26/2001 11:13 am (lwilliam)
## 3307 09/08/2000 03:36 pm employee was flagging traffic when an automobile pulled up to him and cursed at Mr. Montgomery. The driver then drove through the work zone striking employee and a trash can on the road side. Mr. Montgomery bruised right hip. Sup
## 3308 09/08/2003 10:51 am (slee) sov proceeded into intersection to make a left turn and was hit in left front corner by pov that ran through a red light. Pov driver said he did not see the red traffic signal light.
## 3309 09/09/1999 05:18 pm Mr. Corbin was attempting to arrest a combative dwi suspect, when he was tackled by suspect. He dislocated his left shoulder when they fell to the ground. Supervisor: d. R. Brookshire
## 3310 09/09/1999 05:26 pm employee suffered a head injury while working on the grade crew pulling up fence posts. The grader was in the process of pulling up a post, when it snapped into hitting the employee on his head. Supervisor: wayne knight
## 3311 09/09/1999 09:54 am a piece of concrete flew off cap into Mr. Jacobs right eye. Employee was chipping concrete cap with a hammer drill when the incident occurred. Supervisor: derwin strickland 02/01/2000 12:52 pm
## 3312 09/09/1999 10:04 am employee injured right hand middle finger while unloading oil drums from a truck. Mr. Ramsey hand was caught in between the hand truck and the wall of the building. Supervisor: c. W. Collins
## 3313 09/09/1999 10:11 am a particle of dust/trash blew into Mr. Kerr's left eye. The particle eventually worked its way out of his eye, but left a scratch. Supervisor: mike jefferys
## 3314 09/09/1999 10:20 am employee injured his lower back while adjusting a screed on widener to move machine parts. Supervisor: h. A. Moore
## 3315 09/09/1999 10:28 am employee was driving a pickup truck and failed to stop at stop sign. Upon entering the intersection, the truck collided with a private automobile resulting in the deployment of safety devices. Ms. Gillette suffered minor abrasion
## 3316 09/09/2003 02:12 pm (fblackmo) employee was cutting a branch to release vines and limbs when, the branch struck him on his right arm causing a cut. Supervisor: w. H. Moore 10/13/2003 11:26 am (gwhite)
## 3317 09/09/2003 02:42 pm (fblackmo) employee was removing a rock when, he came into contact with poison ivy. Supervisor: s. W. Nance
## 3318 09/09/2003 02:52 pm (fblackmo) employee states while keying work on daily basis she, experienced pain in her left wrist. Supervisor: susan stewart 09/26/2003 12:11 pm (gwhite) 3/22/2004 03:29 pm (fblackmo) continuation to right hand injury o
## 3319 09/09/2003 03:09 pm (fblackmo) employee was reaching in trunk to turn on pressure gas tank when, he felt pain in his right elbow area. Supervisor: william ballentine
## 3320 09/09/2003 03:18 pm (fblackmo) employee states, because a bolt was missing out of toilet seat she felt pain in his back while reaching for tissue. Supervisor: kevin whittington
## 3321 09/09/2003 10:23 am (fblackmo) employee states he experienced anxiety, ptsd, and emotional distress because of harrassment by his superior(captain keeler). Supervisor: captain keeler
## 3322 09/09/2003 10:39 am (fblackmo) employee was walking down hall when, she fell causing the injury to her right hip and shoulder. Supervisor: alison roach
## 3323 09/09/2003 10:54 am (fblackmo) employee had his hand on the trailer gooseneck while turning off mudbug when, his right middle was caught between the mudbug and trailer frame. Supervisor: robert r. White
## 3324 09/09/2003 11:37 am (fblackmo) employee was opening imaging machine when, the back plated of desk fell on her left knee and ankle. Supervisor: j. B. Dills
## 3325 09/09/2003 11:47 am (fblackmo) employee was attempting to remove a kitten from shop area when, kitten bit employee on his left thumb. Supervisor: charles hatley
## 3326 09/09/2003 12:17 pm (fblackmo) employee was pulling on scale when, the scale fell on his hand causing a cut to his knuckles on left hand. Supervisor: ben wilkins
## 3327 09/09/2003 12:28 pm (fblackmo) employee was working controls on the case excavator when, she felt pain in her left wrist. Supervisor; henry sturdivant
## 3328 09/09/2003 12:43 pm (fblackmo) employee was trying to catch a falling paint can when, he cut his right index finger. Supervisor: thomas foster bowser
## 3329 09/10/1999 09:10 am on 8/30/1999 employee must have pulled or strained a muscle during his work hours. He was operating the lowboy on 08/30/1999. He lifted ramp up on the lowboy.
## 3330 09/10/1999 09:32 am employee was removing old joist using a crowbar when crowbar slipped and employees hand struck drain pipe with enough force to cut two fingers. Cut left 2nd & 3rd finger.
## 3331 09/10/1999 09:44 am employee states that he was unloading a backhoe while standing on a hill and on wet grass, when his feet slipped and he fell.
## 3332 09/10/1999 10:40 am employee was cutting brush around bridges and got poison ivy on legs.
## 3333 09/10/2002 02:18 pm (fblackmo) employee was working on state road 1125 in tall grass when, he was bitten by a tick. Supervisor: j. M. Hux
## 3334 09/10/2002 02:55 pm (fblackmo) employee was helping to adjust trap bar on tandem dump truck, when his right hand was caught between the bar and bed. Employee pull his hand out cutting three of his fingers on his hand. Supervisor: j. D. Shelton
## 3335 09/10/2002 07:38 am (fblackmo) employee states that while mowing on state road 1103 in pender, grass got into his left eye. Supervisor: r. G. Crews
## 3336 09/10/2002 07:55 am (fblackmo) employee was sitting in a chair in the ticket booth. She went to roll the chair backwards when, a rag was caught between the wheels of the chair. Employee tumbled backwards hitting another chair, and falling to the flo
## 3337 09/10/2002 11:52 am (fblackmo) employee was pulling on tail gate to dislodge debris when, he felt pain in his lower back. Supervisor: r. G. Crews
## 3338 09/10/2002 12:17 pm (fblackmo) employee states that while pulling wheelbarrow off the back of his truck, he felt pain in his back. Supervisor: joe justice
## 3339 09/10/2002 12:31 pm (fblackmo) employee was using a chisel to cut a piece of plywood when, he cut his thumb on right hand. Supervisor: dennis baker
## 3340 09/10/2002 12:46 pm (fblackmo) employee was flagging traffic in macon county when he felt something bite him on his right leg near knee. Supervisor: w. H. Lynch
## 3341 09/10/2003 02:45 pm (fblackmo) employee states while moving a pipe hook from trailer to installed a driveway he, felt pain in his right arm. Supervisor: k. L. Anderson
## 3342 09/10/2003 02:58 pm (fblackmo) employee states while laying pipes his foot got stuck in some mud causing pain to his left knee. Supervisor: r. D. Sherrill
## 3343 09/10/2003 11:09 am (fblackmo) employee states while walking to his truck he, felt a sharp pain in his right foot. Supervisor: lindsey ethridge
## 3344 09/11/2000 05:00 pm employee was using hammer to remove housing from an engine; when a small piece of housing came off puncturing his left hand. Supervisor: thomas e. Deans, jr
## 3345 09/11/2000 05:04 pm employee was climbing over guardrail; when he lost his footing and hit his right leg on the edge of rail. Supervisor: r. D. Queen
## 3346 09/11/2000 05:08 pm employee was helping another employee check for noise in a vehicle (transmission); when he fell hitting the floor on his left hip and hand. Supervisor: james e. Isaac
## 3347 09/11/2000 05:15 pm employee was lifting and restacking steel guardrail posts; when he bent over to let go of the posts feeling a stretching pain in upper back area. Supervisor: charles f. Vick
## 3348 09/11/2000 05:20 pm employee was cleaning/clearing tree debris; when his skin came in contact with poison ivy. He has contact rash on neck, face, and right forearm. Supervisor: stephen g. Dillon
## 3349 09/11/2000 06:01 pm employee was walking when she fell on broken pavement straining/sprained her right hand. Supervisor: gail g. Smith
## 3350 09/11/2001 08:32 am (gsimmons) employee was pulling a u-channel sign out of the ground utilizing a hydraulic puller. The puller slipped off the post and struck employee in lower leg.
## 3351 09/12/2000 09:55 am employee was stepping down from truck; when he twisted his right knee. Supervisor: hugh williams
## 3352 09/12/2000 10:00 am employee was putting fuel in backhoe on back of trailer; when he stepped down he slipped on trailer step. Mr. Chappell strained/sprained his lower back, hips and pelvis areas. Supervisor: r. G. Davis
## 3353 09/12/2000 10:07 am employee was moving wooden pallets on 8/18/00. Mr. Bostic stepped on a nail in the pallet causing the nail to puncture his right foot. Supervisor: arthur glenn short
## 3354 09/12/2000 10:45 am employee was assisting in a driving training course; when he noticed pain in his neck. Supervisor: sgt. R. P. Brigman
## 3355 09/12/2000 10:56 am workers were clearing us 421 with weedeaters; when debris struck employee causing a deep cut on Mr. Wilkins right hand. Supervisor: ronnie woodcock
## 3356 09/12/2000 11:16 am employee was shoveling cold patch from truck bed on 8/28/00. He apparently twisted the wrong way and strained his lower back. Supervisor: ralph thomas mcmanus, jr
## 3357 09/12/2000 11:29 am employee was clearing brush to set a slope stake; when he stepped on an underground yellow jacket nest. He was stung several times while trying to escape on his right arm and left ear. Supervisor: stephen sparks
## 3358 09/12/2000 11:35 am employee was stepping out of vehicle to pick up a sign; when his ankle doubled up under him causing him to fall backward. Mr. Rominger sprained his left ankle. Supervisor: james n. Mixon
## 3359 09/12/2000 11:40 am employee was putting down asphalt with box sled; when he got his right foot jammed between railroad ties and asphalt sled. Mr. Anderson sprained his right ankle. Supervisor: j. C. Mundy
## 3360 09/12/2001 09:00 am (fblackmo) employee was working with crew installing rip rap fixing washout on the shoulder of the road. Bending over picking up rocks, employee strain his lower back. Supervisor: s. L. James
## 3361 09/12/2001 09:18 am (fblackmo) employee was conducting a road test. Employee asked the driver to pull over and stop the vehicle. The driver was doing about 40 mph in a 35 mph speed zone. The driver hit the gas peddle hard causing employee to slide
## 3362 09/12/2001 09:38 am (fblackmo) employee was loading a piece of equipment. While chaining down the equipment on trailer his co-worker pulled the chain tighter causing employee to mash his finger in rear wheel of tractor. Supervisor: m. L. Thompson
## 3363 09/12/2001 09:52 am (fblackmo) employee was loading straw onto truck when a few hours had passed employee began to start itching and breaking out with whelps on his upper body. Supervisor: c. C. Crump
## 3364 09/12/2001 10:22 am (fblackmo) employee was stacking empty paint drums(3 drums high) one fell and hit employee in the back. Supervisor: thomas johnson
## 3365 09/12/2001 10:53 am (fblackmo) employee was racking asphalt and felt a sting on left arm. Supervisor: r. L. Tipton
## 3366 09/12/2002 02:00 pm (fblackmo) employee stated while working on a cross line on state road 1556, came into contact with poison ivy. Supervisor: c. R. Whitfield
## 3367 09/12/2002 02:10 pm (fblackmo) employee stated debris form mowing tractor blew in his right eye. Supervisor: r. G. Crews
## 3368 09/12/2002 02:23 pm (fblackmo) employee was moving office files, and furniture when he felt pain in his back. Supervisor: r. D. Peeler
## 3369 09/12/2002 02:36 pm (fblackmo) employee was pulling a carton form a pallet with the use of a safety ladder. Employee did not see the carton on top of the one being pulled. The unseen carton fell causing a cut to his forehead. Supervisor: mike jeffe
## 3370 09/12/2002 02:47 pm (fblackmo) employee was picking up sign post when, splinter lodged in right forearm. Supervisor: arthur slaughter
## 3371 09/12/2002 02:58 pm (fblackmo) employee was performing inspection on concrete patching operation. Employee exited vehicle and closed drivers door with left hand. Employees right index and middle fingers were caught between truck cab and door. Super
## 3372 09/12/2002 03:08 pm (fblackmo) employee was sitting in training room when he was bitten by an insect on his ankle. Supervisor: russell ramsey
## 3373 09/12/2002 03:17 pm (fblackmo) employee stated he was checking fence when he stepped on a rock twisting his right knee. Supervisor: b. J. Vance
## 3374 09/12/2002 12:05 pm (fblackmo) employee slipped on outside deck while leaving crew lounge. Supervisor: e. M. Farrow
## 3375 09/12/2002 12:21 pm (fblackmo) employee was injured by having a unknown object strike his left eye while traveling on I-40 to a job site. Supervisor: il. D. Greene
## 3376 09/12/2002 12:33 pm (fblackmo) employee stated that he was walking to begin flagging and fell in a hole, which caused him to injury his right ankle. Supervisor; charlie e. Watson
## 3377 09/12/2002 12:52 pm (fblackmo) employee stated while bending over to pick up a u-post felt pain in his back. Supervisor: b. T. Coble
## 3378 09/13/1999 02:46 pm while tearing out old fence on sr 1433 employee came in contact with poison oak. Whole body covered.
## 3379 09/13/1999 03:19 pm employee came in contact with poison oak while tearing out old fence on sr 1433.
## 3380 09/13/1999 03:28 pm assisting geotechnical unit setting a barge in richmond county, got into a nest of ticks. (very small) did not see tick until I got back into the office that afternoon, starting feeling sick 08-18-199, went to doctor 09/03/1999.
## 3381 09/13/1999 03:47 pm employee was cutting brush & weeds at an intersection for sight distance and received several bee stings on the arms, neck and face.
## 3382 09/13/2000 03:31 pm employee was cutting trees when he lost his footing and twisted/sprain his right ankle. Supervisor: j. D. Shelton
## 3383 09/13/2000 03:42 pm employee and coworker was installing broom core; when Mr. Raynor felt pain in his left arm/shoulder muscle. Supervisor: r. M. Taylor
## 3384 09/13/2000 03:48 pm employee was lifting/moving heavy boxes off truck and stacking them; when he strained muscles in his neck. Supervisor: e. M. Farrow
## 3385 09/13/2000 03:58 pm employee was removing equipment from rear of vehicle; when he stepped up on rear tire he lost his footing. Mr. Price fell across the window ledge bruising the right side of his ribs. Supervisor: billy godwin
## 3386 09/13/2000 04:30 pm employee was trying to flip a pipe over; when his glove got caught on end of pipe cutting his right thumb. Supervisor: tommy kilpatrick
## 3387 09/13/2000 04:38 pm employee was studying when he noticed his left ankle starting to swell. He's not sure on the cause. Supervisor: r. W. Barney (sgt. Tim hickman)
## 3388 09/13/2000 04:48 pm employee was removing fallen trees when he came in contact with poison ivy. He has contact rash on various parts of his body including his forearms and in his right eye. Supervisor: ronald p. Wilson
## 3389 09/13/2000 04:55 pm employee was working in the attic when cut his right shoulder on a nail. Supervisor: m. S. Venable
## 3390 09/13/2000 05:06 pm employee was cleaning auger on leeboy paver with a bush axe; when the axe got caught by the auger and hit his right index finger. Supervisor: kent d. Boyer
## 3391 09/13/2000 05:10 pm employee was clearing road with a weedeater; when he got stung 3 to 4 times by bees. Supervisor: a. L. Smith
## 3392 09/13/2000 10:17 am employee was in ditch cleaning out cross line pipe; when he climbed out of ditch he fell on a piece of broken glass. Mr. Nooney cut his right arm. Supervisor: howard v. Inscoe
## 3393 09/13/2000 10:22 am employee was cutting tree limbs; when the limb sprang back pulling his right wrist and shoulder. Supervisor: richard d. Queen
## 3394 09/13/2000 10:27 am employee and coworker was carrying a 20' section pipe; when the pipe bumped the backhoe bucket causing the pipe to strike Mr. Phelps in his left leg. Supervisor: david l. Lane
## 3395 09/13/2000 10:34 am employee stepped on piece of lumber when a nail punctured his right foot on 8/11/00. Supervisor: t. K. Southard
## 3396 09/13/2000 10:41 am employees were cutting guardrails with a saw; when the rail jumped outward and struck Mr. Swaim's right thigh. Supervisor: eric allen schenz
## 3397 09/13/2000 10:56 am employee slipped and fell off wet fender on a boat trailer on 8/9/00. He bruised his right lower leg. Supervisor: r. L. Bowers
## 3398 09/14/1999 02:18 pm karyn was searching through boxes in 2lt patterson's closet for specific supplies. Set on box outside closet to give more room to search closet. Came out of closet, forgetting about box, and tripped on box and fell backwards. Bro
## 3399 09/14/1999 02:40 pm employee injured his right wrist while crossing the road. He felt his ankle give way causing him to fall to the ground. He did not feel pain in his arm/wrist until lunch time. He has two broken bones in the right wrist. Superv
## 3400 09/14/1999 02:46 pm employee was using a chemical called "o s-2", to clean the restroom, when the bottle dropped from the sprayer. The bottle hit the toilet and splashed into his eyes. Supervisor: randall ashmore.
## 3401 09/14/1999 03:02 pm employee cut his right thumb while sharpening a bush axe with a file. The axe slipped causing this injury. Supervisor: f. E. Faircloth
## 3402 09/14/1999 03:37 pm repairing bridge handrail got tick bite 02/04/2000 09:34 am
## 3403 09/14/1999 04:00 pm repetitious keying all day 8 hours a day.
## 3404 09/14/1999 04:10 pm employee stepped down off truck hurt left leg.
## 3405 09/14/1999 09:12 am employee was riding in ncdot truck, no air conditioning in truck, therefore, windows rolled down, bee flew in stung randy on right upper arm. 02/01/2000 01:26 pm
## 3406 09/14/1999 10:19 am employee started to go up steps at warehouse, wooden bench had been pulled from against wall and was in the way. Employee picked up bench to move it out of way and dropped bench on top of left foot. Employee experienced pain, sough
## 3407 09/14/1999 11:22 am walking down hill, stepped on board with a nail sticking up in it. Board was covered with leaves. Punture in ball of left foot. 10/05/1999 10:15 am 02/01/2000 01:17 pm
## 3408 09/15/1999 08:29 am employee was tightening nut on mower, pulled up too hard causing strain in lower back.
## 3409 09/15/2000 09:06 am employee was repairing street lights climbing on cabinets to replace photo cell; when he strained his left shoulder. Supervisor: sharon pitchford
## 3410 09/15/2000 09:10 am employee was attempting to clean out tar kettle with open flame; when the spray hose caught fire. Employee arms and face has second degree burns. Supervisor: r. E. Langley
## 3411 09/15/2000 09:18 am employee was weedeating on 8/31/00; when he came in contact with poison ivy plants. Mr. Cloninger has contact rash all over his body. Supervisor: a. L. Smith
## 3412 09/15/2000 09:22 am employee was clearing brush around bridge; when she came in contact with poison ivy plants. She has contact rash on face and both arms. Supervisor: k. E. Anderson
## 3413 09/15/2000 09:27 am employee was cutting boards on tablesaw; when his left little finger was cut by the saw blade. Supervisor: john farrow
## 3414 09/15/2000 09:38 am employee was driving on sr 1719 in union county; when debris blew into his left eye on 9/7/00. Supervisor: chris w. Burleson
## 3415 09/15/2000 09:42 am employee was attempting to enter state vehicle; when he struck his left knee on the fuel tank step. Supervisor: michael holmes
## 3416 09/15/2000 09:46 am employee was working in the field on 9/6/00; when he was stung by a bee on his left hand and arm. Supervisor: mojdeh masihpour
## 3417 09/15/2000 09:51 am employee was walking through sand dunes on 8/21/00; when he was bitten by a spider on his right ankle. Supervisor: joe thomas
## 3418 09/15/2000 10:10 am employee was trying to take out radiator while standing on a step. He stepped on bracket where he had to remove the bumper and loss his footing falling on his right knee. Supervisor: james e. Isaac
## 3419 09/16/2003 07:24 am (slee) vehicle #1 was traveling south on nc 125, the driver ran off the road on the right losing control of vehicle. Vehicle crossed the center line and ran off the road on the left. Vehicle struck a ditchbank and came to rest n
## 3420 09/16/2003 09:35 am (fblackmo) employee states while cutting a tree stumps, tree fell on his right leg. Supervisor: e. R. Elders
## 3421 09/16/2010 08:29 am (slee) employee was traveling north on hwy. 13/17 in the far right lane, when pov was crossing from e. Main st. And collided with Mr. Wiggin's vehicle. 09/16/2010 02:06 pm (slee) other person: portia c. Sherrod, williamston,
## 3422 09/17/2002 08:13 am (fblackmo) employee was conducting a road test. The customer was attempting to park the vehicle, but hit and drove over the curb onto the sidewalk causing the injury to her neck area. Supervisor: nikki broome
## 3423 09/17/2002 08:32 am (fblackmo) employee stated while weed eating on bridge, slipped on some mulch causing the injury to his right ankle. Supervisor: van ellis
## 3424 09/17/2002 08:58 am (fblackmo) employee stated he was climbing up onto dump truck when, he felt something pop in his left knee. Supervisor: joe justice
## 3425 09/17/2002 09:11 am (fblackmo) employee was shoveling cold patch into a pothole when he felt pain in his left knee. Supervisor: ralph thomas mcmanus jr
## 3426 09/17/2002 09:51 am (fblackmo) employee was disconnected the sweeper from the pickup truck and twisted his back causing pain in the lower back area and left side. Supervisor: iris h. Mccombs
## 3427 09/17/2002 10:14 am (fblackmo) employee was inspecting a structure purchased by the department of transportation in an area to be used for a future highway. Employee stepped on a nil that was hidden by debris. Supervisor: r. D. Tuttle
## 3428 09/17/2002 10:43 am (fblackmo) employee was stepping out of truck on state road 1710 when, he felt pain in his left ankle. Supervisor: jeremy b. Creech
## 3429 09/17/2002 11:00 am (fblackmo) employee was performing regular surveying duties when, he was bitten by a tick. Supervisor: a. R. Kozusko
## 3430 09/18/2000 03:10 pm employee has hearing loss in both ears due to exposure to high noise levels while operating shop machinery. Supervisor: dennis w. Baker
## 3431 09/18/2000 03:15 pm employee was stepping out of truck; when he heard a pop in his left foot. Supervisor: s. G. Dillon 11/6/2006 01:27 pm (fblackmo) claim closed. Clinched on 02/25/2005. Do not use.
## 3432 09/18/2000 03:26 pm employee was working on dot project; when he walked through a shallow ditch into a hole. Mr. Charlton strain/sprained his left foot. Supervisor: mojdeh masihpour
## 3433 09/18/2000 03:31 pm employee was examining possible flood vehicles, (which consisted of lifting spare tires & personal belongings inside of trunks), when he sprain/strain his right wrist. Supervisor: e. C. Bristle
## 3434 09/18/2000 03:39 pm employee was giving a road test on 8/30/00. Customer pulled into parking space and hit the gas instead of brakes and struck a tree. This action jerked the employee three times pulling muscles in his chest and shoulders. Superviso
## 3435 09/18/2002 01:54 pm (fblackmo) keyed from 18b form. Plaintiffs asbestosis was injurious and aggravated and/or accelerated other pulmonary and cardiac problems. Supervisor: not stated employee dates(charlotte location) January 1, 1988 - October 15, 200.
## 3436 09/18/2002 02:23 pm (fblackmo) employee was on back side of ditch cutting a tree, he spotted a snake an starting running. Employee slipped and fell into ditch causing his injury to his ankle. Supervisor: l. O. Ethridge
## 3437 09/18/2002 02:35 pm (fblackmo) employee was making modifications to guard rail when a piece of sharp metal cut his fingers on left hand. Supervisor: hosea blount
## 3438 09/18/2002 02:47 pm (fblackmo) employee was cutting brush around bridge on us 19 & 23 when, he came into contact with poison oak. Supervisor: terry j. Davis
## 3439 09/18/2002 03:08 pm (fblackmo) employee stated slipped on engine room entry stairs which were wet and oily. Employee grabbed handrail with left hand & twisted left shoulder. Supervisor: e. M. Farrow
## 3440 09/18/2002 10:13 am (fblackmo) employee stated that during a storm with high winds he went to open the front end of a loader. Wind caught the door, breaking the gas cylinder and smashed his left hand in between the door. Supervisor: r. T. Bland
## 3441 09/19/2000 02:49 pm employee was helping shrub site distance at 701 by-pass and west frink in whiteville. Employee claims that a limb from a tree was hung up in a vine. He claims he cut the vine so he could get limb. Mr. Long claims that when he went
## 3442 09/19/2000 03:42 pm employee was driving iron pin into stone with a sledge hammer; when the hammer slipped off the head causing him to twist/sprain his right elbow. Supervisor: r. J. Downes
## 3443 09/19/2000 03:47 pm employee was removing construction signs from truck (by mounting the truck from the side); when he slipped and sprained his right thumb. Supervisor: dwayne a. Bauguess
## 3444 09/19/2000 03:52 pm employee was working near another welder on 9/6/00; when the arc from the welder irritated Mr. Reynolds eyes. Supervisor: r. D. Sherrill
## 3445 09/19/2000 04:01 pm employee was climbing down off a athey loader; when his right little finger became caught on mirror brace. Supervisor: r. S. Minton
## 3446 09/19/2000 04:10 pm employee was working in a ditch laying driveway pipes; when he was bitten on the left foot by an unknown insect. Supervisor: s. W. Nance
## 3447 09/19/2000 04:18 pm employee was cutting brush on right of way; when he came in contact with poison ivy plants. He has contact rash on face, neck and both arms. Supervisor: w. D. Watkins
## 3448 09/19/2000 04:26 pm employee was disconnecting trailer; when the trailer raised up causing employee to fall on his left leg and ankle. Supervisor: j. C. Sloan
## 3449 09/19/2000 04:34 pm employee lost his footing when sign bounced off guardrail and struck his right hand chipping the bone in his thumb. Employee was helping relocate signs on steep embankment at overhead passes. Supervisor: t. J. Brooks
## 3450 09/19/2000 04:43 pm employee strained/sprained his right ankle while walking along ditch on construction site. Supervisor: steve gibbs
## 3451 09/19/2001 02:10 pm (fblackmo) employee was driving dump truck along highway 75 with his window down when, something flew into his left eye under his glasses. Employee had to pull over because he could not see. Employee was hauling dirt off the grad
## 3452 09/19/2001 02:28 pm (fblackmo) employee was removing signs from right of way and placing them in back of pickup truck. Employee had to twist some signs to get out of ground and lift them into back of pickup truck. Supervisor: e. A. Green
## 3453 09/19/2001 02:42 pm (fblackmo) employee and crew were clearing brush from bridges in buncombe county. While hedging, employee came into contact with poison ivy. Supervisor: terry j. Davis
## 3454 09/19/2001 02:58 pm (fblackmo) employee was climbing a ladder to change a sign when he felt pain in his left knee. Supervisor: timothy m. Foster
## 3455 09/19/2001 03:12 pm (fblackmo) employee was carrying supplies into the office when he tripped on the edge of the sidewalk and twisted his left knee. Supervisor: l. J. Cordell
## 3456 09/19/2001 03:23 pm (fblackmo) employee was nailing a ramp for ferry docks with a 4 lb hammer. He pulled the ligaments in his right arm. Supervisor: morris jones
## 3457 09/19/2001 03:41 pm (fblackmo) employee was cleaning up the ground at the elwell ferry. Employee was in the parking area near the ferry house. Employee had just parked and exited his vehicle. As he was walking, he stepped into a hole. The holes wer
## 3458 09/19/2001 04:02 pm (fblackmo) employee was lifting trash bags out of truck bed and strained lower back. Supervisor: carl church
## 3459 09/19/2001 04:14 pm (fblackmo) employee stated she fell on the stairs going from the first floor to the fourth floor. She fell on both knees and skinned the knuckles on her right hand. Employee stated her knees were hurting the following day. Super
## 3460 09/19/2001 04:26 pm (fblackmo) employee was operating a motorgrader, when employee got bitten by a spider on the upper backwhile driving motorgrader. Supervisor: matthew oliverson
## 3461 09/19/2001 04:39 pm (fblackmo) employee was trimming a tree when the back hoe pushed another tree down. Employee didn't have enough time to move. The tree struck employee on his right side. Supervisor: jack rollins
## 3462 09/19/2001 04:54 pm (fblackmo) employee requested his blood pressure to be checked. Employee pressure was normal. Supervisor: james m. Laviner
## 3463 09/19/2001 09:26 am (fblackmo) employee was moving truck into shop to make repairs when he injured his knee. Supervisor: gerald brabble
## 3464 09/19/2001 09:39 am (fblackmo) employee was arranging erosion control stone on a temporary check dam. Stone had been dumped in ditch and employee was arranging stone by hand to bring dam into compliance. Supervisor: m. R. Nichols
## 3465 09/19/2001 09:54 am (fblackmo) employee was lifting a cylinder form a cart on one side of him moving it to the other side of the floor causing the injury to his back. Supervisor: chris peoples
## 3466 09/19/2001 10:27 am (fblackmo) employee stated he was lifting a stack of rebar on one end to put in backhoe bucket so it could be loaded onto truck when, something pulled in his lower back causing instant pain. Supervisor: eric allen schenz
## 3467 09/19/2001 10:40 am (fblackmo) the vibratory roller was being transported on the low-boy. During transport the load shifted causing additional tension on the flip-type binder. While attempting to release the binder, the employee felt a sharp pain in
## 3468 09/19/2001 10:54 am (fblackmo) employee was operating a boom mower cutting bace slopes of ditch. The right rear of tractor fell into a hole, dropping tractor down and causing a jarring motion to employees back. Supervisor: c. L. Lucas
## 3469 09/19/2001 11:13 am (fblackmo) employee had climbed chute on athey loader to grease top fittings, lost footing and struck knee on chute frame. Supervisor: david shepard
## 3470 09/19/2001 11:28 am (fblackmo) employee was helping change wooden pile under bridge. He felt a pain in his back. He was helping pull old pile up from under bridge with a rope. Supervisor: w. D. Watkins
## 3471 09/19/2001 11:41 am (fblackmo) employee was stepping out of truck when the door slammed shut on his finger. Supervisor: a c powell
## 3472 09/19/2001 12:05 pm (fblackmo) employee was shoveling mud out of the wash rack when he slipped and fell, hitting the lower part of his back on a hump of mud. Supervisor: c. R. White
## 3473 09/19/2001 12:17 pm (fblackmo) employee was operating a two man post hole auger with an inmates help, the auger hit a root or rock causing employee to injure his lower back. Supervisor: john w. Stiles
## 3474 09/19/2001 12:41 pm (fblackmo) employee was processing license(taking pictures) when she tripped on chair provided for digital work station. The trip caused immediate back pain. After the incident was reported, employee was offered medical attention
## 3475 09/19/2001 12:56 pm (fblackmo) while slope staking on state road 1394 in haywood county a dog came up to employee. The dog did not seem like it was going to bite, but when employee walked pass the dog, it lunged for his leg and bite him. Supervisor:
## 3476 09/19/2003 02:12 pm (fblackmo) employee state that during 12/4/02 ice storm, he was working with a crew on old charlotte road, cutting and pulling limbs out of roadway to clear travel lanes. During the process, he felt a sting in his stomach area.
## 3477 09/19/2003 03:34 pm (fblackmo) employee was standing at rear of dump truck directing the driver to dump a load when, a private vehicle past by work site causing debris to fly into his left eye. Supervisor: w. H. Monroe
## 3478 09/19/2003 03:44 pm (fblackmo) employee was moving a box when, she felt pain in her back. Supervisor: wayne hurder
## 3479 09/19/2003 04:00 pm (fblackmo) employee was driving a survey stake into road when, he struck his left index finger causing a laceration. Supervisor: r. J. Hollifield
## 3480 09/19/2003 04:22 pm (fblackmo) employee stop to fuel up the tractor when, he stepped down from the truck he turned to closed door and twisted his right ankle. Supervisor: gene strickland 10/03/2003 11:49 am (gwhite)
## 3481 09/19/2003 04:33 pm (fblackmo) employee was stepping out of truck when, he felt pain in his left foot. Supervisor; a. S. Bailey
## 3482 09/19/2003 04:43 pm (fblackmo) employee states while mowing rig a piece of debris flew into his right eye. Supervisor; clinton b. Little
## 3483 09/19/2003 07:38 am (fblackmo) employee states while operating a rubber tire excavator he, felt pain in his back, neck, head, and eyes due to the motion of the machine. Supervisor: ken a. Mason
## 3484 09/19/2003 07:59 am (fblackmo) employee states while cleaning a cement mixer the top of the mixer slammed down striking him on his left arm and chest area. Supervisor: d. R. Ross
## 3485 09/19/2003 08:22 am (fblackmo) employee was flagging traffic when, he felt very weak and dizzy. Employee states he slightly passed out twice. Supervisor; james van ridddick
## 3486 09/19/2003 08:42 am (fblackmo) employee was loading distributor from tanker. Employee was removing filler hose from distributor, asphalt was blown form filler spout out onto employee. Supervisor: steve milton
## 3487 09/19/2003 09:51 am (fblackmo) employee was operating a rubber tire roller when, he lost control and ran off the road hitting a tree causing the injury to his right arm and right knee. Supervisor: henry kirk
## 3488 09/19/2003 10:02 am (fblackmo) employee was using loader to load concrete slab when, he shut the door on his right hand causing the injury to his center finger. Supervisor; patrick norman
## 3489 09/19/2003 10:10 am (fblackmo) employee was cleaning out a driveway pipe when, he became dizzy and nauseated. Supervisor: robert g. Davis
## 3490 09/19/2003 10:24 am (fblackmo) employee was conducting a site inspection when, he tripped and fell causing the injury to his left shoulder and side. Supervisor: ted sherrod
## 3491 09/19/2003 10:37 am (fblackmo) employee was lifting a jacking block when, he felt pain in his lower back. Supervisor: c. K. Woodby
## 3492 09/19/2003 10:47 am (fblackmo) employee states while conducting a inspection he, found a tick on his lower back on right side. Supervisor: e. J. Bunn
## 3493 09/19/2003 11:41 am (fblackmo) employee was cutting weeds around bridge when, he found a tick on his upper thigh area. Supervisor: j. E. Smith
## 3494 09/19/2003 11:50 am (fblackmo) employee was cutting right of way with chain saw when, he felt pain in his back area. Supervisor: r. E. Austin
## 3495 09/19/2003 12:12 pm (fblackmo) employee was conducting a inspection when, a private owned vehicle stuck his vehicle causing the injury to his left elbow and neck. Supervisor: tim jackson
## 3496 09/20/2000 03:23 pm employee was removing life jackets from box; when the lid fell on her left hand. Supervisor: jeff m. Credle
## 3497 09/20/2000 03:33 pm employee was driving a frontend loader on 8/23/00; when he strained his back while bouncing up and down on loader. Supervisor: tommy kilpatrick
## 3498 09/20/2000 03:48 pm employee was working on acorn drive on 9/6/00; when a twig entered his ears. He was bending down to drive a wooden stake in the ground. Supervisor: c. N. Edwards
## 3499 09/20/2000 03:59 pm employee was weighing a truck on us 1 @ spring forest road on 8/1/00. As he attempted to remove scale between tires it got caught causing him to strained his right shoulder. Supervisor: lt. E. Coleman
## 3500 09/20/2000 04:11 pm employee was putting rocks under pipe to level it; when the rock and pipe caught ring on his left middle finger. Supervisor: tommy kilpatrick
## 3501 09/20/2000 04:17 pm employee was getting into truck; when the door slammed back and bent his left thumb back toward his wrist. Supervisor: j. D. Hensley
## 3502 09/20/2000 04:33 pm employee was mowing around plant bed when she put her left hand up on rollbar she pinched her left little finger. Supervisor: k. B. Williams
## 3503 09/20/2000 04:47 pm employee was tightening bolt on bridge handrail; when the socket slipped off and struck his right hand and right index finger. Supervisor: r. E. Cox
## 3504 09/20/2000 04:56 pm employee was attempting to hook up a tow type air compressor; when dump truck rolled backwards causing his right arm to become wedged between truck and compressor. Supervisor: c. N. Edwards
## 3505 09/20/2001 10:04 am (fblackmo) employee was changing a tire on a truck rim, when completed he picked up tire to place in tire cage to pump air and strained lower back. Supervisor: gary m. Wilson
## 3506 09/20/2001 10:16 am (fblackmo) employee was transferring a 35 pound scale from one vehicle to another, in his attempt to lift the scale in a awkward manner, employee pulled muscles in his right biceps. Supervisor: kathy vollert
## 3507 09/20/2001 10:29 am (fblackmo) employee was loosening a hydraulic hose with an adjustable wrench and separated his shoulder joint. Supervisor: r. N. Wright
## 3508 09/20/2001 10:41 am (fblackmo) employee was trying to remove historical marker form post, set screw was stripped out. Employee tried to loosen it by shaking and picking up on sign, pulled muscle in back. Supervisor: jim evans
## 3509 09/20/2001 11:05 am (fblackmo) employee was getting a piece of cable from under the shed. The cable was beside a ladder. When he attempted to move the ladder to get the cable the wasp started swarming and stung employee on his arms and head. Superv
## 3510 09/20/2001 11:17 am (fblackmo) employee was stepping up into the cab, when his right foot slipped off the bottom step and hit the ground. As this happened the jolt of hitting the ground caused his jaw to slam together causing damage to a tooth. Supe
## 3511 09/21/1999 01:39 pm employee was directing truck into stone spreader. Employee had free hand resting on spreader when dump truck backed into spreader pinching employees fingers on right hand requiring 7 stitches.
## 3512 09/21/1999 01:52 pm employee was operating tandem at the time of accident. Dump truck flipped over and injury occurred. Left elbow broke in three places.
## 3513 09/21/1999 03:24 pm employee injuries is in his right shoulder due to repetitive movement while doing test densities on projects. Supervisor: frank j. Gioscio.
## 3514 09/21/1999 03:33 pm while driving north on stevens mill road, a private vehicle crossed yellow center line, striking Mr. Marsh's driver side mirror on state truck. The broken glass came inside the truck, getting in employees eyes and hair. Supervis
## 3515 09/21/1999 03:43 pm employee injured his left hip and lower back while carrying planting bags of day lillies. Mr. Wilkins was walking along I-40 dropping plants in holes, when he later complained of lower back and hip pain. Supervisor: mark conner.
## 3516 09/21/1999 03:52 pm employee was lifting tv from a cart to move into another office, when she injured her shoulder, neck, and back strain. Supervisor: dempsey miller.
## 3517 09/21/1999 03:58 pm Mr. Kamil has injuries to his right hand and wrist due to repetitive motion while using the computer. Supervisor: gary e. Parker
## 3518 09/21/1999 04:13 pm employee was putting up signs for a storm, when he sat down in his pickup truck a bee stung him on his lower back. Supervisor: t. C. Tilley
## 3519 09/21/1999 04:17 pm Mr. Stepp injured his right forearm while pulling brush, when he cut his arm with chainsaw. Supervisor: t. L. Hall
## 3520 09/21/2000 09:08 am employee states she has pain in both wrists due to repetitive motion caused by keyboarding on the job. Supervisor: j. P rhyne
## 3521 09/21/2000 09:30 am employee was bending down to inspect a weld on bridge deck. While bending he twisted slightly for a closer look when he pulled muscles in his lower back. Supervisor: l. L. Mitchell
## 3522 09/21/2001 02:42 pm (jgibson) accident occurred on nc 182 in fallston (cleveland co. ), nc on September 12, 2001 at 4:08 pm.
## 3523 09/21/2001 09:22 am (fblackmo) employee was mowing subdivision when a copper ground rod got caught in the blades of the mower. When employee tired to pick the rod out it burnt through his gloves an onto his hand and fingers. Supervisor: steve dillon
## 3524 09/21/2001 09:40 am (fblackmo) employee was in a designated work zone rolling asphalt. Traffic had been shifted to one lane. Two people were on the roller. One employee got off the roller to set up cones and as he did so, he went into the path of o
## 3525 09/21/2001 10:00 am (fblackmo) employee was passenger in vehicle that ran off the road while traveling south on 41-111. As the driver attempted to steer back onto pavement, he hit a driveway which caused the truck to skid across the northbound land a
## 3526 09/21/2001 10:24 am (fblackmo) employee was working on night-time concrete deck, on us 85 business. Employee attempted to pass the contract worker on narrow overhang. Employee and the contractor miscommunicated and bumped into each other. Employee
## 3527 09/21/2001 10:50 am (fblackmo) employee was cutting a log off a tree. When he was finished, he stepped back and tripped over the brush and fell and hit his elbow. Supervisor: w. H. Lynch
## 3528 09/22/1999 03:31 pm employee was setting up water pump for storm cleanup in kill devil hill & he injured his rt. Shoulder when he was moving the hose to the pump.
## 3529 09/22/2000 10:26 am employee made wrong judgement call by riding in a car with a broken seat. He could not get the seat to push back away from the dash in order to give road test. Mr. Bates strained his lower back on 9/8/00. Supervisor: sandra n.
## 3530 09/22/2000 10:32 am employee slipped and fell in a ditch straining muscles in his groin area on 8/2/00. Supervisor: lt. C. E. Coleman
## 3531 09/22/2000 10:44 am employee was clearing work sites when he came in contact with poison ivy plants. He has contact rash on both arms and his right leg. Supervisor: eric midkiff
## 3532 09/22/2000 10:52 am employee was attaching an orange marker flag to corner of blade; when the strap broke striking him in his left eye and forehead. Supervisor: d. L. Carpenter
## 3533 09/22/2000 10:57 am employee was pulling weeds and vines; when he came in contact with poison ivy plants. Mr. Farrington has contact rash on both arms and face. Supervisor: c. C. Crump
## 3534 09/22/2000 11:02 am employee was using a grinder on jobsite; when dust particles blew into his right eye. Supervisor: a. D. Cloer
## 3535 09/22/2000 11:17 am a coworker dropped an aluminum pan of soil on Mr. Fenner's left middle finger on 8/18/00. Supervisor: mehdi haeri
## 3536 09/22/2000 11:29 am employee was working on a herbicide truck when he jumped off a two foot ladder. Mr. Farner felt a sharp pain in his right groin area. Supervisor: c. H. Sneed, jr
## 3537 09/23/2002 03:25 pm (fblackmo) employee was preparing to move to next asphalt patch. Employee leaned forward to place rake against the front rail, driver accelerated the spreader throwing employee backwards into the rail. Supervisor: r. E. Brake
## 3538 09/23/2002 03:42 pm (fblackmo) employee was walking toward ferry when, his foot slipped. Supervisor: t. L. Gray
## 3539 09/24/1999 10:28 am Mr. Wilder slipped and fell off the back of dot truck while removing debris from highway and rescuing a man from rising flood water. Mr. Wilder was swept away by water and drowned causing his death.
## 3540 09/24/1999 11:00 am Mr. Summerlin was attempting to go in to work following hurricane floyd (essential employee), when his private vehicle was swept off the road from high water. He subsequently drowned causing his death. Supervisor: dennis ezzell.
## 3541 09/24/2002 02:12 pm (sshort) employee was using the weed eater on 8/29/02, when something flew under his safety glasses and struck his left eye. This caused the intraocular implant in his left eye to dislocate. Supervisor: j. C. Gunter
## 3542 09/24/2003 02:21 pm (fblackmo) employee was returning to her office form another part of the building when, she slipped and fell on the marble floor. Supervisor: bonnie f. Tripp 10/16/2003 09:24 am (gwhite)
## 3543 09/24/2003 02:31 pm (fblackmo) employee was performing inspection duties when, he stepped into a ditch and lost his footing causing the injury to his upper back. Supervisor: frank j. Gioscio
## 3544 09/24/2003 02:44 pm (fblackmo) employee fell on riprap while brush-cutting causing the injury to his left hand. Supervisor: robbie beach
## 3545 09/24/2003 03:24 pm (fblackmo) employee was climbing into motor-grader and hit his elbow on the handrail supervisor: t. Jordan
## 3546 09/24/2003 03:35 pm (fblackmo) employee was cleaning out the inside of asphalt tank when, climbing down his ring finger got caught between a piece of metal. Supervisor: leslie reynolds
## 3547 09/24/2003 03:45 pm (fblackmo) employee was attempting to dislodge blade with a hammer when, the blade fell off striking him on his right foot. Supervisor: j. R. Riley
## 3548 09/24/2003 04:01 pm (fblackmo) employee states he cut his finger while removing bolts. Supervisor: derek smith
## 3549 09/24/2003 04:12 pm (fblackmo) employee was working with a sledge hammer to break the bead of a flat tire when, he pulled back to far striking his right ankle. Supervisor; leroy farrish
## 3550 09/24/2003 08:50 am (fblackmo) on tuesday 08/19/03 employee was working on state road 1100 when, he was bitten by a tick on his left shoulder. On 08/26/03 employee was told he had an infection due to a tick bite. Supervisor: t. A. Woody 5/27/2004 10
## 3551 09/24/2003 09:05 am (fblackmo) employee states while shoveling asphalt from a dump truck he, felt pain in his lower right arm. Supervisor: j. D. Holton
## 3552 09/24/2003 09:28 am (fblackmo) employee was stacking bags of concrete mix when, the concrete shifted and fell on him. Employee braced himself with his hand causing pain in his right wrist/hand. Supervisor: d. S. Lee
## 3553 09/24/2003 09:41 am (fblackmo) employee was attempting to pull up signs to remove them form roadway when, he came into contact with poison ivy. Supervisor: w. E. Mcclendon jr
## 3554 09/24/2003 09:50 am (fblackmo) employee states while sitting at her desk a insect of some kind bite her on the left wrist. Supervisor: pamela g. Harrington
## 3555 09/24/2003 10:26 am (fblackmo) employee sustained a cut under his right eye from the use of a five gallon plastic bucket. Supervisor; henry kirk
## 3556 09/24/2003 10:40 am (fblackmo) employee trip while walking up stairs after giving a road test causing the injury to his left shoulder. Supervisor: s. N. Harris
## 3557 09/25/2000 10:49 am employee was picking up a 25 pound rock in roadway; when he strained his lower back. Supervisor: d. L. Carpenter
## 3558 09/25/2000 10:56 am employee was walking around building when he tripped and fell over mower safety shield onto tractor tire injuring his lower back. Mr. Blount was scared by a cat causing this injury. Supervisor: s. E. Watson
## 3559 09/25/2000 11:21 am employee was moving a piece of lumber; when loose dirt particles gave way underneath her feet. Her right foot slipped down the bank causing her to twist the left knee. Supervisor: james calvin bostic 10/13/2000 09:06 am
## 3560 09/25/2001 03:10 pm (slee) employee was traveling south o nc 41/111 when he ran off the road. As he was attempting to steer back onto pavement he hit a driveway which caused the truck to skid across the northbound lane, which resulted in the truck ro
## 3561 09/25/2001 09:04 am (fblackmo) employee strain his back because, he was holding onto a cable connected to a pipe as it rolled from the backside of the ditch. Supervisor: r. A. Mccarley
## 3562 09/25/2001 09:22 am (fblackmo) employee was placing hydraulic motor onto spline of rear roller. Employee was supporting it with one hand as he was reaching for some attachments with the other, the motor slipped and fell onto left hand mashing ring fi
## 3563 09/25/2001 11:13 am (fblackmo) employee was on 4th floor leaving office 418 to go to office 415. Floor was wet. Employee slipped on wet floor and fell onto her shoulder. Supervisor: c. H. Matthews
## 3564 09/25/2001 11:27 am (fblackmo) employee standing inside the guardrail, large truck moved toward employee, backed, fell over guardrail, landing on tail bone. Supervisor: mark e. Stafford
## 3565 09/25/2002 10:17 am (sshort) employee was removing tree limbs from right of way, when she came in contact with poison ivy plants. She has contact rash on face, neck, and her left arm. Supervisor: w. E. Mcclendon, jr.
## 3566 09/25/2002 10:27 am (sshort) employee was holding bucket on the backhoe so a shop employee could drive a pin back in place. While hitting the pin part of it; a piece of metal flew off and hit him in his left forearm. Supervisor: k. J. Hazelwood
## 3567 09/25/2002 10:51 am (sshort) employee has bruises and cuts to both arms and face. Mr. Mitchell was traveling east on memorial highway, when his private vehicle ran off the right side of the road. His car came to rest on an embankment. Supervisor:
## 3568 09/25/2003 08:31 am (fblackmo) employee states while stepping up into truck, she jabbed down to hard on her right foot. Supervisor: m. Venable
## 3569 09/26/2000 04:42 pm employee stated that she pulled muscles in her back while loading straw onto truck. Supervisor: j. D. Houston
## 3570 09/26/2000 04:57 pm employee was clearing vegetation with a bushaxe; when a thorn stuck into his left middle finger. Supervisor: mark crook
## 3571 09/26/2000 05:03 pm employee was climbing off backhoe; when he felt a sharp pain in his right knee. Supervisor: n. S. Gibson
## 3572 09/26/2000 05:10 pm employee tripped over a laptop bag in her office while trying to get up from chair. The handle caught her foot and made her fall against the desk. Ms. Jones bruised her left hip. Supervisor: tony spence
## 3573 09/26/2001 10:28 am (fblackmo) employee was loosening a hydraulic hose fitting underneath a wood chipper, fitting broke loose suddenly, causing the wrench employee was using to slip off fitting striking employee in mouth. Cracked upper teeth. Superv
## 3574 09/26/2001 10:55 am (fblackmo) employee states that when using computer to issue and retreive records and giving information to customers her hands and wrist hurt. Fingers have been numb feeling for the past four months, the pain has been running up
## 3575 09/26/2001 11:13 am (fblackmo) employee was working on lonnie walker road clearing the right-of-way cutting trees when, he came into contact with poison ivy. Supervisor: rick helms
## 3576 09/26/2003 11:42 am (fblackmo) employee was weedeating on parkway when, he was stung by bees. Supervisor: ted burns
## 3577 09/26/2003 11:51 am (fblackmo) employee was driving a state vehicle and made a lane change when, another driver blew his/her horn, employee jerked his head to look and felt a sharp pain in his neck area. Supervisor: j. J. Anderson jr
## 3578 09/27/1999 02:39 pm employee pulled a muscle in her lower back while lifting picnic table onto the truck. Supervisor: t. L. Gray
## 3579 09/27/1999 08:55 am employee tried to get into passenger side of vehicle. Got halfway onto seat, lost balance, and fell to the ground. Struck his right hand on a rock or brick.
## 3580 09/27/1999 09:17 am employee was cutting right of way on sr 1152 and liquid from poison oak flew from brush and came in contact with skin. Both arms and stomach
## 3581 09/27/1999 09:31 am employee states that he was standing near catch basin while prot-rooter was pumping out basin, hose came out and started spraying water everywhere. Employee says he started running to get out of the way, when he turned to run he ra
## 3582 09/27/1999 10:12 am employee was exiting the cab of dot pick-up truck to do inspection on project. As she stepped on her left foot, her leg twisted slightly, causing the back of the lower left leg to be in pain.
## 3583 09/27/1999 12:04 pm Mr. Honaker was traveling southbound in the right lane of us 220, when his vehicle was hit from the rear by a tractor trailer. The employee had the left arrow board flashing, strobing lights activated and attenuator in position in
## 3584 09/27/2001 04:30 pm (fblackmo) employee went to move saw and as he turned, he felt a pain in his back and had some leg numbness. Supervisor:
## 3585 09/27/2001 04:46 pm (fblackmo) employee was operating a dump truck, ran off onto shoulder, truck over-turned and rolled over. Supervisor: c. N. Edwards jr
## 3586 09/27/2002 01:16 pm (sshort) employee was getting into pickup truck on 9/5/02; when he saw the toolbox open. Mr. White shut the toolbox and as he started to step back his left hand was in the door track. The wind blew the door shut crushing his left
## 3587 09/27/2002 01:30 pm (sshort) employee stated when trying to disconnect the roller form his truck, he felt a pain in his neck on 9/17/02. Supervisor: wayne knight
## 3588 09/27/2002 10:34 am (sshort) employee was driving a dump truck on a two-lane road. When a privately owned flatbed truck passed him on the road. The truck was hauling brush, when a limb busted the mirror on his truck. His window was down and glass f
## 3589 09/27/2002 10:43 am (sshort) employee was working in a pavement widening crew on sr 2695 (wheeler road), when he came in contact with poison ivy plants. Mr. Presnell has contact rash on both arms, left wrist, in both eyes, on his back and also his he
## 3590 09/27/2002 10:50 am (sshort) employee was operating belts on a spreader on 5/3/02, when he later found a tick on his left hip. Supervisor: w. G. Wrenn
## 3591 09/27/2002 11:03 am (sshort) employee was dismounting from a tandem dump truck on 8/6/02. His foot slipped, causing him to fall striking his right knee. Supervisor: d. S. Lee
## 3592 09/27/2002 11:10 am (sshort) employee stated he has numbness in his left leg and left arm. It was thought at the time of these symptoms, that it was because of the heat. Supervisor: a. S. Bailey
## 3593 09/27/2002 12:13 pm (sshort) employee was helping push a railing post back, when he stuck his left hand palm on a broken rusty nail. Supervisor: terry l. Harris
## 3594 09/27/2002 12:20 pm (sshort) Mr. Macemore right eye began bothering him on 9/17/02. Mr. Macemore thinks a foreign object entered his eye on 9/16/02 while working. Supervisor: s. B. Hudspeth
## 3595 09/27/2002 12:26 pm (sshort) employee had just finished cutting several tree limbs from roadway, when he used his t-shirt to wipe sweat from his face. Foreign objects from the limbs and sawdust got into his right eye. Supervisor: m. L. Poe
## 3596 09/27/2002 12:32 pm (sshort) employee was getting off of scaffold when he fell to the ground. His pants pocket got caught on the walk board on 9/12/02. When Mr. Mcintyre returned to work on 9/16/02, he was complaining about his back and knees hurti
## 3597 09/27/2002 12:41 pm (sshort) employee was placing rocks around pipes, when an inmate dropped a rock on his right hand middle finger. Supervisor: mark turlington
## 3598 09/27/2002 12:47 pm (sshort) employee was checking work area where pipe was to be laid on 9/5/02. Mr. Baucom stepped into a hole covered with high grass and strained his lower back. Supervisor: jerry hildreth
## 3599 09/27/2002 12:53 pm (sshort) employee was picking up tree limbs to put into the chipper machine, when a limb got hung on another limb. When the limb jerked free, it struck him back in his right testicle. Supervisor: a. S. Bailey
## 3600 09/28/1999 01:38 pm employee was attempting to apply brakes on mower, when the brakes failed. A state crew cab pickup coming westbound on the same road avoided the cab. The mower flipped over in the ditch scratching Mr. Williams arm. Supervisor: a
## 3601 09/28/1999 01:47 pm Mr. Musselwhite turned to run to truck to get his hard hat, when he tripped and fell. He sprained his left ankle. Supervisor: derwin strickland
## 3602 09/28/1999 01:54 pm Mr. Crocker sprain/strain his right knee and ankle while attempting to step over guard rail. He also hit his right shoulder, arm, left hand and his head. His foot hung on to the top of guard rail causing him to fall. Supervisor
## 3603 09/28/1999 02:02 pm Mr. Turner was driving on sr 1940 too fast for conditions. He lost control of the vehicle leaving the road and hitting a telephone pole. His mouth-bottom lip was split requiring 2 stitches. He also fractured his right knee cap.
## 3604 09/28/1999 04:07 pm employee was getting out of tantum dump truck and slid off top step and knocked breath out of him hurting his back and neck. Step was wet due to rain.
## 3605 09/28/1999 11:19 am employee injured his left index finger while installing erosion control devices. He was placing stones, when another stone hit him on his index finger. Supervisor: l. W. Currin
## 3606 09/28/2000 11:01 am employee was eating lunch outside on 8/31/00 and fainted falling back hitting his left temple. Supervisor: m. W. Little
## 3607 09/28/2000 11:35 am employee has pain in her right wrist due to repetitive motion in keyboarding. Supervisor: lyndia dianne rowe
## 3608 09/28/2000 11:45 am employee was working on 8/15/00; when he had an allergic reaction to herbicides. Mr. Dew has rash and welts on both arms. Supervisor: robert d. Simpson
## 3609 09/28/2000 12:03 pm employee fell against anchor on port bow, striking her right cheek on the anchor stock. Employee was working on ferry vessel. Supervisor: t. L. Gray
## 3610 09/28/2000 12:07 pm employee was loading dirt onto trucks with a frontend loader; when the truck backed into the loader jerking the wheel. Employee pulled muscles in his left arm. Supervisor: eddie gurganious
## 3611 09/28/2000 12:15 pm employee was using a chain saw clearing roadways (repetitive motion) causing tendonitis in his left wrist. Supervisor: m. S. Reese
## 3612 09/28/2000 12:19 pm employee was preparing to operate a carry all truck on 9/21/00; when a fly flew into his right ear. Supervisor: h. E. Allen
## 3613 09/28/2000 12:35 pm employee stepped out of vehicle just when a truck was passing by. The truck blew a foreign object in Mr. Saunders right eye. Supervisor: kevin bowen
## 3614 09/28/2000 12:41 pm employee was cutting trees when the wind blew the tree back; pinning employee left arm between bucket and the tree. Supervisor: marty c. Tillman
## 3615 09/28/2000 12:59 pm employee was walking down slope at bridge replacement site on 9/26/00. Mr. Lambert boot was caught on a rock that caused him to fall and hit his forehead on a rock. He has abrasions on hand, legs, and shoulders. Supervisor: gre
## 3616 09/28/2001 08:42 am (fblackmo) employee was struck/ran over by a backing excavator operated by a contractor (Mr. Hinton). Supervisor: c. F. Edwards, cme 4/20/2007 11:17 am (fblackmo) *has a attorney*
## 3617 09/28/2001 09:19 am (fblackmo) employee, officer knight was on patrol, he was struck in the rear by a pickup truck. Supervisor: sgt. Henson
## 3618 09/28/2001 09:37 am (fblackmo) employee was exiting a vehicle at work site, when stepping out employee twisted his right ankle. Supervisor: h. L. Rich
## 3619 09/28/2001 09:55 am (fblackmo) employee was spreading rebar at the location of a future bridge column. While pulling the rebar employee felt a pain in his back under his right shoulder blade. Supervisor: k. T. Cross
## 3620 09/28/2001 10:14 am (fblackmo) employee was rolling tarp up on truck when the bar used to crank it slipped off and struck employee above left eye. Supervisor: henry sturdivant
## 3621 09/29/1999 08:04 am employee was unloading flatbed when a piece of lumber came down on his leg causing a laceration on right lower leg. 02/01/2000 01:04 pm
## 3622 09/29/1999 08:19 am as employee opened entrance door to building, employee caught left foot on bottom corner of door. Left toe bruised.
## 3623 09/29/1999 08:58 am employee was rolling a tire to be put on equipment when rolling tire over a drop cord he lost balance of tire. Trying to catch tire he strained his groin area.
## 3624 09/29/1999 10:09 am Mr. Sharpe strained muscles in his neck, back, and right forearm on May 5, 1999. His patrol car was stopped in traffic and it was rear-ended by another private vehicle. Supervisor: g. J. Woodard note: Mr. Sharpe is a police of
## 3625 09/29/1999 10:16 am Ms. Fisher has injuries due to carpal tunnel syndrome in 6th & 7th vertebrae and across both shoulders. She stated the injury occurred from taping, binding and moving adt books. Supervisor: cassandra sherrod
## 3626 09/30/1999 08:10 am employee has a swollen left ring finger due to keyboarding on jobsite. Supervisor: lyndia dianne rowe.
## 3627 09/30/2003 09:30 am (slee) while the dot vehicle was parked on the shoulder it was rear ended by a private vehicle moving west bound on I-485.
## 3628 09/30/99 08:00 am employee was swinging a brush ax cutting a hedgebush, when he felt a slight pain in his lower back and left upper hip area. Supervisor: e. M. Hagan
## 3629 1 pt attacked another & EE went to break them up, pt & EE went to the floor. EE landed on his rt side. Bruised rt front lower ribs.
## 3630 1/10/2008 03:02 pm (blgay) employee was working on pipe replacement and got poison ivy on his left arm. Supervisor: e. L. Hager
## 3631 1/10/2008 03:19 pm (blgay) employee was reaching to flip the petrosonic switch in the main office. As employee reached she felt a pull in her right lower back and started feeling pain in her right leg three days later. Supervisor: mark ross
## 3632 1/10/2008 08:19 am (blgay) employee was sitting down on the bridge floor with his feet in a hole putting in stripping. When employee got up, his right foot got caught between the joist causing him to twist his right knee. Supervisor: w. T. Lowery
## 3633 1/10/2008 08:28 am (blgay) employee was putting wood in wood stove at haywood maint. Shed and his left hand got caught between the stove door and wood. Mashing his left middle finger. Supervisor: greg mccracken
## 3634 1/10/2008 08:42 am (blgay) employee was putting on snow equipment. Employee was taking the rubber boots off of the hydraulic lines, two came off freely, but the others were stuck. He had on oily gloves, which kept sliding off, so employee took his g
## 3635 1/11/2005 09:22 am (fblackmo) employee states a private vehicle pulled out into the path of his vehicle causing the injury to his lower back. Supervisor: t. Huskins
## 3636 1/11/2005 09:37 am (fblackmo) employee states while approaching intersection his vehicle was struck in the rear by a private vehicle. Employee experience pain in his neck area. Supervisor: louis l. Mitchell
## 3637 1/11/2005 09:58 am (fblackmo) employee has performed data entry for several years. Employee has been diagnosed with carpal tunnel syndrome. Supervisor: robert k. Andrews
## 3638 1/11/2005 10:11 am (fblackmo) employee was stacking trash bags on overhead shelf when, he felt pain in his back. Supervisor: franklin bullock
## 3639 1/11/2005 10:21 am (fblackmo) employee was moving a five gallon water jug when, he felt pain in his lower back. Supervisor: dan cumbo
## 3640 1/11/2005 10:30 am (fblackmo) employee was pushing a piece of ice with his right foot when, he felt pain in his right hip area. Supervisor: greg burns
## 3641 1/11/2005 10:39 am (fblackmo) employee was walking out to get courier mail when, she lost her balance and fell on asphalt. Employee injured right side of face and knee. Supervisor: j. Scott cole 3/11/2005 03:09 pm (kbarefoo)
## 3642 1/11/2007 02:17 pm (fblackmo) employee felt pain in her arms and knees when, the elevator dropped from the third floor to the first. Supervisor: lisa j. Carroll
## 3643 1/11/2007 02:45 pm (fblackmo) employee was carrying a roll of matting when, she fell over a clump of dirt and twisted her right ankle. Supervisor: henry sturdivant
## 3644 1/11/2007 10:54 am (fblackmo) employee was hauling rip rap when, he was moving the rocks his ring finger on right hand was caught between the rock and tailgate. Supervisor: larry brown
## 3645 1/11/2007 12:12 pm (fblackmo) employee was pulling a water hose when, he felt pain in his upper back. Supervisor: guy white
## 3646 1/11/2010 03:56 pm (blgay) employee was operating loader for snow and ice removal. After loading dump truck with salt for snow and ice removal, employee began to exit loader. Employees foot got entangled in rusty broke area of loader steps. This cause
## 3647 1/11/2010 04:13 pm (blgay) employee was working snow and ice removal. Snow plow struck patch of ice, pulling truck into left lane. Truck was struck by private vehicle. In trying to regain control of dump truck, employees left hand was injured with ste
## 3648 1/11/2010 05:00 pm (blgay) employee was cutting tree on frozen bank, when feet slipped causing the employee to pitch forward off of bank and landed on chest in frozen ditch line. Supervisor: james lambert
## 3649 1/12/2006 10:56 am (blgay) employee was leaning over pickup bed to move traffic cone out of his work space, when he felt a sharp pain and heard a pop on the right side rib cage. Supervisor: danny lewis
## 3650 1/12/2006 11:32 am (blgay) employee was drilling holes into metal that was positioned on saw horses, while leaning into drill to apply pressure, the drill motor blew metal shavings into his right eye. Supervisor: franklin granda 10/1/2009 10:38 am (
## 3651 1/12/2006 11:53 am (blgay) employee was adjusting a floor jack under a truck. Employees hand was on the metal plate of the jack when the handle of the jack fell on his hand, mashing right middle finger. Supervisor: mark huffman
## 3652 1/12/2007 09:14 am (fblackmo) employee was cutting backslopes when wire got caught in mower. Employee was cutting wire when, it flew back striking him in corner of eye. Supervisor: r. G. Crews
## 3653 1/12/2010 01:21 pm (blgay) employee was pushing snow. Truck started sliding and continued until truck over. Employee was struck in head by unknown object. Supervisor: w. R. Tippett
## 3654 1/12/2010 01:33 pm (blgay) employee was checking hydraulic lack of salt spreader, when rust was blown into eye from back of truck. Supervisor: johnny ransdell
## 3655 1/12/2010 03:53 pm (fblackmo) employee states he had a physical reaction to mold in the workplace. Employee was performing his duties as a drivers license examiner. This has been a continuous problem. Did not know the results of testing of air quality
## 3656 1/12/2010 11:59 am (fblackmo) employee bent down to paint the leg of a table and felt a pull in his lower back. Supervisor: johnnie bullock
## 3657 1/12/2010 12:08 pm (fblackmo) employee had ended work for the day at 4:00p. M.. Employee used the stairway to exit the building missing last step and falling to the ground. Employees left knee was swollen and bruised. Supervisor: amanda olive
## 3658 1/13/2004 01:51 pm (fblackmo) employee was walking down shoulder of roadway and shoulder gave way due to a cavity and employee fell causing the injury to his ankle. Supervisor: lindsey o. Ethridge
## 3659 1/13/2004 02:04 pm (fblackmo) employee was climbing down out of dump truck when, his foot slipped causing the injury to his left ankle. Supervisor: j. E. Adams
## 3660 1/13/2004 02:22 pm (fblackmo) employee was helping other employees load plywood when his finger was caught between two boards causing the injury to his finger on left hand. Supervisor: rodney byrd
## 3661 1/13/2004 02:38 pm (fblackmo) employee was shoveling asphalt when he stepped into the path of another employee causing the injury to his finger. Supervisor: a. O. Epley
## 3662 1/13/2004 03:54 pm (fblackmo) employee was lifting wet logs when one fell on his right foot. Supervisor: t. F. Rhodes
## 3663 1/13/2004 04:04 pm (fblackmo) employee was cutting a tie warp with pocket knife when, the knife slipped causing the injury to his left thumb. Supervisor: g. J. Liverman
## 3664 1/13/2004 04:18 pm (fblackmo) employee was stepping out of truck to remove debris when the injury occurred to his left ankle. Supervisor: h. D. Wiggins
## 3665 1/13/2004 04:28 pm (fblackmo) employee was walking on shoulder of road when he stepped in a hole causing the injury to his right ankle. Supervisor: w. L. Thompson
## 3666 1/13/2004 11:15 am (fblackmo) employee was crossing ditch and stepped into low place twisting his left knee. Supervisor: l. W. Lyall
## 3667 1/13/2004 11:29 am (fblackmo) employee was at the land field unloading tires and rubber. Employee climbed over side of truck to get into trailer when foot slipped off railing causing employee to fall to the ground. Supervisor: t. J. Shaw
## 3668 1/13/2005 09:11 am (fblackmo) employee fell on fence and the top fence rail struck employee on his head requiring 7 stitches. Employee is also having severe headaches. Supervisor: reece howard
## 3669 1/13/2005 09:23 am (fblackmo) employee states while stepping up into dump truck he, felt pain in his left knee. Supervisor: j. M. Campbell
## 3670 1/13/2005 09:34 am (fblackmo) employee was standing behind broom tractor when, a rock struck him in the left eye. Supervisor: j. M. Campbell
## 3671 1/13/2005 09:54 am (fblackmo) employee was working on guard rail removing bolts when, rail snapped apart striking him on his left leg. Supervisor: a. W. Childers
## 3672 1/13/2005 10:08 am (fblackmo) employee states she is pain, numbness, and tingling in right hand and arm. Supervisor: stephanie benarao
## 3673 1/13/2005 10:53 am (fblackmo) employee was in a hole shoveling dirt to replace a cross line. Employee was pulling up on the shovel when, he felt a sharp pain in his lower back. Supervisor: leon saunders
## 3674 1/13/2005 11:55 am (fblackmo) employee experience numbness in right arm, hand, and fingers, stiffness and swelling in neck and back. Occupational medical condition caused by operation of heavy equipment, using a repetitive arm motion for years. Superv
## 3675 1/13/2009 03:33 pm (blgay) employee was riding in a dot pickup truck. The driver tried to avoid a pack of dogs in the road, lost control of the vehicle and crashed into a creek. A tree limb penetrated the cab of the truck striking the employee on the
## 3676 1/13/2010 03:03 pm (blgay) employee climbed up the bank of a tandem dump truck to check the amount of salt in the spreader. When he took hold of the grate on top of the spreader it was loose, causing him to loose his balance and fall. During fall, emp
## 3677 1/13/2010 08:40 am (blgay) employee was in her normal operation of mowing highway right of way with long arm mower. She stated that she was using the clutch a lot to back up and go forward, causing pain in her left knee. Supervisor: lawrence long
## 3678 1/13/2010 11:42 am (fblackmo) employee was installing eight inch sea chest value on port side of auxiliary machine space when his right index finger got caught between the handle of valve and deck plate frame. Supervisor: marshall coleman
## 3679 1/13/2010 12:04 pm (fblackmo) employee states rock fell off truck hitting his left foot. Supervisor: clifton mills
## 3680 1/13/2010 12:13 pm (fblackmo) employee was walking through water tight door when, he hit his head. Employee felt pain in his head and neck. Supervisor: s. H. Kinner
## 3681 1/13/2010 12:36 pm (fblackmo) employee slipped and fell while walking down hill to office building. Contusion to her knees and elbows. Twisted ankle. Supervisor: victor barbour
## 3682 1/14/2008 03:14 pm (fblackmo) employee was pulling limbs out of the roadway so that the road could be open and traffic could pass safely when, he felt pain in his left knee. Supervisor: wade harper
## 3683 1/14/2008 09:47 am (blgay) employee was raising the truck bed, a rock was blocking the tailgate. When employee reached up to remove the rock, the tailgate closed on his right hand. Cutting the top of right hand. Supervisor: thomas brackett
## 3684 1/14/2008 10:02 am (blgay) employee was cutting trees from right of way. The trees were covered in poison ivy, causing employee to get poison ivy over entire body. Supervisor: dewey houston
## 3685 1/14/2008 11:54 am (fblackmo) employee was helping build shelves in bolt house and stepped back onto a roofing nail (two inches long). Roofing nail went through employees shoe and stuck into right foot under the bottom of the toes. Supervisor: albert
## 3686 1/14/2008 12:16 pm (fblackmo) employee was helping an elderly gentleman out of a chair after having his photo taken when, he felt pain in her lower back area. Supervisor: dolphus marshburn
## 3687 1/14/2008 12:27 pm (fblackmo) employee was in her office when down the hall about 15 ft. A community service worker was cleaning the mens restroom. He sprayed vitaphene (disinfectant) causing employee to start coughing, watery eyes and shortness of br
## 3688 1/14/2009 02:52 pm (fblackmo) employee was going down the hall in front of break room, left foot slid and causing injury to left knee. Supervisor: becky white
## 3689 1/14/2009 05:23 pm (fblackmo) employee was walking down a ditch slope when, his foot slipped and fell, folding his left leg underneath him. Left knee injured. Supervisor: phillip gurganus
## 3690 1/14/2009 12:30 pm (fblackmo) employee was unloading salt and sand-stepped out on running board to see how much was left on truck and bar came backwards and caught finger between arm that works the bed cover and metal bar. Body injuries listed was rig
## 3691 1/14/2010 05:20 pm (blgay) employee was shoveling out pipe and hurt lower back and right hip. Supervisor: wes jamison 4/8/2011 12:29 pm (barnes)
## 3692 1/14/2011 02:57 pm (fblackmo) employee was lifting snow plow blades to install on equipment when, he felt pain in the back of his right leg. Supervisor: e. L. Mckethan
## 3693 1/14/2011 03:17 pm (fblackmo) employee had secured a briefcase on dolly when the bungee cord slipped causing the metal hook to striking his face. Employee experienced a laceration to his forehead area(above eyebrow). Supervisor: maude creech
## 3694 1/14/2011 03:35 pm (fblackmo) employee was walking down corridor when, she slipped and fell. Employee felt pain in her right shoulder and hip area. Supervisor: mark tyler
## 3695 1/14/2011 03:56 pm (fblackmo) employee was assisting in hooking up snow plows to equipment for upcoming snow and ice event. He was down on the ground under dump truck hammering pin into place; as he turned and attempted to get up he felt a pull in his
## 3696 1/14/2011 04:16 pm (fblackmo) employee was moving boxes from floor to counter when she felt pain in the right side of her neck. Supervisor: jilda mcghee
## 3697 1/14/2011 04:33 pm (fblackmo) employee was exiting utilities vehicle when, he slipped and fell down embankment causing injury to his upper left leg. Employee also felt pain in his lower back area. Supervisor: richard t. Poythress jr
## 3698 1/14/2011 12:07 pm (fblackmo) employee was changing blades on grader (955-0540) when, he climbed on the mold board to connect chain hoist for safety the pin came out causing him to fall to the floor. Employee fracture his right leg. Supervisor: sterli
## 3699 1/14/2011 12:26 pm (fblackmo) employee was operating a grader when he struck a cement column that was covered with snow. The impact threw him on the arm rest causing pain to his right side. Supervisor: e. L. Mckethan
## 3700 1/14/2011 12:54 pm (fblackmo) employee slipped and fell into the bottom of the boat (a end shaped vessel). Employee felt pain in his lower back area. Supervisor: david mutschler
## 3701 1/15/10: chg. Resident then pulled resident up in bed-felt back pop with pain. 1/26/10: made residents bed-radio fell- bent to pick up batteries-pain in back. ()
## 3702 1/15/2004 10:43 am (fblackmo) employee was lifting bags of grout and putting them into a hopper when, he experienced pain in his lower back. Supervisor: w. D. Watkins
## 3703 1/15/2004 12:05 pm (fblackmo) employee was cutting logs when the saw kicked back causing him to fall on road injuring his hand and neck. Supervisor: wendell chastain
## 3704 1/15/2004 12:18 pm (fblackmo) employee was getting back into truck from checking cable when, he slipped on icy road causing the injury to his neck. Supervisor: wendell chastain
## 3705 1/15/2008 12:51 pm (blgay) employee was getting on equipment trailer to chain down tractor, when he was getting up off of his knees, he reached up to pull him self up and felt pain immediately on the right side of shoulder, neck and right side. Super
## 3706 1/15/2009 08:13 am (fblackmo) employee was working at the copart auto salvage yard in dunn. He was exposed to airborne particles in and around motor vehicle that he was working on. During the course of the day the wind picked up causing particles to b
## 3707 1/15/2009 10:25 am (blgay) employee was removing tree debris from the right of way and had bent over to remove a section that had been cut when a limb broke against another limb and struck employee in the face, injuring his right eye. Supervisor: dere
## 3708 1/15/2009 10:46 am (blgay) employee was pulling a metal tape to measure hardware cloth at structure 116 on our lewisville-clemmons road construction project. Keeping tension on the tape, while pulling the edge of the tape, removed a piece of skin to t
## 3709 1/15/2010 02:57 pm (fblackmo) employee was attempting to secure a digging bucket with a tie down strap on the back of a flatbed. While throwing the tie down strap over the bucket, the strap got hung in his jacket and the strap came back striking him I
## 3710 1/16/2009 03:35 pm (fblackmo) employee ran her hand down a fiberglas stick while reaching back for the seatbelt while doing a cdl skills test. Supervisor: heather broom
## 3711 1/17/2006 11:29 am (blgay) employee was driving crew cab pick up that crew was getting cold mix from to repair potholes. Employee looked in rear view mirror and saw a brown car at the same time the car hit the truck. Supervisor: stan paramore
## 3712 1/17/2007 02:12 pm (fblackmo) employee is experiencing pain in her right hand, wrist, arm, and shoulder due to frequent keyboard use. Supervisor: gail sheets
## 3713 1/17/2007 10:55 am (fblackmo) employee states no strainious work was done on date of accident he was only driving dump truck when he felt pain in lower back (pinched nerve). Supervisor: jeremy delapp 1/31/2007 03:09 pm (gwhite)
## 3714 1/17/2007 11:12 am (fblackmo) employee was removing salt spreader from truck when, he fell on wet sand causing injury to his lower back. Supervisor: chris taylor
## 3715 1/17/2007 11:21 am (fblackmo) employee injured lower back while moving a copier. Supervisor: marvin shelton
## 3716 1/17/2007 11:34 am (fblackmo) employee was walking down embankment when, he slipped and fell causing injury to left leg/knee. Supervisor: t. B. Daniel
## 3717 1/17/2007 11:51 am (fblackmo) employee was removing toilet in womens restroom when, pipe released gases hitting him in the face causing him to feel nauseated and light headed. Supervisor: ricky daves
## 3718 1/18/2006 11:17 am (blgay) employee was helping to pull cut trees and debris from plant bed. Crew was chipping cut plant material, when employee got some dirt or debris in his left eye while cutting and chipping project was on going. Employee was wear
## 3719 1/18/2006 11:30 am (blgay) employee was driving a motor grader on sr 1589 to a project, when a red ford pickup crossed the center line and struck the motor grader head on. The motor grader was entirely in the proper travel lane. Neither vehicle could
## 3720 1/18/2008 12:30 pm (fblackmo) employee was removing a christmas wreath from grill on front of truck using a knife when, he cut his left hand. Supervisor: terry barnette
## 3721 1/19/2005 02:53 pm (fblackmo) employee was repairing crossline pipe with backhoe. Backhoe tilted while crossing ditch. Employee tired to catch himself by putting hand on window frame, window closed on his hand. Supervisor: randy anderson
## 3722 1/19/2005 03:21 pm (fblackmo) employee was digging to uncover a property corner and felt a tingle in his lower back. Supervisor: t. K. Wheeler
## 3723 1/19/2005 03:46 pm (fblackmo) employee stated that he was operating a front end loader when, he injured his face, scalp, neck, and wrist. Supervisor: dallie bagwell supt.
## 3724 1/19/2005 12:30 pm (fblackmo) employee reached into trunk of a bmw 740 that was on a jack. The owner had car jack up. The car rocked off the jack striking employee on his right knee. Supervisor: t. W. Kirk
## 3725 1/19/2011 03:16 pm (barnes) employee was feeding brush into the chipper. The chipper caught a limb that was on the brush, causing the brush to hit the employee in his back. Employee injured his back, hands and left shoulder. Supervisor: d. M. Pressl
## 3726 1/19/2011 03:56 pm (barnes) employee was cutting & grinding the cutting edge off of a loader bucket. After completing the job, he felt something in his right eye. Due to adverse weather conditions, employee had to wait to see eye doctor on monday, ja
## 3727 1/19/2011 04:33 pm (barnes) employee (Mr. Richmond) was helping others change snow plow blades. As he and another employee lifted up the blade, the other employee let go without Mr. Richmond knowing. When the bade dropped, it pulled on Mr. Richmond's
## 3728 1/19/2011 05:09 pm (barnes) employee was treating roads for icy conditions. While traveling down a hill, he hit a patch of ice and ended up in a ditch. Employee injured lower abdomen. Supervisor: r. A ellington
## 3729 1/19/2011 12:14 pm (barnes) employee was pushing dump truck door shut and the wind caught the door, causing it to swing open hitting employee in the mouth breaking her tooth. Employee injured top front tooth. Supervisor: j. C mundy
## 3730 1/19/2011 12:42 pm (barnes) employee was applying salt to iced road, when he stepped out of truck and fell on ice causing pain to chest and right shoulder. Employee injured left rib and had shoulder contusions. Supervisor: f. E roberts
## 3731 1/2/2008 01:24 pm (fblackmo) employee was conducting road test. Driver of vehicle steered vehicle sharply to right to return to his lane and avoid oncoming traffic. Driver ran over curb and hit a light pole. Employee felt pain in his back. Supervisor:
## 3732 1/2/2008 02:01 pm (fblackmo) employee was prepping deck of the m/v fort fisher. An air hose was being used to clean dirt from the beck of the boat. Another employee was controlling the air flow. Wind blew paint chips into employees left eye. Employee
## 3733 1/2/2008 02:12 pm (fblackmo) employee was running advance warning turck for herbicide operation. Employee parked truck on incline on shoulder of the road. Employee was exiting the truck when, the door closed on her left center finger causing injury. S
## 3734 1/2/2008 02:39 pm (fblackmo) employee had the grade stick in his hand. The grade stick is in three sections, and when he tried to extend it, something caught his fingernail. Fingernail was not pulled completely pulled off. Supervisor: e. Wayne wooten
## 3735 1/2/2008 10:36 am (blgay) employee was trapping a load of mulch and lost balance and fell off back of truck. Supervisor: c. H. Sneed
## 3736 1/2/2008 10:43 am (fblackmo) employee was on project having a discussion with contractor personnel when a vehicle lost control and vehicle jump curb, causing mirror of the vehicle struck employee on right hip. Supervisor: jeff allen
## 3737 1/2/2008 10:51 am (blgay) employee was loading tailgate apron into bed of dump truck. Employee was holding on to bed of truck with left hand and he took his right hand to lift apron further into bed of truck. Apron fell and landed on employees left h
## 3738 1/2/2008 11:03 am (blgay) employee was cutting a block of wood, when the saw kicked back cutting the left side of his right forefinger. Supervisor: doug eller
## 3739 1/2/2008 11:13 am (fblackmo) employee states that the injury to her back occurred while taking out an overly large bag of trash on 9/11/07. Injury was not reported to supervisor on 9/11/07. Supervisor states that "employee was only present at work for
## 3740 1/2/2008 11:29 am (fblackmo) employee was walking on shoulder of the road picking up signs from re-surfacing project when, he stepped onto unstable terrain causing him to twist his left ankle, knee, and hip. Supervisor: greg vinson 1/11/2008 05:08 p
## 3741 1/20/2004 10:51 am (slee) state vehicle was traveling on wilmington st. In burgaw, nc. Private vehicle was at stop sign on dickerson street, failed to yield the right of way and drove into the path of the state vehicle. The state vehicle struck the p
## 3742 1/20/2005 01:11 pm (fblackmo) employee was operating offset press and used cotton pad to clean edge of plate with equipment running. Cotton pad got caught between the blanket and plate cylinder pulling his hand into the equipment causing the injury to
## 3743 1/20/2005 01:22 pm (fblackmo) employee was in the process of pulling on the wings of the asphalt paver when, he felt a sharp pain in his lower abdomen. Supervisor: dannie tomberlin
## 3744 1/20/2005 12:17 pm (fblackmo) employee was pushing a broom while sweeping road when, he felt pain in his back, wrist, and legs. Supervisor: r. E. Austin
## 3745 1/20/2006 08:44 am (blgay) employee was performing activities during the time period that included: lifting ltl test set to read pavement markings, on and off pickup truck, sampling and testing concrete for pour, moving weights used for soil density t
## 3746 1/20/2006 09:06 am (blgay) employee was tying down the backhoe to the trailer on sr 2026, when he returned to the cab of the flatbed he started having severe pain starting at his left shoulder going down his arm to his elbow. Supervisor: ricky blalock
## 3747 1/20/2010 01:19 pm (blgay) employee was blowing out a hole that had been jack hammered out. The employee got something in his right eye. Employee washed out the eye with solution, when he returned to the office that afternoon. Supervisor: ronald joyce
## 3748 1/20/2010 12:18 pm (blgay) employee was night riding and stepped out of the truck to check a sign. Sign was on slight incline (bank) right ankle gave way. Ankle popped two or three times and employee went down. Bank was uneven and damp. When ankle gav
## 3749 1/20/2010 12:38 pm (blgay) employee was plowing snow and the truck exhaust system broke off. The fumes from the exhaust came into the cab of the truck. This made the employee sick, causing headache, lungs, nausea on stomach and sleepy. Supervisor: kev
## 3750 1/20/2011 10:16 am (barnes) employee was pushing snow on 4 lane us 321 south towards hwy 10 west. As employee approached the bridge over jacob fork river, his plow blade hit a metal plate that had been welded over the expansion joint. It caused the tr
## 3751 1/21/2010 08:58 am (fblackmo) employee was getting out of pickup truck, planted his feet on the ground, stood up and turned when, he heard his right knee pop. Supervisor: carlis smith
## 3752 1/21/2010 09:14 am (fblackmo) employee was conducting road test when customer slammed brakes and accelerated causing the vehicle to turn right towards curb. Employee grabbed the steering causing discomfort to her back and neck. Supervisor: lorie can
## 3753 1/22/2008 01:02 pm (fblackmo) employee states she was having pain in her right wrist, hand, and arm (trouble grasping objects) while typing and using a mouse. Supervisor: angela fanelli
## 3754 1/22/2008 10:41 am (blgay) employee got out of truck, turned and twisted to rear of truck, felt a little pain in back. Employee walked about 20 yards to flag traffic, then could hardly walk back to truck. Supervisor: w. Teague
## 3755 1/22/2008 10:49 am (blgay) employee was sharpening a power hedge trimmer when the file he was using slipped and the little finger of his right hand hit the blade of the trimmer, cutting the little finger of the right hand. Supervisor: david hall
## 3756 1/22/2008 10:57 am (blgay) employee was climbing onto truck to check sander, very windy conditions and wind blew large amount of sand and salt into eyes. Supervisor: frank ruppard
## 3757 1/22/2008 11:05 am (blgay) employee was lifting a metal bumper on I-240, a piece of metal cut finger when employee threw the bumper into another scrap pile, cutting little finger on left hand. Supervisor: r. J. Hollifield
## 3758 1/22/2009 01:59 pm (blgay) employee was cutting a plastic tape off a roll of cable on the woodlawn yard with a pocket knife. The knife cut employees left hand between his thumb and forefinger. Employee received three stitches. Supervisor: robert denni
## 3759 1/22/2009 02:16 pm (fblackmo) employee got up to give copy of handbook to customer when, her pants leg cuff got hung up in the desk causing her to fall backwards on the floor. Employee felt pain in lower back area. Supervisor: m. L. Smith
## 3760 1/22/2009 02:38 pm (fblackmo) employee was picking up a bag of stones when, he felt pain in his left shoulder area. Supervisor: brooks pearce
## 3761 1/22/2009 06:26 pm (fblackmo) employee was walking off elevator through art museum when she slipped and fell in the hallway. Employee felt pain in her neck, both shoulders, right foot, and back area. Supervisor: sonya v. Beatty
## 3762 1/23/2006 03:33 pm (blgay) employee was loading sprayer on flat bed truck, when he hit his hand between side board of truck and sprayer. Supervisor: e. R. Gurganus, jr.
## 3763 1/23/2006 03:43 pm (blgay) employee was pulling brush from roadway, stepped in a hole and twisted knee. Supervisor: patrick norman
## 3764 1/23/2006 04:00 pm (blgay) employee was working alone blading a dirt road with a motorgrader. Employee pulled to side of the road to take a break, when he noticed small package lying on the ground. Employee picked up package to investigate and realize
## 3765 1/23/2007 01:06 pm (fblackmo) employee was organizing cleaning supplies in warehouse when, foreign matter got into her left eye. Supervisor: franklin s. Granda
## 3766 1/23/2007 01:24 pm (fblackmo) employee states while replacing a wooden pile under bridge for a prompt action it slipped on bank catching his left hand under pile. Employee fractured his little finger and ring finger. Supervisor: john kearney
## 3767 1/23/2007 01:38 pm (fblackmo) employee was lifting boom with left hand to fill equipment with tack material causing pain to his hand, arm, shoulder, and neck. Supervisor: alton thornton
## 3768 1/23/2007 03:31 pm (fblackmo) employee was lifting the loading ramp of a tow type trailer when, he felt pain in his back. Supervisor: carlis smith
## 3769 1/23/2007 03:41 pm (fblackmo) employee was moving fire extinguisher when, he felt in his elbow. Supervisor: albert oneal
## 3770 1/23/2007 11:47 am (fblackmo) employee was helping to replace a battery in a loader. In order to gain access to the battery he had to stand on the tire. Employee was stepping down off tire when, he felt pain in his back area. Supervisor: l. T. Garner
## 3771 1/23/2007 12:09 pm (fblackmo) employee was in the process of helping another employee put a tailgate on the #3 sterling tandem truck. He climbed up the side of the truck using the wheel hub, wheel, and foot rail. As he got to the top he threw his left
## 3772 1/23/2007 12:23 pm (fblackmo) employee was standing on side of truck holding onto tarp rack and trying to get salt/san mixture to go down (it was frozen). The bar he was holding onto broke causing him to fall about 6ft. Landing flat on his back. Emplo
## 3773 1/23/2007 12:33 pm (fblackmo) employee was inspecting a large pipe. Employee was walking down slope when, his foot got tangled up in vines which caused him to fall, striking his lower left leg against a rock. Supervisor: kevin d. Smith
## 3774 1/23/2007 12:42 pm (fblackmo) employee was lifting general inventory items when, he felt pain in his lower back area. Supervisor: charles vinson
## 3775 1/23/2007 12:54 pm (fblackmo) employee was removing trash bag from can at fuel island when, he felt pain in his upper/lower back, right hip, and leg. Supervisor: j. E. Stepp 5/28/2009 11:32 am (sshort)
## 3776 1/23/2008 02:02 pm (blgay) employee was returning to bridge yard from a job, when lady ran red light and hit them. Supervisor: herbert ramey
## 3777 1/23/2009 05:34 pm (fblackmo) employee was shoveling rocks when, he felt pain in his upper back area. Supervisor: j. T. Wiggins
## 3778 1/24/2006 09:32 am (blgay) employee was loading wooden stakes into carryall and felt pull in upper left shoulder. Supervisor: l. E. White
## 3779 1/24/2006 09:43 am (blgay) employee was loading a office chair in the back of a pickup truck that was already partially full of furniture, while standing on the rear bumper he lost his balance. Employee fell to the ground and the chair hit him in the
## 3780 1/24/2006 09:54 am (blgay) employee was mopping office floor, when she went out of office to rinse and wring out mop, she came back in office and slipped on wet floor, bumping her head on floor. Supervisor: h. D. Wiggins
## 3781 1/24/2006 10:03 am (blgay) employee was driving north on nc 209 when a private citizen pulled into oncoming traffic causing sv to collide with pv, causing employee to hit his right knee against dashboard in truck. Supervisor: chris lee
## 3782 1/24/2006 10:16 am (blgay) employee was attempting to stand up from sitting position out of a chair, when he lost his balance and fell to the floor. Employee fell and landed on his right writ and suffered a compound fracture. Supervisor: barry s. Moos
## 3783 1/24/2008 10:16 am (blgay) employee was trying to get to her chair and either fainted or fell, employee doesn't know. Supervisor: lavonne reed
## 3784 1/25/2005 10:13 am (fblackmo) employee was operating a diesel powered atv mounted drill machine advancing an 8-inch diameter flighted auger into the ground with rotation. Roots and vines became entangled and began pulling other vines and employee into
## 3785 1/25/2005 10:28 am (fblackmo) employee was lowering tailgate on truck standing on the side when, tailgate started coming dow to fast catching his left hand between the chain and bed of truck. Employee cut left hand across the top. Supervisor: dennis g
## 3786 1/25/2005 10:40 am (fblackmo) employee was opening gate to facility yard when, he slipped and fell on ice causing injury to his left ankle. Supervisor: don staley
## 3787 1/25/2005 12:11 pm (fblackmo) employee was pulling nails when, he felt pain in his neck area. Supervisor: f. T. Killian
## 3788 1/25/2005 12:30 pm (fblackmo) william felts and charlie johnson was joking around. William felts ran from charlie johnson tripping and falling on the ground. Charlie johnson fell on william felts causing a bruise on his left shoulder. Supervisor: c. E.
## 3789 1/25/2005 12:42 pm (fblackmo) employee was attempting to remove aggregate from roadway that was packed by traffic using shovel. Employee used foot to push shovel into pile of aggregate when, he felt pain in his lower back. Supervisor: l. W. Lyall 4/3/
## 3790 1/25/2005 12:57 pm (fblackmo) employee was placing sandbag under a bridge that had a washout from under the abutment. This involved kneeling down and twisting to place the sandbag. The bags weighted 35 lbs. The next day employee was bushined and felt
## 3791 1/25/2007 11:07 am (fblackmo) employee stopped at scene of a accident, he was blocking the ramp. One car stopped, second car hit first car pushing it into imap truck. Employee felt pain in his neck and right knee. Supervisor: t. W. Kirk
## 3792 1/25/2007 11:30 am (fblackmo) employee was working around truck and snow plow when, he walked into spreader causing a cut to his head. Supervisor: r. E. Austin
## 3793 1/25/2007 11:40 am (fblackmo) two employees were removing the polo trailer attachment that acts like a fifth wheel from the flat bed truck. One employee dropped his end of the attachment causing the attachment to strike the other employee in the groin
## 3794 1/25/2008 01:43 pm (blgay) employee in the past 2 - 3 months has been experiencing numbness, tingling and locking down of some fingers on both hands due to consistent use of hands, wrists and fingers with computers, filing and writing in office work.
## 3795 1/25/2008 11:46 am (blgay) employee was pulling brush to a chipper. Employee bent down, took a step forward and felt a sharp pain in right foot. Pain persisted and employee asked to go to doctor. Supervisor: bobby berryhill
## 3796 1/25/2008 12:09 pm (blgay) employee was measuring the width of a median ditch on I-40. While attempting to cross from the median back to the outside shoulder of the road, he reached down to pick up and remove a 40 foot long piece of tie down strap that
## 3797 1/25/2008 12:22 pm (blgay) employee was trying to get chain and binders out of storage compartment of the low boy when he felt pain in his lower back. Supervisor: jamie robinson
## 3798 1/25/2008 12:30 pm (blgay) employee was operating state owned vehicle. Employee was stopped at a traffic light when struck from behind by another motorist. Supervisor: t. S. Collins
## 3799 1/26/2005 01:12 pm (fblackmo) employee was bushing and going up and down slopes when, the injury occurred to his left foot. Supervisor: timothy k. Southard
## 3800 1/26/2005 01:51 pm (fblackmo) employee was loading a pipe band into a tandem over his head. Band caught on bed of truck and came back striking employee on the head. Supervisor: patrick norman
## 3801 1/26/2005 02:16 pm (fblackmo) employee was going to truck to change job sites when, he stumbled over frozen ruts in road. Employee fell on ground striking his left shoulder. Supervisor: d. C. Capps
## 3802 1/26/2005 02:27 pm (fblackmo) employee was walking away from a tree that was being cut when, he stepped in a stump hole that was covered by pine straw causing the injury to his left knee. Supervisor: kevin baker
## 3803 1/26/2005 02:42 pm (fblackmo) employee was cleaning out the end of a pipe with a shovel when, debris got into his left eye. Supervisor: bill price
## 3804 1/26/2005 03:01 pm (fblackmo) employee was inspecting a svr cutting davidson co. Saw dust from the cutting got on employee face and he has contact poison ivy. Supervisor: jeff hardy
## 3805 1/26/2005 03:22 pm (fblackmo) employee was moving rolls of matting when, he felt pain in his left side and back. Supervisor: ar hensley
## 3806 1/26/2005 03:55 pm (fblackmo) employee was hooking brush chipper back to the truck at the end of the day when, it started rolling. Employee grab the tongue of the chipper and placed it back on tuck causing him to twist and pull his stomach /groin area
## 3807 1/26/2005 04:24 pm (fblackmo) employee states that another employee knocked the chair from under him. Supervisor: sg dillon
## 3808 1/26/2009 11:36 am (blgay) employee was in the process of leaving building, went to refrigerator to get bottle of water, slipped and fell on wet floor: supervisor: ken pruett 1/26/2009 11:44 am (blgay)
## 3809 1/26/2009 11:51 am (blgay) employee was getting up a dead deer, when his right foot slipped out from under him. As employee was falling, he tried to catch himself with his right arm. Supervisor: j. M. Delapp
## 3810 1/27/2005 08:33 am (fblackmo) employee was installing a hyd. Hose on a long arm tractor. Employee was pulling in two different directions at the same time when, he felt pain in his lower back. Supervisor: steve smith
## 3811 1/27/2005 08:51 am (fblackmo) employee had a sharp pain in left wrist, fingers, and swelling of hand. Employee states she could not use her arm, pain ran to her elbow. Supervisor: angela faulk
## 3812 1/27/2006 02:02 pm (blgay) employee was traveling north on us 301 when another vehicle ran a red light and was struck by a third vehicle. The van crossed the median and struck state vehicle driven by employee. The impact caused the air bag to deploy,
## 3813 1/27/2006 09:26 am (blgay) employee was on flat bed truck pulling canvas over mulch, when the mulch shifted and caused the employee to fall. As employee was falling, he extended his left arm downward to break his fall. The impact injured his left shou
## 3814 1/27/2006 09:42 am (blgay) employee was loading cones into the back of pick-up truck. Employee states " I was properly lifting and felt the muscle pull in my back". Supervisor: greg vinson
## 3815 1/27/2010 10:58 am (fblackmo) employee was conducting road test when, customers vehicle was struck from behind. Employee felt pain in her neck and left leg. Supervisor: wayne davis 02/23/2010 09:14 am (lvaughan) per #18: injured neck, back
## 3816 1/27/2010 11:12 am (fblackmo) employee was loading plastic crate of case files into car from drivers side to place on passenger seat. Employee felt pain in her lower back. Supervisor: r. K. Andrews
## 3817 1/27/2010 11:22 am (fblackmo) employee was pushing wheel barrow loaded with mulch downhill, employee felt pop in lower back area. Supervisor: chris vause
## 3818 1/27/2010 11:45 am (fblackmo) employee was hauling debris to the landfill, while raising the tailgate with assistance from inmate, inmate lost his grip causing tailgate to pinch employees right thumb. Supervisor: h. L. Thompson
## 3819 1/28/2009 03:55 pm (blgay) employee walked out the front door and slipped on ice, fell striking his left side. Supervisor: doug eller
## 3820 1/28/2009 09:42 am (blgay) employee was clearing the right of way on kendall's church road and came in contact with poison ivy/oak. Employee was wearing gloves while working and was unaware of being exposed to the poison. Supervisor: k. R. Davis
## 3821 1/28/2010 01:09 pm (blgay) employee was using the roto rooter to clean out pipe. The flexible rod was bumping up against employees left leg. The employee reached down to move the rod, when the rod caught his glove on his left hand and hurt hand and ri
## 3822 1/28/2010 02:25 pm (fblackmo) employee was clearing brush with a bush axe when, branch from tree hit him in the right eye. Supervisor: joseph m. Parker, jr
## 3823 1/28/2010 12:26 pm (blgay) employee was following co-worker who was pulling a backhoe on a trailer. The trailer brakes locked up on nc 191, they pulled over and go the trailer brakes freed up and headed to the shop. On their way the brakes started smo
## 3824 1/28/2010 12:48 pm (blgay) employee was cleaning tailgate of dump truck, when tailgate closed on his right ring finger. Employees right ring finger was broken and had lacerations to right hand. Supervisor: r. A. Baker
## 3825 1/28/2010 12:57 pm (blgay) employee was in the process of rotating the vertical pole for the hoisting apparatus that holds the crs2 hose. The temps had been in the teens during the past week in the am hours. As he applied pressure, the handle that he
## 3826 1/29/2004 01:59 pm (fblackmo) employee states he closed the car trunk on his left hand. Supervisor: joseph lee
## 3827 1/29/2004 02:14 pm (fblackmo) employee was lifting cones when he felt sharp pains in his lower back. Supervisor: t. W. Edwards
## 3828 1/29/2004 02:30 pm (fblackmo) employee was cutting down daylilies with gas power string trimmer when, a rock kicked up by the string hitting employee in the mouth. Supervisor: john farrow
## 3829 1/29/2004 02:39 pm (fblackmo) employee was unloading limbs and debris from right of way when, debris flew into his eyes. Supervisor: r. A. Brower
## 3830 1/29/2004 02:48 pm (fblackmo) employee was removing old shrubs from roadside planting when, a thorn punctured left forearm. Supervisor: a. L. Lassiter
## 3831 1/29/2004 03:15 pm (fblackmo) employee had parked truck on bridge yard when, he went to get down out of cab he felt pain in his left knee area. Supervisor: ronald lee
## 3832 1/29/2004 03:27 pm (fblackmo) employee was directing traffic to slow down when, the backhoe struck him on his left hand. Supervisor: wright r. Archer
## 3833 1/29/2004 03:40 pm (fblackmo) employee states prior to kneeling down on his right knee to attach a chain to facilitate pulling out stuck vehicle he felt pain in his back. Supervisor: william r. Briley
## 3834 1/29/2004 03:57 pm (fblackmo) employee was cutting a brush when, a piece of sawdust came off saw and got into his right eye. Supervisor: harold howard
## 3835 1/29/2004 04:07 pm (fblackmo) employee was using grinder when, he cut his right index finger. Supervisor: b. R. Webb
## 3836 1/29/2004 04:56 pm (fblackmo) gate misaligned and while closing gate, employees thumb got caught between clasp and gate causing injury. Supervisor: t. L. Gray
## 3837 1/29/2004 05:08 pm (fblackmo) employee states while cleaning frost off of truck windows he, lost his footing on ice and fell on his back. Supervisor: frank j. Gioscio
## 3838 1/29/2004 11:15 am (fblackmo) employee states while picking up dead animals from roadway he, could have gotten the tinea manuum and tinea corporis. Supervisor: n. S. Gibson
## 3839 1/29/2004 11:44 am (fblackmo) employee attempted to slide sheeting off of the forks to stack the sheeting. Sheeting slipped and his finger was pinched between two pieces of sheeting cutting his finger off. Supervisor: a. L. Bundy jr
## 3840 1/29/2004 12:27 pm (fblackmo) employee lost control after stepping on iron object on ground causing bar to fall on top of his right foot. Supervisor: r. L. Tanner
## 3841 1/29/2007 02:58 pm (fblackmo) employee was sitting in parked vehicle at intersection waiting for the just paint lines to dry when, a bee stung him on the left side of his neck. Supervisor: ira harris
## 3842 1/29/2007 03:07 pm (fblackmo) employee was installing tarp roller. Employee was trying to align bolt holes in tarp bracket, bracket slipped out of roller and fell on left hand. Supervisor: j. E. Stepp
## 3843 1/29/2007 03:31 pm (fblackmo) employee was up under a pickup truck removing the gas tank band straps. Rust fell into his right eye. Supervisor: scott r. Hancock
## 3844 1/29/2007 03:41 pm (fblackmo) employee was walking through office when, she tripped over loose phone lines on floor and fell. Employee felt pain in her right knee. Supervisor: d. E. Dunnagan
## 3845 1/29/2008 03:04 pm (fblackmo) duplication of claims do not use
## 3846 1/29/2008 11:27 am (fblackmo) employee was carrying a herbicide container to fill spray truck when, putting them on the ground he stepped in a small drainage ditch. Employee felt pain in his lower back. Supervisor: mark conner
## 3847 1/29/2008 11:51 am (fblackmo) employee was moving a drillmat onto the temporary bridge deck. His foot slipped on the wet surface and fell backwards causing the injury to his lower back. Supervisor: thomas p. Moorefield
## 3848 1/29/2009 02:17 pm (fblackmo) employee was sitting in his vehicle when, he was car jacked. Employee experience soreness in left arm down to his hand. Supervisor: kenneth houck
## 3849 1/29/2009 10:43 am (fblackmo) employee pinched his left hand between the bucket and the pipe hook during pipe replacement project. Supervisor: carlis smith
## 3850 1/29/2009 11:32 am (fblackmo) employee was getting out of her husbands car and began to walk up pavement when, she slipped on black ice causing injury to her back and arm. Supervisor: ronnie l. Higgins
## 3851 1/29/2009 11:42 am (fblackmo) employee was laying on a creeper cutting bolts from a snow plow when, metal slag dropped to the floor spattering back upward and fell under safety eye wear getting into left eye. Supervisor: r. R. Bissette
## 3852 1/29/2009 11:51 am (fblackmo) employee was climbing onto ferry when, he struck his lower leg on gang way. Supervisor: s. H. Kinner
## 3853 1/29/2009 12:02 pm (fblackmo) employee slipped and fell in engine room due to condensation on bilge. Employee felt pain in lower left leg. Supervisor: s. H. Kinner
## 3854 1/29/2009 12:13 pm (fblackmo) employee was placing sign in hole when, sign struck him on the head. Supervisor: jim dilda
## 3855 1/29/2009 12:31 pm (fblackmo) employee was performing final bed check on pre-stressed concrete box beams. Inspection platform was wet due to rain and employee slipped while holding on to bars attached to top of beam thus twisting his arm/elbow. Superv
## 3856 1/29/2009 12:43 pm (fblackmo) employee was walking into breezeway at dmv when, she slipped on floor that was covered in condensation. Employee fell onto right knee that she had surgery on about six to seven weeks ago. Supervisor: preston cudd 2/18/20
## 3857 1/29/2010 11:27 am (fblackmo) employee was walking along a gravel roadway when, he stepped on some stones and lost his footing. Employee fell to the ground causing injury to left ankle. Supervisor: retha l. Leigh
## 3858 1/29/2010 11:42 am (fblackmo) employee was repairing fuel pump when, fuel splashed into his left eye. Supervisor: harold white
## 3859 1/3/2006 03:46 pm (blgay) employee was swiveling rescue boat towards cradle, bow of rescue boat pushed against left ring finger; crushing same between metal support of lift and rescue boat. Supervisor: harry sell
## 3860 1/30/2006 09:15 am (blgay) employee was going down the steps on the front of the production office trailer and missed the bottom step and fell to the pavement. Supervisor: charles e. Jones 3/6/2006 12:29 pm (fblackmo) *do not pay any bills see jw
## 3861 1/30/2008 02:57 pm (fblackmo) employee was standing on a raised floor in engine room (making rounds) when, he missed a step on the deck. The hatch plate was not supported correctly, employee felt pain in his left ankle. Supervisor: cindy austin
## 3862 1/30/2008 03:11 pm (fblackmo) employee was chipping up branches from trees. Employee was exposed to something that caused a rash on face. Supervisor: steven c. Blake
## 3863 1/30/2008 03:19 pm (fblackmo) employee was in the paint shop getting ready to go to lunch. He began to remove his steel toe shoes when, he lost his balance, and fell into metal locker causing injury to left wrist. Supervisor: thomas f. Bowser
## 3864 1/30/2008 03:38 pm (blgay) employee was going outside to conduct a cdl pre-trip and the sidewalk was icy. Employee fell and hit right elbow, wrist and hip. Supervisor: lorrie sineath
## 3865 1/30/2008 03:47 pm (blgay) employee was grinding on beam and flying debris got in right eye. Supervisor: r. E. Joyce
## 3866 1/30/2008 03:58 pm (blgay) employee was performing his pre-trip on his imap truck. At the time of the incident, employee was checking the oil and fluid levels and the hood fell from an upright position striking his hand breaking his right ring finger.
## 3867 1/30/2009 11:05 am (fblackmo) employee was reporting to work. Parking lot was icy. Employee slipped and landed on her back causing her shoulders and neck to be sore. Supervisor: paulette smith
## 3868 1/31/2005 03:02 pm (fblackmo) employee was securing backhoe bucket on a lowboy when, bucket shifted causing the injury to his left hand. Supervisor: r. L. Faulkner
## 3869 1/31/2005 08:31 am (slee) dot vehicle was stopped at the stop light. Pov hit sov in the rear. Pov was reckless.
## 3870 1/31/2005 11:55 am (fblackmo) employee was using a hand compactor to build up a fill section along the shoulder of the roadway. Employee was attempting to bring lifts up in 6' layers and step 1 foot in on each lift to cerat a stair-step fill section.
## 3871 1/31/2005 12:08 pm (fblackmo) employee was removing a spreader from the back of dump truck. Employee finished hooking up the chains to the top of the spreader when, he lost his footing causing the injury to his left ankle. Supervisor: bill price
## 3872 1/31/2005 12:18 pm (fblackmo) employee was driving truck during snow removal operation. Truck started to slide on ice and he was going to downshift it quickly when, his right hand hit the gearshift causing the injury to his right hand. Supervisor: w.R
## 3873 1/31/2006 02:59 pm (blgay) employee was driving a dump truck when an animal ran out in front of him. He ran off the right side of the road to avoid the animal, when he came back onto the road the back end of the truck swerved around, causing the truc
## 3874 1/31/2006 03:12 pm (blgay) employee tripped on sidewalk while walking around park statues after photographing them. Injured right middle finger and right ring finger. Swollen and bruised, but no cuts. Supervisor: julie whichard
## 3875 1/31/2006 03:30 pm (blgay) employee was squatting down, positioning jack stand under truck. The pry bar that was standing against work bench fell, striking employee on the right side of his neck. Supervisor: e. D. Quintana
## 3876 1/31/2007 02:03 pm (fblackmo) employee was removing blades from a boom mower. While driving the bolts out of the stump the hammer missed the punch striking top of his left hand. Supervisor: a. R. Pate
## 3877 1/31/2007 02:15 pm (fblackmo) employee tripped on pipe laying on uneven ground while working on site at norfolk southern railway facility. Supervisor: a. R. (drew) thomas
## 3878 1/31/2007 02:33 pm (fblackmo) employee was stepping across ditch when, his foot became entangled in a vine, causing him to fall on his right arm. Supervisor: leonard dills
## 3879 1/31/2007 11:29 am (fblackmo) employee was leaving his office when, he slipped on steps, caught himself on hand rail, and injured his back. Supervisor: j. F. Hiatt
## 3880 1/31/2007 11:44 am (fblackmo) employee was standing at an open tailgate at back of a crew cab truck. When employee flexed to lift the box straight up he, felt pain and heard a popping sound in his lower back. Supervisor: bobby robbins
## 3881 1/31/2007 11:53 am (fblackmo) employee was cutting chain shield inside salt spreader and had grate propped open when, prop moved letting grate close hitting employee in the top of the head. Supervisor: james conner
## 3882 1/4 employee was evaluated at ueohc for possible ill health issues which she attributes to construction dust in her work environment ()
## 3883 1/4 inch rod poked EE in the head.
## 3884 1/4/2005 07:41 am (fblackmo) employee was pulling on hose on snow plow when, he felt pain in his back. Supervisor: larry sawyer
## 3885 1/4/2005 07:52 am (fblackmo) employee was helping change blades on motorgrader following snow storm. Employee slipped and fell hitting his head on the edge of blades. Supervisor: george liverman
## 3886 1/4/2005 08:02 am (fblackmo) employee was spraying off top of spreader with pressure washer when, washer ran across his left foot causing burns. Supervisor: thomas h. Swayne
## 3887 1/4/2005 08:17 am (fblackmo) employee states while picking up plywood he, felt pain in his left shoulder and back. Supervisor: dennis baker
## 3888 1/4/2005 08:26 am (fblackmo) employee was changing snow plow blades when, something flew into his left eye. Supervisor: m. B. Smith
## 3889 1/4/2005 08:53 am (fblackmo) employee was getting highway work signs out of pickup when, he felt a sharp pain in his lower back. Supervisor: james d. Shelton
## 3890 1/4/2010 04:26 pm (blgay) employee was cutting a tree, when limb hit him in the head. Supervisor: doug mcneal
## 3891 1/4/2010 04:36 pm (blgay) employee was replacing trap in oil/water separator at equipment wash bay. Employee began to bend over to place trap in floor, when left shoulder popped. Supervisor: b. K. Hamby
## 3892 1/4/2010 04:50 pm (blgay) employee was closing the tool box on a crew cab truck and employee must have hit the latch with her hand while closing for it to stay latched. In doing so, employees right wrist popped as if sprained. Employee has been in pai
## 3893 1/4/2010 11:12 am (blgay) employee was in bed of dump truck removing in bed spreader, hooking chains to the beams, when he was walking around in bed of truck. He turned his right ankle and felt something pop. No pain until a few hours later and his an
## 3894 1/4/2010 11:28 am (blgay) employee was getting ready to step into loader and used 3 point stance. When stepping up employee felt something pop in his left knee and then felt a sharp pain in left knee. Supervisor: f. E. Roberts
## 3895 1/4/2010 11:43 am (blgay) employee arrived for work. Employee parked her car in employee parking area. As she was exiting her vehicle, she slipped and fell on ice, landing on left hip. Employee said she felt fine and refused medical treatment. Employe
## 3896 1/4/2011 02:11 pm (fblackmo) employee jackson was backing across the road during flagging operation when employee chavis was bumped with the pilot car (passenger side). Employee states "no one was injured in this incident". Supervisor: henry kirk
## 3897 1/4/2011 02:25 pm (fblackmo) employee was walking on the concrete parking lot to retrieve something from state vehicle when, he slipped on slippery chemical substance causing injury to his back. Supervisor: e. Boyd tharrington
## 3898 1/4/2011 02:38 pm (fblackmo) employee was removing limbs from the shoulder of the road when, he stepped on broken pavement edge causing injury to his right ankle. Supervisor: ronald whitley
## 3899 1/4/2011 02:51 pm (fblackmo) employee was using the gun on the crack sealing machine when, he returned from lunch he felt pain in his lower back on the right side. Supervisor: wayne wooten
## 3900 1/4/2011 03:31 pm (fblackmo) employee was walking outside of building to wash out a trash can when, something flew into his right eye. Supervisor: chris pendergraph
## 3901 1/4/2011 03:47 pm (fblackmo) employee was washing off a truck using a pressure washer when, the nozzle struck him on the forehead above the left eye. Supervisor: shelton james
## 3902 1/5/2004 03:50 pm (slee) private vehicle failed to stop and yeild at stop sign, pulled into path of dot vehicle.
## 3903 1/5/2005 02:12 pm (fblackmo) employee uses computer 75% of time. Employee experience pain in right wrist. Supervisor: greg y. Stevens
## 3904 1/5/2006 04:10 pm (blgay) employee was walking to office when she slipped in the hallway and fell. Supervisor: todd honeycutt
## 3905 1/5/2006 04:21 pm (blgay) employee was bending down to pickup something, as she straightened back up she hit her head on the corner of a shelf and fell backward, hitting her left hand on the base of a chair, causing sprain to hand and fingers. Supervi
## 3906 1/5/2010 10:39 am (blgay) employee was walking thru gate into truck lot to warm up truck. Employee made a few steps thru gate and slipped on ice, causing him to fall hitting right shoulder and head. Supervisor: cole gurley
## 3907 1/5/2011 03:55 pm (fblackmo) employee was boarding m/v at southport when, he slipped on icy steel deck causing injury to his right shoulder. Supervisor: david james
## 3908 1/6/2004 02:25 pm (fblackmo) employee was placing excelsior matting on backslope of ditch, matting slipped out of hand, he bent down to pick it up and while straightening up a small limb puncturing ear drum. Supervisor: marty morris
## 3909 1/6/2004 02:40 pm (fblackmo) employee was pouring concrete when, the spring on the handle flew up striking him on his lip. Supervisor: dale bullard
## 3910 1/6/2004 02:52 pm (fblackmo) employee was climbing out of truck when, his foot slipped causing the injury to his left knee. Supervisor: d. L. Dean
## 3911 1/6/2004 11:03 am (fblackmo) employee was operating a motor grader when, he felt cramps in his right foot. Supervisor: jay sutton 11/6/2006 01:26 pm (fblackmo) claim closed. Clinched on 02/25/2006. Do not use.
## 3912 1/6/2004 11:41 am (fblackmo) employee was struck from behind while traveling on highway 64 causing the injury to his neck and back. Supervisor: c. W. Mcadams
## 3913 1/6/2004 11:52 am (fblackmo) employee was walking to truck when, he stepped in a hole causing him to fall and injure his left knee. Supervisor: r. D. Mcintyre
## 3914 1/6/2004 12:07 pm (fblackmo) employee was moving bags of fertilizer from front and back of truck to unload. While lifting bags, employee felt pain in his back and hip. Supervisor: r. C. Harris
## 3915 1/6/2004 12:46 pm (fblackmo) employee states while driving stakes into the ground the hammer slipped striking him on his right knee. Supervisor: stonie d. Woolard
## 3916 1/6/2005 02:57 pm (fblackmo) employee was attempting to dump concrete out of forney air pressure when, he felt pain in his lower back. Supervisor: bobby l. Norris jr
## 3917 1/6/2005 10:38 am (fblackmo) employee states that her table is to long therefore, she is experiencing pain in her right shoulder. Supervisor: michele bailey
## 3918 1/6/2005 10:52 am (fblackmo) employee was helping remove dirt from around culvert when, he came into contact with poison ivy. Supervisor: j. Ronald lee
## 3919 1/6/2005 11:07 am (fblackmo) employee was placing traffic cones for lane closer on I-240. A tractor trailer truck struck a metal object on the roadway, causing object to be airborne and striking him on his right knee area. Supervisor: terry j. Davis
## 3920 1/6/2005 11:17 am (fblackmo) employee was stepping off of loader when, he fell to the ground because bottom step was missing. Supervisor: d. S. Edwards
## 3921 1/6/2009 04:39 pm (fblackmo) employee stepped out of flat bed truck (1215-6381-0206) missed step and fell to gravel ground. Employee hit back of head on gravel breaking skin, causing bleeding and pain in lower back. Employee also felt pain in neck and
## 3922 1/6/2010 08:09 am (blgay) employee was walking across parking lot, when he slipped on ice and fell on his back. Supervisor: ronnie brigmon
## 3923 1/6/2010 12:20 pm (fblackmo) employee was attempting to load metal sign posts onto truck. They are stacked on top of each other for transport. While sliding a post onto the stack, the post grabbed the one underneath it (metal to metal) and stopped cau
## 3924 1/6/2011 03:43 pm (barnes) employee was working in the bucket of a bucket truck (aerial lift) performing emergency maintenance on a traffic signal. When he reached down to get a led to put in the signal head, he twisted the wrong way and pulled a musc
## 3925 1/7/2004 02:15 pm (fblackmo) employee had just sat down in a pickup truck after putting up signs for the centerline paint crew when, he experience chest pains. Supervisor: greg godwin
## 3926 1/7/2004 02:26 pm (fblackmo) employee states possible carbon monoxide poisoning after inhalation of pressure washing fumes. Supervisor: russell I. Ramsey
## 3927 1/7/2004 02:37 pm (fblackmo) employee states while doing daily duties (filing and keying) she experienced pain in left elbow, wrist, and hand. Supervisor: tina varney
## 3928 1/7/2004 11:53 am (fblackmo) employee was lifting in a bucket of concrete when, he felt pain in his right hand. Supervisor: j. W. Downer
## 3929 1/7/2004 12:11 pm (fblackmo) employee was lifting air compressor up to place on pennel hook on truck when, he felt pain in his lower back area. Supervisor: p. M. Parker
## 3930 1/7/2004 12:21 pm (fblackmo) employee was helping load lumber when, the other employee drop his/her end to fast causing pain to employees right shoulder. Supervisor: tim k. Southard 11/6/2006 01:29 pm (fblackmo) claim closed. Clinched on 03/17/20
## 3931 1/7/2004 12:30 pm (fblackmo) employee was putting a white top stake in silk fence when, a splinter punctured his little finger on left hand. Supervisor: larry cavenaugh
## 3932 1/7/2004 12:40 pm (fblackmo) employee was pulling on boards of bridge deck when, he felt a sharp pain under his right arm and in his chest area. Supervisor: p. M. Parker
## 3933 1/7/2004 12:49 pm (fblackmo) employee jumped off trailer and landed on trailer jack causing lacerations to left leg. Supervisor: j. R. Price
## 3934 1/7/2005 03:00 pm (fblackmo) employee was de-icing vehicle and conducting daily check when, he slipped and fell on his right arm/shoulder. Supervisor: dewey f. Pierce
## 3935 1/7/2005 03:10 pm (fblackmo) employee was starting to use air compressor when, glass bottom boast sprayed motor oil in his face. Supervisor: stephen dillon
## 3936 1/7/2008 11:43 am (blgay) employee was bending over to pick up some money she had dropped, when her chair flipped out from under her. Employee fell on top of her back. Supervisor: gail smith
## 3937 1/7/2009 09:56 am (blgay) employee was walking in parking lot and fell. Employee put both hands out to catch fall, felt pain in left hand with four cuts. Pain continued along left side of hand from little finger toward wrist. Supervisor: b. J. Berryhil
## 3938 1/7/2009 10:13 am (blgay) employee was picking up a large cardboard box on us 74-a, when he stepped in a hole, injuring his right knee. Supervisor: r. D. Powell
## 3939 1/7/2009 10:23 am (blgay) employee was driving 1/2" steel rod into ground with a 15lb collar hammer. Collar cleared rod and left hand was impaled on down strike by rod through thumb and index finger on left hand. Supervisor: jody kuhne
## 3940 1/7/2009 10:37 am (blgay) employee was sawing up a fallen tree out of the road. The tree was covered in kudzu and didn't see the poison ivy, which got on employees arms and stomach. Supervisor: wendell chastain
## 3941 1/7/2009 10:45 am (blgay) employee was holding a driving rod for a co-worker because of the short space, trying to get a bolt out of a cap under the bridge. While holding the rod, the co-worker was hitting the driving rod, when the hammer came off and
## 3942 1/7/2009 10:55 am (blgay) employee was splitting wood and felt a sharp pain in lower back. Supervisor: l. Michael burke
## 3943 1/7/2011 05:20 pm (barnes) employee was called to work at ashe maintenance. He was to operate a salt truck. As he was walking out into the lot, he slipped on snow and ice. Employee's right leg bent back and out to the side and he injured his right kne
## 3944 1/8/2004 02:42 pm (fblackmo) employee was installing belts on mower when, his finger was caught between the frame and the tension belt. Supervisor: c. R. Tyson
## 3945 1/8/2004 02:51 pm (fblackmo) repetitive motion. Supervisor is not stated on form 18
## 3946 1/8/2007 04:11 pm (fblackmo) employee was trying to set up ladder when, he felt a sharp pain in his back. Supervisor: jeremy b. Creech
## 3947 1/8/2009 03:22 pm (fblackmo) employee had just finished patching a pothole on state road 1666 with cold patch. While he was driving back to the office, his hands began to feel numb and later began to ache. Supervisor: william randolph
## 3948 1/8/2010 05:01 pm (fblackmo) employee was walking across parking lot (coming in to work) when, she stepped on a rock twisting her left knee. Supervisor: jeanine cook
## 3949 1/9/2006 03:16 pm (blgay) employee was stopped at a red light, when he was rear ended by a pov. Supervisor: tasha n. Johnson 4/16/2007 11:14 am (lvaughan) per #19 - cervical & lumbar strain
## 3950 1/9/2006 08:26 am (blgay) employee was stepping down from spreader and got his left foot hung on bottom step. The in-body spreader had a ladder equipped, but due to height of truck the bottom of ladder is 3 1/2 feet to the ground. Supervisor: russell
## 3951 1/9/2006 11:29 am (blgay) employee was changing the cutting edge on the loader, when bolt slipped out of blade and cut his left middle finger. Supervisor: james conner
## 3952 1/9/2007 02:35 pm (fblackmo) employee was climbing down a ladder in the radio room when, he stepped on the floor his right knee gave away. Supervisor: b. Steven sisk
## 3953 1/9/2007 02:44 pm (fblackmo) employee was loading marine batteries when, he felt pain in his right elbow. Supervisor: donald l. Ferguson
## 3954 1/9/2007 02:58 pm (fblackmo) employee was pulling and handling brush that had poison ivy on it caused an allergic reaction. Supervisor: b. Will/gregory mccracken
## 3955 1/9/2007 03:18 pm (fblackmo) employee was taking roll up signs out of tube rack to put signs out when, she felt pain in left forearm/elbow. Supervisor: m. Tapp
## 3956 1/9/2007 03:30 pm (fblackmo) employee was called out to clean up tree that was blocking one lane of traffic. Employee was pulling tree limb when, limb broke, employee fell back on pavement causing injury to her lower back. Supervisor: david capps
## 3957 1/9/2007 03:47 pm (fblackmo) employee was cleaning dirt from trench with a shovel when, he felt pain in his left shoulder. Supervisor: clyde mauney
## 3958 1/9/2007 04:16 pm (fblackmo) employee was loading straw in back of truck when, he felt pain in his back. Supervisor: david mccray
## 3959 1/9/2007 05:07 pm (fblackmo) employee is deceased. Lung cancer death claim due to asbestos exposure. Keyed from form 18b. Supervisor: ronald j. Terry
## 3960 1/9/2007 11:18 am (fblackmo) employee re-aggravated his back sprain from a previous injury while operating a chain saw. Supervisor: edwin austin
## 3961 1/9/2007 11:29 am (fblackmo) employee was crossing intersection when, he struck on coming private vehicle. Employee experienced pain in his shoulder and neck area. Supervisor: mark turlington
## 3962 1/9/2007 11:42 am (fblackmo) employee cut left index finger while closing cabinet door. Supervisor: h. B. Rash
## 3963 1/9/2007 11:58 am (fblackmo) employee was holding a gate in position while the backhoe operator was filling around the gate post. Employee was standing on the opposite side of the gate from the backhoe and 8' away from back bucket. Backhoe rear bucket
## 3964 1/9/2007 12:09 pm (fblackmo) employee was climbing down from top of load on lowboy when, he felt pain in his left shoulder. Supervisor: russell ramsey
## 3965 1/9/2007 12:18 pm (fblackmo) employee was working under trailer when, debri fell behind safety glasses into right eye. Supervisor: danny lewis
## 3966 1/9/2007 12:31 pm (fblackmo) employee was leaning over the side of a truck bed to repair an air compressor that was in the back when, he felt pain in his lower back. Supervisor: d. W. Ashe
## 3967 1/9/2007 12:40 pm (fblackmo) employee was picking up a piece of brush that was being thrown down from a bank and at the same time another piece of brush fell down the bank and struck employee on the right hand. Supervisor: j. Leatherwood
## 3968 1/9/2007 12:49 pm (fblackmo) employee was helping an inmate load asphalt chunks into a backhoe bucket when, he felt pain in his left shoulder. Supervisor: ken pruett
## 3969 1/9/2008 05:08 pm (fblackmo) employee was securing his load when he noticed a vine hanging over his side board, employee reached up and pulled it down causing a rash on his left arm. Supervisor: j. M. Ellis
## 3970 1/9/2008 05:19 pm (fblackmo) employee were putting a salt spreader on a tandem dump truck. Mr. Vick was unbinding the binder for the salt spreader using a pipe for leverage when the pipe recoiled and hit him in the mouth. Supervisor: terry shaw
## 3971 1/9/2009 01:56 pm (fblackmo) employee was operating a blower when sand blew into his eye. Supervisor: archie smith
## 3972 1/9/2009 02:10 pm (fblackmo) employee was cutting and removing debris from us 64 in gore area. While pulling a limb back into the woods, it hung up, then broke loose, twisted, and hit his side of his face (left). A small piece of the limb entered his
## 3973 1/9/2009 03:35 pm (fblackmo) employee twisted right knee when getting out of truck. Supervisor: t. W. Kirk
## 3974 10 days post vee vaccination, EE suffered acute vee-like symptoms. Headache, fever, joint pain, chills, sore throat, vomiting--recurrin symtoms
## 3975 10/01/1999 03:01 pm Mr. Hepler injured his lower back while digging a hole with a pick axe. Supervisor: j. D. Bradner
## 3976 10/01/1999 03:09 pm Mr. Hamdan complained of injuries to his right arm near the shoulder joint on September 27, 1999. He stated he has been experiencing this pain since October 4, 1999. Supervisor: jesse w. Gilstrap. Note: first date of doctors'
## 3977 10/01/1999 03:27 pm employee was driving on us 701 in columbus county, when a wasp stung him on his left hand. Supervisor: jeffrey robinson
## 3978 10/01/1999 03:34 pm Mr. Daughtrey sprained his neck and hurt his left arm on September 16, 1999. He was traveling north on us 13, when a mud slide came down in front of his vehicle. Mr. Daughtrey hit the brakes, but still ran through the mud and the
## 3979 10/01/1999 03:44 pm Mr. Vann was working on a radio, when he tried to remove microphone from the clip holder. The microphone came loose and hit him in the mouth breaking his tooth. Supervisor: m. B. Mizelle
## 3980 10/01/1999 03:59 pm employee was standing on the bumper of crew cab, when his foot slipped causing him to slide off the bumper. He bruised ribs and contusion on his lung. Supervisor: n. S. Gibson
## 3981 10/01/1999 04:29 pm employee was getting out of truck, when he slipped off step injuring his left knee. Supervisor: d. E. Francis
## 3982 10/01/2003 02:04 pm (fblackmo) employee was cutting a limb with a chainsaw when, the limb flew around striking him on his left knee. Supervisor: archie smith
## 3983 10/01/2003 02:14 pm (fblackmo) employee was lifting a bale of straw when, he felt pain in his lower back area. Supervisor: terry van leazer
## 3984 10/01/2003 11:42 am (fblackmo) employee states while bending over to pick up files from file cabinet she, felt pain in her lower back. Supervisor: loretta johnson
## 3985 10/01/2003 11:54 am (fblackmo) employee states while pulling out from a dollar general he, failed to see a private vehicle and drove into his/her path. Supervisor: keith anderson
## 3986 10/01/2003 12:07 pm (fblackmo) employee was driving a medium dump truck that over turned when, the injury occurred to his right shoulder. Supervisor: lindsey o. Ethridge
## 3987 10/01/2003 12:20 pm (fblackmo) employee states while riding in truck limbs from a tree fell on cab. Employee bent over quickly to avoid limbs when, he felt pain in his lower back area. Supervisor: w. R. Loyd jr
## 3988 10/02/2000 02:18 pm employee was operating forklift moving heavy items; when he mashed left index and middle fingers. Supervisor: m. S. Venable
## 3989 10/02/2000 02:26 pm employee was driving to the quarry on 9/14; when sun visor fell down striking him in the mouth knocking out (two top front teeth implants). Supervisor: j. W. Weatherman
## 3990 10/02/2000 02:39 pm employee was clearing vegetation underneath bridge #143; when he had an allergic reaction causing both of his eyes to burn, swell, and water. Reaction cause to dust or pollen. Supervisor: tim southard
## 3991 10/02/2000 02:47 pm employee was bending over to look at cable on the floor; when he strained his lower back. Supervisor: j. Brad wall
## 3992 10/02/2000 02:54 pm employee pulled muscle in her lower back; when the bottom fell out of her desk drawer. Employee was trying to open the drawer at time of incident. Supervisor: t. H. Swayne
## 3993 10/02/2000 03:01 pm employee was sharpening chainsaw; when the file slipped off the chain causing a laceration to right index finger. Supervisor: t. L. Puckett
## 3994 10/02/2000 03:08 pm employee was hauling a water tank in a dump truck; when the load shifted resulting the truck to rollover. Mr. White has contusions to head, left hip and his left shoulder. Supervisor: j. B. Abernathy
## 3995 10/02/2000 03:14 pm employee was loading metal pipes on back of a truck on 9/21/00; when the pipe fell on/struck his right hand and thumb. Supervisor: m. S. Venable
## 3996 10/02/2000 03:19 pm employee was trying to open a window; when she pushed her right hand through the glass. She cut the right side of her hand and her right little finger. Supervisor: barbara lotharp
## 3997 10/02/2000 03:35 pm employee was pushing a wheel barrow full of concrete; when he felt a burning sensation in his lower right side of abdomen. Supervisor: c. D. Moorefield note: this claim sent/received in our office on Sept. 19, 2000 and remained
## 3998 10/02/2000 03:49 pm employee was trying to locate right of way monuments in woods/project site. He stepped on unlevel ground causing him to twist his right ankle and fall. He also injured his lower back. Supervisor: s. E. Cruthfield
## 3999 10/02/2000 04:06 pm employee was walking to throw away trash; when she tripped on torn carpet and sprain her left ankle. Supervisor: david chadwick
## 4000 10/02/2001 08:45 am (fblackmo) employee was moving desk on cart. An object from the desk fell onto employees foot. Supervisor: pat mitchell (acting supervisor)
## 4001 10/02/2001 09:05 am (fblackmo) employee was helping danny stevens in the equipment department to remove grader chains from the chain rack on the back of the grader so the rack could be repaired. Employee picked up the end of one chain to try and help
## 4002 10/02/2001 09:34 am (fblackmo) employee came in from lunch and slipped on wet floor. Supervisor: linda hyder
## 4003 10/02/2001 09:50 am (fblackmo) employee was cutting up trees that had already been layed down by the hydraulic excavator on state road 1401. Employee asked the excavator operator ( w. J. Mcmillan) to pull one of the trees out of the limb pile so he cou
## 4004 10/02/2001 10:09 am (fblackmo) employee was coming in from road test when he slipped in water on the floor causing him twist his knee. Supervisor: tola bailey
## 4005 10/02/2001 10:22 am (fblackmo) employee was driving nails in forms when he went to drive the nail with hammer, the nail flew up and hit him in the eye. Supervisor: a. L. Clark
## 4006 10/02/2001 10:42 am (fblackmo) employee was standing in ditch lining up pipe for driveway, twisted and felt pain in upper part of back. Supervisor: sarah g. Foster
## 4007 10/02/2001 11:09 am (fblackmo) employee was stepping into tool truck to get safety lens when he started to step down, slip causing him to fall to ground. Supervisor: h. M. Thompson
## 4008 10/03/2001 02:40 pm (fblackmo) employee was backing up, looking toward back, another employee backed into his vehicle. Supervisor: henry sturdivant
## 4009 10/03/2001 11:53 am (fblackmo) employee bent down to pick up a piece of broken asphalt and strained his lower back. Employee worked for several days, started having bad back pains over the weekend. Supervisor: c. W. Phelps
## 4010 10/03/2001 12:10 pm (fblackmo) employee was sitting on a concrete wall and lost his balance. Employee fell on his back. Supervisor: steve dillon
## 4011 10/03/2001 12:20 pm (fblackmo) employee was getting in and out of basket on platform truck several times, causing his lower back to have pain. Supervisor: b. T. Coble
## 4012 10/03/2001 12:33 pm (fblackmo) employee was attempting to climb onto flatbed truck to load straw when he fell and hit his leg. Supervisor: richard l. Icard
## 4013 10/03/2001 12:47 pm (fblackmo) employee met another vehicle in a curve and mirrors hit each other. Broken glass cut employees left arm. Supervisor: e. W. Spivey
## 4014 10/03/2002 11:59 am (fblackmo) employee was shoveling asphalt manually and felt a pull in his right upper arm. Supervisor: ke pruett
## 4015 10/03/2002 12:12 pm (fblackmo) employee was sawing logs when, he came into contact with poison ivy. Supervisor: jeff huffman
## 4016 10/04/1999 10:41 am employee was riding on dump truck entering the maintenance yard, when something came out of the air conditioning vent. This object caused his right eye to become irritated. Supervisor: mark e. Stafford.
## 4017 10/04/1999 10:56 am employee injured his left knee while climbing down off bucket truck. His hand and foot slipped causing him to fall about 5 to 5. 5 feet to the ground. He landed on his feet and fell back onto the guardrail. Supervisor: w. S. Ri
## 4018 10/04/1999 11:04 am employee injured his left knee when he tripped on a piece of wire, hitting his knee on the concrete. Mr. Cribb was walking from dozer to the pickup truck during time of injury. Supervisor: j. E. Spivey
## 4019 10/04/2002 07:33 am (fblackmo) employee reported on 08/12/2002 that she found two ticks on he head area, one behind her ear and one on her temple. Employee reported that she was having symptoms from the bites and went to the doctor. Supervisor: r. G.
## 4020 10/04/2002 07:51 am (fblackmo) employee was assisting in the removal of a 24'' concrete pipe form truck bed, a crowbar fell striking employee on his right foot. Supervisor: j. K. Murdock
## 4021 10/04/2002 08:19 am (fblackmo) employee attempted to jump across ditch and upon landing he felt pain in his left ankle. Supervisor: o. T. Anderson
## 4022 10/04/2002 08:32 am (fblackmo) employee was removing weight scale from the trunk of his patrol car, when he felt pain in his right arm. Supervisor: ssgt. D. Quigley
## 4023 10/04/2002 08:47 am (fblackmo) employee stated that while taking measurements for a commercial driveway on nc 211, she was bitten by a red bug on her abdomen area. Supervisor: iris h. Mccombs
## 4024 10/04/2002 09:03 am (fblackmo) employee was exiting building when he missed a step, causing pain to his left ankle. Supervisor; t. L. Gray
## 4025 10/04/2002 09:22 am (fblackmo) employee stated she is experiencing tingling and numbness in her left hand. Repetitive motion. Supervisor: richard howard
## 4026 10/04/2002 10:58 am (fblackmo) employee was checking for bottom of pipe when, he cut his index finger on left hand. Supervisor: james spender
## 4027 10/05/2000 02:07 pm employee was removing paint strainer from machine; when the wrench slipped pinching off his right index finger. Supervisor: w. S. Richard
## 4028 10/05/2000 02:25 pm employee was installing nuts and bolts; when he bumped/bruised his right elbow on the end of guardrail. Supervisor: s. R. Davis
## 4029 10/05/2000 02:32 pm employee came in contact with poison ivy while working in a ditch on 8/8/00. He has contact rash on both ankles and both legs. Supervisor: l. W. Currin
## 4030 10/05/2000 02:43 pm employee was standing on the left side of brush chipper when limb struck him in the face. The limb was being feed through the chipper at time of incident. Mr. Cooper suffered a broken nose and lacerations to his face. Superviso
## 4031 10/05/2000 02:53 pm employee was running to make a connecting flight at atlanta airport on 7/30/2000. He was carrying his luggage and wearing leather sole shoes when he tripped and fell on concrete injuring both knees. Supervisor: steven hulsey
## 4032 10/05/2000 03:37 pm employee came in contact with poison ivy plants while cutting trees on sr 1910 in burke county. She has contact rash on neck and all over body. Supervisor: r. D. Peeler *show all bills to joyce*
## 4033 10/05/2001 02:26 pm (fblackmo) employee was putting 48 x 48 signs in proper bin, had left hand on the backside of the signs while pushing with right hand. Employee did not move his left hand out of the way fast enough. Employees little finger on lef
## 4034 10/06/1999 09:17 am employee injured lower back while working with a power saw. He pulled the cord to crank the saw, a few minutes later he got sick and thought he had kidney stones. He went to the doctor, and at that time the doctor told him it was
## 4035 10/06/1999 09:38 am employee was inspecting a construction project when he found a tick around his waist/right front side. He noticed a small red bump after he removed the tick. Supervisor: s. Stephen daniel.
## 4036 10/06/1999 09:47 am employee came in contact with poison oak and has a rash on his face and arms. He was removing downed trees at time of incident. Supervisor: d. A. Hensley.
## 4037 10/06/1999 09:55 am employee suffered a contusion to his left foot, while cutting trees with a chain saw. The tree gave way trapping his foot between the ground and the tree. Supervisor: nate simmons
## 4038 10/06/1999 10:02 am Mr. Clemmer suffered injuries to his left leg below his knee while using a 4 pound sledge hammer. The hammer bounced off the back of dump truck causing a deep small cut on his leg. Supervisor: j. W. Stiles
## 4039 10/06/1999 10:09 am employee was using a pry bar to dislodge mud in ather when the machine auger started up turning the bar striking him on his head. Supervisor: k. R. Davis
## 4040 10/06/1999 10:21 am employee was stepping onto mower, when she felt her right knee pop. Supervisor: sarah gardner foster
## 4041 10/06/1999 10:27 am employee was stung by a yellow jacket on his upper right arm on 9/20/99. Mr. Bucher is allergic to bee stings. Supervisor: g. D. Fine
## 4042 10/06/2003 02:02 pm (fblackmo) employee was mounting cup dispenser in a new mobile office unit when, his hand slipped causing a cut to his right hand. Supervisor: g. R. Sproles 10/21/2003 12:16 pm (gwhite) 10/21/2003 12:16 pm (gwhite)
## 4043 10/06/2003 02:16 pm (fblackmo) employee was lifting lid to catch basin when, he felt pain in his groin area. Supervisor: o. D. Sparks and gary neal
## 4044 10/06/2003 02:27 pm (fblackmo) employee cut her pinkie finger on left hand on the tape dispenser while reaching for something off the printer. Supervisor: renee sutton
## 4045 10/06/2003 02:37 pm (fblackmo) employee stepped over a guardrail when, he twisted his right knee. Supervisor: t. A. Edgerton
## 4046 10/06/2003 02:50 pm (fblackmo) employee was participating in an outdoor group activity as part of a management training seminar when, he landed on the log his left foot slipped causing the injury to his ankle. Supervisor: j. R. Hopkins
## 4047 10/06/2003 03:00 pm (fblackmo) employee was moving a large tire to the door to use the forklift to bring it into the garage. The tire started to fall and employee reached out to catch it causing the injury to his left shoulder and elbow. Supervisor:
## 4048 10/06/2003 03:11 pm (fblackmo) employee went to the woods to use bathroom when, he was stung by a bee. Supervisor: a. O. Epley
## 4049 10/06/2003 03:22 pm (fblackmo) employee was operating a chain/pole saw on right of way when, he felt pain in his upper back. Supervisor: d. W. Parkinson
## 4050 10/06/2003 03:47 pm (fblackmo) employee states while cutting plywood a splint flew into his eye. Supervisor: dennis baker
## 4051 10/06/2003 11:34 am (fblackmo) employee was driving a state pick up when, a private vehicle pulled out in front of him causing truck to run off the road hitting a tree. Supervisor: m. B. Smith
## 4052 10/06/2003 11:59 am (fblackmo) employee was cutting limbs off the back of a truck when, he lost his footing falling on his left arm causing the injury. Supervisor: p. E. Williamson
## 4053 10/06/2003 12:09 pm (fblackmo) employee was lifting pain drums when, he right index finger was mashed. Supervisor; w. R. Wall
## 4054 10/06/2003 12:18 pm (fblackmo) employee was going to get sand off the back of truck when, he stepped in a hole turning his left ankle. Supervisor: f. C. Tapp
## 4055 10/06/2003 12:48 pm (fblackmo) employee was clearing survey line when, he came into contact with poison ivy. Supervisor; t. K. Wheeler
## 4056 10/06/2003 12:56 pm (fblackmo) employee was working in tall grass when, he found a tick on his left upper thigh. Supervisor: t. H. Swayne
## 4057 10/07/1999 01:45 pm employee stated he sprained his back when loading straw bales onto a truck. Employee did not notify supervisor until next day. Did not go to doctor until 2nd day after injury.
## 4058 10/07/1999 01:57 pm employee was chaining down backhoe when particles of dust fell off backhoe into left eye.
## 4059 10/07/1999 09:00 am Mr. Wright along with a fellow employee were lifting a plastic table into bed of a dump truck, when Mr. Wright's left leg gave out. He fell backwards over the guardrail landing face down on his right side. Mr. Wright tried to get
## 4060 10/07/1999 09:07 am Mr. Olive injured his left forearm, when he tripped on uneven pavement in his office parking lot. He fell against the curb and landed on his forearm. Supervisor: michael jarman
## 4061 10/07/1999 09:16 am employee was getting up brush and debris from hurricane floyd when some kind of unknown insect bit him near his right eye and on his left and right cheeks. Supervisor: thomas j. Burchell.
## 4062 10/07/1999 09:29 am employee was standing outside welcome center, when she suddenly felt dizzy and fainted. She struck her face on the walk way when she fell; bruising her under the left eye. The cause of the incident was... Her white blood count wa
## 4063 10/07/1999 09:37 am Mr. Hemric was lifting a eight foot light fixture onto a basket with a fork lift, when it slipped cutting his left thumb. Supervisor: mark y. Walker
## 4064 10/07/1999 09:47 am Mr. Peoples was unloading pipes off a trailer, when the pipe hook slipped and swung the pipe around striking him. The pipe pushed him into the trailer causing a cut to his left elbow. Supervisor: r. A. Ellington
## 4065 10/07/1999 09:56 am Mr. Deese was removing scrapes from day lilies, when he touched a guy wire. He was shocked and transported by ambulance to mission st. Joseph's emergency room. His left hand and groin areas were affected by electrical shock. Supe
## 4066 10/07/1999 10:15 am Mr. White was pulling himself into dump truck by grabbing the steering wheel with his right hand, when he felt something pull in his right wrist. Supervisor: c. M. Walker
## 4067 10/07/1999 10:22 am Mr. Gray tripped and fell from loading ramp while loading oil on 9/26/99. He cut his nose, hands and scratched the lenses in his glasses. Supervisor: d. Foster
## 4068 10/07/2003 07:34 am (fblackmo) employee was exiting truck when, he stepped into a hole causing the injury to his left knee. Supervisor: ray smith
## 4069 10/07/2003 08:03 am (fblackmo) employee states while inspecting bridge he came into contact with poison ivy. Supervisor: tim earp
## 4070 10/07/2003 08:41 am (fblackmo) employee states he fell while participating in a unit activity which caused the injury to his left shoulder. Supervisor: dave vanpelt
## 4071 10/07/2003 08:55 am (fblackmo) employee states while pushing on a tree to remove a saw he, felt his left shoulder pop out of place. Supervisor; larry lovington
## 4072 10/07/2003 09:07 am (fblackmo) employee was walking back to truck after cutting trees when, he stepped on a branch causing the injury to his right ankle. Supervisor; ben williams
## 4073 10/07/2003 09:18 am (fblackmo) employee was cutting a piece of line when, the knife slipped causing a cut on his left leg. Supervisor: r. E. Hill
## 4074 10/07/2003 10:25 am (fblackmo) employee was climbing out of bed and stepped on a wet tire, slipped and fell on truck, causing a bruise on his chest and abdomen area. Supervisor: t. M. Smith
## 4075 10/07/2003 10:37 am (fblackmo) employee was cutting limbs on right of way when, he came into contact with poison ivy. Supervisor; benny sloan
## 4076 10/07/2003 11:30 am (fblackmo) employee was conducting a road test when, the drivers car was hit in the rear by another private vehicle causing the injury to her back/neck area. Supervisor; tex kidd
## 4077 10/08/2001 02:01 pm (fblackmo) employee was putting air hammer drill back into building. When employee went to sit it down, the pinch point between the bit and drill mashed employees right ring finger. Supervisor: h. M. Thompson
## 4078 10/08/2001 02:19 pm (fblackmo) employee was standing near the edge of pavement facing the roadway ditch talking to a property owner about the drop off at the edge of the pavement. A motor grader was operating on the opposite side of the roadway almos
## 4079 10/08/2001 02:37 pm (fblackmo) employee states that while adjusting clutch on dump truck he felt a muscle pull in the middle of his back. While giving road test the pain became severe. Supervisor: w. E. Evans
## 4080 10/08/2001 02:52 pm (fblackmo) employee had moved brush from a tree that had been sowed up. Employee began to itch and a rash broke out. Supervisor: r. D. Powell
## 4081 10/08/2001 03:04 pm (fblackmo) employee was waiting for equipment to move out of the way when a bee stung him on his right arm. Supervisor: steve dillon
## 4082 10/08/2003 08:19 am (gwhite) 05/12/2004 02:12 pm (gwhite) 05/12/2004 02:12 pm (gwhite)
## 4083 10/09/2000 03:51 pm employee was hanging scaffold when another employee jumped down onto the scaffold. The scaffold broke loose from the crane causing Mr. Gregory to fall into the water injuring his left shoulder, left elbow, and abdomen. Supervisor:
## 4084 10/09/2000 04:04 pm employee was bitten by a tick on 8/1/00 on his chest area while working in rolesville. Supervisor: hal bain
## 4085 10/09/2000 04:10 pm employee tripped and fell as he stepped into a hole while getting cleaning supplies. He twisted/sprained his right ankle and bruised his ribs. Supervisor: mike presnell
## 4086 10/09/2000 04:17 pm employee was traveling east on sr 1112 when he was struck on his right front side by a motor cycle. Mr. Wilkins pulled out in front of motor cycle throwing the cycle driver onto the roadway. There are no physical injuries, but em
## 4087 10/09/2001 01:03 pm (fblackmo) employee passed out during a safety meeting prior to starting work. Medical staff from raleigh ems came to the work site and checked the employee and found no obvious problems. He was taken to concentra and then to his
## 4088 10/09/2003 02:25 pm (fblackmo) employee states while taking down zone signs he, stepped into a hole causing the injury to his left hip area. Supervisor; larry j. Jackson
## 4089 10/09/2003 02:36 pm (fblackmo) employee was sitting in back of state vehicle when it was hit in the rear by a private vehicle. Employee experience pain in his back area. Supervisor: t. J. Burchell
## 4090 10/09/2003 02:51 pm (fblackmo) employee lost her balance and fell on basement hallway floor. Supervisor: edith mcdaniel
## 4091 10/09/2003 03:19 pm (fblackmo) employee slipped in hallway upon exiting kim blasings office. Supervisor: richard howard
## 4092 10/09/2003 03:34 pm (fblackmo) employee was lifting pump out of truck when, he felt pain in his lower back. Supervisor: m. J. Gray
## 4093 10/1/2008 01:17 pm (blgay) employee was cutting trees out of ditch line on nc 18 north. A limb brushed the front of lincoln co. Inmate bus, bounced back and struck employee on left side of rib cage. Supervisor: roger wray
## 4094 10/1/2008 01:25 pm (blgay) employee stated he was driving a sign post with a 12lb sledge hammer, he felt something pop in his back, causing pain. Supervisor: eric schenz
## 4095 10/1/2008 01:34 pm (blgay) employee was helping crew clear r/w to take bank off. Using trax to push against tree so it would fall in road while employee was cutting tree. Tree split from stump up causing employee to jump off bank to keep from being hi
## 4096 10/1/2008 02:00 pm (blgay) employee was observing paving operations and taking up asphalt tickets. An employee working for the paving crew was getting out of the way of the asphalt trucks and backed into our employee with a pickup truck which tossed h
## 4097 10/1/2008 11:48 am (fblackmo) employee was walking out of wooded area when, tree branch struck him in his left eye. Did not have eye proctors/shields on. Supervisor: logan williams
## 4098 10/1/2008 12:08 pm (fblackmo) employee was stepping out of truck when, he strain his right knee. Supervisor: bn braswell / gl baker
## 4099 10/1/2008 12:22 pm (fblackmo) employee was cutting grass on a down hill slope, hit bump and felt sharp pain in left lower back. Supervisor: denny finner
## 4100 10/1/2009 03:17 pm (blgay) employee was conducting a road test. While the customer was waiting to make a left turn on county home road from hwy 87, the vehicle they were riding in was struck from behind by another vehicle. Employee has pain in neck an
## 4101 10/1/2009 03:31 pm (fblackmo) employee was moving a piece of concrete while inspecting bridge when, he felt pain in his groin area. Supervisor: w. S. Joyner
## 4102 10/1/2009 03:34 pm (blgay) employee was spraying wooded areas to take out weeds and under growth. Yellow jacket stung employee on his right ear. Supervisor: r. A. Brower
## 4103 10/1/2009 03:45 pm (fblackmo) employee was exiting bathroom when, door closed on his hand. Supervisor: k. Dale gray
## 4104 10/1/2009 03:47 pm (blgay) employee was unloading equipment and supplies to be used in the newland office. While taking the box from the rear of car, employee turned to close hatch and walked away. Employees foot slipped, causing a popping noise with
## 4105 10/1/2009 12:25 pm (fblackmo) employee was walking down the road, turned and twisted right knee. Supervisor: e. Boyd tharrington, pe
## 4106 10/1/2009 12:37 pm (fblackmo) employee was driving when, bee flew into the window and stung him on his right hand. Employee experienced chest pain. Supervisor: t. E. Davenport
## 4107 10/10/2000 04:35 pm employee was replacing cap on bridge in close quarters; when the cap rolled off and fell on his left forearm. Supervisor: a. W. Smith
## 4108 10/10/2000 04:41 pm employee was picking up trash in the median; when a passing truck blew debris in employees left eye. Supervisor: j. B. Abernathy
## 4109 10/10/2000 04:49 pm employee was cutting limbs from trees with a chainsaw; when saw dust blew into his left eye. Supervisor: r. S. Minton
## 4110 10/10/2000 04:58 pm employee was helping contractor move pipes when he felt intense pain in his lower back. Supervisor: c. R. Styles
## 4111 10/10/2000 05:03 pm employee was clearing brush on various bridges in buncombe county when he came in contact with poison ivy plants. Employee has contact rash on both arms. Supervisor: wayne l. Miller
## 4112 10/10/2000 05:09 pm employee was working with patch crew on 4/14/00; when he had an allergic reaction while spraying asphalt. Mr. Turpin has a rash all over his body. Supervisor: r. E. Austin
## 4113 10/10/2001 02:54 pm (fblackmo) employee cut his right hand with a brush axe while clearing brush on project corridor. The cut required four stitches to close. Employee was attempting to move a limb with his left hand, the bush axe slipped and the bl
## 4114 10/10/2001 03:11 pm (fblackmo) employee was working under bridge when he felt a pull in his back. Employee had stiffness while returning to the bridge yard. Supervisor: c. N. Vaughn
## 4115 10/10/2001 03:23 pm (fblackmo) employee was giving a road tests while getting in and out of the vehicle she felt a pull in her stomach area. Supervisor: vernon canady
## 4116 10/10/2001 04:19 pm (fblackmo) employee was getting off of the loader and stepped on last step when his foot slipped out and fell and turned his right ankle. Supervisor: m. H. Thomas
## 4117 10/10/2001 04:35 pm (fblackmo) employee was cutting down a tree on a secondary road with a chain saw when he came in contact with poison ivy. Supervisor: terry j. Shaw
## 4118 10/10/2001 05:12 pm (fblackmo) employee was lifting a chair off the m/v silver lake and putting into the state truck when he felt a twinge around the navel. Upon examination he noticed a protrusion on the navel. Supervisor; r. E. Hamilton
## 4119 10/10/2002 02:27 pm (fblackmo) employee was rolling a rock out of the roadway when he felt a pian in his rib area. Supervisor: b. J. Vance
## 4120 10/10/2002 02:42 pm (fblackmo) employee states, he was hauling gravel to the work site on bald mtn. When, he met an oncoming car. Employee moved to the right side of the roadway the shoulder of the road broke off, causing the truck to turn over. Sup
## 4121 10/10/2002 03:06 pm (fblackmo) employee fell out of fire truck after road test. Supervisor: marsh harris
## 4122 10/10/2002 09:53 am (fblackmo) employee was stepping off truck when he felt a pop in his right knee. Supervisor: richard dewhurst
## 4123 10/10/2002 10:34 am (fblackmo) employee stated she was flagging traffic on state road 1972 when she was from behind from the driver operating the machine. Supervisor: steve clayton
## 4124 10/10/2002 10:58 am (fblackmo) employee was working with crew members on state road 1007 when he was bitten by fire ants. Supervisor: jerry keene
## 4125 10/10/2002 11:25 am (fblackmo) employee states his left foot slipped while attempting to climb into the cab of the backhoe. Supervisor: t. F. Bray
## 4126 10/10/2002 12:05 pm (fblackmo) employee stepped on the vessel deck, skid plates caused his foot to shift to one side causing the injury to his right ankle. Supervisor: e. M. Farrow
## 4127 10/10/2005 02:32 pm (blgay) employee was working under bridge #143 - wilson county cutting out decayed joist. When joist was cut out employee was cleaning up debris when he felt a sting in his right glove. Supervisor: elipidio guera
## 4128 10/10/2005 02:44 pm (blgay) employee was bitten by an unknown insect or spider while performing surveying duties. Supervisor: c. E. Dumas, jr.
## 4129 10/10/2005 02:55 pm (blgay) employee was picking up debris and felt pain in right thumb. Supervisor: b. R. Knowles
## 4130 10/10/2005 03:05 pm (blgay) employee was putting lug nuts on wheel while mounting rim. Employee was using air wrench & socket. While tightening lug nut, socket slipped off nut pinching right thumb, cutting it. Supervisor: j. D. Lewis
## 4131 10/10/2005 03:20 pm (blgay) employee fell getting up out of a chair in his office. Employee caught himself with his left hand on the floor. Hand started swelling around lunch time. Supervisor: b. L. Norris, jr., p. E.
## 4132 10/10/2005 03:32 pm (blgay) employee was weed eating and came into contact with poisonous vegetation. Supervisor: m. P. Newman
## 4133 10/10/2005 03:43 pm (blgay) employee was bush axing and got into poison ivy. Supervisor: lawrence n. Long
## 4134 10/10/2007 02:43 pm (fblackmo) employee was keying when her center left finger locked up causing pain. Supervisor: stephanie benares
## 4135 10/10/2008 03:22 pm (fblackmo) employee stated he was walking across metal floor and felt his left knee twist. Supervisor: a. W. Cooke
## 4136 10/10/2008 08:11 am (blgay) employee was stepping out of the crew cab truck onto the shoulder of us 220 bypass and fell. As he fell, he landed on his right shoulder. Supervisor: jimmy maness
## 4137 10/10/2008 10:03 am (fblackmo) employee was flagging traffic when, wind gust blew sand into her left eye. Supervisor: d. T. Cottrell, sr
## 4138 10/10/2008 10:15 am (fblackmo) employee was switching rescue boats between two ferries lupton and southport. During the movement of the equipment, his hands slipped causing injury to right center finger. Supervisor: adron g. Wade
## 4139 10/10/2008 11:17 am (fblackmo) employee was stung by a hornet after getting out of pickup in parking lot. Supervisor: walter crumpler
## 4140 10/10/2008 11:29 am (fblackmo) employee was getting out of dump truck when, his foot slipped causing him to fall to the ground, and hit his left knee.
## 4141 10/11/1999 01:01 pm standing on top of the safe trying to reach box of rubber bands on top self. I stepped off the back lost balance and fell. Caught shelf with left hand pulled left shoulder.
## 4142 10/11/1999 01:39 pm employee was digging out asphalt with a pick ax when a piece of steel from the pick broke hitting and lodging in employees left arm.
## 4143 10/11/1999 01:49 pm employee picked up tick in field on August 31, fount it embedded Sept. 1
## 4144 10/11/1999 01:58 pm employee was operating a mowing machine. When he realized he had a poisonous rash he treated it at home and a fellow employee gave him some medicine he had gotten from the doctor. The rash continued to get worse and medical treatm
## 4145 10/11/1999 09:26 am while working in dare county following hurricane dennis, employee became ill. On 09/03/1999 had headache and stiffness in neck. On 09/05/1999 rash developed on ankles. On 09/05/1999 rash spread over most of body and he developed
## 4146 10/11/1999 09:43 am during debris removal operation employee walked behind chainsaw operator without making his presence known to operator. Employee reached for a limb while in the operators blind side. Saw came in contact with employee's right thum
## 4147 10/11/1999 10:54 am employee states that he flagging traffic on bunce rd. (sr1411) when a lady in small refused to move into other lane until she got 15-20 feet away from employee. Employee states that he dove out of the way, twisting and spraining hi
## 4148 10/11/1999 11:16 am employee states that he was pulling cord on chainsaw to start the machine when the cord jerked back on him. Employee states that he noticed his right wrist started hurting a short time later.
## 4149 10/11/1999 12:34 pm employee was mounting dump truck step and his foot slipped. The employee's right shin hit the step and was scraped approximately 4' in length.
## 4150 10/11/2000 04:01 pm employee was removing bolts when the wrench slipped bruising his right wrist. Supervisor: ken anderson
## 4151 10/11/2000 04:09 pm employee along with a co worker was carrying/holding plate steel out of a metal bin; when the plate slid out causing it to fall on Mr. Jarman's left foot. Supervisor: kenneth morris
## 4152 10/11/2000 04:14 pm employee was cutting trees when he came in contact with poison ivy plants. He has contact rash on both arms and on his right hand. Supervisor: t. L. Puckett
## 4153 10/11/2000 04:19 pm employee was removing alternator from motor grader when the battery wire caused an electrical shortage. This caused a second degree burn to his left hand. Supervisor: e. M. Presnell
## 4154 10/11/2000 04:29 pm employee was feeding tree limbs into chipper; when the chipper jerked causing the limb to strike and cut Mr. Hall's right hand. Supervisor: d. M. Pressley
## 4155 10/11/2000 04:35 pm employee was pulling brush and feeding it into the chipper; when he felt pain/pop in his left mid-back area. Supervisor: t. L. Puckett
## 4156 10/11/2000 04:45 pm employee was dismounting mower to pick up trash on 9/20/00. When he attempted to get back onto mower he strained muscles in his right groin area. Supervisor: j. K, rhyne note: form 19 sent to our office and stampted 10/11/00
## 4157 10/11/2000 05:02 pm employee was performing a unit weight concrete test in class on 10/3/00. He lifted concrete bucket (proper lifting technique) when he felt pain in his right hip. Supervisor: kelly a. Linton
## 4158 10/11/2000 11:07 am employee states she has pain in her right forearm and wrist due to repetitive motion from keying on the job. Supervisor: addie avery
## 4159 10/11/2001 03:42 pm (fblackmo) employee was giving a road test when, he informed the customer to stop because of backing crooked. The customer stepped on the accelerator instead of the brake causing, the vehicle to go into a ditch. Supervisor: dougl
## 4160 10/11/2001 04:12 pm (fblackmo) employee was reaching for a 10ft. Post when, he turned employee felt a pop in his back. Supervisor: gene johnson 11/23/2004 08:44 am (mpark)
## 4161 10/11/2001 04:26 pm (fblackmo) employee was cutting the top of a wooden plate off the dyno building with a reciprocating saw. The saw jammed and kicked back pinning his left hand between the saw and the 2x8 wooden plate.
## 4162 10/11/2001 04:39 pm (fblackmo) employee was hauling stone on secondary road construction project. Employee got out of truck and stepped onto form. Employee did not see rock in dirt and stepped on it causing him to hurt his foot. Supervisor: archie c
## 4163 10/11/2001 04:55 pm (fblackmo) employee, while crossing over a guardrail the wooden piece between the rail and the post that he was standing on moved causing him to loose footing and he fell striking his knee on the guardrail. Supervisor: david playe
## 4164 10/11/2001 05:19 pm (fblackmo) repetitive motion with 3lb. Hammer, driving rivets. Supervisor: james hoffman
## 4165 10/11/2001 05:32 pm (fblackmo) employee was jumping into a trench and hurt his right foot. Supervisor: david pharr
## 4166 10/11/2001 08:48 am (fblackmo) employee was crossing ditch to go up incline and pulled muscle in back of right leg. Supervisor: j. D. Shelton
## 4167 10/11/2001 09:05 am (fblackmo) employee was cutting vines when chainsaw chain grabbed protective chaps, twisting them around his left leg, exposing the shin area. The chain bounced down his shin causing 5 - 6 small lacerations that required 9 stitche
## 4168 10/11/2005 02:03 pm (blgay) employee was walking to fast and was not using her cane when she tripped and fell. Supervisor: richard howard
## 4169 10/11/2005 02:22 pm (blgay) employee was pumping excess tack back into storage tank. Employee removed hose from tank when he thought truck was empty. Valve on truck was closed causing pressure to build up. Hose blew off tank and tack sprayed all over
## 4170 10/11/2005 02:47 pm (blgay) employee was driving in the outside lane of cumberland road. Second vehicle was traveling on the inside lane of cumberland road going in the same direction. Pv vehicle cut across the roadway in front of employee. Employee w
## 4171 10/11/2005 08:41 am (blgay) employee had bent down to pull loose post out of ground and felt pain in lower back. Supervisor: donald griffith
## 4172 10/11/2005 08:50 am (blgay) employee was loading concrete debris by hand onto backhoe and hurt area between left leg and groin area. Supervisor: lawrence marks
## 4173 10/11/2005 09:02 am (blgay) employee was helping to build a barricade, while lifting a sign he hit burr on the sign with his elbow, cutting it. Supervisor: r. D. Summers
## 4174 10/11/2005 09:24 am (blgay) employee was using backhoe when he stepped off to use bathroom. Employee stepped on uneven shoulder turning his left ankle. Supervisor: chris taylor
## 4175 10/11/2005 09:37 am (blgay) employee was squatting down to start chainsaw when he stood up he felt a burning pain between his legs. Supervisor: rodney tanner
## 4176 10/12/2004 08:58 am (fblackmo) employee states that he was bending to look at serial numbers when he injured his back. Supervisor: t. S. Collins
## 4177 10/12/2004 09:13 am (fblackmo) employee was helping move and load surplus items on trailer when, he felt pain in his groin area. Supervisor: william h. Williams jr
## 4178 10/12/2004 09:26 am (fblackmo) employee mashed right ring finger between two rollers and a tarp while trying to free grass debris in bed of truck. Supervisor: chris mccall
## 4179 10/12/2004 09:40 am (fblackmo) employee was walking around dump truck when, he hit his head on the tailgate. Supervisor: ralph murdock
## 4180 10/12/2004 10:37 am (fblackmo) employee was changing tire when, he felt pain in his lower back. Supervisor: james conner 11/30/2004 10:27 am (mpark)
## 4181 10/12/2004 10:48 am (fblackmo) employee states that a ball of concrete came out of shoot striking him on his right hand and wrist area. Supervisor: greg johnson
## 4182 10/12/2004 11:28 am (fblackmo) employee states she was crossing over lines in johnston county. The contractor put to much base course asphalt in hole causing her to get in fumes to measure depth. Supervisor: kevin bowen
## 4183 10/12/2004 11:43 am (fblackmo) employee was in service training when, he was stung by a bee under his left eye. Employee fainted. Supervisor: timothy s. Collins
## 4184 10/12/2004 12:03 pm (fblackmo) employee states while keying in daily work she, felt pain in her right elbow. Supervisor: susan stewart
## 4185 10/12/2004 12:32 pm (fblackmo) employee states he bent over to pick up a piece of angle iron when, he heard and felt something pop in his lower back. Supervisor: bobby thrower
## 4186 10/12/2006 01:51 pm (fblackmo) employee fell while stepping in ditch causing injury to his left knee. Supervisor: thomas baldwin 10/12/2006 02:02 pm (fblackmo) can only pay bills up to 10/12/2006 *see corr.*
## 4187 10/12/2006 02:07 pm (fblackmo) employee was returning from post office to pick up office mail when, private vehicle failed to yield right of way hitting employees vehicle. Employee experienced shoulder, upper pelvic area pain, soreness in neck, back,
## 4188 10/12/2006 03:20 pm (fblackmo) employee was flagging traffic on state road 1112 when, he was bitten by an insect on left arm. Supervisor: gene e. Strickland
## 4189 10/12/2006 03:31 pm (fblackmo) employee was working with another employee positioning poles when, his right little finger was caught between mast and cradle. Supervisor: cindy austin
## 4190 10/12/2006 03:43 pm (fblackmo) employee was adjusting a clutch with pry bar when, the bar slipped striking employee on the lip. Supervisor: w. J. Krider
## 4191 10/12/2006 03:57 pm (fblackmo) employee was carrying a box of files and was reaching to open the back door to the office. The files in the box shifted and she reacted to the movement in an attempt to avoid dropping the box. She felt immediate pain in
## 4192 10/12/2006 04:11 pm (fblackmo) employee was using a rod catcher to hold rods in casing and strained his abdomen area. Supervisor: dean argenbright
## 4193 10/12/2007 02:19 pm (fblackmo) employee was walking on curve when, she tripped in parking lot causing injury to her hands, arms, and knees. Supervisor: steven hulsey 12/01/2009 04:35 pm (slee)
## 4194 10/12/2007 02:24 pm (mdsloan) employee was changing the ink refill in a pen and noticed that the end of the refill was bent and so she attempted to straighten it out so it would go in the pen when the refill broke causing the end with the ink to jab I
## 4195 10/12/2007 02:32 pm (fblackmo) employee was walking out of bathroom when, she fell on wet floor on her left knee. Supervisor: james g. Tyler
## 4196 10/12/2007 02:43 pm (fblackmo) employee was helping employee remove vines off the new traffic service building when, he came into contact with poison ivy on his neck, chest, and arms. Supervisor: james g. Tyler
## 4197 10/12/2007 02:53 pm (fblackmo) employee was working in pile driving operation when, a small object got into his left eye. Supervisor: james zepeda
## 4198 10/12/2007 09:44 am (mdsloan) employee was cutting branches off of a tree that was blocking road sight and on the tree limbs was poison oak. Employee was infected with poison on his back and right arm. Supervisor: eddie l cagle
## 4199 10/12/2007 11:20 am (mdsloan) employee was installing some pipe for a stone heater when he had to cut a piece of pipe the piece that he had cut slipped and he grabbed it and as he did he received a cut to his left thumb from a small burr that was loca
## 4200 10/12/2010 11:31 am (barnes) employee states that she was in the restroom, when another employee "Ms. Wojcik" who is a larger sized lady than she is, bumped into her shoulder. (shoulder bumped). States that this was the second encounter with this empl
## 4201 10/12/2010 12:12 pm (barnes) employee " w. C. Ritter" was filling in for skid steer operator. Mr. Ritter was instructed by Mr. Michael beane (tsi) how to operate the skid steer, prior to milling potholes. During milling operation, the milling attachm
## 4202 10/13/2000 03:02 pm james t. Perry was cleaning around a crosspipe when a minivan crossed the center line and struck the backhoe.
## 4203 10/13/2000 09:40 am employee stepped on end of hand cart handle on 9/25/00 while working in equipment shop. The handle hit Mr. Vann in his face causing a laceration above his right eye. Supervisor: gerald e. Brabble 10/13/2000 10:19 am
## 4204 10/13/2000 10:50 am employee was weedeating on sr 1406 when the blade struck the sign post. The tip of the blade broke and cut him on his lower right arm. Supervisor: a. W. Smith
## 4205 10/13/2000 11:27 am employee was cutting down metal pin for equipment using a metal lathe; when metal particles flew into his left eye. Supervisor: m. B. Mizelle
## 4206 10/13/2004 02:40 pm (fblackmo) employee was putting a strap on pipe that he was going to haul. When pulling the strap to tighten, employee felt a pop in his lower, right abdomen. Supervisor: william t. Lowery jr *show all bills to joyce*
## 4207 10/13/2004 03:53 pm (fblackmo) employee was changing a motorists flat tire when, he felt pain in his chest. Supervisor; melvin dorsey
## 4208 10/13/2004 12:37 pm (fblackmo) employee was passed out in dump truck. Employee came through he felt a sharp pain in his right shoulder. Supervisor: r. J. Hollifield
## 4209 10/13/2005 09:25 am (blgay) employee was blowing straw at the clay hill mitigation wetlands site. When another employee threw a bale of straw to him causing his wrist to bend backward. Supervisor: walter bell
## 4210 10/13/2005 09:51 am (blgay) employee was weed eating around the maintenance yard and came into contact with poison ivy. Supervisor: retha leigh
## 4211 10/13/2005 09:59 am (blgay) employee was welding and glare from welder burnt eyes. Supervisor: carlton jarman
## 4212 10/13/2005 10:17 am (blgay) employee was descending stairs while carrying a tube and misjudged the last step causing him to stumble. Supervisor: len white
## 4213 10/13/2005 10:29 am (blgay) employee was getting out of truck and stepped on a rock causing him to twist his left ankle. Supervisor: donald king 10/28/2005 11:30 am (sshort)
## 4214 10/13/2006 08:58 am (fblackmo) employee stated that he was helping lower a steel beam that was on blocks. While the blocks were being removed the beam fell on its side. The beam hit employee on the leg and slid over his left knee, causing injury. Supe
## 4215 10/13/2006 09:12 am (fblackmo) employee was sitting as a member of the division safety sub committee in the division conference room. Bill stephenson noticed Mr. Mintz had gone into an appearence of sleep but, his eyes were wide open. Employee was laid
## 4216 10/13/2009 02:25 pm (fblackmo) employee was attempting to remove a sign rack from trailer when, he felt pain in his upper left arm. Supervisor: ricky w. Blalock
## 4217 10/13/2009 02:41 pm (fblackmo) employee was lifting post when, he felt pain in his upper back area. Supervisor: todd whitaker 10/13/2009 02:46 pm (fblackmo) see red note book
## 4218 10/13/2009 02:57 pm (fblackmo) employee was closing window on mower when, glass broken causing cut to his right hand. Supervisor: travis mintz 10/13/2009 02:58 pm (fblackmo) see notebook for address
## 4219 10/13/2009 10:51 am (fblackmo) employee was moving motor grader for dump truck to get in driveway when, he stepped from grader he turned his left ankle. Supervisor: j. W. Oliver
## 4220 10/13/2009 11:28 am (fblackmo) employee was walking down stairs when she slipped and fell. Employee tired to brace herself when injury occurred to her left wrist. Supervisor: steve piotrowski
## 4221 10/13/2010 10:07 am (barnes) employee was unloading surplus tires at the county landfill. As the truck was dumping tires they became stuck, and the employee unstuck the tires by pushing open the tailgate. Two tires came out suddenly. One tire landed
## 4222 10/14/1999 10:17 am employee was sitting at her desk in the field office when she was bitten on her left arm by an insect. Supervisor: d. L. Ferguson
## 4223 10/14/1999 10:25 am employee hurt his tailbone when he slipped and fell on a slick place on ditch bank. Mr. Moser was measuring to check the level of the ditch. Supervisor: d. W. Knight
## 4224 10/14/1999 11:01 am employee was trying to (push) force a 3x8 board into position, when the board popped out striking him on the left hand ring finger. Supervisor: steve davis 02/04/2000 11:06 am
## 4225 10/14/1999 11:07 am employee is having problems with pain in her left hand and wrist, also fingers tingle due to keying on her job. Supervisor: richard howard
## 4226 10/14/1999 11:26 am employee became ill while working on clean up efforts of hurricane floyd. Mr. Earwood suffered stomach cramps, diarrhea, vomiting and has intestinal infection. Supervisor: floyd mull
## 4227 10/14/2005 01:36 pm (blgay) employee was using a sledge hammer on the backhoe bucket when he felt a sharp pain in his back. Supervisor: m. H. Thomas
## 4228 10/14/2005 01:49 pm (blgay) employee was stepping off work platform and twisted right knee. Supervisor: keith smith
## 4229 10/14/2005 02:17 pm (blgay) employee was erecting high water signs due to flooding. Employee was driving sign post with a sledge hammer. While doing so a piece of metal flew in eye. Supervisor: s. D. Gurganus
## 4230 10/14/2005 02:29 pm (blgay) employee was on top of a step patcher truck pushing asphalt down in bed of the same. As he stepped down to put a steel bar in a side bin, another employee accidentally hit the switch to close the doors to hopper as he was p
## 4231 10/14/2005 02:44 pm (blgay) employee was using a shovel when he felt a sharp stinging pain in his shoulder. A knot came up on top of his shoulder over the weekend. Supervisor: kenneth horton
## 4232 10/14/2005 02:57 pm (blgay) employee was unloading barricade from truck when it slipped smashing and cutting his finger. Supervisor: ken anderson
## 4233 10/14/2005 03:07 pm (blgay) employee states "both hands go numb during day and extreme pain when numbness stops". Supervisor: dolphus marshburn
## 4234 10/14/2010 09:55 am (fblackmo) employee was inspecting pipe for erosion control after much rain. He slipped in mud and twisted his left knee. Supervisor: ronald canady
## 4235 10/14/2010 10:07 am (fblackmo) employee was installing sediment fence along ditch bank when he was stung on the face. Employee had an allergic reaction. Supervisor: ronald stanley
## 4236 10/14/2010 11:09 am (barnes) employee was dismounting kodiak truck. He had one foot on the wheel and one foot on the ground. He turned his hand a loose and his ankle that was on the ground gave way, causing employee to fall backwards onto the concrete
## 4237 10/14/2010 11:32 am (barnes) employee was operating a rubber tire loader. He had gotten down out of the loader and was standing on the ground. He turned to walk away. Upon turning, his ankle twisted and he started falling. As he fell, he caught him
## 4238 10/14/2010 12:16 pm (barnes) employee and crew was in the process of patching a pothole on nc 24/27 wb when a private vehicle driving at least 55-mph drove past the flagger and hit the back of the crew cab dump truck at full speed. It caused a tire to
## 4239 10/15/2001 02:03 pm (fblackmo) employee was shoveling asphalt from the back of truck when he felt pain in his back. Supervisor: m. J. Tyndall
## 4240 10/15/2001 02:17 pm (fblackmo) employee states that injury occurred do to prolonged intentional related conditions form July 9, 2001 to August 28, 2001. The employee has soft tissue, muscles and joints of the knee pain from a strain and stress. Empl
## 4241 10/15/2001 02:43 pm (fblackmo) employee states, years of mental stress from the job. Supervisor: not stated
## 4242 10/15/2001 02:59 pm (fblackmo) employee was dismounting a backhoe which had been loaded on a trailer. As employee was attempting to step out onto the trailer platform, his foot missed the trailer, he slipped down to the ground, bruising his left arm
## 4243 10/15/2001 03:17 pm (fblackmo) employee was removing old light fixtures when, a broken floresent tube broke and cut employees right arm. Supervisor: harvey magnum
## 4244 10/15/2001 12:44 pm (fblackmo) employee was conducting a road test. During the three point turn customer ran into curve causing the vehicle to jerk. The customer jammed on the brake and the car slid. Supervisor: sylvia r. Spain
## 4245 10/15/2002 01:10 pm (fblackmo) employee was drilling steel when the drill hung up, spun around and hit employee on the arm. Supervisor; c. C. Coggins
## 4246 10/15/2002 02:00 pm (fblackmo) employee was conducting a c. D. L. Skills, while pulling himself up into the cab he hurt his left index finger. Supervisor: gerald r. Holland
## 4247 10/15/2002 02:15 pm (fblackmo) employee was burning off welding area when some of the molten metal fell onto his left boot causing the injury to his ankle. Supervisor: hosea blount
## 4248 10/15/2002 08:24 am (fblackmo) employee was traveling south on state road 1002. At the intersection of central drive a private owned vehicle failed to yield at the intersection. Employee struck the private vehicle on drivers right side. Supervisor:
## 4249 10/15/2002 08:42 am (fblackmo) employee was delaminating a counter top by sliding a knife between the formica. The knife slipped causing the injury to his left hand. Supervisor: melvin newton
## 4250 10/15/2002 09:00 am (fblackmo) employee twisted his right arm while climbing off of truck after spraying tuck bed with orange juice. Supervisor: b. J. Vance
## 4251 10/15/2002 09:36 am (fblackmo) employee was exiting off the back of truck when his foot slipped causing the injury to his knee. Supervisor: a. S. Bailey
## 4252 10/15/2002 09:54 am (fblackmo) employee was flagging traffic when he turned around he stumbled over his feet causing him to fall hitting his right knee on the pavement. Supervisor: jim evans
## 4253 10/15/2002 10:10 am (fblackmo) employee was working with patch crew on hwy 62 when he found a tick on his right leg. Supervisor: r. T. Mcmanus jr
## 4254 10/15/2002 10:27 am (fblackmo) employee was doing physical training when he felt pain in his knee. Supervisor: k. King
## 4255 10/15/2002 10:59 am (fblackmo) employee was doing physical training when he felt pain in his right knee. Supervisor: k. King
## 4256 10/15/2002 11:11 am (fblackmo) employee was walking back from physical training when he felt sharp pain in his left knee area. Supervisor; k. King
## 4257 10/15/2002 11:21 am (fblackmo) employee was cutting bushes with an axe. While swinging the axe he felt pain in his right wrist. Supervisor: larry t. Williford
## 4258 10/15/2002 11:38 am (fblackmo) employee was sharpening a blade when his hand slipped causing a cut to his thumb on his right hand. Supervisor: t. J. Burchell
## 4259 10/15/2002 11:50 am (fblackmo) employee was installing a flared end to pipe on state road 1819. The pipe was unusual and awkward in size and weight. A chain was used to lift the pipe. While leveling the pipes employee felt pain in his back. Superv
## 4260 10/15/2003 02:04 pm (fblackmo) employee was clearing bridges on I-40 when, he came into contact with poison ivy. Supervisor: r. D. Robinson
## 4261 10/15/2003 02:46 pm (fblackmo) employee was driving paint truck in center lane on highway when, a garbage truck stuck the mirrors on employees truck causing the injury to his elbow and shoulder. Supervisor: franklin bullock
## 4262 10/15/2003 02:58 pm (fblackmo) employee was clearing debris from right of way when, the limb from the backhoe knocked him into another tree causing the injury to his back, legs, and finger. Supervisor; len bass & ronnie wainwright
## 4263 10/15/2003 03:11 pm (fblackmo) employee was inspecting guard rails for damage when, he stepped in a hole causing the injury to his left knee. Supervisor: j. Mark crook
## 4264 10/15/2003 03:28 pm (fblackmo) employee was installing light fixture when, the cover fell causing a cut to his right and left wrist. Supervisor; c. N. Edwards jr
## 4265 10/15/2003 03:37 pm (fblackmo) employee was removing debris from right of way using a backhoe when, he accidently knocked the backhoe into gear causing it to roll down the hill injuring his back. Supervisor: derek dixon
## 4266 10/15/2003 09:00 am (fblackmo) employee was conducting a road test when, the driver of the vehicle over compensated hitting the median. Employee states on 19 he was not injured. Supervisor: l. C. Moose
## 4267 10/15/2003 09:35 am (fblackmo) employee bent over to place sign rack on us 220 when, he felt pain in his lower back. Supervisor; archie smith
## 4268 10/15/2003 09:44 am (fblackmo) employee was running a rubber tire roller when, foreign matter went into his left eye. Supervisor: benton g. Jordan
## 4269 10/15/2003 09:55 am (fblackmo) employee was dragging tree limbs away from roadway that had fallen due to the hurricane damage when, he encountered a yellow jacket that stung him on both arms. Supervisor: benton jordan
## 4270 10/15/2003 10:21 am (fblackmo) employee was bent over using a chainsaw clearing debris from hurricane isabel when, he felt pain in his left side and upper left hipp area. Supervisor: e. Guerra
## 4271 10/15/2003 11:09 am (fblackmo) employee was welding bracket when, the flash caused burns to both his eyes. Supervisor: russell ramsey
## 4272 10/15/2003 11:20 am (fblackmo) employee was driving a dump truck when, he was stung by bees on his head and neck area. Supervisor: andy davis
## 4273 10/15/2003 11:40 am (fblackmo) employee was loading boards when, a splinter stuck in his right hand between thumb and fore finger. Supervisor: j. A. Ridge
## 4274 10/15/2003 11:50 am (fblackmo) employee stepped into a hole on judson road causing pain to his right knee. Supervisor; j. R. Price
## 4275 10/15/2003 12:03 pm (fblackmo) employee was working under bridge when, he was bitten by a yellow jacket. Supervisor; ricky ball
## 4276 10/15/2003 12:14 pm (fblackmo) employee was dragging tree limbs away from roadway when, he was stung by a yellow jacket. Supervisor: benton jordan
## 4277 10/15/2003 12:25 pm (fblackmo) employee was participating in recreational games at the employees appreciation day function, while playing volleyball he felt pain in his right ankle. Supervisor: bobby thrower
## 4278 10/15/2004 03:55 pm (fblackmo) employee was placing a ladder under bridge to cut bolts on post blocks. When setting ladder in creek the water current swept bottom of ladder causing it to start falling. Employee was trying to keep ladder from falling s
## 4279 10/15/2007 08:53 am (fblackmo) employee west states examiner tyndall followed her into a dark closet, while in the closet" examiner tyndall startled, frightened, and threatened her". Employee states she slightly turned causing pain to her lower back
## 4280 10/15/2007 09:17 am (fblackmo) employee was dismounting truck and struck his left elbow on the edge of the door. Employee made supervisor aware of incident on 8/31/07 and did not seek medical treatment until 9/18/07. Supervisor: frankie davis
## 4281 10/15/2007 09:37 am (fblackmo) employee was using a hand driver to drive a sign post when, he heard a pop and felt pain in his right elbow. Supervisor: todd whitaker
## 4282 10/15/2007 09:47 am (fblackmo) employee was cleaning off a drop inlet. While standing on the grate, the grate broke causing him to fall into drainage structure. Employee felt pain in his chest and left shoulder area. Supervisor: ronnie woodcock
## 4283 10/15/2008 01:31 pm (blgay) employee was sitting on the asphalt maintainer with his left leg on the platform, when a co-worker dumped the asphalt in and climbed back on the machine and lifted the screed box to move up the road to patch. Employees leg
## 4284 10/15/2009 08:28 am (fblackmo) employee was lifting rubber tires to place on back of truck when, he felt pain in his lower back area. Supervisor: greg vinson
## 4285 10/15/2009 08:41 am (fblackmo) employee walked to trash dumpster at edge of parking lot when, walking back she stepped on loose rocks causing her to fall and injury right hand, wrist, and knee. Supervisor: l. L. Upole, jr
## 4286 10/15/2009 08:55 am (fblackmo) employee reach into a tool box when, a piece of wire punctured his left ring finger. Supervisor: b. L. Wade 10/15/2009 09:03 am (fblackmo) see notebook for mailing address
## 4287 10/15/2009 09:28 am (fblackmo) employee was assisting with loading bridge decks on flat bed trailer when, he missed a step causing fall, and injured to his back. Supervisor: louis wetherington
## 4288 10/15/2009 10:07 am (blgay) employee was stopped on the paved shoulder of I-77, while co-worker retrieved some debris from the shoulder of the roadway. While parked on the shoulder of the roadway, a tractor trailer struck the state vehicle, causing ab
## 4289 10/16/2001 02:07 pm (fblackmo) employee was setting up signs when a sign fell on his left shoulder. Supervisor: s. G. Dillon
## 4290 10/16/2001 02:15 pm (fblackmo) employee was weed eating and received foreign chemical in his eye. Supervisor: david silver
## 4291 10/16/2001 02:40 pm (fblackmo) employee was using a gas power auger to make hole for planting daylilies when he hit hard ground which caused the auger to twist and the augers safety bar(the safety bar knocks the auger out of gear when the blade is in
## 4292 10/16/2001 02:58 pm (fblackmo) employee was raising and lowering the tailgate by hand to remove debris caught in the tailgate. He also helped remove debris from another truck using the same method. Employee pulled muscle in the lower lumbar region.
## 4293 10/16/2001 11:33 am (fblackmo) mower number one was stuck in ditch. Mower number two was attempting to pull mower number one out of the ditch. The chain broke flying back onto mower number ones windshield causing it to break and throw glass on the e
## 4294 10/16/2001 12:17 pm (fblackmo) employee had finished a road test in a small vehicle when stepping out, employee felt a pop in her lower back. Supervisor: ava parker
## 4295 10/16/2001 12:35 pm (fblackmo) employee was sitting in dump truck waiting to be loaded with dirt. When loader operator loaded it onto truck, bees swarmed into truck and stung driver on neck and ear. Employee exited the truck, started running and fel
## 4296 10/16/2001 12:49 pm (fblackmo) employee was loading a sandblaster onto truck from the loading dock. Employee lost balance and the sandblaster fell on employee. Supervisor: robert d. Sherrill
## 4297 10/16/2001 12:58 pm (fblackmo) employee was loading straw on truck and during mulching operation he was bitten by grain mites. Supervisor: ken taffer
## 4298 10/16/2002 02:53 pm (fblackmo) employee was setting up an oxygen and acetylene bottle for some workers, as he took one down, he went to reach for another, one tipped over and fell on his right arm. Supervisor: kevin lamar cooke
## 4299 10/16/2002 03:17 pm (fblackmo) employee arrived at work at 6:30 am. He entered office front door and lost his balance, falling to the floor he hit his left knee. Supervisor: r. E. Langley
## 4300 10/16/2006 02:28 pm (fblackmo) employee was flagging traffic when, a lady in private vehicle pull up. Employee looked toward the other flagman to see if it was clear. Private vehicle did not stop and her mirror struck employee on his left arm. Supervi
## 4301 10/16/2006 02:40 pm (fblackmo) employees fingers were caught in tailgate chain on dump truck. Supervisor: william e. Mcclendon jr
## 4302 10/16/2006 02:54 pm (fblackmo) employee was cutting back a line of sight in curve when, he came into contact with poison oak. Supervisor: robert g. Davis
## 4303 10/16/2006 03:08 pm (fblackmo) employee was pulling rope to small engine. The handle on the pull rope was in the employees right hand, with his left hand resting on the motor. The handled slipped out of the employees right hand, and struck his left on
## 4304 10/16/2006 03:20 pm (fblackmo) employee was hit in the head/eye while passing the paint hose to each other. Supervisor: chuck sharp
## 4305 10/16/2007 02:18 pm (fblackmo) employee was removing handcuffs from a individual in custody. Upon removal of the handcuffs, inspector smith noticed blood on his handcuffs which apparently got there by a small nick on the suspects arm. The blood was tr
## 4306 10/16/2007 02:31 pm (fblackmo) employee attempted to pick up barrel when, weight shifted and caused his arm to twist causing injury to elbow. Supervisor: j. T. Wiggins
## 4307 10/16/2007 02:43 pm (fblackmo) employee walked over to the side of the paint dock and reached over to get something out of the tool box located on the paint truck and slipped and fell between the dock and the paint truck. Employee hit his head, back,
## 4308 10/16/2007 12:02 pm (fblackmo) employee was attempting to remove a stump with the hydualic excavator. The stump suddenly broke loose causing employee and excavator to jerk back violently. Employee hit neck and head on the seat and back glass of excava
## 4309 10/16/2007 12:14 pm (fblackmo) employee was driving state own vehicle when, it was hit in the rear by a private vehicle. Employee felt pain in his neck. Supervisor: john rouse
## 4310 10/16/2008 08:16 am (fblackmo) employee states he experienced hearing loss from "the impact of noise exposures". Supervisor: perry mitchell
## 4311 10/16/2008 08:38 am (fblackmo) employee was pulling fence wire that wrapped around mower when, wire stuck into his left hand. Employee was wearing gloves but removed them to pull on the wire. Supervisor: b. N. Braswell
## 4312 10/17/2000 01:20 pm employee complains of numbing pain in both hands and left elbows due to repetitive motion from using chainsaw use over the years. Supervisor: n. S. Gibson
## 4313 10/17/2000 01:24 pm placed white top on property line. The top of a poison ivy plant had been cut off and employee did not know what he was touching until he saw the leaves on the ground. Has contacted rash on both arms and legs. Supervisor: joe cur
## 4314 10/17/2000 01:32 pm while putting bowls in cupboard pulled muscle in left shoulder. Strained left shoulder. Supervisor: t. L. Gray
## 4315 10/17/2000 01:39 pm employee was cutting trees on sr 1157 on 10/4/00. The tree started to fall, so she pulled chainsaw back and stepped back. The saw swung around cutting her on her right leg behind her knee. Supervisor: r. D. Peeler
## 4316 10/17/2000 01:54 pm employee was getting tire out of bed truck to change a flat; when he jammed his left ring finger while putting tire on the ground. Supervisor: m. S. Reese
## 4317 10/17/2000 10:35 am employee was driving truck while crew was building shoulders (normal procedures) when right rear tire dropped off hidden headwall covered by grass and shrubs forcing tires to slide of asphalt and turning over. Note: no signs mark
## 4318 10/17/2001 04:33 pm (fblackmo) employee was walking down hill, he stepped in a hole and twisted his ankle. Supervisor: wes miley
## 4319 10/17/2001 04:48 pm (fblackmo) employee climbed from under water tank on patch roller when, he dismounting he fell on slick surface of trailer hitting right arm on trailer bar. Supervisor: b. W. Whitaker
## 4320 10/17/2001 05:07 pm (fblackmo) employee was traveling in the east bound travel lane on us 70 when a tractor trailer truck abruptly stopped to make a right turn. The vehicle being driven by the employee collided with a vehicle between his and tractor
## 4321 10/17/2001 05:22 pm (fblackmo) employee began having numbness and pain in her fingers and wrist. Supervisor: phillip carlisle
## 4322 10/17/2002 09:24 am (fblackmo) employee was walking into building when, she slipped on the wet floor( from the rain). Supervisor: sec. Lyndo tippett
## 4323 10/17/2003 07:33 am (fblackmo) employee states while mowing around a hawthorn tree he got a thorn in his finger from holding limbs back. Supervisor; david pestwood
## 4324 10/17/2003 08:51 am (fblackmo) employee states while using computer mouse in her everyday job performance she experience pain in her right hand, wrist, and arm. Supervisor: jerry gaskill 04/07/2004 12:23 pm (gwhite)
## 4325 10/17/2003 09:36 am (fblackmo) employee was moving boxes when, he was bitten by a spider on his finger. Supervisor: chris pendergraph
## 4326 10/17/2003 09:46 am (fblackmo) employee encountered trees across road. Stopped to help fire dept. With tree when, another tree fell across cab of truck. Supervisor: cecil w. Bowser jr
## 4327 10/17/2005 02:34 pm (blgay) employee was flagging traffic at the scene of an accident, when employee raised left arm to stop traffic and felt shoulder pop out of place. Supervisor: robert vause
## 4328 10/17/2005 02:47 pm (blgay) employee was sweeping the roadway on nc731 in mt. Gilead when a large commercial truck passed the job site and blew debris into face causing the debris to enter his left eye. Supervisor: david shepard
## 4329 10/17/2005 10:07 am (fblackmo) employee was inspecting hdpe pipes when, he tripped and fell causing the injury to his left knee. Supervisor: samuel j. Frederick
## 4330 10/17/2006 03:50 pm (fblackmo) employee was running during physical training when, injury occurred to his right knee. Supervisor: lt. Watkins
## 4331 10/17/2006 04:02 pm (fblackmo) employee was attempting to clean out pump on asphalt tank and turned the handle in the opposite direction. This caused the asphalt to blow back onto employee, covering him with asphalt. He was taken to the medical center
## 4332 10/17/2006 04:13 pm (fblackmo) employees were unloading a sheet of plywood off a pickup when, it slipped out of other employees hand causing it to fall on Mr. Strickland wrist
## 4333 10/17/2006 09:14 am (fblackmo) employee had just loaded pipe on a trailer. Employee secured the pipe with a ratchet strap. Employee attempted to secure the end of the strap when, he hit his left knee on trailer. Supervisor: r. A. Baker
## 4334 10/17/2006 09:27 am (fblackmo) employee was tossing a bag of recyclables into the bed of pickup truck when, he felt pain in his back. Supervisor: keith hill
## 4335 10/17/2006 09:37 am (fblackmo) employee was driving metal silt fence post in ground with sledge hammer when, he felt pain in his right forearm and hand. Supervisor: t. M. Smith
## 4336 10/17/2007 01:02 pm (mdsloan) employee was picking up trash bags that were already filled, when he picked up a trash bag that contained broken glass. While attempting to place the bag into the back of the tandem dump truck the broken glass caused th
## 4337 10/17/2008 09:15 am (blgay) employee was attempting to insert the fiber glass frame slat into back of the sign, employee felt a tearing sensation in his right shoulder. Employee reported the incident on the 7th, and wanted to see if the pain would go
## 4338 10/17/2008 09:28 am (blgay) employee was assisting survey party in staking project on sr 1562a (old hwy 16) in wilkes county. The work environment had not changed from all previous jobs. Employee stated he had a bad case of poison oak on monday and by
## 4339 10/18/1999 02:00 pm employee stepped into flower bed instead of going around and tripped and cut left leg.
## 4340 10/18/1999 02:29 pm Mr. Brantley was behind dump truck dumping asphalt into paving sled. Bungee cord was attached to tailgate chains. Bungee cord separated as tailgate opened and bed was raised. Hook struck Mr. Brantley's chin cutting it.
## 4341 10/18/1999 02:44 pm while helping with hurricane floyd cleanup, another employee's chain saw got humg up. He got it unhung and log rolled over and hit Mr. Blalock 's leg.
## 4342 10/18/1999 03:04 pm employee in vehicle chase while on routine duty. Attempted to make right turn into a parking lot after suspect vehicle brakes failed hit 2 other cars.
## 4343 10/18/1999 09:46 am employee was driving a dump truck ran off road and lost control on a curve. Truck rolled over three times and the employee was thrown from the truck causing multiple bruises and lacerations. Supervisor: r. A. Mccarley
## 4344 10/18/1999 12:06 pm Mr. Walker injured his left knee when his shoulder gave way causing his entire left leg to fall into a hole. He realized sunday that his knee was stiff and very sore. Supervisor: j. W. Mclean
## 4345 10/18/2001 02:59 pm (fblackmo) employee was working on marion lee road helping to clear right of way when, a tree that was being cut by another employee fell on him. Supervisor: dannie tomberlin 10/24/2001 11:49 am (roldham) the tree hit him in
## 4346 10/18/2001 03:12 pm (fblackmo) employee was attempting to loosen the end of the water pump with a 36' pipe wrench while standing on the casing rack and water tank. Employee was applying pressure, his foot and/or the pipe wrench slipped causing him to
## 4347 10/18/2001 03:33 pm (fblackmo) employee stated that he strain his back while moving concrete from one side to the other with a shovel. Supervisor: jude pfeufer
## 4348 10/18/2001 03:58 pm (fblackmo) employee was running on the side walk during physical training. Employee stepped in a storm drain on the side walk. Supervisor: keel
## 4349 10/18/2002 07:30 am (fblackmo) employee was on us 74/23 for a paving project. He was standing in between the closed lane and orange cones when, a private vehicle struck him on his right side. Supervisor: ronnie sutton
## 4350 10/18/2002 08:35 am (fblackmo) employee was working on us 74/23 paving project. Employee was standing in between the closed lane and orange cones when, a private vehicle struck him on his left shoulder. Supervisor: ronnie sutton
## 4351 10/18/2002 08:48 am (fblackmo) employee was entering his vehicle after sweeping roadway when, a pepsi truck hit his side mirror. Glass from the mirror struck him on the forehead. Supervisor: r. J. Hollifiled
## 4352 10/18/2002 09:03 am (fblackmo) employee states while mowing right of way on state road 1934, a tree limb struck him in the right eye. Employee was wearing eye protection but the impact from the limb broke his goggles. Supervisor: k. R. Davis
## 4353 10/18/2002 11:22 am (fblackmo) employee was struck on the forehead by a piece of equipment machinery. Supervisor; w. L. Thompson
## 4354 10/18/2002 11:37 am (fblackmo) employee states that after chaining down equipment on back of trailer, he went to step down. Employee stepped in a hole which caused the injury to his right ankle. Supervisor: w. G. Wrenn
## 4355 10/18/2002 11:48 am (fblackmo) employee was exiting vehicle to pick up mattress when, he hit his left elbow on the door frame. Supervisor: j. R. Price
## 4356 10/18/2002 12:05 pm (fblackmo) employee was caring air compressor to truck. Employee was sitting compressor down when, his left little finger got caught between the truck and compressor. Supervisor: eric a. Schenz
## 4357 10/18/2002 12:16 pm (fblackmo) employee was feeding brushes with chipper when, he felt pain in his groin area. Supervisor: doug mcneal
## 4358 10/18/2004 08:26 am (fblackmo) employee was leaving for lunch when, she slipped and fell breaking her little toe on left foot. Supervisor: doumit ishak 10/26/2005 11:01 am (fblackmo) can not pay bills past 10/15/04. See corr. In file. Per: joyce
## 4359 10/18/2004 08:40 am (fblackmo) employee states while raking asphalt from shoulder of road he stepped in a hole causing the injury to his back. Supervisor: jack tanner
## 4360 10/18/2004 09:23 am (fblackmo) employee states that while welding and grinding on a snow plow and trailer a piece of metal got into his right eye. Supervisor: tom collins jr
## 4361 10/18/2004 09:35 am (fblackmo) employee states while cutting and chipping brushes he came into contact with poison ivy on multiple body part. Supervisor; mike mcswain
## 4362 10/18/2005 01:24 pm (blgay) employee was removing pins from hydraulic tank on a mowing tractor. Employee was standing on the front tire when he lost his balance and fell backwards onto his back in the gravel. Supervisor: d. W. Ashe
## 4363 10/18/2005 01:44 pm (blgay) employee was trying to remove a catch basin grate that had rusted closed. When jerking on gate, he strained his lower back. Supervisor: fatina beaver
## 4364 10/18/2006 01:44 pm (fblackmo) employee was using bushaxe to clean out roadside ditch. He swung bushaxe back to make a cut when, he felt pain in his left shoulder. Supervisor: carlis smith
## 4365 10/18/2006 02:41 pm (fblackmo) employee had cut a tree in an outfall ditch. He was moving some of the logs by hand when, he felt pain in his lower back. Supervisor: carlis smith
## 4366 10/18/2006 02:56 pm (fblackmo) employee was assisting with erosion control around a slit hole. While walking around the silt fence, the employee stepped in a hole and twisted her left ankle. Supervisor: l. C. Pierce
## 4367 10/18/2006 03:16 pm (fblackmo) employee was lifting a container of chemical (2. 5 gallon) over boom of spray truck. During the loading process, he felt pain in his back. Supervisor: r. Kevin baker
## 4368 10/18/2006 03:29 pm (fblackmo) employee was using the restroom when she, heard a spraying noise and felt mist coming down, she looked up and the mist got into her eyes. Supervisor: dolphine clark
## 4369 10/18/2010 10:03 am (slee) pov pulled out in front of sov. 10/18/2010 10:48 am (slee) other person: michael b. Murray, clayton nc, 919-989-6067.
## 4370 10/19/1999 02:25 pm employee was involved in automobile accident on September 11, 1997. Mr. Anders suffered injuries to his neck, back and eyes. A form 18 was completed on September 3, 1999 with ag's office.
## 4371 10/19/1999 02:35 pm employee injured his left foot when he stepped on a broken tree stump causing him to fall. Mr. Tyler was walking behind a utility pole to get to an electrical panel box at the time of the incident. Supervisor: joseph james.
## 4372 10/19/1999 03:41 pm employee injured his lower back, shoulder, and wrist while mowing back slope with a tractor mower. The tractor went over a void causing the tractor to fall down. Supervisor: c. I. Lucas
## 4373 10/19/1999 07:20 am Mr Linville was in process of removing trash from building at sandy ridge. He cut little finger on left hand while handling trash bags.
## 4374 10/19/1999 07:50 am employee started hurting in chest during the afternoon. Earlier in the morning she had used the asphalt loop which May have caused strain. Strain upper chest muscles.
## 4375 10/19/1999 08:00 am employee was operating chainsaw during debris removal. Employee came in contact with poison ivy while cutting tree.
## 4376 10/19/1999 08:13 am employee was wrapping a wire rope sling around a piling and pulling on it. There was not enough room for him to get his hand with gloves on, so he removed his gloves. The sling slipped, as he was pulling it, and pinched hid right
## 4377 10/19/1999 08:28 am employee was removing dirt from the side of a sign post in order to straighten the post. While using the post hole digger, he hit the side of the sign and cut the little finger on his left hand.
## 4378 10/19/1999 08:39 am working on the paint dock employee felt something bite on his left middle finger.
## 4379 10/19/1999 08:50 am employee was showing surplus equipment to potential bidder when he walked between two pieces of equipment, his boot scraped the motor grader blade and scraped his ankle.
## 4380 10/19/2001 02:10 pm (fblackmo) employee filled a zippo lighter with fluid, spilling some on his right hand. The lighter was lit and the fluid ignighted causing him to burn three fingers. Supervisor: jeff allen
## 4381 10/19/2001 02:27 pm (fblackmo) employee twisted left ankle when she stepped in hole getting out of her van. Supervisor: david w. Chapman ) 10/16/2003 02:25 pm (gwhite) *show all bills to joyce*
## 4382 10/19/2001 02:46 pm (fblackmo) employee re-injured his left hand/wrist while laying rip rap on joe johnson mountain road. Hand was operated on in 1998. Supervisor: bobby j. Berryhill jr
## 4383 10/19/2001 03:50 pm (fblackmo) employee was walking back to the station and looking over his shoulder talking to a truck driver when, he misjudged the steps up to a curb and tripped and fell causing the injury to his hand. Supervisor: 2nd lt. W. E. Th
## 4384 10/19/2005 11:18 am (fblackmo) employee was working on shoulder of roadway when, he slipped and fell on wet grass striking his left arm against chainsaw. Supervisor: linwood reynolds
## 4385 10/19/2005 11:52 am (fblackmo) employee was running during training when, he felt pain in his right leg/groin area. Supervisor: keith e. King
## 4386 10/19/2007 06:41 am (mdsloan) employee was trying to move chair closer to the work station (desk) on a new floor mat, new floor mat is very bumpy, and as employess was grabbing seat to move it up employee felt a pain go through right side. Superviso
## 4387 10/19/2007 07:02 am (mdsloan) employee was unloading garbage bags when he threw a bag in the dumpster and employees right shoulder came out of place. Supervisor: cr mcconnell
## 4388 10/19/2009 10:21 am (blgay) employee was cutting a tree from the right of way and came into contact with poison vines that were entangled on the tree. A back hoe was used to push back vegetation and employee did apply barrier cream before starting wor
## 4389 10/19/2009 10:52 am (blgay) employee was unloading signs and had placed a steel post against the side of the truck. As employee moved on the tommy lift, the post slid, caught in the chain and struck employee in the left shin. Supervisor: clyde scott
## 4390 10/19/2009 11:02 am (blgay) employee was cutting a tree from the right of way and came into contact with the poison vines that were entangled on the tree. A back hoe was used to push back vegetation and employee applied barrier cream before starting w
## 4391 10/19/2010 03:43 pm (barnes) employee was picking up a recliner near the jersey wall on I-40 eastbound at wendover avenue. He felt a sharp pain form his neck down to the bottom of his back. He also felt pain in his right arm. Employee injured his righ
## 4392 10/19/2010 11:59 am (slee) employee was operating a new type of rubber tire excavator. He ran off the asphalt, the excavator slid down the front slope of the ditch and rolled over on its side.
## 4393 10/2/2006 02:26 pm (fblackmo) employee was getting sign out of the sign bin on truck, got sign out of bin, placed it in bed of truck. Employee stepped out of the back of truck, felt sharp pain in his right knee. Supervisor: todd whitaker
## 4394 10/2/2007 02:16 pm (fblackmo) employee was paddling boat that was stuck in shallow water, when he felt pain in his right shoulder. Supervisor: logan williams
## 4395 10/2/2007 03:14 pm (fblackmo) employee was spraying paint on panel when, wind blew causing mist from the paint to irritate his eyes. Supervisor: eben miller
## 4396 10/2/2007 10:25 am (mdsloan) employee was driving nails helping the bridge crew with putting bracing forms on footing of bridge when employee hit his left thumb with the hammer. Supervisor: alan levens
## 4397 10/2/2008 07:58 am (blgay) employee was getting on tractor when he felt pain in his right arm. Employee looked down and a caterpillar was stuck to his arm. He knocked the caterpillar off and his arm started burning and broke out with a rash that start
## 4398 10/2/2008 11:37 am (fblackmo) employees carlos armstrong and john wad removing jack form under girder. John placed hand under plate at same tim e carlos struck the plate with hammer striking his right index finger. Supervisor: guy white
## 4399 10/2/2008 11:44 am (blgay) employee was attempting to get a rock unstuck on the athey loader, which was covered in poison oak, causing poison oak on face and both arms. Supervisor: leon sayles
## 4400 10/20/1999 02:53 pm employee injured the left side of her lower back, hip and leg while attempting to move a desk. Supervisor: r. D. Chandler
## 4401 10/20/1999 03:49 pm employee injured lower back and hips while unloading cases of handbooks from vehicle. Mr. Lanier states his pain is a continuation of a past injury which "flares up" from time to time. Supervisor: michael g. Jarman
## 4402 10/20/1999 03:57 pm employee was driving state dump truck on 9/24/99, when a private vehicle failed to yield at a stop sign. Ms. Horne bumped her head and strained her neck when private car hit the driver side. Supervisor: c. I. Lucas
## 4403 10/20/1999 04:46 pm employee was stepping off of a track hoe when his right knee popped out of joint and fell down. He dislocated his right knee. Supervisor: michael rhodes
## 4404 10/20/2003 10:13 am (fblackmo) employee was trying to free trap on dump truck when, his finger was caught between the trap and bed of truck. Supervisor: r. L. Taylor
## 4405 10/20/2004 02:01 pm (fblackmo) employee was driving truck when, truck spun out of control landing down an embankment on it's side. Employee is experiencing back pain. Supervisor: ricky ball
## 4406 10/20/2004 02:38 pm (fblackmo) employee states while helping another employee carry a ice cooler she, felt pain in her lower back. Supervisor: pat boykin
## 4407 10/20/2004 10:29 am (fblackmo) employee was driving a swb dump truck north on us 321 when, a piece of rip rap fell off of a privately own dump truck in front of her, hit a pick up truck heading in the opposite direction, and was then propelled into he
## 4408 10/20/2004 10:42 am (fblackmo) employee was clearing right of way when, he came into contact with poison ivy. Supervisor: a. T. Ellis
## 4409 10/20/2004 10:52 am (fblackmo) employee was hauling debris in a tandem dump truck from state road 1220 to the landfill. Employee hit a dip in the road which caused him to jam his neck. Supervisor: k. L. Anderson
## 4410 10/20/2004 11:01 am (fblackmo) employee states that over a period of time she has experienced pain in her left wrist, elbow, and shoulder while reforming daily duties. Supervisor: charlie utz 4/14/2005 10:27 am (mpark)
## 4411 10/20/2006 10:11 am (fblackmo) employee was walking from office into the hall when, the leather sole of her shoe got caught between the threshold causing her to fall an injure right knee. Supervisor: beth mckay
## 4412 10/20/2006 10:21 am (fblackmo) employee was shoveling asphalt when, he felt a sharp pain in his lower back. Supervisor: a. L. Person
## 4413 10/20/2008 03:41 pm (blgay) employee was changing light bulbs, when she stepped off ladder she turned and was jabbed in the right eye with limb. Supervisor: curtis barnhill
## 4414 10/21/1999 03:21 pm Mr. D'jernes was bitten by a tick on his right buttocks while performing a drainage investigation on 5/12/99. Supervisor: max s. Price
## 4415 10/21/1999 03:31 pm Ms. Petit is experiencing problems with her hands breaking out into a rash. The rash is itching, blistering, cracking and bleeding. (unknown causes) *****dermatitis problem supervisor: lynn chalk
## 4416 10/21/1999 03:45 pm Mr. Litchfield was taking dive gear to a boat, when he stepped on a loose board with his right leg. The board flew up and caused him to twist his right knee. The board would have hit him in the face if he wouldn't have avoided th
## 4417 10/21/1999 04:05 pm Mr. Walker twisted his right knee when his foot slipped on moldboard. He was exiting a grader at the time of the incident. Supervisor: gene e. Strickland
## 4418 10/21/1999 04:14 pm Mr. Watson was cutting up trees and loading onto a truck after hurricane floyd, when he came in contact with poison ivy on both arms. Supervisor: thomas j. Burchell
## 4419 10/21/1999 04:25 pm Ms. Branch was walking down the hall when she slipped and twisted her left ankle. Supervisor: patrick simmons
## 4420 10/21/1999 05:19 pm Mr. Mccraw was cutting brush on a steep bank, when he turned to get down he twisted his right ankle. Supervisor: m. H. Thomas
## 4421 10/21/1999 08:23 am employee hurt lower back installing roadway sign.
## 4422 10/21/1999 12:26 pm employee was returning to his vehicle from doing a traffic stop, when he shut the door on his left index finger. Supervisor: capt. Michael e. Sizemore
## 4423 10/21/1999 12:33 pm Mr. Baxley stepped out on motor grader blade wrong on 9/25/99 and also slipped off of a wet tire while checking fuel. He injured his left foot and ankle. Supervisor: oscar ratley
## 4424 10/21/1999 12:47 pm Mr. Savage injured his right knee when he stepped over a guardrail on us 264 bridge. Supervisor: grady raynor
## 4425 10/21/2002 11:16 am (slee) tree came through bottom of glass breaking it.
## 4426 10/21/2005 09:56 am (blgay) employee was loading road signs into sign truck and was standing on ground rear of truck. A sign being placed into the rack hit metal frame on rack and kicked back toward employees face chipping front tooth. Supervisor: cha
## 4427 10/21/2005 10:38 am (blgay) employee was inside cab or work truck filling out calculations of areas measured for payment of contractors work. Door was open on operators side, when reaching for calculator, located in door panel of truck, employee lost
## 4428 10/21/2005 10:55 am (blgay) employee was carrying a hammer and wedge to two other employees, when going down a steep hill he slipped and fell forward and large end of wedge came down on right side of his head. Supervisor: mike motsinger
## 4429 10/21/2005 11:45 am (blgay) employee was adjusting the back deck of tractor, twisted left ankle. Supervisor: w. D. Pittman 11/1/2005 08:10 am (mpark)
## 4430 10/21/2005 11:53 am (blgay) employee was loading pipe at hubbards supply when the pipe slipped and mashed his left hand middle finger. Supervisor: j. R. Price
## 4431 10/21/2008 02:23 pm (blgay) employee was getting out of a pick-up truck and shut the door on his left thumb. Supervisor: charles vick
## 4432 10/21/2008 10:18 am (fblackmo) employee was conducting a road test, customer was returning from road test and parking. Customer engaged gas instead of brake causing her car to hit the car that was parked across from where she was parking. Employee fel
## 4433 10/21/2008 10:45 am (fblackmo) employee was coming out of building at south dock facility, steps were slippery and employee slipped down stairs. Supervisor: t. L. Gray
## 4434 10/21/2008 11:35 am (fblackmo) employee was walking down hallway when, she slipped and fell causing injury to left shoulder, wrist, ankle, and both knees. Supervisor: canales theresa
## 4435 10/21/2008 11:59 am (fblackmo) employee was cutting cores on roanoke ave with coring machine when, the coring bit seized in the hole causing machine to rotate and strike him on the inside of left knee. The impact lifted employee off the ground. He lan
## 4436 10/21/2008 12:26 pm (fblackmo) employee was on state road 1328 (white road) where the paint crew as grinding of the roadway and using a blower. Employee walked by and some of the debris flew into his right eye causing swelling. Supervisor: douglas dow
## 4437 10/21/2008 12:53 pm (fblackmo) employee was driving to meeting at highway building when, her vehicle was struck from behind by private vehicle. Employee felt pain in hier neck and back area. Super visor: elizabeth lusk
## 4438 10/21/2010 02:21 pm (barnes) employee stated that due to a shortage of personnel, no district or emissions sec. And no emissions ads, she had to prepare all paperwork that had to be typed. Some days employee would have to type 6 to 8 hours while at wor
## 4439 10/21/2010 03:26 pm (barnes) employee was traveling west on rp 1120 clemmons rd. She was following a group of cars lead by a pilot car. Employee stopped for traffic and was rear ended by the vehicle behind her. This area was a traffic controlled work
## 4440 10/21/2010 04:16 pm (barnes) employee reported to supervisor at 3:00pm on 9-28-10 that when he climbed in motor grader after lunch, his back hurt. He wanted to wait over night to see how it felt. On 9-29-10 he went to the doctor with back injury. On 1
## 4441 10/21/2010 12:38 pm (barnes) employee was mapping a creek bank. He had a prism pole in his left hand and a brush axe in the right hand. Employee feet slipped on the muddy bank of the creek. Employee stuck the axe in the ground to catch his fall. Howev
## 4442 10/22/2001 10:21 am (slee) employee was sweeping off rock screening on sr 1600 that was recently split sealed. A private vehicle ran in the rear of the boom tractor.
## 4443 10/22/2002 02:13 pm (fblackmo) employee was driving a 2" nail into asphalt using a carpenters hammer. The hammer slipped off the top of nail, striking employee on his finger. Supervisor: max potter
## 4444 10/22/2002 02:31 pm (fblackmo) employee felt pain in his lower back after completing the field test with concrete. Supervisor: ken batchelor
## 4445 10/22/2002 02:52 pm (fblackmo) employee was using pick fork to dig up asphalt when, he felt pain in his back. Supervisor: as bailey
## 4446 10/22/2002 03:17 pm (fblackmo) employee was pre-lining road oil roads in robeson county. He was flushing system with water. Employee leaned over the side of truck to close valve for paint gun when he felt a burning in his back area. Supervisor: fr
## 4447 10/22/2002 03:34 pm (fblackmo) employee was cutting trees out of road way when, he came into contact with poison oak. Supervisor: g. R. Cooper
## 4448 10/22/2002 03:47 pm (fblackmo) employee, stepped from traffic coordinator building to the ground when a gust of wind blew the door open. Employee twisted his left ankle. Supervisor: j. W. Cahoon
## 4449 10/22/2007 02:29 pm (mdsloan) employee was standing out on the albermarle bridge maintenance yard near the corner of the lumber shed by a security light pole when another employee in a state pickup truck was attempting to turn right at the corner of
## 4450 10/22/2007 03:02 pm (mdsloan) employee was squatting to rest during a break from I-2 patching operations and as employee was rising to the upright position he noticed some discomfort in his right knee. Supervisor: joel riley
## 4451 10/22/2007 03:24 pm (mdsloan) employee was lifting sign rack to place onto the back of a boom tractor and felt pain along left side of neck back and left arm. Supervisor: milton tapp
## 4452 10/22/2008 08:58 am (fblackmo) employee was walking to her car when, she twisted her ankle and fell in parking lot. Supervisor: barry bridgers
## 4453 10/23/2000 03:51 pm employee was working in the project amber building on 10/6/00; when he hit his left knee against a piece of steel. Supervisor: kevin lamar cooke
## 4454 10/23/2000 03:57 pm employee was putting out traffic counters on 10/11/00; when he came in contact with a chemical poison. He has contact rash on both arms and hands. Supervisor: phillip johnson
## 4455 10/23/2000 04:05 pm employee was flagging during the removing of limbs on sr 1700; when he was bitten by a tick on the back of his head. Supervisor: greg vinson
## 4456 10/23/2000 04:39 pm employee was cleaning rip rap off of tailgate truck; when a large piece fell and hit his right little finger. Supervisor: cleve barton
## 4457 10/23/2000 12:03 pm employee was participating in defensive tactics exercises when he complained of pain in his right shoulder. Supervisor: ssg. T. Hickman
## 4458 10/23/2000 12:25 pm employee was clearing brush (weedeating) around lake when he came in contact with poison ivy plants. Mr. Craig has contact rash on both hands and arms. Supervisor: h. Howard-acting
## 4459 10/23/2000 12:33 pm Mr. Whitt sprain/strained his left knee while walking down fill slope on sr 1402. Supervisor: kenneth t. Hicks
## 4460 10/23/2001 03:41 pm (fblackmo) employee was standing on ground lifting a bale of straw onto back of lwb dump truck, while unloading employee felt a pain in his groin area. Supervisor: p. D. Fox
## 4461 10/23/2001 03:53 pm (fblackmo) employee lifted a full file drawer off the rollers when placing the cabinet back down employee felt a pain in his lower back. Supervisor: william m. Wilhalam
## 4462 10/23/2001 04:06 pm (fblackmo) employee was exiting backhoe which was still on trailer. Employee missed step onto trailer and fell to asphalt. Supervisor: c. C. Coggins
## 4463 10/23/2001 10:00 am (fblackmo) employee was transferring tar from the contract tanker to the d. O. T. Tanker when, the hose came a loose causing some of the matter to get into employees eye. Supervisor: c. W. Burleson
## 4464 10/23/2001 10:16 am (fblackmo) employee was walking and tripped on carpet in office. Supervisor: edith mcdaniel
## 4465 10/23/2002 07:21 am (fblackmo) employee was mowing shoulder of road when, a rock flew up hitting him under his left eye. Supervisor: r. J. Hollifield
## 4466 10/23/2003 02:19 pm (fblackmo) employee pulled chair out from under desk to have a seat when, the chair rolled back farther than employee thought. Employee fell to the floor hitting his head on the file cabinet. Supervisor: r. W. Rhodes jr
## 4467 10/23/2003 02:31 pm (fblackmo) employee was working on survey project u-2107d when, he was bitten by a tick on his left arm. Supervisor: darren howell
## 4468 10/23/2003 02:46 pm (fblackmo) employee was using drill when, foreign matter flew into his right eye. Supervisor: charles watkins
## 4469 10/23/2003 02:57 pm (fblackmo) employee states while carring equipment and walking form one point to another, stepped wrong and twisted right ankle. Supervisor: c. S. Mcdonald
## 4470 10/23/2003 03:07 pm (fblackmo) employee was unlocking paper towel dispenser in restroom when, the top fell down on her right arm causing a cut. Supervisor: harvey magnum
## 4471 10/23/2003 03:21 pm (fblackmo) employee was walking cross a ditch looking down when, he ran into the tailgate of a tandem dump truck causing the injury to his head, neck, and shoulder. Supervisor: d. M. Livingston
## 4472 10/23/2003 03:35 pm (fblackmo) employee was cutting debris from the storm when, he was stung multiple times on his head, back, chest, arms, and legs. Supervisor: archie coghill
## 4473 10/23/2003 03:45 pm (fblackmo) employee was washing hydro-seeder when, debris flew into his left eye. Supervisor: a. J. Mintz
## 4474 10/23/2007 01:09 pm (mdsloan) employee was carrying new blades to be uput on grader and as he leaned down under the grader and laid the blades on ground underneath the grader and as he raised back up his back brushed the circle on the grader. Later
## 4475 10/23/2007 08:32 am (mdsloan) employee was looking for a frame number under a vehicle when either rust or dirt fell in left eye. Supervisor: antonio caldwell
## 4476 10/23/2007 09:01 am (mdsloan) employee was putting a pin back in the cylinder of thumb on the backhoe, when the thumb pivoted and hit employee in the side. Supervisor: greg jordan
## 4477 10/23/2007 10:40 am (mdsloan) employee was shoveling and raking asphalt from a pile on the ground when he felt a sharp pain in his right elbow. Supervisor: bobby leonard
## 4478 10/23/2007 11:39 am (mdsloan) employee had been cutting and pulling limbs and had finished the job and as he was removing his hat and safety glasses some debris fell into his eye. Supervisor: jp ingram
## 4479 10/23/2008 04:26 pm (fblackmo) employee was placing cones on the wet yellow paint lines on forestville road when, he was stung by a yellow jacket. Supervisor: ira harris
## 4480 10/23/2009 09:51 am (bhenders) employee was traveling east on nc 92 at approximately 5:15 p. M. When a vehicled slowed to turn into a driveway. As employee was slowing down, employee was struck from behind by a pov.
## 4481 10/24/2000 10:06 am employee stepped down from asphalt kettle on 10/10/00. He slipped and twisted/strained his left knee. Supervisor: larry carpenter
## 4482 10/24/2001 11:07 am (fblackmo) employee was putting a tarp over I-2 asphalt in dump truck, his foot slipped and he fell hitting his left side on bed of truck. Supervisor: alan e. Brown
## 4483 10/24/2001 11:24 am (fblackmo) employee states that, injury occurred while shoveling asphalt and gravel. Employee experienced a great amount of pain in back when shoveling that day on June 11, 2001. Supervisor: not given
## 4484 10/24/2002 08:15 am (fblackmo) employee was flagging traffic, the first vehicle stopped, the second vehicle failed to stop and knock the first vehicle into employee. Employee was knocked 8 feet into the air before landing on the surface. Supervisor:
## 4485 10/24/2002 08:49 am (fblackmo) employee stated that while exiting van, he felt pain in his right hip area. Supervisor: k. King
## 4486 10/24/2002 09:31 am (fblackmo) employee was assisting another employee with the installation of a new cutting blade on the motor grader outside of the equipment shop. Employee had completed lifting one end of the approximate 80lbs motor grader blade
## 4487 10/24/2002 09:48 am (fblackmo) employee was traveling north on us 17 near us 17 business in shallotte when, he passed out. Supervisor: thomas e. Johnson
## 4488 10/24/2003 07:14 am (fblackmo) employee was changing a tire on a multi-piece rim with a hammer. Employee states afterwards he felt pain in his right hand. Supervisor: james keith smith
## 4489 10/24/2003 07:27 am (fblackmo) employee was removing harmonic balancer form the front of engine. Balancer came forward and jammed thumb between balance and truck frame. Supervisor: jimmy ammons
## 4490 10/24/2003 07:38 am (fblackmo) employee was using a stake puller when, the puller slipped off stake and struck employee across the nose. Supervisor: b. R. Webb
## 4491 10/24/2003 07:50 am (fblackmo) employee was operating a bulldozer pushing storm debris in stockpile pit when, the end of a limb struck employee on his left calf muscle. Supervisor: r. L. Taylor
## 4492 10/24/2003 08:36 am (fblackmo) employee was exiting his dump truck when, he fell causing the injury to his left foot. Supervisor: johnny murdock
## 4493 10/24/2003 09:31 am (fblackmo) employee had stopped truck on shoulder of road to check for a possible anti-freeze leak. A private truck passed and wind blew truck hood down and struck employees nose. Supervisor: robert g. Davis
## 4494 10/24/2005 04:20 pm (fblackmo) employee states while hauling stumps over rough terrain the truck hit a hump causing it to jerk employee around inside the truck. Employee injured his back and experienced some leg pain. Supervisor: ronnie king
## 4495 10/24/2005 09:27 am (fblackmo) employee was cutting bushes on side of bridge. His foot slipped, he fell, and his hand fell on bush axe causing injury to his right thumb. Supervisor: jeremy b. Creech
## 4496 10/24/2005 10:49 am (fblackmo) employee was flagging traffic in work zone when, a car ran stop paddle coming in his direction. Employee attempted to jump guardrail when, the injury occurred to his arm and leg. Supervisor: ronnie king
## 4497 10/24/2005 11:01 am (fblackmo) employee parked truck on edge of road at job site. Employee was exiting truck when, his arm brushed against tree with poison ivy. Supervisor: rick gordon
## 4498 10/24/2007 10:36 am (mdsloan) employee was attending the yearly employees appreciation picnic and after lunch employees play a game of softball when employee sustained laceration to his right hand. Supervisor: mark davis
## 4499 10/24/2008 01:13 pm (blgay) employee was trying to load angle iron on to forklift. Angle iron rolled onto employees hand, causing a chipped bone and torn tendon in right middle finger. Supervisor: chad dennis
## 4500 10/24/2008 03:09 pm (fblackmo) employee was riding with another employee checking bridge clearance and felt a sharp pain that went from his stomach, to chin, and down his back. When he stepped out of the vehicle the pain hit him again and it was unbea
## 4501 10/24/2008 12:59 pm (blgay) employee was waiting on next load of asphalt, when he walked over to stand beside another employee, bee stung him on his left forearm. Employee had an allergic reaction to sting. Supervisor: brian smith
## 4502 10/25/1999 02:50 pm employee was hooking cable from the wrecker to an h-pile. The cable did not have enough slack and as he hooked the cable he mashed his finger. Contusion on left index finger.
## 4503 10/25/1999 03:13 pm employee lifted a bag of mortar mix. As she turned to put it on the truck she pulled her back.
## 4504 10/25/1999 09:04 am employee was walking across barge and toe of shoe caught cable and employee fell fracturing left arm. 02/04/2000 10:16 am
## 4505 10/25/1999 09:17 am suck hose was not properly secured in mud tub causing shells & sand to be pulled into drill string & clog the rods. As m. B. Oliver attempted to clear the blockage, he was hit in the face by a blast of mud, sand & shells which scrat
## 4506 10/25/1999 09:32 am employee was pulling tree limbs off right of way on sr 1102 when his right knee gave away.
## 4507 10/25/1999 09:45 am employee was issuing driver license. She has issued driver license for 15 years. Right hand carpel tunnel, tendonitis, rt. Elbow & rt. Shoulder
## 4508 10/25/2000 02:43 pm employee was crossing the road carrying cones to put down on roadside. Employee stepped and fell into a hole and strained his back. Supervisor: w. S. Richard
## 4509 10/25/2000 09:33 am employee sat down for lunch in a patch of poison ivy plants and was unaware of the poison plants. Mr. Craig has contact rash on the right side of his face and both eyes are swollen. Mr. Craig is highly allergic to this plant. Sup
## 4510 10/25/2000 09:45 am employee stepped down off roller and lost his footing. Mr. Watkins fell to the ground bruising his right heel. Supervisor: t. Cottrell
## 4511 10/25/2000 09:53 am employee was clearing brush when the bushaxe broke causing him to cut his left forearm. Supervisor: john abel
## 4512 10/25/2000 09:59 am employee was lifting scales from trunk of patrol car to weigh a truck on 7/31/00. He pulled muscles in his neck and both shoulders (upper back area). Supervisor: sgt. D. L. Reid
## 4513 10/25/2000 10:07 am employee stated that he was standing on truck bed loading barrels of paint; when he turned to climb off the truck he lost footing and jumped to the ground. Mr. Parham has a contusion on his left heel due to this incident. Supervis
## 4514 10/25/2000 10:34 am employee stated she has carpal tunnel pains in her right shoulder. She states she has too much typing on this job and the work load is heavy. Supervisor: shandee ruffin-perry
## 4515 10/25/2000 10:42 am employee was sitting in truck adding totals up; when the tire on trailer blew out (exploded). Mr. Crumpler's car was positioned beside the trailer. Mr. Crumpler has had hearing problems in the past, so this exploding tire irrate
## 4516 10/25/2000 10:55 am employee along with a coworker was lifting tailgate so that the fork lift could get under it on 9/15/00. Mr. Faircloth was using proper lifting techniques when he felt muscles pull in his left knee. Supervisor: luther thompson
## 4517 10/25/2000 11:02 am employee was climbing down stairs on ferry vessel when his left foot slipped. Mr. Piner fell striking the handrail with his left upper arm. Supervisor: jerry gaskill
## 4518 10/25/2000 11:54 am employee was just beginning a road test when his head struck the window giving him a concussion. The customer pulled into the street and collided with another car. Supervisor: jere e. Hyder
## 4519 10/25/2001 03:08 pm (fblackmo) employee was surveying in a wooded area and turned his right ankle, causing the injury to his foot. Supervisor: d. C. Bodenhamer
## 4520 10/25/2001 09:48 am (fblackmo) employee was checking under hood of truck, tried to remove wild cat, cat bit employee on right thumb. Supervisor: c. N. Edwards jr
## 4521 10/25/2001 10:03 am (fblackmo) employee states that wind blew debris into his left eye. Supervisor: brian k. Glover
## 4522 10/25/2001 10:16 am (fblackmo) employee was strapping down wooden bin boxes on flatbed truck the binder hook was hung on the top box. Trying to get the strap over the four boxes, employee climb up to the top box to free the strap and while climbing
## 4523 10/25/2001 10:28 am (fblackmo) employee was picking up debris from cleaning off a fence on the right of way. Employee picked up a piece of wood and felt a pain in his left arm and wrist. Supervisor: kw shifflett and ke pruett
## 4524 10/25/2001 11:08 am (fblackmo) employee cut right hand on sharp edge of metal from clutch housing, bolt broke loose and wrench came up and hand came into contact with edge of metal edge. Supervisor: gerald e. Brabble
## 4525 10/25/2001 11:25 am (fblackmo) employee was unloading a desk from the back of a pickup truck while lifting the desk employee felt a pull in his lower back. Supervisor: j. D. Tyndall
## 4526 10/25/2002 10:03 am (fblackmo) employee was adjusting fuel injector on diesel hammer, when misfire causing explosion near face and eye. Supervisor; steve h. Taylor
## 4527 10/25/2002 10:20 am (fblackmo) employee was loosening tie-down from a trackhoe on a low-boy. The low-boy operator lowered the trailer on to the right foot of the employee. Supervisor: v. D. Summers
## 4528 10/25/2004 02:59 pm (fblackmo) employee states a chain hoist broke striking him on his right forearm. Supervisor: g. J. Von suskil
## 4529 10/25/2004 03:09 pm (fblackmo) employee was getting out of truck when, he slipped and fell causing the injury to his lower back and right knee. Supervisor: j. H. Ensley
## 4530 10/25/2004 03:22 pm (fblackmo) employee was bitten by an unknown insect on his right hand. Supervisor: t. S. Collins
## 4531 10/25/2004 11:35 am (fblackmo) employee states while doing daily duties she experience pain in her right hand. Supervisor: anthony law
## 4532 10/25/2005 03:29 pm (blgay) employee was in truck bed spraying liquid wrench on nuts and bolts on a sign post, when he stepped on a metal rod causing right foot to slip and twisted his right leg. Supervisor: roderick wyatt
## 4533 10/25/2005 03:45 pm (blgay) employee was trying to get on the lawn mower and his hand slipped off the seat causing his shoulder to pop. Supervisor: reuben e. Blakley
## 4534 10/25/2005 08:14 am (fblackmo) employee had been grinding metal when, he stopped to rub his eye, a foreign matter entered into his eye. Supervisor: franklin granda
## 4535 10/25/2005 08:27 am (fblackmo) employee was putting in road pipe when, he came into contact with poison ivy on both arms. Supervisor: greg ruppe
## 4536 10/25/2005 08:41 am (fblackmo) employee was delivering a message to another employee when, she was stung by a bee on her finger/hand. Supervisor: j. B. Hampton
## 4537 10/25/2005 09:39 am (fblackmo) employee was going to a wc conference. Coming off of I-40 onto page road, was hit in rear at stop light. Employee experienced pain in back and neck area. Supervisor: bob andrews
## 4538 10/25/2005 09:50 am (fblackmo) employee was conducting a road test when, the vehicle was hit in the rear. Employee felt pain in back and neck area. Supervisor: g. Sheldon
## 4539 10/25/2007 02:05 pm (mdsloan) employee was standing in the door of a truck working on the tarp when employee felt foot starting to slip and he grabbed the band rail with his left hand and he felt a pull in his back. Supervisor: keith rhyne
## 4540 10/25/2007 02:40 pm (mdsloan) employee stepped on uneven surface and as a result twisting right ankle. Supervisor: clyde mauney
## 4541 10/25/2007 03:41 pm (mdsloan) employee had been working with an inmate who had stated that he was taking medication for MRSA. Since the employee has diabetes and had visible sore on his skin. We requested that he be tested to insure that the problem
## 4542 10/25/2007 04:21 pm (mdsloan) employee was getting a sample of concrete from a 1 yd concrete bucket employee was holding bucket under chur. The operator of truck discharged to much concrete at one time causing bucket that employee was holding to ove
## 4543 10/25/2007 04:44 pm (mdsloan) employee was cutting trees on right of way on gold hill road when he encountered poison ivey (oak). Supervisor: e. Foreman
## 4544 10/25/2007 10:39 am (mdsloan) employee was in chair and bent over trying to plug in an electrical device when back muscle was pulled. Supervisor: patrick clancy
## 4545 10/25/2007 11:42 am (mdsloan) employee was rolling barrels of oil up the a ramp to put into the contaminant area when the barrel went over the side of the ramp and the employee reached to catch it straining left groin area. Supervisor: keith hutch
## 4546 10/25/2008 09:12 am (fblackmo) employee was trying to break a casing adapter from the casing using 36" wrench with a 4" cheater bar. Employee was standing on the wrench when it broke and snapped upward causing injury to his right foot. Supervisor: jar
## 4547 10/25/2008 11:43 am (fblackmo) employee was repairing tire on broom tractor. While exiting rear of truck his foot slipped off bumper causing pain to his lip hip area. Supervisor: m. B. Mizelle
## 4548 10/26/1999 03:45 pm Mr. Boddie suffered bruised to his head while tightening wing nuts on trailer. Another employee lowered the front bucket down causing the bucket to hit Mr. Boddie's head. Supervisor: jimmie evans. Note: this claim was entered I
## 4549 10/26/1999 07:26 am repairing guardrail lifting and pulling at some point and began to hurt. Groin area in upper leg.
## 4550 10/26/1999 07:36 am lifting sign post off the ground. Hernia in lower abdon.
## 4551 10/26/1999 07:45 am walser was picking up cone in preparation to clear an accident scene on I-85 shp trooper backed his car around imap truck without blowing horn. Walser picked up cones turned to put in truck and walked into moving troopers vehicle.
## 4552 10/26/1999 08:28 am employee was helping to remove an injured and trapped man from a burning car. During the retrieval he inhaled smoke into his lungs.
## 4553 10/26/2000 04:29 pm employee was lifting (moving) lumber when he twisted/strained his lower back. Supervisor: t. K. Southard
## 4554 10/26/2000 04:37 pm employee was trying to get on a stool. She placed her hands on the counter to lift herself when her right shoulder (dislocated) popped. Supervisor: rebecca simpson
## 4555 10/26/2000 04:46 pm employee was removing a projector from a storage shelf; when the projector fell striking him in the nose and mouth. He has lacerations to his nose and 2 front teeth were knocked out of his bridge. Supervisor: john t. Stallings
## 4556 10/26/2000 04:54 pm employee pulled up to asphalt loader with flat bed truck to get mix; when the mix came out of the bin and burnt his left arm and hand. Supervisor: terry woody
## 4557 10/26/2001 03:27 pm (fblackmo) employee walked in office, stood in front of desk and placed daily road list on desktop. He turned to leave when his left foot got caught in the phone cord. As he made his turn, the phone cord pulled tight and he fell
## 4558 10/26/2001 03:54 pm (fblackmo) employee was using cool tool while cutting a pipe. When he stepped from the shaft guard he slipped on the cool tool that dripped on the center vertical keel. Supervisor: richard dewhurst
## 4559 10/26/2001 04:10 pm (fblackmo) employee was repairing a leaking air line to the drivers seat, when he removed the line and the air came out the seat fell on his hand. Supervisor: george e. Morris
## 4560 10/26/2004 08:13 am (slee) traffic was backed up from a different wreck and employee was sitting still. Two tractor-trailers were approaching on the left side of the sov. The truck in the rear hit the truck in front of it causing the trailer to jack-
## 4561 10/26/2004 09:59 am (fblackmo) employee was raking asphalt when, he felt pain in his back, hip, and leg. Supervisor: r. J. Hollifield
## 4562 10/26/2004 10:46 am (fblackmo) employee was stepping out of truck when, he stepped onto uneven pavement twisting his left ankle. Supervisor: s. G. Dillon
## 4563 10/26/2004 10:59 am (fblackmo) employee states while leaning over desk to answer phone she, felt a pop in her back. Supervisor: dallie bagwell
## 4564 10/26/2010 03:54 pm (fblackmo) employee was walking behind the tractor when, he saw a snake. Employee jumped out of the way and hit his buttocks/tail bone on the tractor. Supervisor: gordy eure
## 4565 10/27/1999 03:44 pm employee was standing on tire of lube truck checking oil, feet slipped & he grabbed the rail on side of truck to keep from falling to ground and strained shoulder.
## 4566 10/27/1999 03:54 pm employee was removing parts of fallen tree from road after this tree had been sawed up by another employee. There was a poisonous plant grown around tree & injured could have been caused by handling said tree or by airborne saw du
## 4567 10/27/2000 09:09 am employee cut his left knee when a bush ax came out of a piece of wood. Employees was trying to remove a beaver dam. Supervisor: ronald lee
## 4568 10/27/2000 09:17 am employee was pushing/raking asphalt when he felt a sharp pain in his left side (ribs) on 10/18/00. Supervisor: c. N. Edwards, jr
## 4569 10/27/2000 09:25 am employee was assisting another employee carry a 4" x 8" x 18" board; when the other person stumbled and dropped the board. Mr. Cantrell's muscles in his lower back was strained. Supervisor: j. C. Gunter
## 4570 10/27/2000 09:32 am employee was on his way to clean out the end of a concrete pipe; when he slipped on loose sand and fell into a ditch. Mr. Gore sprain/twisted his right knee. Supervisor: william edward mcclendon, jr
## 4571 10/27/2003 07:27 am (slee) employee was parking in parking lot of the economy inn at corner of us 17 and henderson drive in jacksonville. He pulled forward to get closer to work area and struck metal pole painted yellow in corner of parking lot, dama
## 4572 10/27/2003 09:07 am (slee) pov failed to reduce speed to avoid rear -end collision with dot vehicle.
## 4573 10/27/2004 02:45 pm (fblackmo) employee was working on road construction when a tree sprung around striking him on his lower right leg. Supervisor: c. F. Vick
## 4574 10/27/2004 02:57 pm (fblackmo) employee was clearing trees on right of way when, one of the limbs snapped back striking him in the face. Supervisor: perry u. Mitchell
## 4575 10/27/2004 03:08 pm (fblackmo) employee states while climbing down ladder he, missed his step falling to pavement. Supervisor: william t. Stone
## 4576 10/27/2004 04:07 pm (fblackmo) employee was removing nails from boards, and stacking them in a pile. Employee states he twisted the wrong way causing pain to his lower back. Supervisor: r. D. Pittman
## 4577 10/27/2004 11:34 am (fblackmo) employee states he was stepping off a tire after inserting a tire tool when, he felt pain in his right knee. Supervisor: jesse hansley
## 4578 10/27/2004 11:49 am (fblackmo) employee states fumes got into the cab of pickup from loader. Employee experienced chest pains, and trouble breathing. Supervisor: w. A. Russell
## 4579 10/27/2005 02:27 pm (blgay) employee was rearranging some boxes in the state issued van, when he lifted a heavy box felt a sharp pain in neck and upper back. Supervisor: pat ivey
## 4580 10/27/2005 02:40 pm (blgay) employee was cutting bushes on bridge right of way and came in contact with a nest of yellow jackets, stinging him on the chest and stomach. Supervisor: david l. Moore
## 4581 10/27/2005 02:50 pm (fblackmo) employee hit her right wrist on sharpe edges of machinery in storage room. Supervisor: angie sawyer
## 4582 10/27/2005 09:38 am (fblackmo) employee was turing imap truck into parking lot when, he was hit in the rear by a private vehicle(driver was on cell phone). Employee felt pain in his back and neck area. Supervisor: r. Steven bridges
## 4583 10/27/2005 09:51 am (fblackmo) employee was installing a engine in van, he was having trouble clearing frame and mounts, he pulled on the engine in a awkward position causing pain to his back area. Supervisor: keith hutchison
## 4584 10/27/2005 10:05 am (fblackmo) employee was fabricating a wrench for the paint machine grinding the edges to make smooth when, foreign matter got into his right eye. Supervisor: d. W. Burchette
## 4585 10/27/2005 11:05 am (fblackmo) employee was fertilizing daylily beds with a tractor and fertilizer spreader on the slopes when, he hit a hole and the fertilizer hopper shifted and flipped tractor over. Employee felt pain in his back and left leg. Supe
## 4586 10/27/2005 11:19 am (fblackmo) employee picked up a tamp and lifted it out of a ditch. After lifting out of the ditch tamp slipped and started to fall back into the ditch. Employee grabbed the tamp twisting his back. Supervisor: keith smith
## 4587 10/27/2005 11:30 am (fblackmo) employee was pulling himself up into road tractor when, he felt pain in his right shoulder. Supervisor: h. E. Worley
## 4588 10/27/2005 11:39 am (fblackmo) employee was sitting in his truck filling out paper work when, he heard a fire arm discharge. Shotgun pellets struck employee on left cheek and ear. Supervisor: r. D. Powell
## 4589 10/27/2006 01:55 pm (fblackmo) employee was clearing brush from under bridge with chainsaw when, he came in contact with poison oak. Supervisor: g. Todd cole
## 4590 10/27/2006 02:05 pm (fblackmo) employee was pulling asphalt with rake and felt something pull in his right shoulder. Supervisor: rick gordon
## 4591 10/27/2006 02:13 pm (fblackmo) employee was cutting broken gate arm with saw when, wind blew matter in his eyes. Supervisor: niles long
## 4592 10/27/2006 02:30 pm (fblackmo) employee was operating a jack hammer when, he felt pain in left shoulder. Supervisor: t. G. Culbertson
## 4593 10/27/2006 02:38 pm (fblackmo) employee turn to answer phone when, she felt pain in left hand. Supervisor: connie bullock
## 4594 10/27/2006 10:00 am (fblackmo) employee was conducting a road test when, customer failed to straighten steering wheel after making right turn. Customer hit the gas pedal causing the car to hit a tree on right side of road. Employee felt pain in his ne
## 4595 10/27/2006 10:22 am (fblackmo) employee was using backhoe to clean up a fallen tree when, branch rolled forward causing the backhoe to slip over embankment and turn over. Employee felt pain in back, left ankle, and rib area. Supervisor: james r. Ashe
## 4596 10/27/2006 11:03 am (fblackmo) employee twisted back while cleaning out the end of a driveway pipe. Supervisor: w. Q. Liverman
## 4597 10/27/2006 11:13 am (fblackmo) employee was installing culvert on state road when, lifting on end placing it in a ditch he, felt pain in right shoulder. Supervisor: james r. Ashe
## 4598 10/27/2006 11:24 am (fblackmo) employee was attempting to lower the ramps on a trailer (3201 cc) when, he felt a pop in his left wrist. Supervisor: r. A. Baker
## 4599 10/27/2006 11:34 am (fblackmo) employee was shoveling concrete out of rubber tire loader bucket when, he felt pain in his lower back area. Supervisor: william r. Briley
## 4600 10/27/2008 05:09 pm (fblackmo) employee was throwing tires on tarp to cover sand pile on maintenance yard when, he strain his right shoulder. Employee also states that he "thought he slept on his shoulder wrong" and needed to get off work on 9/29/08.
## 4601 10/27/2008 08:43 am (blgay) employee was attempting to return to vehicle he had been operating, as he turned to got o the truck, he lost his footing on some loose gravel in the parking area and turned his right ankle. Supervisor: mark williams
## 4602 10/27/2009 02:16 pm (fblackmo) employee was loading tamp in back of flat bed truck when, his right ring finger got mashed between side rial of truck and foot of tamp. Supervisor: herman futrell
## 4603 10/27/2009 02:39 pm (fblackmo) employee was weed eating when, a piece of plant went into his left eye. Supervisor: mark conner
## 4604 10/27/2009 03:07 pm (fblackmo) employee was working on storm drainage installation project in chadbourn when, he found a tick under left arm. Supervisor: kenneth l. Clark
## 4605 10/27/2009 03:21 pm (fblackmo) employee was cutting steel with chop saw when, a piece of met got into his left eye. Supervisor: robert w. Norwood 08/24/2010 09:26 am (lvaughan)
## 4606 10/27/2009 08:02 am (blgay) employee was changing cutting blade on backhoe. Bucket bolt dropped and employee reached up to adjust bolt and continue to tighten bolt. Bolt spun cutting ring finger and middle finger on left hand, causing stitches to both
## 4607 10/27/2009 09:25 am (blgay) employee was walking to the excavator that was parked off the roadway and stepped on a small tree stump that had been cut low to the ground, twisting his left ankle. Supervisor: kevin smith
## 4608 10/27/2009 09:35 am (blgay) employee was cutting a tree from the right-of-way and came into contact with the poison vines that were entangled on the tree. A backhoe was used to push back vegetation and employees did apply barrier cream before starting
## 4609 10/27/2009 11:21 am (fblackmo) employee informed her supervisor that she hurt her back lifting motor cycle cones. Supervisor: vickey s. Bridges
## 4610 10/27/2009 11:37 am (fblackmo) employee had finish sanding when, he removed his mask he felt a large lump on the right side of his forehead. Supervisor: thomas bowser
## 4611 10/27/2009 12:35 pm (fblackmo) employee states alleged hearing loss due to on the job continuous noise. Supervisor: richard dewhurst
## 4612 10/27/2010 08:57 am (fblackmo) employee was helping clear a tree from the right of way when he came in contact with poison ivy on both arms. Supervisor: stan paramore
## 4613 10/27/2010 09:27 am (barnes) employee was working on snow equipment on the yard. While he was working, he was stung by a yellow jacket. Employee started having breathing problems and went to the er for treatment. Employee injured his right wrist. S
## 4614 10/27/2010 09:50 am (fblackmo) employee was removing a tree from right of way when, he came into contact with poison ivy on both arms. Supervisor: nick bryant
## 4615 10/27/2010 09:54 am (barnes) employee was getting into dump truck and twisted his right ankle. Employee injured right ankle. Supervisor: harold williams
## 4616 10/27/2010 10:19 am (barnes) employee was shoveling to remove a pile of rock in the road. He twisted to empty the shovel and felt a sharp pain in his lower back. Employee injured right lower back. Supervisor: jennie weatherman
## 4617 10/27/2010 10:44 am (barnes) employee was hooking a utility trailer. The trailer slipped off the hook and hit employee on right foot behind the steel on his boot. Employee injuries are foot contusion, bruising and swelling of distal right foot. Supe
## 4618 10/27/2010 11:06 am (fblackmo) employee was exiting truck after getting to the jobsite. Employee cut his left hand on a piece of metal hanging off the truck. Supervisor: w. D. Lane
## 4619 10/27/2010 11:19 am (fblackmo) employee was stacking wattle rolls when he became hot and had trouble breathing. Heat exhaustion. Supervisor: chris vause
## 4620 10/27/2010 11:32 am (fblackmo) employee was working on installing a driveway pipes in a large ditch. There was a wooden walk bridge across the ditch approximately 100' down form the pipe location. Employee used the bridge to line up the pipes. While w
## 4621 10/27/2010 11:42 am (fblackmo) employee was walking to position sign beside road when, he stepped in a hole and twisted his right knee. Supervisor: eugene autry
## 4622 10/27/2010 12:04 pm (fblackmo) employee was standing adjacent to excavator when the excavator move forward; the track rolled over his right calf, pressing it down over his foot. The operator did not see employee standing close to the machine. Supervi
## 4623 10/28/1999 07:36 am employee received a tetanus shot due to possibility of working in a flooded area in another county. Swelling, redness and fever in right shoulder almost to elbow.
## 4624 10/28/1999 07:49 am removing grader tire from rear of truck. Tire became over balanced, falling and catching employees finger between tire & truck body. Cut middle finger rt. Hand.
## 4625 10/28/2002 02:18 pm (fblackmo) employees' vehicle and the private vehicle behind him had come to a complete stop at perdistrain crossing. Third vehicle failed to stop knocking second vehicle into employee. Supervisor: henry t. Moon
## 4626 10/28/2002 02:33 pm (fblackmo) employee was pulling pipe from back of flatbed truck when, his left arm scraped against a piece of metal causing a cut on his forearm. Supervisor: a. M. Lewis jr
## 4627 10/28/2002 02:45 pm (fblackmo) employee was attempting to empty the cuttings from the mud tub when, it slipped off the platform. Employee fell into the drilling cutout of the platform striking his lower back on the casing that was protruding thought
## 4628 10/28/2002 03:02 pm (fblackmo) employee was working off I-95 when, two trucks came by blowing debris into his eyes. Supervisor: m. S. Wade
## 4629 10/28/2002 03:13 pm (fblackmo) employee was lifting metal vise when he lost his grip, metal fell striking employee in his left knee. Supervisor: b. R. Moore
## 4630 10/28/2002 03:23 pm (fblackmo) employee was drifting toward the right edge of the road to let a car pass when, loose rock caused him to overturn. Supervisor: john w. White
## 4631 10/28/2002 03:38 pm (fblackmo) employee was lifting a bale of straw when he felt stinging in his left upper leg. Supervisor; keith hill
## 4632 10/28/2002 03:54 pm (fblackmo) employee stated that he was unloading straw form a trailer. The first stack of straw was packed very tightly. Attempting to remove the first bale, the string on the bale broke causing him to fall from the rear of the t
## 4633 10/28/2003 02:07 pm (fblackmo) employee was helping install a 24" pipe when, he felt pain in his back. Supervisor: george w. Price
## 4634 10/28/2003 08:26 am (fblackmo) employee was picking up asphalt by hand when, he felt pain in his left wrist. Supervisor; k. R. Davis
## 4635 10/28/2003 08:48 am (fblackmo) employee states while stepping up into motor grader he, felt pain in his right knee. Supervisor: thomas deans
## 4636 10/28/2003 08:58 am (fblackmo) employee was driving state vehicle when, a private vehicle crossed the center line and struck employee head on. Employee veered to the right and applied the brakes prior to impact. Supervisor: d. R. Summers 04/12/2004
## 4637 10/28/2003 09:18 am (fblackmo) employee was walking down embankment at job site, he stepped on loose rock and lost his balance. He was carrying an oil can, a gas in one hand and a potato digger in the other hand when he fell. Supervisor: w. D. Watkins
## 4638 10/28/2003 09:34 am (fblackmo) employee was leaving building to move his vehicle when, he slipped and fell on the steps. Supervisor: christopher oliver
## 4639 10/28/2003 09:45 am (fblackmo) employee was assisting in the removal of a damaged sign support (u-channel posts) when, a short piece of x bracing broke loose striking him on the head. Supervisor: j. S. Tomlinson
## 4640 10/28/2003 10:39 am (fblackmo) employee was working under vehicle when, he raised up he hit his head on a bar. Supervisor; m. W. Perkins
## 4641 10/28/2003 10:54 am (fblackmo) employee states while working on patching operation he, was stung by a bee on his neck. Supervisor: k. F. Hughes
## 4642 10/28/2003 11:22 am (fblackmo) employee states he was driving down the road when, he blacked out. Supervisor: jerome locklear
## 4643 10/28/2003 11:57 am (fblackmo) employee states while burning msd pipeline a piece of steel flew into his right eye. Supervisor; kevin lamar cooke
## 4644 10/28/2004 08:57 am (fblackmo) employee was installing metal stakes for silt fence installation. He was positioning the stakes with his hands and using his foot to drive the stakes into the ground by forcing his foot down on the guide plate of the sta
## 4645 10/28/2004 09:08 am (fblackmo) employee states while walking back to truck to pick up led he, stepped in a hole causing the injury to his right knee. Supervisor: rudy bachelor
## 4646 10/28/2008 02:17 pm (blgay) employee was attending a self defense class and they were doing practical portion of class work. A partner that he was working with attempted a take down on this employee. In so doing, the partner hit employees knee with hi
## 4647 10/28/2008 03:07 pm (blgay) employee was leaving asphalt plant when spray bottle fell on floor of truck. Employee leaned over to pick up bottle, veered off shoulder of road and truck flipped over on its side. Supervisor: willie robinson
## 4648 10/28/2009 03:18 pm (fblackmo) employee was shutting off water value while walking back up incline he lost his footing striking left knee on the ground. Supervisor: k. D. Gray
## 4649 10/28/2009 03:30 pm (fblackmo) employee was raking hot asphalt when, he fell causing burn to left elbow. Supervisor: ben nelms
## 4650 10/28/2009 04:22 pm (fblackmo) employee was climbing through the void from bay to bay on ferry when, he felt a sharp pain in his right wrist. Supervisor: thomas bowser
## 4651 10/28/2010 02:18 pm (fblackmo) employee was trying to install a fan; fan clutch assembly on dump truck. Employee was on the right side while another employee was helping lift the clutch into place. Employees foot slipped and he fell on his chest acros
## 4652 10/28/2010 02:32 pm (fblackmo) employee stated that while lifting augers, he felt and heard something pop in his abdomen area. Employee decided after he was off duty that the pain was severe enough to require medical attention and went to the er at re
## 4653 10/28/2010 02:45 pm (fblackmo) employee was helping another employee chain down a piece of equipment in a borrow pit area when, his foot got stuck in a small wheel rut resulting in a pulled groin. Supervisor: jonnie barefoot 11/19/2010 03:41 pm (lva
## 4654 10/29/1999 01:01 pm employee was helping set up the water pump for the city of washington to help lower jack's creek at the pumping station. The p. T. O. Broke a bolt in the p. T. O. Shaft. Employee was trying to replace the bolt when he struck his elbow
## 4655 10/29/1999 01:25 pm employee was climbing down from truck using hand hold and steps provided on truck. Foot slipped from bottom step and shoulder twisted as weight was taken up by hand hold. Strained right shoulder
## 4656 10/29/1999 02:14 pm lifting sign post and operating pole setter equipment over a protracted period of time. Right elbow and hand.
## 4657 10/29/1999 02:33 pm employee was scraping on the portside of the m/v conrad wirth. While performing this duty, some debris flew into the employees' safety glasses and into his eye.
## 4658 10/29/1999 03:17 pm while measuring for seeding on a steep slope in project area, Mr. Bowes slipped and twisted his right knee. His right knee had previously been injured on 6-16-1999 while performing the same duties. Sprained right knee.
## 4659 10/29/1999 08:17 am injured was wearing helmet and making diaphrams while using welder. Mig welders have a brighter flash than regular welders causing a greater risk of eye injury. Employee needs to keep eyes protected at all times.
## 4660 10/29/1999 08:49 am employee working with survey party, was walking in woods putting in centerline. Must have walked into some poison ivy.
## 4661 10/29/1999 09:10 am employee was cutting grass on sr 1513 and the shoulder of road caved in causing a fractured left elbow
## 4662 10/29/1999 09:21 am employee was helping to lift sheet pile boards in place to be driven by jack hammer when he felt a sharp pain in the lower right side of back and the pain ran down his right leg to his knee. The crew was driving sheeting when inju
## 4663 10/29/2001 12:46 pm (slee) private party and dot employee were traveling west down nc 97, dot employee made a u-turn and private party it the drivers side of dot vehicle and pushed it several feet after impact.
## 4664 10/29/2007 02:28 pm (fblackmo) employee was lifting a bag of asphalt from a pre-heating oven to a table where the sample was reduced in size for further testing. Employee felt pain in his lower back. (form 19 states not work related). Supervisor: todd
## 4665 10/29/2007 02:44 pm (fblackmo) employee fell backwards onto pavement as he was dismounting trailer that was towing equipment. Employee did not go to doctor until 10/08/2007. Lead worker: s. Bell
## 4666 10/29/2007 02:55 pm (fblackmo) employee states after surfacing from a routine underwater inspection, he complained of throat irritation. Supervisor: james f. Ahlmark
## 4667 10/29/2007 03:16 pm (fblackmo) employee was in back seat of truck when, truck was struck in the left side by a private own vehicle. Employee felt pain in his neck. Supervisor: mark turlington
## 4668 10/29/2007 03:30 pm (fblackmo) employee was working in the woods when, he was bitten by ticks. Supervisor: c. S. Mcdonald
## 4669 10/29/2007 03:43 pm (fblackmo) employee was getting filters out of cab. He was standing on running boards when, he slipped and fell causing injury to his back. Supervisor: albert vann
## 4670 10/29/2007 04:00 pm (fblackmo) employee and co-worker were disassembling a damper and pulley when, employee was caught between pulley. Supervisor: richard dewhurst
## 4671 10/29/2007 11:24 am (fblackmo) employee was climbing down off of truck from unloading metal hopper when, he felt pain in his lower back and right leg. Supervisor: elpidio guera
## 4672 10/29/2007 11:51 am (fblackmo) employee tripped over a computer cord causing injury to her right ear and temple area. Supervisor: linda jones
## 4673 10/29/2007 12:06 pm (fblackmo) employee was dragging crepe myrtle limbs to chipper when, an insect bit him on the left thumb. Supervisor: brian glover
## 4674 10/29/2008 10:31 am (fblackmo) employee was stepping down from the cab of truck to the ground when, she twisted her left knee. Supervisor: hank bowie
## 4675 10/29/2010 02:55 pm (barnes) employee was removing a tree from right of way, when he came in contact with a large amount of poison ivy. Employee had poison ivy on his hands, arms and face. Supervisor: darrell l. Dean
## 4676 10/29/2010 04:23 pm (fblackmo) employee was taking a break outside the main dmv building, she stood up to return back to work, and tripped over the curb causing multiple injuries. Supervisor: mike mayes
## 4677 10/29/2010 04:38 pm (fblackmo) employee was trying to shut the door to the engine room booth when the door slammed on his little finger on right hand. Supervisor: steven j. Goodwin
## 4678 10/29/2010 12:45 pm (barnes) employee states that while he was maneuvering the boom to better reach a signal head on a mast arm pole, the bucket moved quicker than expected, catching his hand between a sign and the top of the bucket. Employee injured
## 4679 10/3/2006 02:18 pm (fblackmo) employee was filling a stock order in the parts section of shop and tripped over a broken slat sticking off of a pallet. Supervisor: maurice ring 3/8/2007 12:11 pm (lvaughan) per #19 injury to: r-knee, wrist; l-side
## 4680 10/3/2006 02:31 pm (fblackmo) employee was helping co worker load 4x8 sign panels (weighed 55-60lbs each) when, he went to pick up one of the panels his feet slid a little but he caught his balance & placed panel onto trailer. He felt nothing unusual
## 4681 10/3/2006 02:49 pm (fblackmo) employee was in a loaded swb international hauling stones. He was traveling up the right side of the road to avoid the wind row stone on the left side and to allow room for cars to pass. The soft shoulder gave away under
## 4682 10/3/2006 12:11 pm (fblackmo) employee was picking up bags of litter and throwing them into back of medium dump truck when, he felt sharp pain in his sternum. Supervisor: j. D. Harrell
## 4683 10/3/2006 12:23 pm (fblackmo) employee stepped into a hole that was obscured by vegetation and twisted his left ankle. Supervisor: johnie marion
## 4684 10/3/2008 08:12 am (blgay) employee was removing tree limbs from across the road. The tree limbs were covered in poison ivy, resulting in employee breaking out on arms. Back and shoulders. Supervisor: stephen dillon
## 4685 10/3/2008 08:21 am (blgay) employee was handing rip rap out of bed of dump truck to other employee for placement at pipe. The next day employee had pain in his right shoulder. Supervisor: d. M. Pressley
## 4686 10/3/2008 09:06 am (blgay) employee was flagging at a work zone when private vehicle went through work zone without stopping, hitting flagman and the backhoe, resulting in sprain left knee and left wrist. Supervisor: jerry parks
## 4687 10/3/2008 09:31 am (blgay) employee was lifting up on dump truck tailgate and felt something pull in his stomach. Supervisor: cleve barton
## 4688 10/3/2008 10:37 am (fblackmo) employee was weed eating and stepped on unknown object when, he felt pain in both legs. Supervisor: jeremy b. Creech
## 4689 10/30/2000 03:59 pm employee was using spray cleaner on mower; when the water splashed back on his arm. A couple of hours later his arm was itching and irritated. Supervisor: r. H. Brazil
## 4690 10/30/2000 04:11 pm employee was picking up trash; when a thorn went through his work glove into his right middle finger. Supervisor: jerry l. Green
## 4691 10/30/2000 04:21 pm employee was pouring concrete when he was exposed to the sun for long periods of time. He has sunburn to his right side and the back of his neck. Supervisor: t. B. Brooks
## 4692 10/30/2000 11:14 am employee was inspecting some prestressed concrete cored slabs; when he slipped and fell off the edge of a slab. Mr. Brannan has significant lower back pain due to this incident. Supervisor: p. Korey newton
## 4693 10/30/2001 09:56 am (fblackmo) employee slipped on top step of back hoe while dismounting equipment after performing daily inspection of equipment. Employee fell onto step, bruising both knees on impact and landed on his feet. Supervisor: r. N. Harden
## 4694 10/30/2001 10:21 am (fblackmo) employee was removing pins from loader bucket with a hammer. The hammer hit the arm of the loader, glanced off the arm, hitting inside of employees left foot. Supervisor: richard lichtenhahn
## 4695 10/30/2001 10:46 am (fblackmo) employee slipped on rip rap causing the injury to his left ankle. Supervisor: steve r. Davis
## 4696 10/30/2001 11:11 am (fblackmo) employee was standing behind his partner when hi was pulling vines from a sign, vine hit employee in the eye. Supervisor: robert t. Moore
## 4697 10/30/2002 07:30 am (fblackmo) employee was working in the bow thruster compartment of the m/v pamlico when, something blew into his right eye. Supervisor; kevin lamar cooke
## 4698 10/30/2002 09:08 am (fblackmo) employee was removing limbs from road way when, he came into contact with poison oak. Supervisor: b. D. Johnson
## 4699 10/30/2002 09:22 am (fblackmo) employee was returning from lunch when, she stepped on a rock and lost her balance. Supervisor: c. W. Bridgers jr *let joyce see all bills*
## 4700 10/30/2002 09:37 am (fblackmo) employee stated that while bending to change tire he felt pain in his left knee and wrist. Supervisor: jeff corley
## 4701 10/30/2002 11:07 am (fblackmo) employee was using hydraulic wood splinter when, his left thumb became lodged between the wedge and wood. Supervisor: robert payne
## 4702 10/30/2002 11:58 am (fblackmo) employee was assisting technicians in work area of uneven terrain at job site when, he started experiencing sharp pain in his abdomin area. Supervisor: w. D. Frye
## 4703 10/30/2002 12:10 pm (fblackmo) employee was entering truck when, the driver of the truck pulled off before he could get completely in. Employees' leg got caught and was pulled under the truck. Supervisor: d. L. Irvin
## 4704 10/30/2003 02:42 pm (fblackmo) employee was picking up tree limbs form right of way when, he came into contact with poison ivy. Supervisor: robert winslow
## 4705 10/30/2003 02:53 pm (fblackmo) employee states while cutting limbs on the ground one of the limbs twisted, causing a cut to his back. Supervisor: robert winslow
## 4706 10/30/2003 09:41 am (fblackmo) employee states while operating a chain saw cutting trees to be removed from right of way when, a limb popped back striking employee across his knuckles on left hand. Supervisor: f. L. Wiggins
## 4707 10/30/2003 09:55 am (fblackmo) employee states while cutting trees he, came into contact with poison ivy. Supervisor; b. J. Berryhill, jr
## 4708 10/30/2003 10:06 am (fblackmo) employee states a tool box lid fell on his hand causing a cut to his center finger on right hand. Supervisor; r. J. Hollifield
## 4709 10/30/2007 10:06 am (fblackmo) employee was standing on motor grader when, he slipped and fell causing injury to his right elbow, left arm, back, and rib cage area. Supervisor: jesse hansley
## 4710 10/30/2007 10:19 am (fblackmo) employee was assisting another employee at the asphalt plant banding tow big exhaust pipes together when, the pipe twisted and mashed his fingers on right hand. Supervisor: ricky feher
## 4711 10/30/2009 10:52 am (fblackmo) employee had the truck backed up to the loading dock preparing o load seed. He stepped from the truck to the loading dock when, his foot slipped. Employee put his hand out to catch himself causing injury to his right thu
## 4712 10/30/2009 11:16 am (fblackmo) employee was cleaning up debris when, he hit a limb that was on tarp causing injury to his right index finger. Supervisor: chris pendergraph
## 4713 10/30/2009 11:46 am (fblackmo) employee was on top of salt spreader unhooking chains that was suspended from rack when, he slipped between gap in grate. Employee tired to catch himself causing injury to left palm and hand. Supervisor: luther thompson
## 4714 10/31/2000 09:17 am employee was throwing class b stones under bridge for slope protection; when he strained muscles in his groin area. Supervisor: r. P. Bennett
## 4715 10/31/2000 09:24 am employee was loading drain pipes on trailer; when the pipe slipped cutting employees left wrist and arm. Supervisor: m. M. Solon
## 4716 10/31/2000 09:43 am employee was getting weighing scales out of car when he strained his lower and upper back. Supervisor: lt. T. S. Collins
## 4717 10/31/2000 12:06 pm employee was using chainsaw when the chain came loose. Mr. D'arcy turned the saw off to tighten the chain and began to loosen the nuts; when the wrench slipped cutting his left index finger. Supervisor: k. L. Anderson
## 4718 10/31/2000 12:13 pm employee was riding with another employee; when the driver of the truck drove over a drop in the pavement. Mrs. Corbett was thrown in the air and came down hard causing injuries (strain/sprain) to her neck and lower back. Superviso
## 4719 10/31/2001 02:55 pm (fblackmo) employee was operating a backhoe digging out pavement he turned his head to the left, employee lost vision in his left eye. Supervisor: donald king
## 4720 10/31/2001 03:13 pm (fblackmo) employee walked around on the outside of the bulwark to retrieve the starboard sterm line when, he stepped back he was caught between the vessel and piling. Supervisor: s. H. Kinner *show all bills to joyce wilson*
## 4721 10/31/2001 03:31 pm (fblackmo) employee states that while digging in ditch to locate fiber optic phone lines he felt a pain in his back. Supervisor: l. Michelle podeszwa
## 4722 10/31/2001 03:42 pm (fblackmo) employee was entering into the engine room escape hatch on the m/v southport, the hatch is spring loaded, as the hatch opened it pinned his finger between the hatch and the fan vent. Supervisor: david pharr
## 4723 10/31/2001 03:54 pm (fblackmo) employee was laying under vehicle on creeper tighting brake caliper when he went to stand up he felt a sharp pain in his lower back. Employee experienced discomfort in walking and other movements. Supervisor: a. C. Hende
## 4724 10/31/2001 04:10 pm (fblackmo) employee was walking to get into truck and stepped on a rock. The rock turned causing the employee to injury his ankle. Supervisor: m. S. Reese
## 4725 10/31/2001 04:21 pm (fblackmo) employee was placing rip rap in a ditch around a driveway pipe by hand. Employee was picking up a piece of rip rap when another piece rolled down smashing left thumb. Supervisor: archie coghill
## 4726 10/31/2001 04:42 pm (fblackmo) employee was hammering nails into deck when his back started to hurt. Supervisor: k. E. Anderson
## 4727 10/31/2001 05:01 pm (fblackmo) employee states that while unloading a desk during moving a spring loaded drawer used to hold a typewriter, sprung up and broke the ring finger on his right hand. Supervisor: m. G. Mercer
## 4728 10/31/2006 02:56 pm (fblackmo) employee was putting silfax in a pothole in heavy traffic causing gravel to fly up striking him in the face and arms. Supervisor: w. R. Friddle
## 4729 10/31/2006 03:06 pm (fblackmo) employee was loading straw when, he was bitten by straw mite. Supervisor: sam wilson
## 4730 10/31/2006 03:51 pm (fblackmo) employee was loading and unloading straw when, he was bitten by straw mite. Supervisor: lee gerson
## 4731 10/31/2006 09:10 am (fblackmo) employee experienced numbness in left thumb and index finger. Supervisor: randy wise
## 4732 10/31/2006 09:20 am (fblackmo) employee experienced pain in both hands and wrist while doing typing. Supervisor: don l. Rich
## 4733 10/31/2006 09:30 am (fblackmo) employee was helping lifting work materials when, he had pain in his groin and back area. Supervisor: jeremy b. Creech
## 4734 10/31/2006 09:40 am (fblackmo) employee was feeling weak and hot. His blood pressure was high. Employee was transported to concentra for treatment of condition. Supervisor: mike jefferys
## 4735 10/31/2006 09:57 am (fblackmo) employee claims he started having chest pains as he was helping shanon eiben lift a metal drain cover (grate). The rest of the crew claims he had not done any work yet and that he had complained of chest pains when they
## 4736 10/4/2004 02:26 pm (fblackmo) employee states while stopping to pick up trash his fingers was mashed between the door of the dump truck. Supervisor: r. D. Davis
## 4737 10/4/2004 02:41 pm (fblackmo) employee was getting out of vehicle and slammed right index finger in drivers side door. Supervisor: t. K. Wheeler
## 4738 10/4/2004 03:43 pm (fblackmo) employee stepped on a nail while walking at job site. Supervisor: m. E. Plummer
## 4739 10/4/2004 03:55 pm (fblackmo) employee was cutting brush when, he came into contact with poison ivy. Supervisor: n. S. Gibson
## 4740 10/4/2004 11:37 am (fblackmo) employee felt sharp pain in the mid point of his back while removing drift and debris at a culvet. Employee was moving a log by hand in the water that was 5 feet deep. Employee was on top of the drift pile when injury occ
## 4741 10/4/2004 12:03 pm (fblackmo) employee was cutting underbrush when, he was stung several times on his right hand, leg, and back by a yellow jacket. Supervisor: roy d. Pittman
## 4742 10/4/2004 12:14 pm (fblackmo) employee was spraying bug spray on hat when, spray got into employees eyes and face. Supervisor: t. L. Hall
## 4743 10/4/2005 02:57 pm (fblackmo) employee was replacing hydcylinder on backhoe when, he felt pain in his left knee. Supervisor: scott hancock
## 4744 10/4/2005 03:22 pm (fblackmo) employee was lifting a computer monitor off desk setting it on the floor when, he felt pain in his back. Supervisor: willie bradwell
## 4745 10/4/2005 03:32 pm (fblackmo) employee was tightening bolts on bush axe handle when, the wrench slipped causing a cut to his right thumb. Supervisor: david moore
## 4746 10/4/2005 03:49 pm (fblackmo) employee was using a weedeater cutting down weeds and grass when, he hit unknown object. The object flew up hitting him on his right forearm causing a cut. Supervisor: ronald e. Joyce
## 4747 10/4/2005 04:58 pm (fblackmo) employee was sharpening his bush axe when, he cut his right thumb. Supervisor: lawrence n. Long
## 4748 10/4/2005 05:07 pm (fblackmo) employee was using shovel to uncover a sanitary sewer manhole to check invert elevations when, he felt pain in his lower back. Supervisor: j. D. Bradner
## 4749 10/4/2005 11:30 am (fblackmo) employee was raking abc stone level by using a garden ranke when, he felt pain in his groin area. Supervisor: carlis smith
## 4750 10/4/2005 11:44 am (fblackmo) employee was leaving work for the day from main building when, he twisted right ankle causing him to fall. Employee fell were the cement was broken and orange cone was sitting at the side of the break near grass. Supervis
## 4751 10/4/2007 03:10 pm (mdsloan) employee was sitting in truck slumped over in truck when the supervisor was told that he thought the employee might have had a heart attack. The county maintenance engineer was informed of the situation and the 911 was ca
## 4752 10/4/2010 09:27 am (fblackmo) employee was flagging traffic for road oil operation when, his eyes became irritated/red. Supervisor: alton thornton
## 4753 10/4/2010 09:58 am (barnes) employee along with another employee were pushing a thermo cart from an asphalt roadway onto a grass shoulder. While pushing the cart, the employee felt a sharp pain in the left heel of his foot. Employee hurt left heel. S
## 4754 10/5/2004 10:07 am (fblackmo) employee states that another employee next to him was cutting lines when, the axe glanced off and struck him on his upper right arm. Supervisor: m. E. Plummer
## 4755 10/5/2004 10:34 am (fblackmo) employee was trying to lower the tailgate when, his finger was mashed between the tailgate and the bed of the truck. Supervisor: terry davis
## 4756 10/5/2004 10:57 am (fblackmo) employee states while pulling limbs out of plant bed he, felt pain in his back. Supervisor: kenneth williams
## 4757 10/5/2006 09:39 am (fblackmo) employee was conducting exercise training when, he made contact with suspects legs his left shoulder became dislocated sightly. Supervisor: capt. Callahan
## 4758 10/5/2006 10:36 am (fblackmo) employee was making repairs to a truck when, his right index finger was pinched between air brake chamber and hold back bolt. Supervisor: daylon lynch
## 4759 10/5/2006 10:58 am (fblackmo) employee was getting out of truck to pick opossum off road. While stepping out of truck her foot slipped on new pavement. The truck did not pull off road due to the fact road had just been paved and there was not enough r
## 4760 10/5/2007 08:18 am (mdsloan) employee was throwing away paint can liners into dumpster when he stepped on an old 4x4 wood sign post and twisted his left foot. Supervisor: p. L. Eaker
## 4761 10/5/2007 09:31 am (mdsloan) employee was working on the side of the road when employee encountered some poison ivy. Supervisor: d. Brett henson
## 4762 10/5/2007 11:54 am (mdsloan) employee states that he strained his right side while performing concrete tests, which requires moving concrete from a chute on concrete truck to test area using a five gallon bucket full of concrete and as he was doing th
## 4763 10/6/2005 08:39 am (fblackmo) top two drawer of the lateral file cabinet were opened while employee was working. The cabinet fell down and to avoid being hit by the cabinet, employee fell down on the ground and bruised his right hand and wrist. Supervi
## 4764 10/6/2006 09:41 am (fblackmo) employee came into contact with poison ivy while pulling vines off athey loader. Supervisor: robert g. Davis
## 4765 10/6/2009 10:16 am (blgay) employee was checking mix, stepped down onto fuel tank of truck. While holding handle bar, turned left and grabbed tarp rail and stepped onto the lowest rail. Foot slipped on icy rail, causing both feet to come loose and all
## 4766 10/7/2004 02:12 pm (fblackmo) employee was picking up tailgate when, his right index finger was pinched. Supervisor: k. R. Davis
## 4767 10/7/2004 02:24 pm (fblackmo) employee stepped into hole on roadway construction project and injured his left heel. Supervisor: e. L. Sexton
## 4768 10/7/2004 02:36 pm (fblackmo) employee states while rounding a curve the rear of the truck slid to the right causing the truck to turn over in a ditch. Employee states he received cuts to his left arm. Supervisor: chad franklin
## 4769 10/7/2004 03:32 pm (fblackmo) employee was cutting a tree in roadway when, foreign matter got into his left eye. Supervisor: k. R. Davis
## 4770 10/7/2004 03:53 pm (fblackmo) employee was working in yard loading steel. Employee was getting out of the excavator when, he felt pain in his left foot. Supervisor: jeremy b. Creech
## 4771 10/7/2008 03:20 pm (blgay) employee was reaching for pin that holds jersey barriers together when barrier shifted, pinning employees right middle finger between the bolt and concrete. Supervisor: ken anderson
## 4772 10/7/2008 03:51 pm (fblackmo) employee was climbing on the rip rap stone stockpile with the prism pole. The survey party was taking shots on the pile to verify the current inventory level. Employee slipped and fell on the rocks, injuring his left knee
## 4773 10/7/2009 04:17 pm (fblackmo) employee fell down stairs in highway building, she felt pain in her right elbow and hip area. Supervisor: michael dail
## 4774 10/7/2010 02:14 pm (barnes) employee responded to an oil spill located on I-40 business (us 421) at mm 9 near linville road. As the employee was spreading an absorbent material onto the oil spill, some of the material blew into his eyes due to passing
## 4775 10/7/2010 02:37 pm (barnes) employee was checking the gvw(gross vehicle weight) on a tractor trailer. As he stepped down, he missed the last step, causing him to fall on the cement ground on his back. Employee had injuries to his right side, wrist spr
## 4776 10/7/2010 03:00 pm (barnes) employee was assisting with tree removal and came in contact with poison ivy. He was sent to concentra medical. Without a doctors note, employee chose to go home for the rest of the day. He was paid for 2. 5 hours for the da
## 4777 10/7/2010 09:16 am (barnes) employee was shoveling next to a pipe looking for a fiberoptic line and he twisted his foot. Employee injured right foot, from ankle to ball of foot. Supervisor: wendell chastain
## 4778 10/7/2010 12:42 pm (barnes) employee was assisting an injured "phillips & jordan" employee who had fallen off track hoe and could not get up. Employee was bent over helping the gentleman up, when he felt something pull in his lower back. Employee inju
## 4779 10/8/2008 02:56 pm (blgay) employee was flagging for a patch crew operation. Employee said that he felt a sudden jolt of pain go through the right side of his body. Supervisor: b. G. Jordan
## 4780 10/8/2008 10:12 am (fblackmo) employee was attending a safety meeting when, he started to feel weak and light headed. He went to the office and laid his head down and began sweating profusely. Emergency unit was called. Dehydrated. Supervisor: jeff mi
## 4781 10/8/2008 10:27 am (fblackmo) employee was putting trash in bag when, he cut his index finger on left hand on lid. Supervisor: bobby lewis jr
## 4782 10/8/2008 10:36 am (fblackmo) employee was performing a/c repair, he was inspecting the lines for leaks when the radiator fan clutch engaged, blowing debris into his right eye. Supervisor: ricky rogers
## 4783 10/8/2010 08:34 am (fblackmo) employee was working on paving operation when the driver that was intoxicated pulled off into the work site. Employee was directing the driver out of work zone when, the driver struck from behind with his vehicle. Employe
## 4784 10/8/2010 09:02 am (fblackmo) employee was inspecting erosion control at pump outlet area that was approximately three inches high with weeds and brush when, he was bitten by un-known insect on his left forearm. Supervisor: d. J. Underwood
## 4785 10/8/2010 09:49 am (fblackmo) employee was dumping asphalt when breeze blew foreign matter into his left eye. Supervisor: james darrell wilkins
## 4786 10/8/2010 10:07 am (fblackmo) employee was holding rail as bolt was being cut with a torch when, the hot railing hit his right forearm. Supervisor: randy williams
## 4787 10/9/2006 01:46 pm (fblackmo) employee was removing signs from the shoulder of road with another employee when, he felt pain in his left shoulder. Supervisor: m. Vann price
## 4788 10/9/2006 02:12 pm (fblackmo) employee was securing backhoe to trailer with chain and load binder, the pin broke out of the chain and hook, which flew back and hit left thumb causing the break. Supervisor: greg mccracken
## 4789 10/9/2006 02:25 pm (fblackmo) employee was working on the asphalt patching crew while in the process of smoothing the asphalt he felt pain in his right side/rib area. Supervisor: kevin whittington
## 4790 10/9/2006 12:18 pm (fblackmo) employee was traveling west on penderlea road (state road 1332) in pender county. At the intersection of new savannah road a van ran a stop sign. The two vehicle collided causing injuries to employee and the woman driving
## 4791 10/9/2008 02:28 pm (fblackmo) employee was getting out of short wheel base truck and lost his footing on the steps. Employee felt pain in his right foot/large toe. Employee had two surgical procedures on right foot prior to this injury in the last th
## 4792 10/9/2009 02:59 pm (blgay) employee was conducting a test drive, when customer was pulling into a parking space and hit parked car on the rear left side. Supervisor: phyllis young
## 4793 10/9/2009 03:15 pm (blgay) employee was working on construction project sr 1201, peoria road. On monday after getting home he began to itch and notice a rash on neck, face, arms, stomach, legs and eyes were irritated and red. On tuesday he went to the
## 4794 10/9/2009 03:33 pm (blgay) employee was climbing up a slope to set right-away monument and turned his left ankle causing the ankle to swell. Supervisor: c. R. Styles
## 4795 11/01/2000 10:41 am employee states exposure to high noise levels while working around large saws in equipment shop; May have decreased employees hearing ability. Supervisor: j. D. Everett
## 4796 11/01/2000 10:46 am employee slipped and fell off trailer while trying to read vin numbers from vehicles. He has injuries to his left arm (wrist, elbow, shoulder); his left lower leg/knee and right leg and ankle. Supervisor: lt. G. F. Inamn
## 4797 11/01/2000 10:57 am employee was giving a road test and waiting to make a left turn onto main street on 7/13/00; when she was struck from behind by a private vehicle. Ms. Tilley has soreness/pain in her neck due to the accident. Supervisor: sylvia
## 4798 11/01/2000 11:10 am employee was giving a road test; when his customer stepped on the gas instead of the brakes. The customer was backing out of parking place and struck another examiner's car. Mr. Shehdan strained his right arm/shoulder and neck. S
## 4799 11/01/2001 01:59 pm (fblackmo) employee was on port bow of ferry at ramp. Employee threw his tag line to shoreman, but he did not catch it. Employee threw it again while ferry was slow backing up. Employee leg got caught between the ramp and bulkhe
## 4800 11/01/2001 02:17 pm (fblackmo) employee states pain in hands and shoulders has gotten worst due to constant keyboard strokes. Supervisor: gwendolyn smith
## 4801 11/01/2001 02:34 pm (fblackmo) employee was loading supplies for job assignment when he felt something pull. From left elbow to his fingers hurt. Supervisor: r. E. Joyce
## 4802 11/01/2001 02:49 pm (fblackmo) employee states that she is experiencing chronic ear infection from the use of her headset. Supervisor: pam guptill
## 4803 11/01/2001 08:51 am (fblackmo) employee states that while operating various pieces of equipment for extended periods of time has caused permanent hearing loss in both right and left ears. Supervisor: wendell chastain
## 4804 11/01/2001 12:11 pm (fblackmo) employee was unloading flashing signs off back of the trailer when, he jumped off to finish unloading the signs his left knee buckled. Supervisor: tommy kilpatrick
## 4805 11/01/2001 12:24 pm (fblackmo) employee was loading a form on the truck when he experienced pain in his lower back. Supervisor: derwin strickland
## 4806 11/01/2002 10:24 am (fblackmo) employees' foot slipped on the stairs; caused by rainy weather. Supervisor: harvey mangom
## 4807 11/02/1999 08:25 am employee was hooking up 15' steel sheet piling when another employee stepped on the opposite end then walked up piling causing the sheeting to fall on employee's right foot. Contusion on right foot. 02/04/2000 09:43 am
## 4808 11/02/1999 08:39 am control unit for computers is 3 to 4 feet off the floor. Unit is mounted from wall. The control box is at least 8 feet off the floor. Ex. Pollard has to stand on a ladder to reach the box. The ladder slipped, causing ex. Pollard to
## 4809 11/02/1999 08:50 am crew unloading steel plates for bridge repair. Employee grabbed steel plate to guide it to work area and was electrocuted due to booms proximity to power line. Electocution through hands causing heart failure.
## 4810 11/02/1999 09:06 am employee injured his right little finger while unloading the skid loader from trailer. He crushed his finger when he unlocked the pentle hook latch, causing the trailer to raise up. Supervisor: f. E. Ford.
## 4811 11/02/1999 09:14 am employee injured his lower back while shoveling rock on austin chaney road in union county. Mr. Tucker stepped back into a hole twisting his back. Supervisor: david lowery
## 4812 11/02/1999 10:20 am employee broke his left arm on the job the summer of 1994. He has been diagnosed with carpal tunnel syndrome in his left arm and it is believed this is a result of the break he received in 1994.
## 4813 11/02/1999 10:31 am starting itching after bushing 2 bridges, eyes began to swell overnight. Both eyes and both arms below elbow. Poison oak. 02/01/2000 01:03 pm
## 4814 11/02/1999 10:48 am employee was riding in the back seat of crewcab when it was struck in the rear by a private vehicle. Employee struck his head on the stud for the seatbelt cutting his head.
## 4815 11/02/2000 09:54 am employee was stopped in roadway making a left turn into parking area on 9/29/00. He was struck from behind by a private vehicle (holley jo ritchie). Mr. Boan has strain to his back due to the impact. Supervisor: capt. J. S. Kee
## 4816 11/02/2000 10:05 am employee was riding in dump truck when the employee driving swerved to Miss A vehicle that pulled out in front of them. Mr. Devane was jerked and strained his lower back. Supervisor: e. L. Gurganious
## 4817 11/02/2000 10:11 am employee came in contact with poison ivy plants while mowing on sr 1140. Mr. Wiggins has contact rash on both arms and chest area. Supervisor: a. E. Brown
## 4818 11/02/2000 10:18 am employee strained his lower back while moving two large logs off right of way. Pain radiates down into his right leg and foot. Supervisor: d. T. Childrey
## 4819 11/02/2000 10:22 am employee came in contact with poison ivy plants while working on 10/27/00. She has contact rash on both arms, legs, and face. Supervisor: tom padgett
## 4820 11/02/2001 02:05 pm (fblackmo) employee was on creeper under rear differential, when differential fell on employees right hand severely cutting fingers and thumb on hand. Supervisor: w. M. Harrell
## 4821 11/02/2001 02:33 pm (fblackmo) employee stepped in a hole and twisted knee. Supervisor: a. E. Brown 06/05/2002 04:05 pm (hoxendin)
## 4822 11/02/2001 02:45 pm (fblackmo) employee was bending down to look through a driveway pipe, a blade of grass stuck him in the eye. Supervisor: patty eason
## 4823 11/02/2001 03:09 pm (fblackmo) employee was using a crow bar prying concrete from bridge peephole when shoulder blade got a catch and started hurting like a pull muscle. Supervisor: w. D. Watkins
## 4824 11/02/2001 12:41 pm (fblackmo) employee was getting out of the motor grader when, his foot slipped off of the step causing him to land in a awkward position. Supervisor: darrell parson
## 4825 11/02/2001 12:54 pm (fblackmo) employee step in a pot hole while walking in a fast pace to answer the telephone in the shop yard. Supervisor: a. W. Keeton
## 4826 11/03/1999 10:41 am employee was in snack bar going to get a can drink and fell when passing chair. Broke two small bones above left ankle.
## 4827 11/03/1999 10:56 am employee has been using a computer keyboard for 10 years with dmv started. Having hand wrist pain, numbness in hands. Signs of rms or cts in wrist.
## 4828 11/04/1999 04:43 pm Mr. Bass was unloading items off a truck, when his left ring finger got caught between the hot water heater and the truck tool box. Supervisor: robert d. Simpson
## 4829 11/04/1999 04:56 pm Mr. Siler was assisting in loading signs, traffic cones, etc. Onto a truck when he felt a pain in his lower back. Note: Mr. Siler went to the emergency room at randolph hospital the next morning and was diagnosed with kidney stones
## 4830 11/04/2003 01:56 pm (fblackmo) employee states that due to repetitive motion he is experiencing pain in his center finger. Supervisor: w. L. Hampton
## 4831 11/04/2003 02:34 pm (fblackmo) employee was attempting to unhang trap form brace on dump truck when, his finger was caught between the brace and trap. Supervisor: m. V. Price
## 4832 11/04/2003 03:17 pm (fblackmo) employee was rip raping a ditch when, he felt pain in his back. Supervisor: larry lovingood
## 4833 11/04/2003 03:34 pm (fblackmo) employee states she fell over boxes of paper towels that was stacked in the walkway causing the injury to her upper back. Supervisor: k. W. Ivey
## 4834 11/04/2003 08:17 am (fblackmo) employee was helping a mechanic with placing chains on the sprockets of the pan when, he slipped and fell into the bowl of the pan. Supervisor: john thompson
## 4835 11/04/2003 08:37 am (fblackmo) employee state while helping to clear right of way he, was stung multiple times on his head, face, and abdomen. Supervisor: g. W. Johnson
## 4836 11/05/2001 04:56 pm (fblackmo) employee was helping to load empty 55 gallon drums onto the back of a truck. There was several drums sitting on the rear of the truck. The truck operator was in the back of the truck arranging the drums and the drum n
## 4837 11/05/2003 10:17 am (fblackmo) employee was going to move truck when, he stepped on loose asphalt causing the injury to his right ankle. Supervisor: w. S. Richard
## 4838 11/06/2000 04:14 pm employee was walking in newfound creek when he slipped and fell on slick rocks. He has pain in lower back and his left leg. Supervisor: roger d. Woods
## 4839 11/06/2000 04:21 pm employee was loading grader blades into back of dump truck on 10/27/00. Mr. Murray tripped and fell on his back and right elbow. Supervisor: jack rollins
## 4840 11/06/2000 04:27 pm employee was removing fence wire; when razor wire became entangled puncturing his left lower leg. Supervisor: j. A. Hobgood
## 4841 11/06/2000 04:33 pm employee was entering door when venetian blind swung back striking Ms. Bullock in her right breast. Supervisor: sylvia spain
## 4842 11/06/2000 04:43 pm employee was climbing into tractor to conduct a pretrip inspection; when his right foot slipped off the step causing him to grab to prevent from falling. Mr. Coleman strain/sprain his left arm. Supervisor: tola bailey
## 4843 11/06/2000 05:01 pm employee was pulling on a load binder to release the binder on tractor trailer. Mr. White started experiencing extreme pain in his upper chest area. Supervisor: hardie tillett
## 4844 11/06/2000 05:07 pm employee was loading paint machine with beads. The pressure wasn't released from the bead tank causing a heavy spray of beads. Mr. Womack turned to avoid beads and twisted/sprained his right knee. Supervisor: ron turpin
## 4845 11/06/2000 05:13 pm employee was bushing bridge when he fell over a bush. The bush sprang back hitting him in his left eye. Supervisor: j. C. Gunter
## 4846 11/06/2000 05:17 pm employee was weighing an axle log truck on 11/01/2000. As he was taking the scales back to patrol car, Mr. Morrow twisted his left ankle on some loose gravel. The weight of the scales caused him to lose his balance and fall landi
## 4847 11/06/2000 05:27 pm employee stopped to assist a stranded motorist; when tractor trailer blew debris into his left eye. Supervisor: melvin dorsey
## 4848 11/06/2000 08:40 am employee was coming down steps on a loader; when his foot slipped striking his right knee on the step. Supervisor: s. Ray white
## 4849 11/06/2001 01:59 pm (fblackmo) employee was cleaning up brushes behind the office building when yellow jackets came out of the ground. One stung the employee on his eye lid. Supervisor: archie smith and r. D. Bass
## 4850 11/06/2001 02:11 pm (fblackmo) employee was flagging traffic on state road 1520 when a bug/insect flew into his left eye. Supervisor: b. F. Sloan
## 4851 11/06/2001 02:24 pm (fblackmo) employee was operating an auger when the auger stalled and the handle continued to turn causing the handle to pull employees shoulder and arm suddenly. Supervisor: e. R. Gurganus 04/07/2004 09:56 am (gwhite)
## 4852 11/06/2001 02:35 pm (fblackmo) employee was sitting in vehicle #1 parked on road in line to load from athey loader. Employee in vehicle #2 pulled in front of vehicle #1. Vehicle #2 proceeded to back hitting vehicle #1. Supervisor: r. C. Murray
## 4853 11/06/2001 02:48 pm (fblackmo) employee was walking across the shop when he tripped over a block of wood. Falling and bursting open his chin area and breaking his tooth. Supervisor: m. B. Mizelle
## 4854 11/06/2001 03:03 pm (fblackmo) employee was clearing roadway on state road 1520 using a chainsaw. Employee came into contact with dead vines on a tree in the morning. Employee noticed small bumps on his arms that were itching that afternoon. The em
## 4855 11/06/2001 03:18 pm (fblackmo) employee was performing density tests and b required to lift 50 lb weights. Employee pulled right shoulder lifting weight. Supervisor: e. J. Bunn
## 4856 11/06/2001 03:29 pm (fblackmo) employee was placing fertilizer into hydroseeder when lid closed on hand. Supervisor: keith blazer
## 4857 11/06/2001 04:39 pm (fblackmo) employee was reaching in back of pickup truck to remove floor jack. When lifting jack over the side of the pick up, twisted lower back. Getting jack to assist with a tire change. Supervisor: a. R. Wells
## 4858 11/06/2001 12:07 pm (fblackmo) employee was on back of paint machine during normal painting operation. Traveling to a new work site about a mile away. Employee had seatbelt on loosely to enable him to operate paint machine. Traveling 30 to 40 mph,
## 4859 11/06/2001 12:26 pm (fblackmo) employee was marking 4 x 8 x 20' timbers to be bored. Employee had marked and was turning the timber over to see the marks and to bore when, he felt a pop in his back. Employee had on a back brace. Supervisor: steve a
## 4860 11/06/2001 12:38 pm (fblackmo) employee felt a pain in his lower abdomen while moving a wood lock. Pain has persisted for two weeks. Supervisor: robert r. White
## 4861 11/06/2001 12:50 pm (fblackmo) employee was in the bucket of a backhoe cutting a fallen limb with a chainsaw. The limb was entangled in some utility cables. The limb twisted when, a smaller limb struck employee in the top of the head, causing lacer
## 4862 11/06/2002 02:06 pm (fblackmo) employee was shoveling stone from truck when, he felt pain in his lower back. Supervisor: lawrence marks
## 4863 11/06/2003 02:14 pm (fblackmo) employee states he experienced pain in his lower back while bending over to examine the serial number on the engine of a motorcycle. Supervisor: j. D. Coltrane
## 4864 11/06/2003 02:25 pm (fblackmo) employee states he experienced pain in his back while lifting brake drum. Supervisor: james stepp
## 4865 11/07/2002 07:26 am (fblackmo) employee was participating in mandatory baton training at gtcc. Employee was involved in a training scenario when, he tripped backwards landing on his back. Supervisor: watkins
## 4866 11/07/2002 07:45 am (fblackmo) employee was getting off truck when, he stumbled catching his finger in the truck. Supervisor: l. A. Marks
## 4867 11/07/2002 08:14 am (fblackmo) employee was bending over planting flowers when, he went to stand up felt a pulling sensation in his back. Supervisor: derek smith
## 4868 11/07/2002 08:32 am (fblackmo) employee was using a small pavement breaker to drive large nails into bridge flooring when, the breaker broke striking employee on his left leg. Supervisor: j. C. Gunter
## 4869 11/07/2002 08:50 am (fblackmo) employee was using cutting torch to cut bolt when slag blew back behind safety glasses and went in left eye. Supervisor; c. C. Coggins
## 4870 11/07/2002 09:03 am (fblackmo) employee was walking to the raleigh window at dmv when, she slipped on wet floor from leaking refrigerator. Supervisor: brenda crump
## 4871 11/07/2002 09:16 am (fblackmo) employee was throwing a log onto the back of a dump truck when, he felt pain in his right shoulder. Supervisor: w. R. Friddle
## 4872 11/07/2002 09:46 am (fblackmo) employee stated he experienced heat exhaustion from working in several different temperatures. Supervisor: mojdeh masihpour
## 4873 11/07/2002 10:27 am (fblackmo) employee was helping put together a structural steel pipe when, a bucket full of bolts and nuts fell hitting employee in his back. Supervisor: gerais messer
## 4874 11/07/2002 10:39 am (fblackmo) employee was unloading materials at hot springs fuel site when, he felt pain in his right shoulder. Supervisor: gary m. Wilson
## 4875 11/07/2002 10:50 am (fblackmo) employee picked up a 5 gallon can filled with cleaner fluid when, he felt pain in his left shoulder. Supervisor; jerry keene
## 4876 11/07/2002 11:00 am (fblackmo) employee stated he got his dot truck hung up in the median of I-85 while conducting a inspection of the guardrails. Trying to rock the truck out of median employee felt pain in his right upper arm. Supervisor: j. D. Lusk
## 4877 11/07/2002 11:21 am (fblackmo) employee was driving to wayne county register of deeds office. Employee stopped on us 117 in fremont for a car turning left across traffic. A produce truck was coming up behind employee and fell to stop, hitting employ
## 4878 11/08/1999 09:26 am Mr. Cook injured his lower back on 10/25/99 while attempting to pickup small branches from roadway. Supervisor: j. M. Brown
## 4879 11/08/1999 09:41 am Mr. Roberts cut his lower lip while chaining tie down spreader. The tie down slipped hitting him in the mouth.
## 4880 11/08/1999 09:46 am Mr. Forgay was struck by a tree limb while cutting trees on right of way on sr 1261 in guilford county. He was hit on his left hand and had a splint put on his hand 10/27/99. Supervisor: a. L. Smith
## 4881 11/08/1999 09:56 am Mr. Angel came in contact with poison ivy/oak plants while helping shrub and bushout ditches with bush axe on 10/15/99. A rash appeared on his arms and chest area. Supervisor: d. W. Woodard
## 4882 11/08/1999 10:03 am Ms. Godwin has carpal tunnel syndrome in left hand and wrist. Cts is caused by repetitive motion of the wrist while using keyboards. Ms. Godwin has pain, numbness and tingling in her left hand and wrist. Supervisor: tim litt
## 4883 11/08/2001 02:11 pm (fblackmo) employee went into welcome center and put her hand on the counter. Employee noticed she had laid her right hand, which she had wounded just before going to the welcome center, into a puddle of fresh blood on the counter
## 4884 11/08/2001 02:27 pm (fblackmo) employee was hammering on a tie rod when the hammer slipped and hit his hand. Supervisor: a. D. Cloer
## 4885 11/08/2001 02:43 pm (fblackmo) employee was breaking down rods with a pipe wrench when the driller attempted to lift the rods by use of the wrench. As the rods were raised, his finger became caught between the wrench and the bottom of the hammer resu
## 4886 11/08/2001 03:53 pm (fblackmo) employee was raking out material in a driveway. Shortly after he finished, he felt a sharp pain in his lower back. Employee continued to work the rest of the day and the pain worsened over night. Supervisor: k. L. Ande
## 4887 11/08/2001 09:37 am (fblackmo) employee tripped over a loaded pallet while trying to brake his fall, his right upper arm popped. Supervisor: w. E. Evans
## 4888 11/08/2001 10:01 am (fblackmo) crew leader was cutting a cedar tree along fence line, tree started to falling in the wrong direction. Employee and another worker tried to re-direct the falling tree. The tree shifted causing the limbs to hit employee
## 4889 11/08/2001 10:20 am (fblackmo) employee injured her left ankle by stepping in a ditch at the edge of a driveway. There was no driveway pipe at the location as stated by the employee. The ditch was shallow but employee fell to the ground. She also s
## 4890 11/08/2001 10:55 am (fblackmo) employee was removing wheels from trailer. A wheel was hung up and would not come off. Employee went under the trailer to see if the brakes was the cause. While under the vehicle something fell into the employees left
## 4891 11/08/2001 11:07 am (fblackmo) employee tripped on carpet edge at the point were the carpet and tile meet in the hallway. Supervisor: charles m. Timberlake
## 4892 11/08/2001 12:46 pm (fblackmo) employee was standing up resting behind a guardrail, he passed out falling backwards hitting his head over a rock. Employee cut his head. Supervisor: calvin peed
## 4893 11/09/1999 02:37 pm employee was stepping over alum. Pipe; slipped off pipe striking left hand on galv. Bolt, lacerations to palm of left hand.
## 4894 11/09/1999 03:00 pm employee was watching fuel-man refuel his mowing tractor when a yellow jacket stung said employee under right eye.
## 4895 11/09/1999 04:19 pm Mr. Sharpe injured his left hand thumb while making repairs to broken wires. He pushed the insulation off the wire causing the injury. Supervisor: jerry w. Porter.
## 4896 11/09/1999 09:47 am Mr. Anderson was loading paint barrels onto a hand truck, when the barrel slipped off hitting the top of his left foot. Supervisor: clyde carter
## 4897 11/09/2000 02:06 pm employee was attempting to cross a steam at starmount park project. Mr. Case lost his footing on loose rocks and twisted/sprain his right ankle. Supervisor: c. D. Kimes
## 4898 11/09/2000 02:17 pm employee was walking down front slope of ditch when he lost his footing and fell on rip rap stones. Mr. Clay strained his mid and lower back. Supervisor: r. R. Fuller
## 4899 11/09/2000 02:37 pm employee was providing a ride and assisting an injured employee to doctors appointment. She was lifting wheel chair to put into the truck when she felt pain/pull in her mid and lower back areas. Supervisor: tania sanders
## 4900 11/09/2000 02:50 pm employee was changing tractor tire when the bead breaker slide came out of the tube. His right index finger was caught between the tube and the slide hammer handle. Supervisor: l. M. Hair
## 4901 11/09/2000 03:19 pm Mr. Dollar hit his right elbow on electronic console when snow plow frame fell off dump truck. Supervisor: j. N. Mixon
## 4902 11/09/2000 03:32 pm employee was grinding on tailgate of truck; when he stepped off stool and tripped over air hose. Mr. Bedsaul twisted/sprain his right ankle. Supervisor: j. D. Shelton
## 4903 11/09/2000 05:04 pm a private truck came through work zone and its back tire was on fire. Mr. Watson started spraying tire with the extingisher, when the tire suddenly blew out. Extingisher chemicals and rubber blew into both eyes. Supervisor: a.
## 4904 11/1/2005 08:34 am (fblackmo) employee was using chain saw when, he cut his left knee. Supervisor: david silver
## 4905 11/1/2005 08:47 am (fblackmo) employee was attempting to clean a lit touch when, he burned his left ring finger. Supervisor: kevin lamar cooke
## 4906 11/1/2005 09:12 am (fblackmo) employee was performing a survey at a safety inspection station. Employee tripped on a low step, falling to the floor hitting her head, left elbow, and both knees. Supervisor: ben a. Riggs
## 4907 11/1/2005 10:09 am (fblackmo) employee was walking back from mail box when, she stumped her toe in the parking lot and fell on hands and knees. Employee fractured her left elbow, and had scratches/abrasions to both knees, hands, and left shoulder. Sup
## 4908 11/1/2005 10:33 am (fblackmo) employee was conducting an inspection on csx transportation of crossing signals at state road 1509 when, a motorcycle struck the crossing gate. The gate broke away from the mounting bracket striking employee on right side
## 4909 11/1/2006 01:12 pm (fblackmo) employee was getting out of dump truck, holding onto door and ring got caught on a bolt on the door, causing laceration to left ring finger. Supervisor: ronnie king
## 4910 11/1/2006 08:59 am (fblackmo) employee was loading and blowing straw when, he was bitten by straw mite. Supervisor: sam wilson
## 4911 11/1/2006 09:27 am (fblackmo) employee reported that while assisting a fellow employee fill a piece equipment (kettle, leeboy 500) he lifted his left leg onto the equipment; followed by his right leg when he heard his right knee pop. Supervisor: robert
## 4912 11/1/2010 10:07 am (barnes) employee was hooking an equipment trailer to a tandem truck. When employee attempted to step over the tongue of the equipment trailer, his right foot slipped and his right knee hit the trailer. Employee injured his right kn
## 4913 11/10/1999 01:04 pm after removing material from inside of ring. I was twisting and pulling up on the ring to remove it from gravel and twisted my right wrist. Caused a sprain to the wrist.
## 4914 11/10/1999 01:24 pm employee was removing sign from ditch, sign was still covered with dew, she slipped and the sign came up and the post hither on the left knee as she fell.
## 4915 11/10/1999 01:40 pm employee was driving north on beatties ford road. A car in front of the car that was in front of the employee stopped to make a right turn into a driveway. The car in front of the employee stopped and the employee stopped also. T
## 4916 11/10/1999 01:54 pm employee standing in stack of wood pallets, pallets shifted employee fell on right elbow, jamming shoulder.
## 4917 11/10/1999 02:14 pm employee was stopped for a vehicle turning left, when the 1994 ford pickup struck him in the rear of his vehicle causing him to strike the vehicle in front of him. Neck and back are sore vehicle #1 was stopped behind vehicle #3.
## 4918 11/10/1999 02:44 pm Mr. Mcpherson injured his left arm/shoulder while sitting on the passengers side in an attenuator with Mr. Josephus baum wc # 16674 on 9/29/99. Supervisor: w. L. Saunders, jr.
## 4919 11/10/1999 03:36 pm Ms. Wheeler strained her right ankle when she slipped out of truck. She missed the first step pulling her ligaments in her foot. Supervisor: j. J. Garris
## 4920 11/10/1999 10:39 am Mr. Wooten pulled a sign out of the box part of the way, he place the pliers on side of box to give other employee time to get red flag and was hit on left side of face.
## 4921 11/10/1999 10:54 am employee was on lunch break, sitting in the truck and stretched hand out of the truck window and the wind caused the rear door to close on his right finger.
## 4922 11/10/1999 12:35 pm employee was repairing a broken sickle knife in the bar. He was placing rivets in the bar, when he struck thumb with the hammer causing fractures.
## 4923 11/10/1999 12:39 pm Mr. Dixon suffered a hernia in his lower extremities on 10/28/99. He was moving timbers on dump truck when the incident occurred. Supervisor: a. E. Moore 02/01/2000 01:28 pm
## 4924 11/10/1999 12:46 pm employee was cutting dead tree off road right of way that had poison oak vines all over it creating dust when being cut. Inhaled dust particles in lungs.
## 4925 11/10/1999 12:48 pm Mr. Baum injured his left shoulder/arm on 9/29/99 when involved in auto collision. He was sitting in the driver's seat operating an attenuator with arrow board running at the time. The dump truck could not get over into passing l
## 4926 11/10/2005 04:04 pm (fblackmo) employee was flagging traffic and fell to the ground complaining of pain in left side. Emergency medical service was called, employee was taken to hospital. Supervisor: ira harris
## 4927 11/10/2008 03:08 pm (fblackmo) employee was talking with other employees when he felt abdominal hernia suddenly protrude. He attempted to manually replace the strangulated hernia, but phone wife to take him to the emergency room where surgical repair
## 4928 11/10/2008 03:19 pm (fblackmo) employee was conducting a training dive with a new employee, after dive he had fluid trapped in ear which later turned into an infection. Supervisor: brad cleaver
## 4929 11/10/2008 03:30 pm (fblackmo) employee was lifting a battery for the m/v ocracoke when, he felt a sharp pain in his lower back area. Employee was standing approximately 10 inches below normal standing height. Supervisor: richard dewhurst
## 4930 11/10/2008 03:42 pm (fblackmo) employee was flagging traffic when, truck blew debris into his eyes. Supervisor: jim wiggins
## 4931 11/10/2008 04:06 pm (fblackmo) employee was trying to adjust the chain on the tailgate, and the tailgate was lowered. His finger was caught between the tailgate and the end of the chain. Supervisor: ernest pitt
## 4932 11/12/2003 02:18 pm (fblackmo) employee was lifting ice cooler when, he felt pain in his back. Supervisor: d. C. Sherrod
## 4933 11/12/2003 02:47 pm (fblackmo) employee was taking apart a sign when, he was struck in the head. Supervisor: johnny coleman
## 4934 11/12/2003 03:01 pm (fblackmo) employee was assisting with yard clean up operations, loading a pile of brush onto a dump truck. Employee picked up a limb that had fallen from a tree onto a snow plow. He drag the limb to the brush pile and while doing
## 4935 11/12/2003 03:42 pm (fblackmo) employee fell over guardrail causing the injury to his fingers. Supervisor: johnny coleman
## 4936 11/12/2003 11:37 am (fblackmo) employee was installing a snow plow on a tandem truck when, the plow fell over causing a laceration to his center finger. Supervisor: wayne currin
## 4937 11/12/2003 11:49 am (fblackmo) employee was driving a dump truck when, he ran off the road causing the injury to his left arm. Supervisor: mark turlington
## 4938 11/12/2003 11:59 am (fblackmo) employee states while climbing down salt spreader he, felt pain in his right knee area. Supervisor: d. M. Pressley
## 4939 11/12/2003 12:31 pm (fblackmo) employee states she is experiencing pain in her back and right side area due from ranking and lowering a mechanical tamp down. Supervisor: c. F. Vick
## 4940 11/12/2003 12:51 pm (fblackmo) employee states, while cutting bushes from around a road sign using a weedeater with a bush blade attachment the, weedeater kicked back causing handle to come out and cut his right wrist. Supervisor: todd whitaker
## 4941 11/12/2008 08:44 am (fblackmo) employee was preparing for putting in a crossline when a gas line was hit by the backhoe. The gas escaped knocking employee down. It knocked the breath out of him and caused his eyes to be irritated. The gas line was not
## 4942 11/12/2008 08:55 am (blgay) employee with e&h mowing contractors, inc. Was mowing grass on a tractor on I-40 in haywood county when he was hit by a u-haul truck. Not a ncdot employee - ic requiring to pay.
## 4943 11/12/2009 01:34 pm (blgay) employee was pulling guard rail cable, when the turn buckle came loose, causing him to fall backwards into the anchor unit. Employee has pain in his right hip and pelvic area. Supervisor: mark crook
## 4944 11/12/2009 01:51 pm (blgay) employee was returning survey equipment to carryall. When he laid level on top of other equipment, it rolled off and mashed his left thumb between the metal box and level, causing it to pinch or hyper extend his left thumb.
## 4945 11/12/2009 02:04 pm (blgay) employee was going to repair a broken water line, where the tackhoe had been digging, causing the land to be uneven. As employee was going to the water line, he took a step and rolled his right knee. Supervisor: mark crook
## 4946 11/12/2009 02:05 pm (fblackmo) employee states something is in the air that is affecting her physically. Neurological (breathing) facial twitches. Supervisor: jimmy hawley
## 4947 11/12/2009 12:00 pm (fblackmo) employee was mowing shoulder of the road when, private vehicle hit the mower on the left side near tire. Employee felt pain in his back. Supervisor: carlis smith
## 4948 11/12/2009 12:20 pm (fblackmo) employee was adjusting driveway pip during installation when, he felt pain in his lower back. Supervisor: w. T. Mckenzie
## 4949 11/12/2009 12:50 pm (blgay) employee was cutting a tree down. He began limbing the tree. Employee stopped to allow other co-workers to catch up on chipping and clean up and set his saw down. When others caught up, employee bent down to pick up saw and
## 4950 11/13/2000 05:15 pm during a road test the customer lost control of the vehicle slamming on the brakes. Mr. Conley has pain in his lower back and neck. Supervisor: charlene johnson
## 4951 11/13/2000 05:28 pm employee was running during pt training phase and was tripped by another classmate. She fell striking her left knee on the pavement. Supervisor: ssg. Tim hickman
## 4952 11/13/2001 10:54 am (fblackmo) employee was walking across rebar carrying a bucket of concrete for testing and slipped on rebar and pulled right shoulder and groin. Supervisor: r. Mark freeman
## 4953 11/13/2001 11:08 am (fblackmo) employee was loading signs into truck when the wind caught hold to sign causing employee to hurt his back. Supervisor: b. J. Vance
## 4954 11/13/2001 11:21 am (fblackmo) employee lifted carrying case for nuclear gauge off the back of pickup bed. Employee turned to enter garage area and felt pull in lower abdomen on right side. Supervisor: frank j. Gioscio
## 4955 11/13/2001 11:44 am (fblackmo) employee was loading nail spikes into the bed of his truck. He was standing on the dock, bending down into the truck when he felt a pull on the left side of his back. Supervisor: terry j. Davis
## 4956 11/13/2002 01:23 pm (slee) employee was driving a crew cab pickup on sr 2306 in chatham co. And was following another traffic services pickup in route to a job site. A deer ran onto the roadway in a curve from the woods on the left side of the road.
## 4957 11/13/2002 07:36 am (fblackmo) employee was standing on the left front tire when the operator moved the boom causing employee to fall backwards. Supervisor: ronald peace
## 4958 11/13/2002 08:28 am (fblackmo) employee stated that while stepping out of truck his right foot slipped causing him to fall. Supervisor: w. H. Monroe
## 4959 11/13/2002 08:43 am (fblackmo) employee stated while walking towards the elevator he stumped his toe. Supervisor: tony spence
## 4960 11/13/2002 09:04 am (fblackmo) employee was straightening a tarp arm using a wood block as a wedge and a chain hoist as leverage when, he released the pressure form the wedge and leverage the wood fell and struck him on his left shoulder. Supervisor:
## 4961 11/13/2002 09:24 am (fblackmo) employee was taking off light fixture cover when, it fell striking employee on his right hand. Supervisor: o. J. Whitney
## 4962 11/13/2002 09:37 am (fblackmo) employee was tying done signs to the back of truck with a rope. The rope broke causing him to fall on the asphalt. Supervisor: jimmie sessoms
## 4963 11/13/2002 09:52 am (fblackmo) employee was bending over looking under his truck for an oil leak. Employee went to stand up, felt pain in his right leg. Supervisor: joe r. Myers
## 4964 11/13/2003 03:05 pm (fblackmo) employee states while filling truck with gas he, got in truck right foot first and felt pain in his left knee. Supervisor: r. D. Isley
## 4965 11/13/2003 03:41 pm (fblackmo) employee states he tripped over a slurry line while carrying a table causing pain to his back. Supervisor; mark e blalock
## 4966 11/13/2003 04:04 pm (fblackmo) employee is experiencing pain in her left hand and wrist. Supervisor: lorrie sineath
## 4967 11/13/2006 02:25 pm (fblackmo) employee fell in ditch while searching for end of cross link under road. Employee felt pain in lower back. Supervisor: c. I. Lucas
## 4968 11/13/2006 12:26 pm (fblackmo) employee was brush cutting in tall grass and bumped into an unseen protruding object. Supervisor: robbie beach
## 4969 11/13/2006 12:39 pm (fblackmo) employees hand was cut while cutting plastic securing tie from boat hook. Supervisor: h. C. Scarborough
## 4970 11/13/2006 12:49 pm (fblackmo) employee was putting salt spreader on swb truck. He was getting up on truck to unhook spreader when his foot slipped off the side causing pain to his right shoulder. Supervisor: henry worley
## 4971 11/13/2007 02:41 pm (mdsloan) employee was cutting trees on the right of way and came into contact with poison ivy. Employee did have on long sleeves, gloves, mask and safety glasses. Employee was effected on both arms, neck, torso, and both legs.
## 4972 11/13/2007 03:06 pm (mdsloan) employee caught a grader tire that was falling and twisted his lower back. Supervisor: jc cooper
## 4973 11/13/2007 03:51 pm (mdsloan) employee was running the buttons on the stone spreader and the driver was hooking the spreader to the truck when the driver noticed that the spreader started rolling forward and he saw that the spreader was not hooked up
## 4974 11/13/2008 01:24 pm (blgay) employee was riding in state vehicle east on hwy 78 when it was rear ended. Supervisor: johnny ransdell
## 4975 11/13/2008 01:41 pm (blgay) employee was driving east on hwy 78 when he was rear ended. Supervisor: johnny ransdell
## 4976 11/13/2008 02:50 pm (fblackmo) employee stepped on a board that had a nail sticking up while moving out of the way of a spreader. Supervisor: jerry keene
## 4977 11/13/2008 09:54 am (blgay) employee was climbing up the fill face of end bent #2 on bridge construction project. Large rip rap was placed on fill face and the contractor had laid h beam on top of cap of end bent #2. Employee was bending over to go un
## 4978 11/13/2008 10:24 am (blgay) employee was trying to adjust the chains on the tailgate of his swb dump truck. He pushed on the tailgate, but could not get enough slack in the chains to make the adjustments due to milling debris. He pulled the tailgate b
## 4979 11/13/2008 10:44 am (blgay) employee had to pick up a heavier than normal cart with lots of notebooks in it, due to the fact the elevator did not work. Employee strained lower back in doing so. Supervisor: lane mallonee
## 4980 11/13/2008 11:07 am (fblackmo) employee was using drill to mix concrete when he went to reposition hand toward bottom of drill to mixing motion his glove got caught on drill chuck and pulled his arm and hand. The machine ripped the glove off his hand
## 4981 11/13/2009 03:31 pm (fblackmo) employee was getting something out of storage locker when, he cut his right arm on sharp edge. Supervisor: j. D. Baum
## 4982 11/13/2009 09:10 am (fblackmo) employee was working in tall grassy area when, he was bitten by a tick on his left calf. Supervisor: rod wyatt 03/14/2011 02:37 pm (jwilson) 03/14/2011 02:39 pm (jwilson)
## 4983 11/13/2009 09:23 am (fblackmo) employee was racking a storm water device retaining wall when his foot slid on loose dirt. Employee felt pain in his left knee. Supervisor: john b. Adams
## 4984 11/14/2002 09:17 am (fblackmo) employee stated he injured his right knee when, he slipped and fell on his hands and knees while attempting to step down from a one foot elevated shoulder slope to the road. Supervisor: wayne currin
## 4985 11/14/2002 09:33 am (fblackmo) employee states that while lifting a trailer tongue to hook up on the back of truck, he felt pain in his back. Supervisor: ken masson
## 4986 11/14/2002 10:46 am (fblackmo) employee was standing on bumper of sign truck replacing a missing bolt on previously installed sign. Employee went to step down hitting his right elbow on the sign post. Supervisor; g. W. Williams
## 4987 11/14/2002 11:14 am (fblackmo) employee states while cutting down a 8" hickory tree a limb from the tree struck him on his left arm. Supervisor; l. T. Williford 09/22/2003 04:25 pm (gwhite)
## 4988 11/14/2003 07:42 am (fblackmo) employee was stretching on brick heat shield behind wood stove when, top four rows of bricks collapsed causing the injury to his right ankle. Supervisor: d. M. Pressley
## 4989 11/14/2003 08:23 am (fblackmo) employee felt pain in his neck and shoulder muscles while operating grader clearing debris form roadway the day after hurricane isabel. Supervisor: cola m. Conenr
## 4990 11/14/2003 08:50 am (fblackmo) employee was assisting with roadway debris removal after hurricane isabel. Employee states he twisted his knee while trying to step out of tree branches while cutting trees. Employee went to doctor on 10/1/2003. Super
## 4991 11/14/2003 09:27 am (fblackmo) employee was entering vehicle from picking up trash when, he finger was slammed in the door. Supervisor: tom huskins
## 4992 11/14/2003 09:45 am (fblackmo) employee was bitten by insect while flagging traffic. Supervisor; r. L. Taylor
## 4993 11/14/2003 10:28 am (fblackmo) employee was flagging and walking backwards and tripped over small limb causing injury to buttocks area. Supervisor: c. Gerald woodley
## 4994 11/14/2007 02:15 pm (fblackmo) employee was in the process of putting a utility body on f-350 truck and while working up under the bed of the truck with safety glasses on a small amount of metal got into his left eye. Supervisor: james bell 1/14/2
## 4995 11/14/2007 02:37 pm (fblackmo) employee was cutting a piece of boat line when, knife slipped cutting his right index finger. Supervisor: susan h. Kinner
## 4996 11/14/2007 03:03 pm (fblackmo) employee was cutting iron when, plate fell on his lower left arm causing a burn. Supervisor: kevin cooke
## 4997 11/14/2007 03:14 pm (fblackmo) employee sat down in pick up truck and noticed a spider on the window. Employee knocked spider out the window, when he reached to get some water he noticed a bump on his right arm. Supervisor: dennis stewart
## 4998 11/14/2007 03:44 pm (fblackmo) employee was replacing clogged tip on crack sealing machine when, hot sealant escaped and got into employees glove, burning his right hand. Supervisor: terry j. Shaw
## 4999 11/14/2007 03:52 pm (fblackmo) employee stated while bending over to help lower a jack into another jack ram position, he hit his back on the corner of the fire extinguisher causing scratch. Supervisor: albert strickland
## 5000 11/14/2007 12:05 pm (fblackmo) employee reported to her supervisor that her thumb starting going numb, felt tingling in hand, and arm (left). Cause was unknown. Supervisor: michele bailey
## 5001 11/15/2001 08:52 am (fblackmo) employee re injured his knee during p. T. Session training. Supervisor: k. King
## 5002 11/15/2001 09:10 am (fblackmo) on 9-21-2001 employee was doing physical fitness training and felt pain in both of her knees. Employee states that the pain started on 9-20-2001 while the 39th basic academy was doing the mile and a half p. T. Assessment.
## 5003 11/15/2001 09:26 am (fblackmo) employee stepped out of backhoe onto the shoulder of roadway while stepping his left foot turned over. Supervisor: steve a. Hardin
## 5004 11/15/2001 09:38 am (fblackmo) the crew was surveying in a new centerline in a brier thicket. Employee was using a machete to help clear the line of sight when he caused the injury to his left shoulder. Supervisor: s. W. Tate
## 5005 11/15/2001 09:54 am (fblackmo) employee was dumping a load of tree limbs. A limb was wedged between the top of tailgate and under the loader causing the tailgate not to open. Employee stepped out of truck and attempted to open open tailgate by hand
## 5006 11/15/2001 10:40 am (fblackmo) employee and four other employees was lifting the cab of a truck when something pulled in right shoulder causing a burning feeling. Supervisor: mark y. Walker
## 5007 11/15/2002 08:18 am (fblackmo) employee states holding the door while another co-worker was killing a spider, the noise from the broom hitting the door caused her to experience ringing in both ears. Supervisor; wendi johnson
## 5008 11/15/2002 08:36 am (fblackmo) employee states his left hand was caught in door when the wind blew it closed. Supervisor: marc pollard
## 5009 11/15/2002 08:48 am (fblackmo) employee states when he bent over to get paper from behind the desk, he hit his head on a nail. Supervisor: t. M. Bailey
## 5010 11/15/2004 02:55 pm (fblackmo) employee states while clearing vegetation with bush axe he, felt pain in his groin area. Supervisor: d. C. Diggs
## 5011 11/15/2004 03:07 pm (fblackmo) employee closed door on hand. Bruised center finger. Cut ring finger. Broke ring finger on left han. Supervisor: don ferrier
## 5012 11/15/2004 03:26 pm (fblackmo) employee states while shoveling rocks he, felt pain in his lower back. Supervisor: greg vinson
## 5013 11/15/2004 04:28 pm (fblackmo) employee was stepping onto main car deck, when heel caught edge of last step causing left ankle to twist. Supervisor: s. J. Goodwin
## 5014 11/15/2004 11:36 am (fblackmo) employee was replacing damaged guard-rails and cleaning out drop inlet boxes when, he felt pain in his back. Supervisor: wendell chastain
## 5015 11/15/2005 02:49 pm (fblackmo) employee was cutting off the top excess of one post when, the wind blew the sign which suspended from the truck and hit the ladder. Employee grab the ladder to catch himself and released the chain saw which fell on his a
## 5016 11/15/2005 11:43 am (fblackmo) employee was cutting right of way on secondary road when, he slipped and fell over fallen tree. Employee felt pain in his left knee/leg area. Supervisor: t. L. Hall
## 5017 11/15/2006 10:36 am (fblackmo) employee was rear ended on grader when a private vehicle failed to yield causing pain to his head and neck area. Supervisor: r. N. Harden
## 5018 11/15/2006 10:48 am (fblackmo) employee was shoveling asphalt off of pavement when, he felt something in his left eye. Supervisor: c. W. Garris
## 5019 11/15/2006 10:57 am (fblackmo) employee was walking across unfinished bypass project when, he stepped in a soft spot and felt pain in lower right leg. Supervisor: r. Vause
## 5020 11/15/2006 11:11 am (fblackmo) employee was checking exhaust system while performing a routine pm. A piece of metal fell from the exhaust system, went behind his safety glasses and got into his left eye. Supervisor: alvin w. Ball
## 5021 11/15/2006 11:21 am (fblackmo) employee hit his left knee on guardrail post while trying to climb over the guardrail. Supervisor: david hall
## 5022 11/15/2006 11:31 am (fblackmo) employee went to change rock guard, slipped and fell down embankment causing pain to lower back. Supervisor: greg mccracken
## 5023 11/15/2006 12:12 pm (fblackmo) employee was walking behind the barrier wall to survey pipe line when, a semi truck passed by throwing debris in the air causing a object to strike him in left eye. Supervisor: c. R. Styles
## 5024 11/15/2007 01:08 pm (mdsloan) employee was climbing on grader when his foot slipped off of blade and his leg struck blade employees leg slid down length of blade causing a cut and bruising on his left leg. Supervisor: r. L. Adcock
## 5025 11/15/2007 08:44 am (mdsloan) employee was drilling holes in a 3x3 plates with a drill press then the glove on the left hand got caught on the drill bit and pulled employees hand and arm around the drill press tearing a gash in the left index finger
## 5026 11/15/2007 09:02 am (mdsloan) employee was cleaning a tree from the right of way when the employee got into some poison oak/ivey on his back and left and right arm. Supervisor: travis l morgan
## 5027 11/15/2007 09:49 am (mdsloan) employee on 9-25-2007 was milling and patching on I-40 near mm39. She was sweeping millings up and as she did this she felt her shoulder pop she reported this to robert hollifield that afternoon and employee approximate
## 5028 11/15/2007 11:18 am (mdsloan) employee was installing pipe and went tot he truck to get a water pump and stepped his right foot in a small drainage ditch and injured his back. Supervisor: garry moore
## 5029 11/15/2007 11:58 am (mdsloan) employee was fueling up the motor grader when he started to get off his foot slipped and he lost footing and employee fell landing on the outside of his right foot and twisting his ankle. Supervisor: stacy miller
## 5030 11/16/1999 02:15 pm employee was walking around motel for exercise when he slip and fell braking his right ankle
## 5031 11/16/1999 07:27 am employee hit elbow on the tailgate and broke the skin, causing an infection.
## 5032 11/16/1999 08:35 am employee was getting out of beltloader had water jug in one hand and the other hand on step to step to ground. Ring finger of left hand got caught on top step.
## 5033 11/16/1999 08:48 am employee was stepping down off running board on dump truck stepped on rock or bolt laying on ground causing knee to twist.
## 5034 11/16/1999 08:59 am employee was struck in his right eye by a flying object, wearing safety glasses, when a private vehicle drove by.
## 5035 11/16/1999 09:08 am employee was cutting off sheet foot pile. He was leaning around corner and cutting it off with a torch, a hot piece of metal went into left ear. 02/04/2000 09:56 am
## 5036 11/16/1999 09:21 am employee was cutting a tree, a vehicle entered the work zone. He tried to stop the tree. The tree kicked back striking him in the left leg.
## 5037 11/16/1999 09:31 am getting into tandem using 3-point method, left foot slipped on step, pushing foot back, injuring left foot and toes. Sprained left foot
## 5038 11/16/2000 10:35 am employee was directing the backing of a dump truck; when left foot was run over by vehicle. His left elbow hit the hood and his left hip was hit by the passenger side mirror. The driver fled the scene. Mr. Tucker tried to step b
## 5039 11/16/2000 10:43 am employee was walking to her car when she stepped in a hole and fell to the ground. Ms. Floyd strained/sprained her right foot, left knee, and lower back areas. Supervisor: lucille clemons
## 5040 11/16/2000 10:52 am employee was securing a power line on boat cleat. She was not aware of her surroundings when she raised up from being bent over. Ms. Wilkins struck the top of her head and strained her neck as well. Supervisor: capt. E. N. Wat
## 5041 11/16/2000 11:01 am employee was picking up loads of asphalt; when dust debris flew into his left eye. Supervisor: s. G. Dillon
## 5042 11/16/2000 11:05 am employee bent over to move a small stool out of the way; when she bumped her head (right eye) against file drawer. Supervisor: charles m. Timberlake
## 5043 11/16/2000 11:11 am employee was putting bush axe in vise and sharping the axe; when the file slipped and cut his left hand. Supervisor: quindale bullard
## 5044 11/16/2000 11:17 am employee was entering the building opening the door with his right hand on 10/30/00. His right hand slipped off the handle and the door slammed shut on his left hand. Supervisor: kent d. Boyer
## 5045 11/16/2000 11:21 am employee was lying on mechanical creeper (push type leaf blower) when he stood up he felt a pain in his lower back. Supervisor: j. K. Rhyne
## 5046 11/16/2000 11:27 am employee was spraying herbicides when he came in contact with the chemical. He has a rash on both hands up to his elbows and on both knees. Supervisor: steve blake
## 5047 11/16/2000 11:32 am employee was assisting the dumping of dirt from a single axle dump truck on 11/2/00. While holding the tailgate chain to allow a lodged tire to be removed he cut his right middle finger. Supervisor: k. T. Hicks
## 5048 11/16/2000 11:38 am employee was reaching behind the passenger seat to grab a set of plans. He lifted the plans over the seat and felt a pain in his right arm. He mentioned his arm was feeling numb earlier in the month, but didn't tell how it happen
## 5049 11/16/2001 03:15 pm (fblackmo) employee had ended her work day and was headed for her vehicle when she tripped over a rock causing her to fall face down on the pavement in the state parking lot. Gwendolyn smith
## 5050 11/16/2001 03:30 pm (fblackmo) employee was racking concrete and pulled muscle in right shoulder and back. Supervisor: johnny ransdell
## 5051 11/16/2001 04:01 pm (fblackmo) employee was loading pipe on dump truck. Employee lost his footing when climbing off dump truck and hit his knee on side of dump bed. Supervisor: t. L. Hall
## 5052 11/16/2001 04:10 pm (fblackmo) employee lifted a piece of steel out of the steel rack and injured his left knee in doing so. Supervisor: d. E. Bowers jr
## 5053 11/16/2001 04:22 pm (fblackmo) employee was using a hedge trimmer cutting down lilies when he felt a burning feeling on his leg. Thats when employee realized that he had cut himself with the trimmer. Supervisor: steve blake
## 5054 11/16/2004 08:07 am (fblackmo) employee was exiting back stairwell when, she slipped and fell due to wet steps from rain. Employee experienced pain in left ankle and right knee area. Supervisor: don davis
## 5055 11/16/2004 09:05 am (fblackmo) employee was operating tractor when he experienced pain in his lower back. Employee states after working for the next two days a knot formed in center part of back. Supervisor: napoleon barr
## 5056 11/16/2004 09:18 am (fblackmo) employee was reaching to open bottom tailgate when, he cut his right ring finger. Supervisor: robert winslow
## 5057 11/16/2004 09:29 am (fblackmo) employee was walking behind a road maintenance machine that was spreading dirt on the shoulder of road. The operator of a crewcab pickup struck employee. Supervisor: shelton james
## 5058 11/16/2004 09:41 am (fblackmo) employee states while lifting blocks he, felt pain in his right side area. Supervisor: r. L. Cochran
## 5059 11/16/2004 09:50 am (fblackmo) employee states while eating lunch in truck he, was stung by a bee on left side of neck. Supervisor: j. F. Bishop
## 5060 11/16/2004 10:02 am (fblackmo) employee was exiting bathroom when, she slipped and fell due to water on floor. Supervisor: linda hill
## 5061 11/16/2005 02:24 pm (fblackmo) employee was showing injured employee a new route to rock quarry. The first employee put on his signal and the injured employee looked over the the left to see the quarry location. When injured employee looked back at th
## 5062 11/16/2005 10:49 am (fblackmo) employee was walking to vehicle when, she tripped and fell causing the injury to her right wrist. Supervisor: stephanie branch
## 5063 11/17/1999 10:17 am officer caldwell was traveling on nc 55 when a vehicle cross centerline of highway striking officer caldwell's car. Neck, back and left knee.
## 5064 11/17/1999 10:35 am employee was working with crew using amz patch machine on sr 1005. Employee was using push broom to push loose gravel back onto asphalt patch. Employee a. Stanley came up behind m. Jacobs and bumped the back of m. Jacobs left kne
## 5065 11/17/1999 11:06 am employee was shoveling gravel off intersection. He ruptures a disc.
## 5066 11/17/1999 11:19 am employee was helping put plastic tarps on stock piles of sand when piece of sand became lodged in left eye.
## 5067 11/17/2003 10:37 am (fblackmo) employee states while walking up steps to ferry office when, he tripped and fell due to poor lighting. Supervisor: cliff swindell
## 5068 11/17/2005 01:12 pm (blgay) employee was stepping out of dump truck and left knee popped out of joint. Supervisor: robert d. Loflin
## 5069 11/17/2005 01:31 pm (blgay) employee was surveying when he came in contact with poison ivy. Supervisor: bethany elmore
## 5070 11/17/2005 01:48 pm (blgay) employee was surveying when he got into poison ivy. Supervisor: bethany elmore
## 5071 11/17/2005 01:58 pm (blgay) employee was reaching for apiece of steel, when it slipped in hand and cut his right thumb. Supervisor: alfred wilson
## 5072 11/17/2005 08:20 am (fblackmo) employee was conducting a road test when, the driver drove off the road, ran over large rocks, went through shrubbery, and landscaping. Employee felt pain in her back. Supervisor: anthony lowe
## 5073 11/17/2005 08:33 am (fblackmo) employee was in the back of the asphalt truck pushing down asphalt that was stuck on the sides. Employee told another employee not to cut the auger on, other employee thought he said to cut it on. Employees left ankle/fo
## 5074 11/17/2005 08:46 am (fblackmo) employee was trying to remove jack hammer blade when, he felt pain in his back and right leg. Supervisor: gene e. Strickland
## 5075 11/17/2005 08:57 am (fblackmo) employee was installing metal pipe when, one of the bands caught his glove pulling him into the ditch. The pipe landed on employees left arm and hand. Supervisor: larry cavenaugh
## 5076 11/17/2008 02:14 pm (blgay) employee was trying to break up a fight between a cat and a dog, when the cat bit her on the right hand. Supervisor: lanny hathcock
## 5077 11/17/2008 10:49 am (blgay) employee was chipping and cutting trees. After they finished, they were standing there and employee felt something fly and hit his right eye. Supervisor: warren brooks
## 5078 11/17/2008 11:00 am (blgay) employee was placing tree debris in a chipper, when his left arm became twisted in the tree, causing a sharp pain. Supervisor: terry pugh 11/17/2008 11:03 am (blgay)
## 5079 11/17/2008 12:21 pm (blgay) employee was using a hand held auger to bore holes for tree planting, the left handle on the auger broke, causing the right handle to jerk free, spun around and struck employees left hand. The impact broke a bone in employe
## 5080 11/17/2009 08:44 am (blgay) employee and supervisor were lifting grates off drop inlet box. When employee lifted the grate, it caused a sharp burning pain in his lower back. Supervisor: adam biddix
## 5081 11/17/2010 02:43 pm (fblackmo) employee was at a complete stop when a private vehicle ran into the back of her vehicle. The impact caused her head to jerk suddenly striking the head rest. Employee experienced neck and back pain. Supervisor: r. E. Flaher
## 5082 11/17/2010 03:14 pm (fblackmo) employee was walking down slop when he fell and tried to catch himself. Employee injured left writs. Supervisor: wayne currie
## 5083 11/17/2010 03:45 pm (fblackmo) employee was lifting a bag of potatoes and sugar when she felt pain in her lower back area. Supervisor: h. C. Scarborough
## 5084 11/17/2010 04:59 pm (fblackmo) employee was pulling on the tie down rope when it broke causing him to fall to the ground. Employee felt pain in his lower back area. Supervisor: daniel t. Moss
## 5085 11/18/1999 01:19 pm the injury was caused by fumes from a primer being applied by painters on walls in offices across the hall from the office of the injured. Constricted breathing passages, congestion, headache, nausea.
## 5086 11/18/1999 10:08 am Mr. Clendenin was traveling southbound on us 1 in the city limits of sanford, when his vehicle left his lane hitting the median guardrail. After the impact the vehicle overturned and ended up on its top. Mr. Clendenin sustained c
## 5087 11/18/1999 10:33 am Ms. Edwards injured her lower back while assisting to load community service bags into a car on 11/10/99. Supervisor: a. L. Smith
## 5088 11/18/2003 02:16 pm (fblackmo) employee was bending over to at fire hydrant when, he felt pain in his lower back area. Supervisor: rick leard
## 5089 11/18/2003 03:06 pm (fblackmo) employee states while drilling holes in metal, drill kicked back hitting knuckles on employees right hand. Supervisor: d. E. Clapton
## 5090 11/18/2003 10:48 am (fblackmo) employee was helping carry a 6x6x20 wheel guard when, he slipped and fell over the block to lay the guard on. Supervisor: r. F. Minton
## 5091 11/18/2003 11:03 am (fblackmo) employee was flagging traffic when, he was hit by a private vehicle. Supervisor: d. S. Lee
## 5092 11/18/2003 11:13 am (fblackmo) employee was working with freight when, he finger was caught between the boxes. Supervisor: william stone & mike jefferys
## 5093 11/18/2003 11:22 am (fblackmo) employee was loading signs on pick up when, he finger was caught between the tailgate and sign. Supervisor: b. G. Heron
## 5094 11/18/2003 11:47 am (fblackmo) employee states while flagging in work zone a large truck came through blowing debris into the air and in left eye. Supervisor: wayne knight
## 5095 11/18/2003 12:04 pm (fblackmo) employee states while working with asphalt he, felt pain in his right shoulder. Supervisor: wayne knight
## 5096 11/18/2003 12:12 pm (fblackmo) employee was pulling water pump when, he stepped in a hole causing the injury to his right leg. Supervisor: daylon lynch
## 5097 11/18/2003 12:42 pm (fblackmo) employee was checking tailgate after clearing material when, he stepped in a hole causing the injury to his right ankle. Supervisor: a. L. Sharpe
## 5098 11/18/2003 12:51 pm (fblackmo) employee states while seeding he was stung by bees. Supervisor: jerry pate
## 5099 11/18/2004 02:30 pm (fblackmo) employee was traveling south on state road when, he ran off the road on right side. Employee went back across road and hit trees on left side of road. Employee has cuts and contusions to both arms and head concussion. Su
## 5100 11/18/2004 03:48 pm (fblackmo) employee was bitten by a dog while walking to state truck. Supervisor: stephen dillon
## 5101 11/18/2004 04:01 pm (fblackmo) employee was using a hydraulic post puller. Holding the puller during operation puller slipped causing the amputation (incomplete). Supervisor: todd whitaker
## 5102 11/18/2004 04:51 pm (fblackmo) employee was reaching behind bookshelf when, a wood splinter stuck in his left forearm. Supervisor: andy brown
## 5103 11/18/2004 05:02 pm (fblackmo) employee was closing the door when, his hand was struck causing the injury to his right hand. Supervisor: jimmie evans
## 5104 11/18/2008 04:03 pm (blgay) employee was inspecting the outside of a vehicle, when she stepped into a large drain hole. Employee twisted her left ankle. Supervisor: judy rogers
## 5105 11/18/2008 04:21 pm (fblackmo) employee fainted/passed out after turing onto roscoe trail. Employee struck a phone box, small pine tree, and three parked ncdot trucks while unconscious. Listed injuries: scratched left hand, neck, and shin. Heart condit
## 5106 11/18/2008 05:06 pm (fblackmo) employee was stung by ground bees while he was cutting vegetation. Supervisor: ernest pitt
## 5107 11/18/2008 05:26 pm (fblackmo) employee was walking up the steps to the loading dock and tripped on the fourth step, he stumbled forward and fell causing injury to lower back and left wrist. Supervisor: jeffery s. Farrow
## 5108 11/18/2008 12:51 pm (blgay) employee was on the maintenance yard and passed out. Employee hit his head and shoulder. Shoulder was dislocated in the fall and his head was treated for a cut. Supervisor: dean baynard
## 5109 11/18/2009 08:52 am (fblackmo) employee was on the way to the gates shop when he ran the stop light striking a private vehicle. Employee cut his right lower leg. Supervisor: albert vann
## 5110 11/18/2010 09:40 am (fblackmo) employee was stepping off truck when his ring finger got caught on a ladder that was back of the truck. Supervisor: melvin newton
## 5111 11/19/2002 02:25 pm (fblackmo) employee was inspecting a paving operation at station 840 in martin county. Employee walked in the median to find out what station to write on the asphalt ticket when, he was struck by a truck with the tailgate down. E
## 5112 11/19/2002 03:07 pm (fblackmo) employee was removing debris from roadway. Private vehicle did not stop for traffic and hit state vehicle and guard-rail. Employee jumped guard rial to avoid being struck by private vehicle. Supervisor; jeff corley
## 5113 11/19/2002 03:21 pm (fblackmo) employee was cutting vines off sing on state road in burke county when, she came into contact with poison ivy. Supervisor; roger arrowood
## 5114 11/19/2002 03:30 pm (fblackmo) employee was pushing dirt with backhoe when the front bucket dug into pavement, throwing him into the windshield hitting his head. Supervisor; r. D. Mcintyre
## 5115 11/19/2002 03:48 pm (fblackmo) employee went to road side to show were to dump rocks when a insect flew into his right ear. Supervisor; bubba r. Johnson
## 5116 11/19/2002 12:43 pm (fblackmo) employee states that she was at a class in oklahoma city, she began feeling bad. Employee passed out in restroom causing injury to face area. Supervisor: don nail
## 5117 11/19/2004 02:16 pm (fblackmo) employee states while loading steel blocks onto trailer, one of the blocks fell off striking him on his left foot. Supervisor: mark c. Smith
## 5118 11/19/2004 02:23 pm (fblackmo) employee stepped down off the forklift and felt a catch in lower back. Supervisor: j. P. Callicutt
## 5119 11/19/2004 02:31 pm (fblackmo) employee was helping to put in a inbody spreader when, the 4 x 6 support beam fell and hit him in the face. Supervisor: al smith
## 5120 11/19/2007 07:50 am (mdsloan) employee was loading a pump onto the bed of a pick-up truck when employee felt a burning sensation in employees lower abdomen. Later on employee discovered a lump had appeared. Supervisor: wendell chastain
## 5121 11/19/2008 04:14 pm (fblackmo) employee injured right shoulder while climbing into dump truck. Supervisor: w. D. Lane 11/19/2008 04:25 pm (fblackmo) cover bills only up to 11/18/2008. Only
## 5122 11/19/2008 11:03 am (fblackmo) employee was walking across street while coming in from lunch when, she stumbled (did not fall). Employee braced herself onto her left foot and shifted her weight when she felt pain in her ankle. Supervisor: mary avery
## 5123 11/19/2008 11:16 am (fblackmo) employee was unloading signs and cones out of the back of a crew cab truck. After the signs were unloaded he went to climb down from the bed and stepped on tire when, the wood railing broke causing him to land hard on b
## 5124 11/19/2009 02:51 pm (blgay) employee had picked up a deer carcass and was stepping onto lift gate. As employee raised his right foot to step onto gate, it got caught under the lift gate and he tripped. Employee felt something pop in his right ankle. H
## 5125 11/19/2009 03:49 pm (blgay) employee was hauling a load of dirt back to camp to dump it. While on west harrell road, employee ran off the right side of the roadway, over corrected, then rolled dump truck. Supervisor: kevin hazelwood
## 5126 11/19/2009 04:00 pm (blgay) employee was getting into a state vehicle and was stung by bee inside the vehicle on his right arm. Supervisor: melvin dorsey
## 5127 11/19/2010 10:32 am (barnes) employee was laying and lifting eighteen inch pipe. While working with the pipe, employee felt a burn in his chest and the next day he started having spasms. Employee injured chest/ abdomen. Supervisor: marc pollard
## 5128 11/19/2010 10:58 am (barnes) employee was walking the cutting line in a wooded area. He was holding a bush axe and began to slip. He realized that he was slipping and tried to throw the bush axe away from him. However, he was unable to do so. Therefor
## 5129 11/2/2004 02:26 pm (fblackmo) employee was working on state road 1200 guy ford road in watauga and with no prior warning fell to the ground twice. Supervisor: kevin whittington
## 5130 11/2/2004 02:36 pm (fblackmo) employee stepped from truck and reached back and shut the truck door. As employee shut the door he felt a sharp pain in his right shoulder. Supervisor: m. S. Johnson
## 5131 11/2/2004 08:13 am (fblackmo) employee was loading tires onto pickup using a liftgate. While closing liftgate the employees right ring finger was caught in the scissor action of the liftgate. Supervisor: dennis brann
## 5132 11/2/2004 08:40 am (fblackmo) employee states while using pry bars and air hammer he, experienced pain in his left wrist and hand. Supervisor: hosea blount
## 5133 11/2/2004 08:55 am (fblackmo) employee was working on a maintenance project due to hurricane ivan. He was placing rock at the outlet of a pipe when a rock from the top of outlet slid down hit his hand against another rock causing injury to right littl
## 5134 11/2/2004 09:18 am (fblackmo) employee was returning to bridge yard at the end of day. Employee was driving down state road when the side mirror of his vehicle and school bus collided causing shattered glass to cut his left cheek area. Supervisor: k.E
## 5135 11/2/2004 09:40 am (fblackmo) employee states while cutting trees and chipping brush he came into contact with poison oak. Supervisor: a. S. Bailey
## 5136 11/2/2004 09:53 am (fblackmo) employee was removing part of a joist using a hatchet and sledge hammer when, his right index finger was pinched between the hammer and hatchet. Supervisor: d. R. Alligood
## 5137 11/2/2006 11:50 am (fblackmo) employee was bending over to pick up stop sign on 7 ft.. U-channel post when, he felt pain in his lower back. Supervisor: barry t. Coble
## 5138 11/20/2001 02:18 pm (fblackmo) employee was in ditch getting it ready for new piping. The crew was removing big rocks by hand, employee felt pain in his lower back. Supervisor: tommy kilpatrick
## 5139 11/20/2001 02:31 pm (fblackmo) employee was helping the equipment shop to change a hydraulic line on his equipment. Employee laid wrench on drott while climbing down the ladder. Employee slipped and the wrench hit him on top of his head. Supervisor
## 5140 11/20/2001 02:48 pm (fblackmo) employee was painting timber bridge rail when the wind blew debris in eyes. Supervisor: s. R. Davis
## 5141 11/20/2001 03:00 pm (fblackmo) employee was unloading cannie tops with out gloves when a splinter went under fingernail. Supervisor: c. H. Sneed jr
## 5142 11/20/2001 03:12 pm (fblackmo) employee was pulling weeds off truck and came into contact with poison oak. Supervisor: j. E. Royal
## 5143 11/20/2001 10:09 am (fblackmo) employee was installing rear spring on tamdom dump truck. Employee stuck his finger(left middle) into the spring shackle hole to check the alignment of the pen. The spring fell and the employees finger got caught causi
## 5144 11/20/2001 10:22 am (fblackmo) employee was checking for loose stone with a pole on the back of his dump truck. The quarry had sprayed water on the ground to keep the dust down. Employee had mud on shoes and when he stepped on the tire of the truck,
## 5145 11/20/2001 10:38 am (fblackmo) employee was trying to get the bar loose to uncover spreader. The bar being spring loaded came loose sticking the employee on the elbow. Supervisor: a. O. Epley
## 5146 11/20/2002 07:38 am (fblackmo) employee states while picking up sign on us 29-70, he stepped on a bottle causing the injury to his knee. Supervisor: mark crook 05/14/2004 11:44 am (gwhite)
## 5147 11/20/2002 08:24 am (fblackmo) employee was picking up stones off of state road 1113. The repetition of movements caused his shoulder to become sore. Supervisor: shelton james
## 5148 11/20/2002 08:37 am (fblackmo) employee states she was walking out the front door to go to her car when, another employee (shane) had a toy rubber snake and threw it in her direction. Employee starting to running and fell on concert. Supervisor: mik
## 5149 11/20/2002 08:54 am (fblackmo) employee was picking up broken barricade on state road 1150 when, a rusted nail punctured his right hand. Supervisor: larry lovingood
## 5150 11/20/2003 10:45 am (fblackmo) employee was stepping out of tandem when, he stepped on a twig causing the injury to his right ankle. Supervisor: jesse mercer
## 5151 11/20/2003 10:57 am (fblackmo) employee was checking the grade for unstable material under the haul trucks. He was struck by a dozer that was leveling out material that was being dumped form the haul trucks. The dozer pushed over and pinned his legs
## 5152 11/20/2003 11:14 am (fblackmo) employee was cutting hole in 3x8 timber when, saw kicked back striking him on his left foot. Supervisor: r. F. Minton
## 5153 11/20/2003 11:44 am (fblackmo) employee states building demolition project wall fell in unexpected direction hitting a power pole. Employee was running out of the way of the fall pole when, he tripped and injured his elbow and left shoulder. Supervi
## 5154 11/20/2003 11:57 am (fblackmo) employee was installing fence when, he slipped and fell on his right hand and arm. Supervisor: donald king
## 5155 11/20/2003 12:11 pm (fblackmo) employee was participating in a workshop when the injury occurred to his right arm. Supervisor: jim kellenberger 7/7/2004 04:06 pm (gwhite)
## 5156 11/20/2003 12:29 pm (fblackmo) employee states while cutting trees off the road after hurricane isabel he, felt pain in his leg and knee. Supervisor: james van riddick
## 5157 11/20/2008 06:10 pm (fblackmo) employee was un-hooking a chain from the rubber tire backhoe when, she stood up from squatting position she heard and felt a snap. Employee felt pain in middle of her back. Supervisor: david carter
## 5158 11/20/2009 10:11 am (fblackmo) employee was bitten on top of left hand by fire ants while working underneath bridge pressure washing steel beams. Supervisor: t. E. Davenport
## 5159 11/20/2009 10:21 am (fblackmo) employee was helping to install a driveway when he was bitten by ants on his hands and stomach area. Supervisor: shelton james
## 5160 11/20/2009 10:32 am (fblackmo) employee was seeding in a ditch when, he was climbing out the ditch he felt pain in his lower left leg. Supervisor: robert winslow
## 5161 11/21/2000 04:05 pm employee struck (broke) his nose on a steel beam when he stood up from bending down. Supervisor: w. L. Saunders
## 5162 11/21/2000 04:21 pm employee was sweeping leaves in loader bucket to clear roadway. The broom hit the front loader bucket causing him to strain muscles in his back. Supervisor: r. S. Burton
## 5163 11/21/2000 04:30 pm employee was pushing tree while another employee was using the chain saw. The employee cut the tree and the saw came back hitting/cutting Mr. Dixon's right leg above the knee. Supervisor: a. E. Moore
## 5164 11/21/2000 09:19 am employee was parked in work zone (as far off the road as possible); when a contractor truck backed into and struck Mr. Fairley in the right rear quarter of truck. Mr. Fairley has strain to his upper back and neck areas. Supervis
## 5165 11/21/2000 09:31 am employee slipped and fell down the stairs holding onto the rails. Ms. Williams fractured her right hand (little finger metacarpal midshaft fracture). Supervisor: david fitts
## 5166 11/21/2000 09:40 am employee was in the steam pit cleaning the equipment; when asphalt degreaser mixed with water and got into her eyes. Supervisor: j. V. Boles
## 5167 11/21/2000 09:46 am employee was loosening bolts on hollow auger adapter, when his right hand was caught between the drill and socket wrench. Mr. Bailey broke three fingers on his right hand. Supervisor: t. P. Shelton
## 5168 11/21/2000 10:00 am employee was moving road signs for a ditching operation. Employee felt pains in his lower back after moving signs that day. Supervisor: r. L. Winslow
## 5169 11/21/2001 02:56 pm (fblackmo) employee was traveling east on firestone parkway(rp 1328) in wilson county. Employee clocked a silver vehicle operated by a white make headed west. Employee immediately activated by blue lights and heard three beeps w
## 5170 11/21/2006 02:04 pm (fblackmo) employee was hauling dirt on dot yard when she ran over a large rock causing her to bounce in the seat causing pain to her lower back. Supervisor: t. M. Smith
## 5171 11/21/2006 02:33 pm (fblackmo) employee was fueling up tractor and mower when, he tripped and fell over the fuel hose causing injury to right knee. Supervisor: richard f. Jernigan
## 5172 11/21/2006 02:44 pm (fblackmo) employee had hauled a tractor from greenville to wilson for an upcoming equipment sale. He unloaded the tractor and was driving across the parking lot when a hose burst and sprayed fluid into both eyes. Supervisor: jeff
## 5173 11/21/2006 02:54 pm (fblackmo) employee was pulling hose on salt spreader. H hose was tight, employee hit left arm scraping arm above elbow. Supervisor: h. D. Wiggins
## 5174 11/21/2006 03:32 pm (fblackmo) employee was in flatbed truck loading limbs when, he came into contact with poison ivy on both arms and face. Supervisor: hardie tillett
## 5175 11/21/2006 03:45 pm (fblackmo) employee was putting brush in the chipper when, he felt pain in his lower back. Supervisor: l. R. Vaughn
## 5176 11/21/2006 04:08 pm (fblackmo) employee went to change rock guard when, he slipped and fell down embankment causing injury to lower back. Supervisor: greg mccracken 11/29/2006 12:17 pm (fblackmo) do not use this claim.
## 5177 11/21/2006 04:15 pm (fblackmo) employee was attempting to unhook chain that holds spreader to truck bed. Truck bed was raised catching his hand under chain side and pinning hand between spreader and bed of truck. Supervisor: tom huskins
## 5178 11/21/2006 04:23 pm (fblackmo) employee stepped into a hole that was covered by leaves causing injury to his back. Supervisor: leonard dills
## 5179 11/21/2006 04:46 pm (fblackmo) employee was operating a state own vehicle (pickup truck) exiting us 70 onto glenburnie road in new bern when, truck was struck in the rear by private own vehicle. Supervisor: r. Mckenzie
## 5180 11/21/2006 05:11 pm (fblackmo) employee was cleaning out a ditch line for water runoff when, he felt pain in his lower back. Supervisor: mark pickens
## 5181 11/21/2006 05:21 pm (fblackmo) employee was observing contractor install 2' csl tubes. One employee was having trouble holding one end of pipe & employee reached in to help hold the end when, employee on opposite end dropped his end causing pipe to tw
## 5182 11/21/2006 05:32 pm (fblackmo) employee was walking the ramp to count passengers when, he turn to look behind him his, foot slipped off the uneven blacktop twisting left ankle, knee, and felt back pain. Supervisor: s. A. Willis
## 5183 11/21/2007 01:30 pm (mdsloan) employee was unhooking a widening machine from the pintle hook on a dump truck so employee unlatched the hook and placed his hand on top of the hook. A second employee proceeded to raise the tongue of the widening machi
## 5184 11/21/2008 02:06 pm (blgay) employee was bushing and grubbing and was believed to have been bitten by a spider or other insect on left hand. Supervisor: joseph e. Smith
## 5185 11/21/2008 02:17 pm (blgay) employee was changing right rear tire on dot vehicle. Lowering spare tire from underneath truck and it would not release. Instructions stated there was a secondary release, hit bracket under spare tire with tire tool and it
## 5186 11/21/2008 03:44 pm (fblackmo) employee states hearing loss was identified after testing at the depot. Supervisor: mark walker
## 5187 11/21/2008 09:49 am (blgay) employee was traveling south on nc 251, when he met another large truck. The trucks hit mirrors causing glass to shatter, sending it through the window and cutting him above the eye. Supervisor: mike johnson
## 5188 11/21/2008 10:22 am (blgay) employee was cutting bolt off of post on bridge, when post swung down and hit him in the lower right leg shim bone, cutting his leg. Supervisor: herbert ramey
## 5189 11/21/2008 10:57 am (blgay) employee informed supervisor on 11/10/2008 that he had some results from his mri, which was not on a previous mri that he had received. Employee feels that the hip pain from the compressed discs that is noted in the new mri
## 5190 11/22/1999 03:14 pm leaving the rear of the truck to flag a stake. Stepped on a rock cropping that collapsed; therefore rolling left ankle.
## 5191 11/22/1999 03:21 pm Ms. Bell slipped on steps twisting her left knee while stepping out of newly constructed office in clinton nc. Supervisor: daniel r. Cumbo.
## 5192 11/22/1999 03:27 pm an unknown type of insect stung Ms. Bell on her left upper arm causing an allergic reaction on 11/03/99. Supervisor: r. A. Mccarley
## 5193 11/22/1999 03:35 pm Mr. Mintz was climbing onto the back of a truck to get a sign, when he felt a pull in his left hip and left ankle. Supervisor: thomas e. Johnson
## 5194 11/22/1999 03:37 pm employee was getting out of truck while doing so he turned twisting his back. Strained lower back
## 5195 11/22/1999 03:52 pm employee was loading straw as he walked on bales his foot slipped between two bales and he twisted his knee
## 5196 11/22/1999 04:28 pm Mr. Wille strained his left arm on 11/11/99 while obtaining samples of concrete from concrete bucket. He received his injury due to lifting shovels of concrete and bending his arm. Mr. Wille has sharp pains in arm and also heard a
## 5197 11/22/1999 09:20 am Mr. Gibson left leg was cut due to a tree limb falling to the ground and kicking back on his leg. Supervisor: k. R. Davis
## 5198 11/22/2000 09:00 am employee was sloping a bank on sr 1749 when he unearthed a yellow jackets nest. He was stung on top of his head on 11/02/00. Supervisor: r. W. Hoyle
## 5199 11/22/2000 09:06 am employee stepped on running board and lost his footing causing pain in his right lower back area. Supervisor: c. D. Cloud
## 5200 11/22/2000 09:39 am employee injured his left shoulder, left knee, back and left index finger while trying to catch himself from falling. His foot slipped on rung of ladder. Supervisor: jimmy g. Dyson
## 5201 11/22/2000 10:43 am employee was attempting to tie tailgate chain in order to put the hoist in. There was a broken wire in chain he didn't see causing the wire to puncture his left thumb. Supervisor: d. L. Dean
## 5202 11/22/2000 10:51 am employee was picking up trash bags when he strained/sprain his right arm/shoulder. Supervisor: h. L. Mcdowell
## 5203 11/22/2000 10:58 am employee was cutting down dead trees when he received an abrasion above his right eye and a bruised right cheek. The tree fell and struck the back of his leg and knocked him down falling against the limb of another tree causing the
## 5204 11/22/2002 01:03 pm (fblackmo) employee was steam cleaning a tractor transmission bell when, the hot water fell over the top of his foot. Supervisor: h. M. Hamm
## 5205 11/22/2002 01:18 pm (fblackmo) employee was trying to open the door of a burned vehicle to identify it. He was using a crow bar to pull door when, he injured his left wrist and hand. Supervisor: s. A. Hall
## 5206 11/22/2002 01:32 pm (fblackmo) mechanic was jump starting truck using carryall for battery source. Employee had his hand on the carrall fender when, the mechanic closed the hood it pinched employees finger. Supervisor; l. C. Carpenter jr
## 5207 11/22/2002 01:47 pm (fblackmo) employee was operating a contour mower cutting high grass and weeds behind a guardrail. Rotary blade of mower caught a piece of steel cable and whipped it up into the right side glass, causing the laceration to his face
## 5208 11/22/2002 01:57 pm (fblackmo) employee was trying to start chainsaw, after several attempts he felt pain in his left elbow. Supervisor: rodney hardy
## 5209 11/22/2002 10:56 am (fblackmo) employees vehicle was struck by an oncoming vehicle while sitting in a turning lane on nc 42 project in wilson. Supervisor: e. J. Bunn
## 5210 11/22/2004 02:39 pm (fblackmo) employee was driving when, a box truck crossed the center line in his direction. Employee states to avoid a collision he drifted towards the shoulder of the road, ran off of asphalt pavement, over corrected and rolled d
## 5211 11/22/2004 03:19 pm (fblackmo) employee states while raking asphalt from paving machine he, felt pain in his shoulder area. Supervisor: william nall
## 5212 11/22/2005 08:37 am (fblackmo) employee was cutting oak trees when, he was bitten by an insect on his left leg. Supervisor: g. J. Liverman
## 5213 11/22/2005 08:49 am (fblackmo) employee was pulling grass that had built up between roller and cutter shaft when, he felt pain in his left shoulder area. Supervisor: william j. Woodard jr
## 5214 11/22/2005 09:01 am (fblackmo) employee states the tag a long trailer has a box at the tongue of the trailer with a metal lid. Employee was getting a chain out of the box and the metal lid came down on his hand. Supervisor: james d. Wilkins
## 5215 11/22/2005 09:13 am (fblackmo) employee was lifting a 50lb saddle weight when, he felt pain in his right shoulder. Supervisor: p. L. Stanberry
## 5216 11/22/2005 09:26 am (fblackmo) employee was trying to remove small portion of toilet paper roll that was stuck in holder when, he cut his finger. Supervisor: t. L. Gray
## 5217 11/23/1999 02:54 pm while operating backhoe my back started hurting due to seat in my backhoe. It doesn't have any springs or cushions at all. Lower back
## 5218 11/23/1999 03:04 pm employee was removing pocket book(large purse) and shoulder bag of equipment from personal auto to take onto company vehicle, employee lost balance and fell breaking right ankle.
## 5219 11/23/1999 04:19 pm employee was operating a track excavator loading stumps and debris into truck, when his left eye started itching, became swollen, sore, and red. Supervisor: darrell parson
## 5220 11/23/1999 04:27 pm Mr. Finney strained the left side of his lower back while shoveling asphalt into back of tailgate truck on 11/10/99. Supervisor: walt d. Bennett
## 5221 11/23/1999 04:33 pm Mr. Wyckoff was struck in the abdomen while cutting down trees from hurricane floyd on 10/13/99. The tree was under stress-the tree trunk snapped. Supervisor: d. R. Bryant
## 5222 11/23/1999 04:41 pm Ms. Whitt was walking/working in tall grass checking guardrails, when she was bit on her right leg by a spider. Supervisor: j. R. Clark
## 5223 11/23/1999 04:49 pm Mr. Wynn injured his right hand middle finger while reaching to flip over a foot pad on backhoe stabilizer on 11/18/99. The left stabilizer foot pad had flipped over and was stuck when his finger was caught between pad and the sup
## 5224 11/23/1999 05:02 pm Mr. Parrish was working beside roadway when a truck passed by blowing grit into his left eye. Mr. Parrish was wearing safety glasses at time of incident. Supervisor: larry m. Dehart.
## 5225 11/23/2004 04:28 pm (fblackmo) employee was driving an asphalt distributor and towing a mulch blower on a secondary road in stokes county. The employee states he lost control going around a curve when the brakes locked and he wrecked the vehicle. Vehi
## 5226 11/23/2004 08:18 am (fblackmo) employee states while conducting test he, experienced pain in his back. Supervisor: phil stanbery
## 5227 11/23/2004 11:05 am (fblackmo) employee states two dump trucks were hauling on narrow road when, mirrors struck each other causing glass to shatter in employees face. Supervisor: harley cunningham
## 5228 11/23/2004 11:23 am (fblackmo) employee was cutting a tree for debris removal out of right of way when, tree sprung back striking him on his left knee area. Supervisor: tim simpson
## 5229 11/23/2004 12:20 pm (fblackmo) employee was cleaning off work bench in warehouse and hit his right elbow on drill that was laying on work bench. Supervisor: d. S. Eudy
## 5230 11/23/2009 08:56 am (blgay) employee was putting equipment away for next day, employee stepped in a hole and twisted his left knee, causing him to fall to the ground. Supervisor: william batton
## 5231 11/24/2003 02:34 pm (fblackmo) employee was bitten on left side of stomach by a brown recluse spider. Supervisor: c. R. Styles
## 5232 11/24/2003 03:24 pm (fblackmo) employee was changing a flat tire on pick up truck when, the jack fell trapping his hand between the tire and the fender. Supervisor: james conner
## 5233 11/24/2003 04:14 pm (fblackmo) employee states he came into contact with poison ivy while working on right of way. Supervisor: keith lance
## 5234 11/24/2003 04:26 pm (fblackmo) employee was installing hyd. Hose on snow plow when, hose struck employee in the mouth breaking teeth. Supervisor: j. E. Stepp
## 5235 11/24/2003 09:33 am (slee) traveling westbound 98, eastbound vehicle did not signal nor stop to make left turn on to adams st. There two cars turning left at adams st., employee put foot on brake but vehicle #2 turned right in front of him, failing t
## 5236 11/24/2008 10:33 am (blgay) employee was using chain saw cutting tree when he came into contact with poison oak. Supervisor: paul collins
## 5237 11/24/2008 10:42 am (blgay) employee was loading boxes of rubber seal onto bed of pickup, causing him to pull a muscle in his stomach. Supervisor: jerry williamson
## 5238 11/24/2008 12:11 pm (blgay) employee was climbing into front end loader, when employee felt and headed his left knee snap. Supervisor: charles vick
## 5239 11/24/2009 02:22 pm (fblackmo) employee was climbing down from mowing tractor when his foot slipped off the pedal causing injury to his left shoulder. Supervisor: james strickland
## 5240 11/24/2009 02:40 pm (fblackmo) employee was removing tailgate off the back of truck and stepped backwards, tripping over a roll of matting. Employee fell to the ground striking his right knee. Supervisor: t. L. Barnette
## 5241 11/24/2009 02:52 pm (fblackmo) employee was moving bulldozer when he hit his head. Employee felt pain in his neck and had a laceration to his head. Supervisor: j. W. Sutton
## 5242 11/24/2009 03:05 pm (fblackmo) employee was climbing down from tractor when he stepped in a hole causing injury to his left ankle. Supervisor: dennis stewart
## 5243 11/24/2010 10:40 am (fblackmo) employee injured his left arm while chipping rust out of overhang. Employee was using needle gun to remove the rust. Supervisor: ray bailey and thomas bowser
## 5244 11/25/2003 02:40 pm (fblackmo) employee states he came into contact with poison ivy while throwing limbs on back of dump truck. Supervisor: david l. Lane
## 5245 11/25/2003 09:02 am (fblackmo) employee states while exiting dump truck he, stepped into a hole causing the injury to his right ankle. Supervisor: a. L. Smith
## 5246 11/25/2003 11:38 am (fblackmo) employee was conducting road repair when, he brushed up against a small tree causing a limb to enter into his right ear. Temporary hearing loss. Supervisor: m. B. Smith
## 5247 11/25/2003 11:53 am (fblackmo) employee was unloading truck when, tail gate hit him in the back. Supervisor: daniel e. Styron
## 5248 11/25/2003 12:08 pm (fblackmo) employee was cutting trees when, one of the limbs struck him on the head. Supervisor: jamie mckinney
## 5249 11/25/2003 12:17 pm (fblackmo) employee was working with geo tech unit drilling holes when, his hand came into contact with the machine. Supervisor: e. L. Taylor jr
## 5250 11/25/2003 12:29 pm (fblackmo) employee states while working on I-85 something flew into his right eye. Supervisor: tim southhard
## 5251 11/25/2008 04:16 pm (blgay) employee was helping take a spreader off of a dump truck. Employee climbed up on top of spreader and his back popped, causing pain in the upper back. Supervisor: david capps
## 5252 11/25/2008 10:16 am (blgay) employee was driving a form pin with a hammer. Employee was moving out of the way, in doing so, tripping over other employees foot causing him to fall and hurt his right hand. Supervisor: shannon woody
## 5253 11/25/2008 12:15 pm (fblackmo) employee was moving truck over out of the way of a larger truck when, he lost control causing truck to overturn. Employee cut left side of face. Supervisor: alton h. Thornton jr
## 5254 11/25/2008 12:27 pm (fblackmo) employee was unloading truck at eaa air venture 2008 trade show in oshkosh, wisconsin when, she felt pain in her left shoulder. There as exhibitors for the show. Supervisor: william h. Williams, jr
## 5255 11/25/2009 08:13 am (blgay) employee was loading culvert on to truck. Culvert mashed right thumb, between pipe and truck bed. Supervisor: steven buchanan
## 5256 11/25/2009 09:45 am (fblackmo) employee was participating in wellness fair jog when, she felt pain in right hip. Supervisor: jimmie massengill
## 5257 11/25/2009 12:40 pm (fblackmo) based on the doctors report the injury allegedly occurred six days prior to the November ninth doctors appointment. The employee stated to the doctor the he "doesn't remember any incident that May have caused the problem
## 5258 11/26/2001 03:08 pm (fblackmo) employee pulled his backhoe off the road. The employee exited the backhoe he lost his footing due to the ground giving away which caused the employee to fall back and land on the steps of the backhoe and injured his low
## 5259 11/26/2001 12:47 pm (fblackmo) employee stepped from the bow of the boat and fell causing the injury to his left leg. Supervisor: c. E. Lassiter jr
## 5260 11/26/2002 02:03 pm (fblackmo) employee states while heating a locking pin, the pin shot out striking employee on his arm. Supervisor: j. C. Sloan
## 5261 11/26/2002 09:37 am (fblackmo) employee was cleaning paint board. The board was dropped on ground to loosen paint, paint chip went into his right eye. Supervisor: harvey dean johnston
## 5262 11/26/2002 09:56 am (fblackmo) employee was rolling patch with roller, when he stopped to switch seats he felt pain in his back. Supervisor: w. T. Teague
## 5263 11/26/2002 10:13 am (fblackmo) employee was getting into backhoe when, he felt pain in his lower back area supervisor: johnny ransdell
## 5264 11/26/2002 10:38 am (fblackmo) employee was bushing around bridge when, his left knee gave way causing him to fall. Supervisor: tim k. Southard
## 5265 11/26/2002 12:27 pm (fblackmo) employee states injury occurred from the repetitive motion of using her keyboard. Supervisor: larry daniel
## 5266 11/26/2002 12:39 pm (fblackmo) employee states he twisted his left knee while tieing up line on starboard. Supervisor: r. E. Hill
## 5267 11/26/2007 02:58 pm (fblackmo) employee had performed the daily inspection and was attempting to climb into the cab of the dump truck when, he felt a sharp pain in his lower back. Supervisor: david lane
## 5268 11/26/2007 03:10 pm (fblackmo) employee was showing a visitor to someone office when, he tripped over a tree root, and fell on his right arm. Employee had an ice pack on that shoulder at work for approximately one week and said " that it was injured t
## 5269 11/26/2007 03:31 pm (fblackmo) employee was removing an intermediate shaft from the port side in the void of the m/v pamlico. No deck plates had been placed in that area. Employee lost his balance and tried to catch himself with his right hand, thus c
## 5270 11/26/2007 03:42 pm (fblackmo) employee was attempting to lift a rear tractor tire off the ground with three other employees when, he felt stinging in his neck. Supervisor: william riggs
## 5271 11/27/2000 02:25 pm employee was riding inside of tractor cab sweeping the road; when he was hit from behind by a private vehicle. Mr. Carter has bruises to his chest, arm and shoulder areas. Supervisor: lindsey o. Ethridge
## 5272 11/27/2000 02:40 pm employee was putting strap guardrail into metal scrap bin; when the guardrail shifted and hit his left hand cutting it to the bone (tendon damage). Supervisor: jimmy l. Price
## 5273 11/27/2000 02:47 pm employee was moving a pallet with electric jack when he ran into the wall fracturing his right thumb. Supervisor: shane j. Murray
## 5274 11/27/2000 02:54 pm employee was helping another employee secure piles of boards into a hole. Mr. Gathings took a step back onto a board with a nail sticking out of it. He punctured his left foot on 11/17/00. Supervisor: h. M. Thompson
## 5275 11/27/2000 03:01 pm employee was making number blocks for stop signs; when he lost his footing and struck his left hand with a hammer. Supervisor: mickey jones
## 5276 11/27/2000 03:08 pm employee was bolting a sign onto a metal u-channel sign post on 11/15/00. The sign post had a sharp metal spur on it and it stuck in employees right thumb. The spur was removed from his thumb. Supervisor: wayne williams
## 5277 11/27/2000 03:16 pm employee was changing a tire when he strained/sprained his lower back. Supervisor: steve bridges
## 5278 11/27/2001 09:52 am (fblackmo) employee was operating the coring rig when the injury occurred. Supervisor: judith corley lay
## 5279 11/27/2002 12:21 pm (fblackmo) employee was lifting chainsaw from bed of truck. Employee turned to placed it on the trailer when, he felt pain in his right leg and back. Supervisor: r. S. Burton
## 5280 11/27/2002 12:36 pm (fblackmo) employee states, while loading ferry for departure he hit his head on a piece of metal that was hanging from a tractor trailer. Supervisor: s. J. Goodwin
## 5281 11/28/2006 12:26 pm (fblackmo) employee was standing in back of swb dump tuck removing tailgate when, the tailgate fell against the loader bucket trapping his hand & fingers on left hand. Supervisor: j. S. Roller
## 5282 11/29/1999 01:15 pm employee was checking to see if lip leading into woods needed to be paved. He stepped into a hole on the shoulder of the road. Pain in right knee -pulled or torn ligament.
## 5283 11/29/1999 01:53 pm stepped onto running board of truck and hit left knee on muffler.
## 5284 11/29/1999 02:37 pm cutting tree, limb hit left hand and arm causing a contusion
## 5285 11/29/1999 02:50 pm employee was helping to put a tandem tailgate on and when he pulled from right to left, he felt a stinging sensation in left groin area.
## 5286 11/29/1999 02:58 pm employee had been assisting with the application of coastal bermuda hay on wild flower beds and started having breathing problems.
## 5287 11/29/1999 12:04 pm Mr. Hill strained his right shoulder while putting away stock in lower cabinet on ferry. Supervisor: h. L. Gray
## 5288 11/29/1999 12:10 pm Mr. Palmer strained his lower back while rolling and pulling on barbwire on new construction project. Supervisor: tommy kilpatrick
## 5289 11/29/1999 12:18 pm Mr. Cole sprained his right knee when he stepped in a hole at the end of a bridge. He was repairing the bridge handrail at the time of incident. Supervisor: wayne l. Miller 02/01/2000 12:48 pm
## 5290 11/29/1999 12:24 pm Mr. Weiner was cutting dead trees off road that had poison oak on the vines. Mr. Weiner inhaled dust particles in his lungs. Supervisor: m. H. Thomas
## 5291 11/29/1999 12:32 pm Mr. Greene was working on a transmission on truck, when a man helping him was knocking out an old u-joint. A piece of metal flew out and hit Mr. Greene in the chin. The metal piece was embedded in skin and became infected. The m
## 5292 11/29/1999 12:46 pm Mr. Healy was looking through survey equipment, when a pov ran off the road striking his right leg and foot. The man driving the pov had a epileptic seizure at time of incident. Mr. Healy has bruises on right leg. Supervisor:
## 5293 11/29/1999 12:53 pm Mr. Helms left ring finger was caught between guardrail and plywood while loading plywood on mine creek road. Supervisor: joe hillard mckinney
## 5294 11/29/2000 03:48 pm employee pulled off the travel portion or roadway onto the shoulder to remove a sign. He was struck from behind by a log truck on nc highway 403. Mr. Tucker has strain/sprain to his right arm/shoulder and contusions to his neck,
## 5295 11/29/2000 04:01 pm employee was holding on to side of truck and stepped up on wheel hub. He was doing his pre-trip inspection when he strained/sprained his right hand/wrist. Supervisor: r. D. Bass
## 5296 11/29/2000 04:07 pm employee was putting tire chains on dump truck; when the tire tool slipped, striking him in his face cutting his jaw. Supervisor: t. G. Huskins
## 5297 11/29/2000 04:13 pm employee was attempting to load pavement breaker onto truck when he strained his left abdominal muscles while lifting tools. Supervisor: hugh williams
## 5298 11/29/2000 10:46 am employee was stepping down from a 6' step; when he twisted/sprained his left knee. Supervisor: a. S. Bailey
## 5299 11/29/2000 10:51 am employee was putting samples into chute; when his hand got caught on a nail that holds the bag for the chute. He has a cut on his right hand palm. Supervisor: m. D. Burley
## 5300 11/29/2001 02:06 pm (fblackmo) employee was working in shop area. Another employee sprayed wd-40 on valve, this caused the employee to sneeze and his top denture fell out to the pavement and broke. Supervisor: m. O. Anderson 10/23/2003 09:44 am (gwh
## 5301 11/29/2001 02:39 pm (fblackmo) employee was cutting down a 1' limb using a bush axe. While swinging bushaxe to make a second swing at limb bushaxe handle broke and axe fell onto back of employees head. Supervisor: k. R. Davis
## 5302 11/29/2001 03:50 pm (fblackmo) employee was standing sideways, employee was pushing a pallet jack into a storage room and injured his right knee. Supervisor: clay tyre
## 5303 11/29/2001 04:03 pm (fblackmo) employee was operating long arm mower. Employee pulled off the road to let traffic pass. The mower hit a low shoulder causing a jerking movement which lead to the injury to employees back. Supervisor: r. J. Hollifield
## 5304 11/29/2001 10:05 am (fblackmo) employee experienced pain and discomfort in right wrist while typing repetitively. Supervisor: dennis vick
## 5305 11/29/2001 10:55 am (fblackmo) employee was bushing around bridge and stepped in a hole and twisted his left knee. Supervisor: c. Gerald woodley
## 5306 11/29/2001 11:10 am (fblackmo) employee was dismounting from the dump truck when his foot slipped out from under him causing him to fall. Employee hit his back on the fuel cap. Supervisor: w. L. Thompson
## 5307 11/29/2001 11:30 am (fblackmo) employee stated that he was lifting a barricade into a trailer and felt pain in his left arm and shoulder. Employee did not think that he needed to see a doctor at that time. Employee started to have pain in his shoul
## 5308 11/29/2001 12:12 pm (fblackmo) employee bumped head bending down to get around another worker and hit head on spreader. Supervisor: charles whitfield
## 5309 11/29/2001 12:35 pm (fblackmo) employee states that while typing reports on computer felt a sharp pain in right side of back, with numbness and tingling in right arm. Employee experienced severe back spasms after cleaning and sweeping office. Superv
## 5310 11/29/2001 12:57 pm (fblackmo) employee was unhooking salt spreader debris from the chain being used went into employees right eye. Supervisor: j. S. Justice
## 5311 11/29/2005 03:16 pm (fblackmo) employee was shoveling asphalt off the back of flatbed truck when, he felt pain in his back area. Supervisor: w. C. Kincannon
## 5312 11/29/2005 03:29 pm (fblackmo) employee was watching paint truck when, contractors supervisor backed into employee who was on foot. Employee felt pain in his right leg, mid back area, and neck. Supervisor: j. R. Clark
## 5313 11/29/2005 03:43 pm (fblackmo) employee was working in some tall grass. Afterward he began itching around his ankles. The itching continued up his legs and form welts over most of his body. Supervisor: stonie woolard
## 5314 11/29/2005 04:22 pm (fblackmo) employee was using a limb saw to cut a limb from the trunk of tree that was blocking the view of a stop sign. The limb hit the ground, it kicked back toward employee and the large end of the limb hit his right index fing
## 5315 11/29/2005 04:33 pm (fblackmo) employee was helping to pick up dear when, he felt pain in his back. Supervisor: henry sturdivant
## 5316 11/29/2005 04:43 pm (fblackmo) employee was warming up motor grader machine when, he was bitten by insect on neck. Supervisor: g. J. Liverman
## 5317 11/29/2005 05:20 pm (fblackmo) employee was spraying water from a garden sprayer onto a concrete girder to inspect it for damage. The sprayer leaked some of its contents onto the employees clothing. The sprayer apparently contained residue form previo
## 5318 11/29/2005 05:32 pm (fblackmo) employee was eating lunch when, a bee stung him on the neck. Supervisor: john hilliard
## 5319 11/29/2006 10:48 am (fblackmo) employee stated injury to his left knee happened while pushing clutch in and pulling up pto lever while working on hwy 73. Employee did not report problem to supervisor until 11/20/06. Employee worked full day and also d
## 5320 11/29/2007 01:33 pm (fblackmo) employee was dismounting a motorgrader and twisted his right knee as he placed his foot on uneven ground. Supervisor: keith mccoy
## 5321 11/29/2007 01:50 pm (fblackmo) employee was working at a job site when, she came into contact with poison ivy on both legs. Supervisor: dean argenbright
## 5322 11/29/2007 02:02 pm (fblackmo) employee was cutting band around nylon strap when, the knife cut through the zip tie, the blade stuck into left thumb. Supervisor: jim t. Wiggins
## 5323 11/29/2007 02:14 pm (fblackmo) employee was walking around corner of bsip building. He walked under the window air condition unit that is attached to the building. There was not enough clearance for his height. Employees head struck bottom of steel fr
## 5324 11/29/2007 10:05 am (fblackmo) employee moved a box when, the metal shelving case shifted and began to fall. Employee placed herself under the shelf to keep it from falling when, she felt pain in her right hip area. Supervisor: nadine barnes
## 5325 11/29/2007 10:16 am (fblackmo) employee was unloading pick up when, his feet slipped out from under him. Employee grabbed steering wheel to break his fall when, he felt pain in his right shoulder. Supervisor: gordon creech & russell ramsey 10/22/2008
## 5326 11/29/2007 10:27 am (fblackmo) employee was grinding when, a piece of debris entered his right eye while wearing safety glasses. Supervisor: franklin granda
## 5327 11/29/2007 10:39 am (fblackmo) employee was inspecting guardrails when, he was bitten by fire ants and suffered an allergic reaction. Supervisor: bruce payne
## 5328 11/29/2007 11:28 am (fblackmo) employee was conducting a road test when, driver crossed the yellow line striking another vehicle. Employee felt pain in her back. Supervisor: joseph jefferson
## 5329 11/29/2007 12:05 pm (fblackmo) employee was dismounted the rental broom tractor and was walking around behind it when, he stumbled and fell hitting his right knee on the pavement. Supervisor: clifton mills
## 5330 11/29/2010 03:36 pm (barnes) employee was shoveling out a ditch and twisted his back pulling a muscle. Employee injured his back. Supervisor: jimmy maness
## 5331 11/29/2010 04:48 pm (barnes) employee was getting out of the dump truck and was stepping down to the second step when he heard a pop in his left knee and could not put pressure on the knee. Employee injured left knee. Supervisor: james m. Gibson
## 5332 11/29/2010 05:20 pm (barnes) employee was removing traffic cones one by one from the center of the road onto the shoulder. Employee turned and proceeded to the next cone, as he turned quickly to grab a cone he felt a cold tingle at his right hip area
## 5333 11/3/2005 03:52 pm (blgay) employee was using post hole digger, when back locked up and fell to ground. Supervisor: jerome locklear
## 5334 11/3/2005 04:04 pm (blgay) employee was involved in a traffic accident in which he rear ended another vehicle. The other vehicle was driven by someone determined to be under the influence of alcohol (. 18) and stopped very abruptly in front of him as h
## 5335 11/3/2009 05:47 pm (fblackmo) employee tripped on sidewalk while walking back into building. Supervisor: miriam s. Perry
## 5336 11/3/2009 10:50 am (fblackmo) employee was doing routine trash pick up and proceeded to lift trash bag into the back of truck when, he felt a burning sensation in his navel area. Supervisor: cindy austin
## 5337 11/3/2010 01:31 pm (fblackmo) employee was refueling vehicle when he tripped over the hose. Employee felt pain in his left knee. Supervisor: bryan edwards
## 5338 11/3/2010 10:56 am (fblackmo) employee was flagging traffic when a bee stung him on his right forearm. Supervisor: eugene autry
## 5339 11/30/1999 09:08 am pain and stiffness in thumb of right hand, also pain in right shoulder and lower part of neck. Repetitive motion on keyboard
## 5340 11/30/1999 09:15 am carol was stamping the date on in coming salvage work and then processing the work on computer. Repetitive motion.
## 5341 11/30/2001 03:42 pm (fblackmo) employee was making a wooden wedge to put into the lock of his cash box to keep it from locking when he put the lid down and his knife slipped and cut his finger. Supervisor: s. N. Harris 12/04/2001 03:16 pm (twerner)
## 5342 11/30/2004 09:23 am (fblackmo) employee states that while stopped to avoid hitting white van driving down ramp the wrong way, ncdot pickup was struck in the rear by another vehicle. Employee experienced pain in neck. Supervisor: j. A. Finnell
## 5343 11/30/2005 01:01 pm (fblackmo) employee was cutting trees when, he cut his finger. Supervisor: d. Shane edwards
## 5344 11/30/2005 01:11 pm (fblackmo) employee was shoveling asphalt. Inmate accidentally struck employee with shovel causing laceration to little finger on right hand. Supervisor: r. J. Hollifield
## 5345 11/30/2005 01:20 pm (fblackmo) employee was reaching up into the bed of crew cab dump truck to get out a bush axe. Employee grabbed bush axe and while lowering the bush axe out of the bed of the crew cab dump truck he, felt something pull in his right
## 5346 11/30/2005 01:42 pm (fblackmo) employee was in on of the two dump trucks that hit each other. The glass from the mirror caused the cut to employees left cheek area. Supervisor: tim buckenr
## 5347 11/30/2005 02:03 pm (fblackmo) employee lifted box, box slipped and bent pinkie finger on left hand backwards. Supervisor: libby allen
## 5348 11/30/2005 05:30 pm (fblackmo) employee was cleaning out salt brine storage tank and lost his footing causing him to fall. As he fell he tried to catch his self by grabbing the cross-members causing his thumb to bend back. Supervisor: jeff allen
## 5349 11/30/2005 08:54 am (fblackmo) employee was cutting brush off right of way when, he lost his footing and fell in brush causing foreign object to enter into his right eye. Supervisor: m. H. Thomas
## 5350 11/30/2005 09:05 am (fblackmo) employee was climbing onto asphalt roller when, he hit his right knee on fuel tank filler. Supervisor: alan brown
## 5351 11/30/2005 09:20 am (fblackmo) employee was walking across the deck in the engine room when, he stepped into a hole. Employee felt pain in his left knee and foot. Supervisor: j. J. Ferguson
## 5352 11/30/2005 09:32 am (fblackmo) employee went to stand and walk to the file cabinet when, she twisted her left knee due to basket. Supervisor: richard howard
## 5353 11/30/2005 11:36 am (fblackmo) employee was folding tarpoulines form ferry to load on pallet when, he felt pain in his left shoulder. Supervisor: donald l. Ferguson
## 5354 11/30/2010 01:42 pm (barnes) employee was working on the bridge at us 74. Employee was shoveling asphalt and throwing it back to the level man who was spreading it on the asphalt that was already down. As he was shoveling, he felt a pop in his right s
## 5355 11/30/2010 02:03 pm (barnes) employee "Mr. Messer" was engaged in horseplay with another employee. The other employee picked Mr. Messer up, but when he let go, Mr Messer fell and cracked a bone in his left arm. Employee injured his left arm. Supervi
## 5356 11/30/2010 05:36 pm (barnes) employee was mowing on sr 1239 (joe farthing rd) when the wheel of his tractor knocked down the mowing sign. Employee cut the bush hog button off leaving the boom up. As he was walking down the road to pick up the sign, th
## 5357 11/30/2010 06:10 pm (barnes) employee was driving state vehicle home and hit the rumble strips on the side of the highway. He over corrected and lost control of his vehicle causing it to over turn. Employee injured his left hand and sustained a cut o
## 5358 11/30/2010 06:40 pm (barnes) employee was conducting a road test. While riding with the customer, customer lost control of the vehicle as he/she tried to make a right turn into a residential area. The customer drove the vehicle into a brick wall sign
## 5359 11/30/2010 11:57 am (slee) employee states that he was making a left turn onto n. Tryon st. From lambeth st., when a car making the same movement whipped around him trying to beat him to the curb lane, side swiping the sov in the process. 11/30/2010
## 5360 11/30/2010 12:53 pm (barnes) employee was cutting a tree with a lot of vines in it. He notched the tree. He stepped back. However, as the tree was falling, it struck his hard hat. Employee injured his neck. Supervisor: adam biddix
## 5361 11/4/2004 02:54 pm (fblackmo) employee states while lifting lumber into the back of tandem truck he, felt pain in h is lower back. Supervisor: jack rollins
## 5362 11/4/2004 12:02 pm (fblackmo) employee states while stepping up into truck his foot slipped causing the injury to his knee. Supervisor: not stated on form 18
## 5363 11/4/2004 12:12 pm (fblackmo) employee states while getting in position to cut a fallen tree, a small twig hit him in the face. The twig went under his safety glasses striking him in the left eye. Supervisor: j. Mark crook
## 5364 11/4/2005 09:28 am (fblackmo) employee was exiting from crew cab truck, the bottom of his left shoe caught in between the grid plate and the step. At the same time his left arm pulled off the armrest on the drivers side door. He fell to the ground on
## 5365 11/4/2005 11:47 am (fblackmo) employee was tightening screws in cabinets doing preventive maintenance and felt pain in right hand. Supervisor: n. S. Gibson
## 5366 11/4/2005 12:02 pm (fblackmo) employee was cutting tension cable using a grinder when, foreign matter got into his left eye. Supervisor: ronald canady
## 5367 11/4/2008 03:05 pm (fblackmo) employee was cutting site distance using a chain saw, employee relaxed saw, and saw hit top of right left thigh. Supervisor: leon saunders
## 5368 11/4/2008 12:34 pm (blgay) employee was using jack hammer to bust concrete and the concrete broke off, causing the jack hammer to bounce and hit right foot of employee behind steel toe boot. Supervisor: c. R. Stephens 11/4/2008 12:36 pm (blgay)
## 5369 11/4/2008 12:45 pm (blgay) employee was reaching to pull chain to open tail gate of dump truck to control the amount of gravel being dumped. Tail gate opened and caught little finger on right hand, fracturing little finger on right hand. Supervisor: e
## 5370 11/4/2008 12:57 pm (blgay) employee was dismounting from astron mower holding on to the handle with her left hand. As she was stepping down to the ground, the ground was further than she thought. Employee pulled herself back up and felt a burning sens
## 5371 11/4/2009 04:08 pm (fblackmo) employee was sweeping state road in tyrrell county when, a private vehicle rear ended sweeper in operation. Vehicle pushed sweeper across road into ditch. Employee felt pain in neck, back, right knee, and forearm. Superviso
## 5372 11/4/2009 04:21 pm (fblackmo) employee was stepping out of truck when, he twisted his right knee. Supervisor: mike rogers
## 5373 11/5/2008 02:21 pm (blgay) employee was loading a 150 pound cast iron grate for use on I-40 paving project. When he picked up on the grate, he injured his right shoulder. Supervisor: b. T. Williams
## 5374 11/5/2009 08:27 am (slee) a loaded banks tri-axle dump truck failed to reduce speed when seeing first sign in work zone and slid approximately 200' and hit the dot crew cab in the rear.
## 5375 11/5/2010 05:28 pm (barnes) employee was getting out of the dump truck. As he backed down the steps, his hand slipped off the grab bar causing him to twist and fall off the step. He fell backwards into roadway. Employee's left leg folded under him cau
## 5376 11/5/2010 10:00 am (barnes) employee was taking difficult bolts off a turbo. While he was pushing and pulling trying to get it off, his left elbow started hurting and swelling. Employee injured left elbow. Supervisor: larry tibbs
## 5377 11/5/2010 10:31 am (barnes) employee was walking down a slope at 4:30 am, when a tree branch went through the top part of his glasses and went into his left eye. Employee injured left eye. Supervisor: shannon woody 3/22/2011 10:43 am (sshort)
## 5378 11/5/2010 11:07 am (barnes) employee was completing an inspection on a salvage vehicle. As he placed the tarp back on the vehicle, his right knee popped out of socket. Employee injured right knee. Supervisor: g. A mcintyre
## 5379 11/5/2010 12:55 pm (barnes) employee was taking a strobe light off a vehicle. As he was cutting the wire, the knife slipped and cut his left index finger. Employee injured his left index finger. Supervisor: ronnie c. Minton
## 5380 11/6/2006 12:07 pm (fblackmo) employee was in the trackhoe pulling up big rocks. He was having to pull levers back and forth a lot causing injury to his left hand & wrist. Supervisor: a. B. Harris
## 5381 11/6/2007 01:30 pm (mdsloan) employee was traveling south on nc281 when struck by vehicle traveling left of center line. Supervisor: roger hamilton
## 5382 11/6/2007 01:47 pm (mdsloan) employee was stacking nw casing on storage racks when adding another piece he knocked off one of the previously stacked on top when he knocked it off and tried to catch it before it hit the ground. Straining his back. E
## 5383 11/6/2007 02:31 pm (mdsloan) employee was chiseling when it was hit with the hammer it flaked off cutting the employees left hand. Supervisor: larry huntsinger
## 5384 11/6/2007 02:50 pm (mdsloan) employee was driving a dump truck and was going up a gravel road and met a car. Employee pulled to side of shoulder of road and the shoulder gave way and the truck flipped over. Supervisor: jim ashe
## 5385 11/6/2007 03:35 pm (mdsloan) employee was in a closed off work zone on the bridge that a contractor is replace on us 74 in anson county and as he was shoveling material cleaning out a hole that was approximately 6' inside workzone when a commercial v
## 5386 11/6/2007 08:19 am (mdsloan) employee was unloading pipe off of a truck without wearing his work gloves and cut his right pointer finger below the middle knuckle. Supervisor: r. E. Austin 8/8/2008 02:50 pm (blgay)
## 5387 11/6/2007 10:26 am (mdsloan) employee was driving an empty dump truck when a dog ran out into road. Employee applied brakes the truck went onto the shoulder, came back onto the road, crossed the centerline, went off onto left shoulder and overturned
## 5388 11/6/2007 11:00 am (mdsloan) employee was shrubbing bridges and as he was walking down a wet, slippery hill, employee slipped and fell injuring his right knee and thigh. Supervisor: larry r goines
## 5389 11/6/2007 11:22 am (mdsloan) employee was moving an I-beam with bar, when an I-beam next to him fell against his right leg. Supervisor: ken anderson
## 5390 11/6/2007 11:42 am (mdsloan) employee was changing a tractor tire when a metal tire pry bar hit the employee on his right cheek, nose and forehead. Supervisor: james a paschal
## 5391 11/6/2007 12:40 pm (mdsloan) employee was cutting brush on a survey line when employee encountered poison oak. Irritation and swelling began in the pm of 10/11/2007. This affected left eyelid. Supervisor: ca guffey 4/2/2008 09:42 am (sjerniga)
## 5392 11/6/2008 09:59 am (blgay) employee was standing beside a tree when a backhoe was moving the tree from the road. Employee was standing to close to the tree and when the backhoe operator clamped tree with his bucket, the tree swung and employee was str
## 5393 11/6/2008 10:15 am (blgay) employee was applying ditch stabilization material in the bottom of the ditch. Employee slipped on the wet soil as he was stepping out of the ditch, falling on his right thumb. Supervisor: steve ingold
## 5394 11/6/2009 09:15 am (fblackmo) employee along with tow other employees were lifting up a floor saw into the back of a pick up when, he felt pain in his upper back area. Supervisor: c. E. Mclean
## 5395 11/6/2009 10:02 am (fblackmo) employee was driving dump truck when, he ran off the road flipping truck over. Employee felt pain in his head and neck area. Supervisor: clyde scott
## 5396 11/7/2005 11:47 am (blgay) employee was reaching to pull the hood release, he cut his left hand on a piece of rough fiberglas under the hood requiring six stitches. Supervisor: carlis smith
## 5397 11/7/2006 02:11 pm (fblackmo) employee was walking in front of the crash truck when, a personal vehicle passed the truck and hit employee with side mirror. Supervisor: shelton james
## 5398 11/7/2006 02:23 pm (fblackmo) employee was moving debris while cleaning up equipment on dot yard when, he stepped on a nail. Supervisor: d. F. Pierce
## 5399 11/7/2006 10:05 am (fblackmo) employee fell in the parking lot while walking from his car to the office. He developed cuts and scrapes with bleeding to his hands, arms, and legs. Supervisor: kelvin peele 11/7/2006 10:32 am (fblackmo) can pay up t
## 5400 11/7/2006 10:36 am (fblackmo) employee was turning into ncdot facility when, he was hint in the rear by another dot employee driving his personal vehicle. Employee felt pain in his neck & back. Supervisor: rod wyatt
## 5401 11/7/2006 10:47 am (fblackmo) employee was trying to put the tractor in gear when, he pulled the shifter back, his arm hit the seat causing pain. Supervisor: james d. Wilkins
## 5402 11/7/2007 02:58 pm (fblackmo) employee was helping clean out the end of driveway when, he stepped in a bed of fire ants. Ant bites to right leg. Supervisor: carlis smith
## 5403 11/7/2007 03:07 pm (fblackmo) employee was conducting a road test when, driver lost control of the vehicle and hit a tree. Employee felt pain in his right knee. Supervisor: catherine t. Bagwell
## 5404 11/7/2007 03:19 pm (fblackmo) employee was leaving out of building when, her right ankle/foot twisted causing her to fall. Supervisor: cathy holder
## 5405 11/7/2008 03:24 pm (blgay) employee was operating a single axle dump truck, when his right wheels dropped off the edge of the pavement. Employee jerked the wheel to the left and over corrected. Vehicle went left of the center and slid sideways down th
## 5406 11/8/2004 02:19 pm (fblackmo) employee was walking into his cubical and blacked out. Supervisor: tom koch
## 5407 11/8/2004 02:33 pm (fblackmo) employee was pulling on shore power cable when, he felt pain in his back. Supervisor: t. L. Gray
## 5408 11/8/2004 02:56 pm (fblackmo) employee states while picking up survey stakes a splinter got into his right hand center finger. Supervisor: paul j. Vorwerk
## 5409 11/8/2004 03:13 pm (fblackmo) employee was cutting pine tree, two limbs fell from tree, first one struck employees hard hat knocking it off, second struck his head causing a laceration. Supervisor: b. R. Knowles
## 5410 11/8/2004 03:24 pm (fblackmo) employee states while working with marking crew on us 74a, he was struck by a private vehicle on his wrist. Employee states the impact twisted his back. Private vehicle left the scene. Supervisor: mark anderson
## 5411 11/8/2004 12:07 pm (fblackmo) employee found a ticks on both ankles while working with road crew in sampson county. Supervisor: l. C. Bass
## 5412 11/8/2005 05:59 pm (fblackmo) employee states she experienced a shortness of breath due to allergic reaction from pest control spray. Supervisor: beverly lafone
## 5413 11/8/2006 01:17 pm (fblackmo) employee was driving west on hwy 70 in james city nc in left lane when, he was rear ended by a private vehicle causing pain to his upper back area. Supervisor: adron g. Wade
## 5414 11/8/2006 01:30 pm (fblackmo) employee stepped out of dump truck and twisted his left knee. Supervisor: greg mccracken
## 5415 11/8/2006 02:17 pm (fblackmo) employee was removing a sign rack from truck bed when, he felt pain in his right shoulder. Supervisor: keith blazer
## 5416 11/8/2006 02:25 pm (fblackmo) employee was bitten by a spider while sleeping on the dredge. Supervisor: m. J. Gray
## 5417 11/8/2007 01:05 pm (mdsloan) employee started operating "pan" when he felt burning/hurting in left groin area. Employee reported it to his supervisor that afternoon. Employee went to the doctor on 10/24/2007 and received diagnosis of having a hern
## 5418 11/8/2007 02:30 pm (mdsloan) employee were ripping 2x4 into 1/4" strips. Guard was in place until last cut was made. As last cut was being made employees push stick got caught in a bud with the saw blade, and the push stick was kicked out and was
## 5419 11/8/2007 03:23 pm (mdsloan) employee was helping another employee lift the rear ramp on the stone spreader trailer while a third employee hook a chain to hold it up. After getting the ramp chained in place, employee felt pain in his back and leg.
## 5420 11/8/2007 03:55 pm (mdsloan) employee was climbing onto roller had foot on step and employees foot slipped off step causing him to hit his right leg. Supervisor: david c. Capps
## 5421 11/9/2004 01:23 pm (fblackmo) employee was injured while pulling and lifting on a shouldering attachment. Supervisor: jimmy ammons
## 5422 11/9/2004 01:37 pm (fblackmo) employee states while traveling down state road driving boom truck he, ran off the side of the road. Employee struck cure ahead signal sign shattering side mirror, mirror swung inward striking him on side of face. Supervi
## 5423 11/9/2004 01:47 pm (fblackmo) employee was dismounting excavator, when he stepped onto ground his back twisted causing pain in right lower back. Supervisor: r. R. Fulghum
## 5424 11/9/2004 02:36 pm (fblackmo) employee states while driving with window down a bee flew into his right eye. Supervisor: iris h. Mccombs
## 5425 11/9/2004 08:39 am (fblackmo) employee states while stepping down off the truck he, stepped on a piece of wood twisting his left ankle. Supervisor: w. D. Silver
## 5426 11/9/2004 08:53 am (fblackmo) employee states while cutting down trees he, came into contact with poison ivy. Supervisor: todd hammond
## 5427 11/9/2005 01:14 pm (fblackmo) employee was cutting trees with a chainsaw when, he came into contact with poison ivy on multiple body parts. Supervisor: rick gordon
## 5428 11/9/2005 01:26 pm (fblackmo) employee was preparing to measure for seed and mulch quantities when, he lost his footing in loose soil causing the injury to his left knee. Supervisor: david b. Moore
## 5429 11/9/2005 02:01 pm (fblackmo) employee got out of dump truck to clean off grates when, he lost his footing causing the injury to his back. Supervisor: r. S. Ramsey
## 5430 11/9/2005 11:30 am (fblackmo) employee cut his left thumb while cutting string. Supervisor: stonie d. Woolard
## 5431 11/9/2005 11:48 am (fblackmo) employee was unloading cones from bed of truck and jumped down from truck and hurt left knee. Supervisor: tommy f. Richardson
## 5432 11/9/2009 01:08 pm (blgay) employee was shoveling gravel around bridge. Employee went to assist another employee cutting boards. When employee tried to crank the power saw, he felt a sharp pain in his arm, running up towards his shoulders. Supervisor:
## 5433 11/9/2009 01:19 pm (blgay) employee was stepping up into a trackhoe and something in his right leg popped. Supervisor: jimmy maness
## 5434 11/9/2009 01:38 pm (blgay) employee was opening lower drawer of file cabinet and felt pain in lower back. Pain progressed the following day. Supervisor: c. N. Edwards, jr.
## 5435 11/9/2009 01:59 pm (blgay) employee had completed a road test in a suv and upon exiting the vehicle, she felt a sharp pain in the lower left side of her back. Supervisor: pamela harrington
## 5436 11/9/2009 08:27 am (blgay) employee was driving a pickup truck. Employee came upon a tree limb lying in the roadway and as he attempted to dodge tree limb, he struck it and jerked the steering wheel left. Employee over corrected to the right, striking
## 5437 11/9/2009 08:40 am (blgay) employee was working on us 441. He picked up a large piece of a truck tire to load into the back of his pickup and felt a sharp pain in his lower back. Supervisor: wes jamison
## 5438 11/9/2009 08:52 am (blgay) employee was laying 16" concrete blocks, while building a drainage box wall. Employee picked up one of the blocks and felt pain and burning in his left wrist. Supervisor: k. B. Bowman
## 5439 11/9/2009 09:01 am (blgay) employee was removing a muffler from underneath a dump truck. He was holding and twisting it back and forth to remove it from the pipe. Suddenly it gave way, pinching employees finger between the muffle and pipe. Supervisor:
## 5440 11/9/2010 02:22 pm (barnes) employee was driving a metal "t" post with a metal hand drive post driver. Employee raised the driver too high, and the edge of the driver struck top of the "t" post causing the top of the driver to strike employee on the r
## 5441 11/9/2010 11:44 am (barnes) employee was removing interior walls in warehouse to increase storage area. Employee stepped on a nail that was protruding from the debris that was laying on the floor in work area. The nail went through the sole of his rig
## 5442 11/9/2010 12:12 pm (barnes) employee was working on grade crew, stepped around behind loader and his foot slipped on a muddy spot. He tried to catch himself and hit his left hand on loader, causing finger to jam. Employee injured his left finger cont
## 5443 11/9/2010 12:38 pm (barnes) employee was in the process of performing a 30 day inspection on a dot facility generator. He had opened the doors on each side and checked the oil. He was standing beside the generator, and as he turned on the switch to st
## 5444 12-17-05: stated "unknown origin" noted swelling in rt wrist. 12-20-05: client pulled arm down and out in a jerking motion
## 5445 12-8-11 was the first day I experienced left-sided neck and back pain, after spending 1207011 working at my desk in my office, using the computer; my injuries seem to be a result of an occupational disease, I. E. Sitting and working on a computer; I've ha
## 5446 12/01/1999 01:45 pm employee was restaking sr 1412 he was in briars and brush waist high, when he felt pain in left lower leg. He though he had kicked a small stump, a few minutes later while in roadway he looked at leg and an area was very swollen.
## 5447 12/01/1999 07:56 am continuous keying of salvage work. Pain on both sides of neck and both arms experiencing swelling.
## 5448 12/01/1999 08:04 am pain and swelling of left wrist due to repetitive motion.
## 5449 12/01/1999 08:10 am employee came in contact with poison ivy while clearing the right of way on sr 1508. Right and left arms
## 5450 12/01/1999 11:18 am Mr. Overman picked up a 75-80 lb. Density ring. He did not feel his back spasm until 2 days later. Mr. Overman was running a density test on soil. Left lower back muscle strain.
## 5451 12/02/1999 01:18 pm Mr. Ledford was cutting and chipping brush in right of way, when a thorn stuck in his left knee. He sought treatment the next day because area became infected. Supervisor: d. L. Carpenter
## 5452 12/02/1999 01:25 pm Mr. Hardee injured his right side of neck on 11/22/99 requiring surgery. He was cutting vegetation on a slopped area with gas weedeater, when the blade hit an object and embedded a puncture wound to Mr. Hardee's neck. Supervisor:
## 5453 12/02/1999 01:31 pm Mr. King was climbing over a barrier when he injured his upper back (cervical) on 11/15/99. Supervisor: steve bridges
## 5454 12/02/1999 01:40 pm Mr. Call fractured his left foot while stepping down of the bed of truck on 11/18/99. His foot slipped off the tongue of asphalt kettle as he fell landing on his foot. Supervisor: jeff robinson
## 5455 12/02/1999 03:26 pm Mr. Williams strained his right shoulder and neck while removing tree limbs from roadway jobsite. Supervisor: j. V. Riddick
## 5456 12/02/1999 03:48 pm employee is a truck driver and possibly the repetitious motion driving all day has caused a problem. Pain in left wrist shooting to the elbow.
## 5457 12/02/1999 03:52 pm Mr. Combs was climbing out of fuel tank void, when he tripped on hoses causing him to fall. Mr. Combs has a 1" cut to his forehead. Supervisor: william loch weems
## 5458 12/02/1999 11:18 am Ms. Thomas has pain in her right hand due to repetitive motion while performing office tasks. Supervisor: lynn chalk
## 5459 12/02/2003 10:27 am (slee) operator of pov pulled into the path of dot vehicle.
## 5460 12/03/1999 08:11 am on October 26, 1999 employee picked up bucket of concrete and pulled something in her back.
## 5461 12/03/1999 08:27 am was in the process of rearranging a classroom (moving and breaking down folding tables). I wrenched my right shoulder. Strained right shoulder.
## 5462 12/03/1999 12:29 pm employee stated he put inmates in van, when he shut the door it shut on his little finger on left hand. Contusion on left pinky finger.
## 5463 12/03/1999 12:41 pm crawling under bridge working, felt burning, stinging, tingling, & tightening in right knee. Torn cartilage in right knee.
## 5464 12/03/1999 12:49 pm noticed a few small areas with rash while working in greenville. Assumed it was a mosquito or something but since then area has gradually grown and rash has gotten worse. Rash on chest, shoulders, neck and head.
## 5465 12/03/2001 05:37 pm (fblackmo) employee was conducting a road test. The customer approached a stop sign and made no indication to stop. Customer slammed on brakes and came within inches from hitting another vehicle in the rear. Employee felt a pop
## 5466 12/03/2002 11:33 am (fblackmo) employee states, he was bitten by a spider while working on pipe line in craven county. Supervisor: g. J. Vonsuskil
## 5467 12/03/2002 12:10 pm (fblackmo) employee states while bending to show another employee how to un-hook a piece of equipment, he felt pain in his lower back. Supervisor: g. R. Cooper
## 5468 12/03/2002 12:50 pm (fblackmo) employee was checking out her tractor to begin the daily mowing. Employee stepped up on the bush hog, she lost her footing causing her to fall hitting her left arm against the bach of the bush hog. Supervisor: t. J. Burc
## 5469 12/03/2003 02:01 pm (fblackmo) employee states while securing his truck load he, slipped and fell off the back of the truck causing the injury to his right ankle. Supervisor: d. W. Fowler
## 5470 12/03/2003 02:29 pm (fblackmo) employee was closing gate when, truck struck him causing the injury to his chest and knee. Supervisor: donald king
## 5471 12/03/2003 02:43 pm (fblackmo) employee was stepping down from truck when, he felt pain in his lower back. Supervisor: w. S. Richard
## 5472 12/03/2003 02:56 pm (fblackmo) employee stepped into a hole while going down an incline when, he felt pain in his right knee. Supervisor: j. L. Brown/g. F. Neal
## 5473 12/03/2003 03:36 pm (fblackmo) employee was installing breaks when, the tool he was using slipped causing the cut to his hand. Supervisor; david bowers
## 5474 12/03/2003 04:02 pm (fblackmo) employee was ranking asphalt when, he felt pain in his groin area. Supervisor: m. H. Thomas
## 5475 12/03/2003 04:13 pm (fblackmo) employee was lifting pallet when, the pallet slipped causing the injury to his little finger. Supervisor; keith wilder
## 5476 12/04/2000 02:23 pm employee was dismounting truck when he misjudged his last step causing him to fall on his right shoulder. Supervisor: s. D. Hinson
## 5477 12/04/2000 02:31 pm employee was helping load a metal grate into back of flat bed squad truck on 11/17/00. Employee did not move his right arm and laid the grate onto his arm. Supervisor: anthony e. Edwards
## 5478 12/04/2000 02:35 pm employee was operating a long arm mower on 8/31/00. He started pulling cable controlled levers on mower when he strained/sprained right hand palm. Supervisor: r. D. Peeler
## 5479 12/04/2000 02:42 pm employee was a passenger in dot vehicle on 11/15/00. Driver of the vehicle tried to Miss A vehicle turning when the vehicle overturned. Accident happened at the intersection sr 1146 and us421 in sampson county. Supervisor: a.
## 5480 12/04/2000 02:50 pm employee was getting out of dump truck on 11/17/00, when he stepped back onto step twisting his left knee. This caused him to fall dislocating his right shoulder to catch himself. Supervisor: b. J. Berryhill, jr
## 5481 12/04/2000 02:56 pm employee was conducting a interm review when she noticed her left thumb was hurting. Supervisor: pamela mckelvy
## 5482 12/04/2001 10:54 am (fblackmo) employee states that while walking off board walk onto the parking lot, employee stepped onto yellow road reflector. Employees ankle twisted causing him to fall to the ground. Supervisor: t. L. Gray
## 5483 12/04/2001 11:08 am (fblackmo) employee was working in drop box on us 74 with a pipe washer when he lost his grip on the fire hose, causing him to twist his right wrist and thumb. Supervisor: m. H. Thomas
## 5484 12/04/2001 11:27 am (fblackmo) employee was cutting tree out of road. The tree was up on bank when the log was cut. The log slipped down bank onto employees foot. Supervisor: d. M. Pressley
## 5485 12/04/2001 11:39 am (fblackmo) m. A. Jones was pulling car forward as employee w. L. Squirrell was walking between a parked carry all and the car m. A. Jones was driving. M. A. Jones struck w. L. Squirrell in the right knee with the bumper of the car. Superv
## 5486 12/04/2001 11:56 am (fblackmo) employee was attempting to remove pin from rubber tire excavator when, metal sheered off going into his left upper arm. Supervisor: r. W. Feher
## 5487 12/04/2003 01:05 pm (fblackmo) employee states while ranking asphalt he, felt a sharp pain in his lower back. Supervisor: lawrence marks
## 5488 12/04/2003 01:15 pm (fblackmo) employee was pushing stones down in hopper with his foot when, his foot slipped causing him to fall on the machine. Supervisor: jimmy shelton
## 5489 12/04/2003 01:25 pm (fblackmo) employee states he lifted a 55 gallon drum full of oil from horizontal to vertical position. Supervisor: ben p. Wilkins
## 5490 12/04/2003 01:40 pm (fblackmo) employee was inspecting jacking operation of pipe when, he came into contact with poison ivy. Supervisor; keith brazell
## 5491 12/04/2003 10:45 am (fblackmo) employee was moving out of the way of a falling log when, the injury occurred to his right knee. Supervisor; r. D. Jordan
## 5492 12/04/2003 11:05 am (fblackmo) employee was pulling tailgate back to clean loose stones off when, the injury occurred to his right leg. Supervisor: lee dry
## 5493 12/05/2000 03:07 pm employee was unloading leaves in a wooded area on 11/17/00. He stepped down off bed of truck; he slipped causing him to turn/twist his left ankle. Supervisor: j. K. Rhyne
## 5494 12/05/2000 03:15 pm employee and inmate was closing tailgate on dump truck; when Mr. Bucher lower back began to hurt. Supervisor: j. D. Lusk 01/08/2001 06:59 am 04/12/2004 11:08 am (gwhite)
## 5495 12/05/2000 03:25 pm while conducting a road test on 11/15/00, a customer backed out of parking lot and struck a parked vehicle. Mr. Huskett has injuries to his head, neck, arms& legs and back areas. Supervisor: sylvia r. Spain.
## 5496 12/05/2000 03:35 pm employee was operating a front end loader on 9/13/00; when he got to close to the edge of the pond and fell in. The operator exited the loader through the window. The employee got sand in his eyes, nose, mouth and ears. He also
## 5497 12/05/2000 04:32 pm employee was lifting a piece of asphalt on 6/30/00; when he strained his lower back. Supervisor: john galloway
## 5498 12/05/2000 04:38 pm employee bent over to remove two empty beverage cans from roadside; when he strained his lower back area. Supervisor: j. C. Jenkins
## 5499 12/05/2001 03:57 pm (fblackmo) employee was attending a training class. Employee took a set in a fold down desk. Employee was pulling the desk up when it slipped out of his hand pinching his little finger. Supervisor: tim harris
## 5500 12/05/2001 04:18 pm (fblackmo) employee was pushing 30 gallons paint drums filled with paint together so they would not move around when he felt a pull in his groin area. Supervisor: jim evans
## 5501 12/05/2001 04:34 pm (fblackmo) employee was in hole at bridge putting in bulkhead when a board was slid into hole, hitting a rock and striking employee in left leg. Supervisor: d. R. Fiscus
## 5502 12/05/2001 04:48 pm (fblackmo) employee was sawing tree, tree started to fall kicking back and hitting employee in the right knee. Supervisor: r. G. Presley
## 5503 12/06/1999 10:04 am Mr. Pierce has hearing loss in both ears due to incidents occurring while using jackhammer and compressor. He stated they (employees) have been using equipment for cutting pavement for 3 weeks without hearing protection nor eye pr
## 5504 12/06/1999 10:14 am Mr. Hewett states he has hearing loss in both ears due to noise from engines that powered the bridge over time. Supervisor: a. M. Lewis, jr.
## 5505 12/06/1999 10:25 am Mr. Shipman was lifting up on an aluminum boat to put in the back of a truck, when he felt pain in back and groin area. Mr. Shipman has a hernia on his left side of groin area and is scheduled for surgery on 12/3/99. Supervisor:
## 5506 12/06/2000 03:17 pm employee bent over to pick up a steel post driver that was on bed of sign truck; when he strained his lower back and right side. He has pain in his back and down into his right leg. Supervisor: thomas e. Johnson
## 5507 12/06/2001 04:03 pm (fblackmo) employee lifted portable scale to put in patrol car and felt a pulling and burning sensation in his lower right abdomen. Supervisor: 2lt. B. N. Stewart
## 5508 12/07/1999 03:32 pm walking through lobby with tile floor, slipped and fell hurting left ankle and right knee.
## 5509 12/07/1999 03:41 pm pulling small trees off of road bank by hand the pine tree spun around and big end of the tree hit my neck and shoulder. Strained neck and shoulder
## 5510 12/07/1999 03:50 pm employee was buffing down the inside of a tire with a buffing tool. Getting ready to install a patch on a tire. Employee was pulling the buffing tool out of tire and bumped the tool on tire causing tool to jump and cut right index
## 5511 12/07/1999 09:10 am repetitious keying of salvage work. Right hand, wrist, and shoulder.
## 5512 12/07/1999 09:16 am employee bumped hard hat on diaphragm. Hard hat tilted and strucked safety glasses. Safety glasses cut employees left eye brow. 02/01/2000 01:08 pm
## 5513 12/08/1999 03:48 pm employee was dismounting a paint machine by using a ladder. While he was grasping the ladder rails to come down off the ladder, his finger got hung on rails. Mr. Staley strained his right hand tendons. Supervisor: l. W. Lashle
## 5514 12/08/1999 04:00 pm Mr. Stewman cut his left leg above the knee on 12/02/99 while grinding paint off the floor. The grinder kicked back causing the injury. Supervisor: d. E. Bowers
## 5515 12/08/1999 04:12 pm Mr. Miller was unloading traffic control devices/signs, when one slipped cutting his right index finger.
## 5516 12/08/1999 09:44 am Ms. Newton was doing her normal job duties on 11/19/99, when she started experiencing lower back pain the next day. She doesn't know what caused the pain. On 11/22/99 she informed her supervisor and stated she wanted to see if th
## 5517 12/08/2000 08:52 am employee was beginning to perform soil tests; when he picked up scales he felt a stinging sensation in his back. The following morning he had pain in his upper (cervical) back. Supervisor: b. F. Strickland
## 5518 12/08/2000 08:58 am employee has pain in joints of her left thumb and pain in both middle fingers. Possibly caused by keying on computer, grasping and picking up work (repetitive motion). Supervisor: lyndia dianne rowe
## 5519 12/08/2000 09:06 am employee was walking down a rip rap slope, going under the bridge; when he lost his balance and fell forward on his right side. He tried to break his fall with his right hand causing pain to his right shoulder/arm. Supervisor: ja
## 5520 12/08/2000 09:17 am employee was lowering a route marker sign to the ground to relocate and removing bolts; when he strained his lower back. Supervisor: c. R. Woody
## 5521 12/08/2000 09:24 am employee was pulling a scale from truck of patrol car to weigh a truck; when he sprained/strained his left shoulder. Supervisor: fsgt. D. B. Stamey
## 5522 12/08/2000 09:29 am employee was walking around the truck to pick up bolts; when he struck (cut) his left ear on pipe of truck. Supervisor: r. F. Minton
## 5523 12/08/2000 09:45 am employee was removing (throwing) trash from truck bed on 11/22/00. He was attempting to step on concrete wall to get off truck and struck the wall. He has bruises to his lower back. Supervisor: r. S. Burton
## 5524 12/08/2000 09:54 am employee was operating a dump truck hauling stones; when she noticed a pain/strain in her right forearm. Supervisor: r. S. Minton
## 5525 12/08/2000 10:02 am employee was clearing right of way when he displaced his vertebrae. He had wedged a tree and was dropping it to the ground; when and inmate stepped into the work area. In an attempt to protect the inmate, the tree kicked back kno
## 5526 12/08/2000 10:20 am employee was installing u-joints in hydraulic pump drive shaft; when he felt pain in his neck and right shoulder areas. Supervisor: r. Milton taylor
## 5527 12/08/2000 10:58 am employee was walking downhill and slipped and fell on grass. He scratched and strained both knees, ankle, legs and strained/sprained his lower back area. Supervisor: joyce evans
## 5528 12/08/2000 11:30 am employee was shoveling dirt around guardrail posts; when he felt a sharp pain in his lower back. Supervisor: j. N. Mixon
## 5529 12/08/2000 11:35 am employee was helping load truck when foreign object debris/grit scratched his left eye. Supervisor: donald king
## 5530 12/08/2000 11:40 am employee was working on grader pulling ditches, hitting stumps, and twisting and turning all day on 8/17/00. This caused him pain in his lower back area. Supervisor: j. C. Pruitt
## 5531 12/08/2003 11:25 am (slee) sov stopped at intersection and was rear ended by pov.
## 5532 12/09/2003 02:45 pm (fblackmo) employee was operating a rammax vibratory roller at jobsite when, he felt pain in his left wrist. Supervisor; j. Ronald lee
## 5533 12/09/2003 02:57 pm (fblackmo) employee was opening window in bathroom when, he mashed his ring finger on left hand. Supervisor: david styron
## 5534 12/09/2003 10:22 am (fblackmo) employee was pulling paper clips when, she felt pain in her fingers. Supervisor: sylvia hall
## 5535 12/09/2003 10:33 am (fblackmo) repetitious movement. Supervisor: jilda mcgee
## 5536 12/09/2003 11:25 am (fblackmo) employee was stopped in the roadway when, her vehicle was struck from behind. Supervisor: r. J. Hollifield
## 5537 12/09/2003 11:37 am (fblackmo) employee was stepping out of a dump truck and slipped when, he landed on the ground causing the injury to his lower back. Supervisor: g. W. Price
## 5538 12/1/2004 02:12 pm (fblackmo) employee was throwing a piece of asphalt on back of truck when, it flew back striking him in the face. Supervisor: iris h. Mccombs
## 5539 12/1/2004 12:28 pm (fblackmo) employee states while stepping over a wall he, stepped into wet concrete causing the injury to his right ankle. Supervisor: aaron powell
## 5540 12/1/2004 12:41 pm (fblackmo) employee states while cutting trees he, came into contact with poison ivy. Supervisor: r. L. Warlick jr
## 5541 12/1/2009 11:46 am (fblackmo) employee states while participating in wellness training he felt pain in his back. The injury is from a pre-existing condition prior to date of this accident. Supervisor: jimmie massengill
## 5542 12/10/1999 04:19 pm Mr. Lane states he has hearing loss due to working in construction for 16 years. Safety appliance/regulation was provided and in use at time of the incident. Supervisor: t. M. Mckeel
## 5543 12/10/1999 04:31 pm Mr. Woodard states he has hearing loss due to working 22 years. Safety appliance/regulation was provided and in use at time of the incident.
## 5544 12/10/1999 08:41 am examiner marshburn was attempting torepair a wire attached to the digital license station. He accidentally cut his right pointer finger.
## 5545 12/10/1999 09:06 am one employee was passing a piece of plywood to Mr Teague and it slipped and landed on Mr. Teague's right middle finger. 02/01/2000 01:30 pm
## 5546 12/10/1999 09:50 am employee was shoveling asphalt off the bed of a dump truck when he twisted and felt something pull in his lower stomach. Right hernia
## 5547 12/10/2002 08:34 am (fblackmo) employee states he was using a machete to cut brushes when, he felt pain in his right wrist. Supervisor: brent cork
## 5548 12/10/2002 08:54 am (fblackmo) employee was walking down aisle when, she stepped on the wheel on chair. Employee states she injured her right ankle and back. Supervisor: pam lett
## 5549 12/10/2002 09:04 am (fblackmo) repetitive keying. Supervisor: sylvia hall
## 5550 12/10/2002 09:32 am (fblackmo) employee was removing a cover to gain access to frame. The frame fell hitting employee on his right foot. Supervisor: c. R. Tyson
## 5551 12/10/2002 09:47 am (fblackmo) employee states while shrubing he slipped on the slope. Trying to catch his balance he put his right hand on the ground and jammed his middle finger. Supervisor: w. M. Tosto
## 5552 12/10/2004 03:23 pm (fblackmo) employee experienced pain in his left hand from pulling cables on sunday (was not approved by supervisor). Stated on form 19 employees right hand surgery is pending, left hand is getting better. (see correspondence). Sup
## 5553 12/10/2007 01:09 pm (blgay) employee was at desk and her chair rolled into a place where the tile was chipped away from an outlet in the floor, causing the chair to turn over. Supervisor: d. M. Buffkin
## 5554 12/10/2007 01:33 pm (blgay) employee was walking up a steep bank after taking photos of bridge, when he felt a sharp pain in right leg. Supervisor: mark callis
## 5555 12/10/2007 02:03 pm (blgay) employee was helping take photos of customers at the dmv office, when employee fainted. Supervisor: dwight godwin
## 5556 12/10/2008 01:48 pm (blgay) employee was picking up sand bags. Water began flowing over the bags and then employee had to pick them up and restack on the side. Afterwards employee says back was sore and left leg was numb below the knee. Supervisor: w.
## 5557 12/10/2010 10:31 am (fblackmo) employee was in a ditch preparing the bottom for driveway pipe to be placed. Went to exit the ditch by backing up the slope and slipped backwards landing on his right elbow. Employee fracture right elbow. Supervisor: ral
## 5558 12/11/2001 01:58 pm (fblackmo) employee climbed on side of dump truck to remove debris (piece of wood 3 x12) off canvas so it could be rolled back to cover load. Shoulder popped when pulling on the log. Supervisor: david l. Lane
## 5559 12/11/2001 02:11 pm (fblackmo) employee was walking through the state employees' parking lot upon arrival to work. At the exit/entrance of parking lot 19, he stepped on some wet leaves in the walkway. Employee slipped, hitting his left knee, and en
## 5560 12/11/2001 02:29 pm (fblackmo) employee was using a drill press to make a bigger hole in angle iron. Pressure of clamp came lose, causing the angle iron to turn hitting employees' left finger. Supervisor: wallace laws
## 5561 12/11/2001 02:41 pm (fblackmo) employee was installing pipe and does not know when exactly the injury happened. Supervisor; kennie covington
## 5562 12/11/2001 02:54 pm (fblackmo) employee was climbing over girder while holding onto the stirups. Employee left foot slipped, while holding onto the stirrup causing a cut to his left arm. Supervisor: k. C. Batcherlor jr
## 5563 12/11/2001 03:09 pm (fblackmo) employee was helping load motor grader tires into a pickup. Supervisor: ralph thomas mcmanus
## 5564 12/11/2001 03:26 pm (fblackmo) employee states that while climbing up steps off road truck (steps connected by cables) cable shifted causing foot to turn awkwardly. Supervisor: darrell parson
## 5565 12/11/2001 04:12 pm (fblackmo) employee was carrying a portable traffic sign. Employee stepped off roadway onto the shoulder and twisted his ankle. Supervisor: dennis r. Ross
## 5566 12/11/2001 04:33 pm (fblackmo) employee was trying to remove a rock that was lodged in the tailgate. Employee pulled the gate to dislodge the rock when his hand got caught in the tailgate. Supervisor: j. C. Penland
## 5567 12/11/2001 04:45 pm (fblackmo) employee was mounting equipment using 3pt. Mount when his foot slipped from the ladder causing his arm to extend to a straight position. Employee arm was cut as he fell. Supervisor: janice bobo
## 5568 12/11/2001 05:51 pm (fblackmo) employee was stepping up onto fuel truck when his foot slipped and his knee hit the tank on the truck. Supervisor: m. O.. Anderson 1/26/2005 09:16 am (mpark) *show all bills to joyce*
## 5569 12/11/2001 12:15 pm (fblackmo) employee was picking up chain off the ground. Employee went to stand up and felt a catch in his lower back causing him to fall back on the ground. Supervisor: h. M. Thompson
## 5570 12/11/2001 12:36 pm (fblackmo) employee was cutting the limbs of of a downed tree. He turned and began walking away from the tree. The tree rolled on the ground and a large limb struck employee in the back of his head. The limb forced him down and
## 5571 12/11/2002 01:22 pm (fblackmo) employee states while sitting at red light on new hope road, he was struck in the back by a private vehicle. Supervisor: sgt. J. T. Burgin
## 5572 12/11/2002 01:40 pm (fblackmo) employee states while driving tandem dump truck during snow and ice, the body of the truck came up causing pain in his back area. Supervisor: w. R. Loyd jr
## 5573 12/11/2002 01:51 pm (fblackmo) employee states, she was returning to her hotel after having dinner when, she slipped and fell. Supervisor: b. S. Sisk
## 5574 12/11/2002 02:02 pm (fblackmo) employee states while lifting and pulling open the warehouse garage door, experienced pain in his lower back all day. Supervisor: keith hill
## 5575 12/11/2002 03:44 pm (fblackmo) employee states he was reaching down to pick up lid for paint drum when, he felt pain in his back area. Supervisor: franklin bullock
## 5576 12/11/2002 10:38 am (fblackmo) employee was looking at a "ditch witch" that the contractor had recently brought to the project. After noticing that equipment was leaking anti-freeze, the operator reached into the cab and accidentally dropped the blad
## 5577 12/11/2003 01:46 pm (fblackmo) employee was qualifying with is issued service weapon when, he felt pain in his right wrist. Supervisor: t. S. Collins
## 5578 12/11/2003 01:56 pm (fblackmo) employee was picking up a deer when, he felt pain in his back. Supervisor: g. G. Caudill 11/6/2006 01:30 pm (fblackmo) claim closed. Clinched on 04/12/2005. Do not use.
## 5579 12/11/2003 02:10 pm (fblackmo) employee was working on project u-2107d when, he jumped a ditch causing pain to his left knee. Supervisor: darren howell
## 5580 12/11/2003 02:20 pm (fblackmo) employee was pulling a deer off the back of his truck when, he fell in ditch causing pain to his lower back. Supervisor: g. J. Liverman
## 5581 12/11/2008 05:04 pm (fblackmo) employee was going through some things inside vehicle when, something inside the vehicle she touched cut her right hand. Supervisor: robert e. Flaherty
## 5582 12/11/2009 09:34 am (fblackmo) employee was climbing into the cab of the tractor trailer when, she felt pain in her lower back area. Supervisor: p. Sheldon
## 5583 12/12/2000 03:05 pm employee was loading barrels on truck; when his work vest got caught on bracket causing him to fall on his left arm. Supervisor: d. D. Austin
## 5584 12/12/2000 03:13 pm employee was removing tool from truck; when the weight of the dcp (dynamic cone penetrometer) dropped and mashed his right little finger. Supervisor: christopher gilliam 01/09/2002 10:43 am (twerner)
## 5585 12/12/2005 03:25 pm (blgay) employee lifted 19. 5 wheel from tire changer after repairing tire. Employee felt a little burning between legs. Supervisor: james a. Paschal
## 5586 12/12/2006 03:51 pm (fblackmo) employee lost balance while squatting down cleaning guides on scanner, she hit her head on cubical. Supervisor: wilma dale ellis
## 5587 12/12/2006 08:03 am (fblackmo) employee states he experienced occupational hearing loss. Supervisor: tommie peace
## 5588 12/12/2006 08:50 am (fblackmo) employee was attempting to turn left onto unpaved road when private vehicle passed grader on left side, struck front blade of grader, skidded 389 feet, and landed in farm field. Employee suffered cervical strain from imp
## 5589 12/12/2006 09:42 am (fblackmo) employee was standing on running board of tandem truck (passenger side). Employee was adjusting side mirror on truck when, he lost his footing and fell on asphalt. He hit asphalt on his right side and arm. Employee did n
## 5590 12/12/2006 10:05 am (fblackmo) employee was using penmul asphalt release and a steam genny to clean equipment. Employee stated that the fumes from the penmul caused him to get a server headache. Supervisor: k. D. Register
## 5591 12/12/2006 10:25 am (fblackmo) employee was lighting burners on asphalt tanker to heat asphalt for bst operation. While lighting one of the burners the raw fuel and fire blew back on employees right arm. Supervisor: kelly perr
## 5592 12/12/2006 12:19 pm (fblackmo) employee was attempting to straighten a sign on state road 1722, the splicing bolts sheared and the sign post struck him in the upper right side of head. Supervisor: p. L. Eaker
## 5593 12/12/2006 12:48 pm (fblackmo) employee experienced pain in her right wrist due to repetitive typing and mouse use. Supervisor: t. Lane mallone
## 5594 12/12/2006 12:59 pm (fblackmo) employee was working with shoulder crew performing curb and gutter operations. Employee was shoveling grass and dirt when, his shovel hit a joint in the cement causing injury to his right wrist. Supervisor: j. W. White
## 5595 12/12/2007 01:39 pm (blgay) employee was driving a tri-axle dump truck to his job, when a private vehicle pulled out in front of him causing a head on collision. Supervisor: jimmy whitman
## 5596 12/12/2008 02:59 pm (fblackmo) employee fell off chipper machine striking his head on pavement. Supervisor: d. M. Honeycutt
## 5597 12/12/2008 03:28 pm (fblackmo) employee was changing tip on pressure washer when, he cut his right index finger. Supervisor: dustin smith
## 5598 12/13/1999 07:55 am employee was lifting oak boards, cutting the boards to size, placing the boards on the trailer frame, drilling holes in the boards from the top side, then installing the nuts and washers while laying on a creeper under the equipmen
## 5599 12/13/1999 08:03 am john was digging a hole with posthole diggers and later complained that his hand was sore. Tenosynonitis on right hand.
## 5600 12/13/1999 08:12 am employee was hooking salt spreader to back of truck. When he raised up, he bumped his head on the corner of salt spreader cutting a gash in the top of his head. Laceration on right tip of head.
## 5601 12/13/1999 08:19 am employee was lifting crs-2 hose over his head while letting product drain into tar kettle for a prolonged period casing strain to left middle back.
## 5602 12/13/2000 08:57 am employee was lifting a ram to the scaffolding, when he strained his lower back. Supervisor: g. D. Fine
## 5603 12/13/2000 09:01 am employee was loading spreader on truck; when the spreader came back striking/bruising his left elbow. Supervisor: j. F. Bishop
## 5604 12/13/2000 09:11 am employee was setting a traverse point on shoulder of road and stepped into a hole covered with grass and strained/sprained his right knee. Supervisor: phillip d. Manley
## 5605 12/13/2000 09:20 am employee was attempting to release a chain binder on a sand spreader; when he mashed his right middle finger. Supervisor: claude edwards
## 5606 12/13/2000 09:30 am employee was changing blades on brush chipper with a wrench; when the wrench slipped off the nut cutting his right thumb (4 stitches). Supervisor: f. E. Floyd
## 5607 12/13/2000 09:38 am employee states he climbed up on truck to check inside bed to make sure all asphalt was clean/cleared. He stepped down on tire and lost his footing striking the inside of the rim. He bruised his left foot and strained/sprained his
## 5608 12/13/2001 02:14 pm (slee) employee was stopped, waiting to turn left, with his turn signal on into the job. He looked into his rear view mirror and saw a truck approaching fast. The private vehicle tried to slow down at the last minute but he hit
## 5609 12/13/2001 04:51 pm (fblackmo) employee had stepped up on athey loader to grease conveyor belt. When finished, he stepped down off the loader, then stepped backwards into a hole, causing the injury to his ankle. Supervisor: g. E. Strickland
## 5610 12/13/2001 12:40 pm (fblackmo) employee was climbing onto roller when he lost his footing and fell. Supervisor: gary morris
## 5611 12/13/2002 01:23 pm (fblackmo) employee was shoveling asphalt from back of truck when, he slipped and fell. Supervisor: david lowery
## 5612 12/13/2002 01:35 pm (fblackmo) employee was removing trees from roadway with plow. Tree sprung over plow striking windshield, glass went into employees eye. Supervisor: j. P. Ingram, pe
## 5613 12/13/2002 01:46 pm (fblackmo) employee was cutting debris on side of road that had fallen because of snow and ice. Employee touched limbs with the chainsaw blade, the limb broke, striking employee in his left knee area. Supervisor: roger s. Deal
## 5614 12/13/2002 01:58 pm (fblackmo) employee was laying on his stomach of bed of trailer, he was pulling a load binder to tighten down a front end loader when, he felt pain in his stomach area. Supervisor: roger s. Deal
## 5615 12/13/2002 12:53 pm (fblackmo) employee states, he was driving a low boy when, a private vehicle pulled out into his path. Employee hit private vehicle on drivers side. Supervisor: s. R. White 11/6/2006 01:36 pm (fblackmo) claim closed. Clinched o
## 5616 12/13/2004 03:37 pm (slee) vehicle fish tailed out of control and went into the path of an oncoming vehicle.
## 5617 12/13/2004 10:26 am (fblackmo) employee was attempting to close tailgate on dump truck when, he mashed his right little finger. Supervisor: c. F. Vick
## 5618 12/13/2004 10:45 am (fblackmo) employee states while leaving building spray from pest control got into her eyes, face, and lips. Supervisor: r. M. Huffman
## 5619 12/13/2004 11:26 am (fblackmo) employee was installing loader bucket. While installing first pin, the bucket shifted causing employee to strike his left middle finger breaking it. Supervisor: carlton inman
## 5620 12/13/2004 11:39 am (fblackmo) employee was removing old bush axe from a work truck and swapping them out for new bush axes. In the process of removing one of the old bush axes, the bush axe slipped casing a cut to his right wrist. Supervisor: j. H. Fre
## 5621 12/13/2005 02:02 pm (fblackmo) employee was clearing right of way when, he came into contact with poison ivy on arms and face. Supervisor: bruce branch
## 5622 12/13/2005 02:13 pm (fblackmo) employee had garage door open when, saw dust blew into his eyes. Supervisor: david findley
## 5623 12/13/2005 02:22 pm (fblackmo) employee was inspecting shipment of plow bolts when, he felt pain in his back. Supervisor: patricia a. Mitchell
## 5624 12/13/2005 02:42 pm (fblackmo) employee stated he was sliding a 6x12x9 timber along the top of jacks to get it out from under bridge when, it slid off of the second jack, mashing his right hand and injuring his middle finger. Supervisor: eric allen s
## 5625 12/13/2005 02:57 pm (fblackmo) employee twisted his left hand when, he slipped off the step of dump truck. Supervisor: a. H. Thornton
## 5626 12/13/2005 06:20 pm (fblackmo) employee was loading buckets of asphalt waste into the back of truck when, he felt pain in his back. Supervisor: Jan t. Womble
## 5627 12/13/2005 09:32 am (fblackmo) employee states he had a migraine, felt dizzy, experienced slurred speech, cold chills, and sweating. Supervisor: a. J. Crumpler
## 5628 12/13/2005 09:49 am (fblackmo) employee was slowing down for traffic at traffic light when, private vehicle hit him in the rear. Supervisor: c. W. Wethington jr
## 5629 12/13/2005 10:09 am (fblackmo) employee was waiting in line for a wreck to be cleared when, he was struck in the rear by a private vehicle. Employee complained of a bad headache and was sore. Supervisor: andy heath
## 5630 12/13/2005 10:27 am (fblackmo) employee was clearing right of way when, he came into contact with poison ivy on arms and face. Supervisor: james smith
## 5631 12/13/2006 09:44 am (fblackmo) employee was transferring tools, etc. From pick up truck to work box on rig and the wind blew the lid of box down and it landed on his head causing a laceration to his scalp area. Supervisor: m. R. Holmes
## 5632 12/13/2007 12:53 pm (blgay) employee was installing a 5' post for a stop sign and caught left thumb between hammer and post. Supervisor: roger arrowood
## 5633 12/14/1999 04:28 pm Mr. Pritchard was using jackhammer on east fork road in guilford county on 12/8/99, when jackhammer blade got stuck. A co-worker tried to help him pull it out when he felt a pain in his lower back. Supervisor: al smith
## 5634 12/14/1999 09:33 am Mr. Goodwin strained his lower back on 11/10/99. Mr. Goodwin states he stepped in a hole and had to jump the ditch in order to avoid falling. When he jumped the ditch he twisted/strained his back. Supervisor: t. M. Little
## 5635 12/14/1999 09:41 am employee was using chain saw to cut flooring boards at a bridge site, when a piece of metal came in over his safety glasses and lodged in his left eye. Supervisor: w. D. Watkins 02/01/2000 11:03 am
## 5636 12/14/1999 09:47 am Mr. Havard was coming off of ferry to answer phone in the office, when he felt and heard a "pop" in his left knee. Supervisor: t. L. Gray
## 5637 12/14/1999 09:58 am Mr. Johnson was struck by a private vehicle while flagging traffic on nc 210 on 10/28/99. Two private vehicles had stopped and was waiting to be flagged through, when another private vehicle came behind them and could not stop. O
## 5638 12/14/2001 08:51 am (fblackmo) employee was working on "dog wagon" with another employee. The crew was responding to a report of a dead deer in the roadway on state road 1111. During the process of picking the deer up loading it onto the truck the e
## 5639 12/14/2001 09:07 am (fblackmo) employee was sawing limb from tree with power saw and as the limb fell it stuck employee on his left foot causing pain. Supervisor: fred street jr
## 5640 12/14/2001 09:35 am (fblackmo) employee was climbing onto squad truck. Employees foot slipped causing him to lose his balance and fall. Employees hand was caught in bed rail of truck causing the injury. Supervisor: d. M. Pressley
## 5641 12/14/2006 11:07 am (fblackmo) employee was walking when, she tripped on sidewalk causing injury to her elbows. Supervisor: andy gay
## 5642 12/14/2007 03:25 pm (fblackmo) employee was removing vegetative debris during a right of way clearing operation and was stung multiple times by a swarm of yellow jackets. Employee was stung on his upper and lower back, both legs, arms, head, neck, and
## 5643 12/14/2007 03:42 pm (fblackmo) employee was going to the bathroom when, he was bitten by a spider on his upper left leg. Supervisor: mark conner
## 5644 12/14/2007 04:05 pm (fblackmo) employee was lifting fifty pound weights (volumeters) when, he felt pain in his lower back area. Supervisor: joe lockamy
## 5645 12/14/2007 04:33 pm (fblackmo) employee went to check the coding tower in fenced area when, he was grabbed and fell back into the chili room onto a pump. Supervisor: ricky davis
## 5646 12/14/2007 07:28 am (blgay) employee was tapping a retaining pin back into place after lubricating an auger on a tailgate spreader. A piece of rust or metal hit employee in his left eye as he tapped the pin. Supervisor: dwayne blake
## 5647 12/14/2007 07:52 am (blgay) employee was removing a sign rack from the bed of a pickup by holding to one support leg. The lock clip simultaneously released allowing the sign rack to fall on employees left hand that was resting on the top of the closed
## 5648 12/14/2007 11:10 am (fblackmo) employee was walking up and fell on an embankment on the west side of the dmv headquarters parking lot (state street). The incident did not occur on state property, by the paved area. Employee complained of hip and back
## 5649 12/14/2007 12:25 pm (fblackmo) employee began to experience weakness, numbness, tingling, and pain in her right wrist and forearm while typing on the computer, using the mouse, and working with the mail. Employee states that due to the repetitious act
## 5650 12/14/2009 10:45 am (blgay) employee was traveling in ncdot truck, when a pv ran stop sign and hit the front of ncdot truck. Supervisor: stan young
## 5651 12/14/2009 11:32 am (blgay) employee was a passenger in crew cab truck. When driver applied brakes, employee went forward and hit right side of head on windshield, causing windshield to break. Supervisor: tommy culberson
## 5652 12/14/2010 02:43 pm (fblackmo) employee was using a wrenching bolt, wrench slipped off bolt crushing ring finger on right hand. Supervisor: terry gray
## 5653 12/14/2010 03:13 pm (barnes) employee was digging crosslines on sr 1132 roaring creek rd. He put his arm down by his side and was stung on his forearm. Employee injured right forearm. Supervisor: robert k. Payne
## 5654 12/14/2010 03:41 pm (barnes) employee picked up a piece of wood from bridge#151 in guilford county that had a bolt in it. The bolt was cut off with a torch. Employee burnt his left hand on the bolt that was cut off. Employee injured his left hand. Su
## 5655 12/15/1999 01:56 pm employee was walking through a pipe when he stepped on a bolt that was holding the pipe together hurting his right ankle.
## 5656 12/15/1999 02:02 pm employee was changing tire on backhoe, reached to remove tire & tractor chassis trapped finger cutting left hand 4th finger.
## 5657 12/15/1999 02:32 pm employee was repairing damaged road signs on 10/21/99 in watauga county. Mr. Faw stated when he pulled a broke 4x6 post from the ground, he stepped in the post hole straining his right leg. Supervisor: dwayne a. Bauguess
## 5658 12/15/2005 03:07 pm (fblackmo) employee was using a fence driver to install roadway fence when, driver slipped mashing employees finger between fence and driver. Supervisor: greg mccracken
## 5659 12/15/2005 04:11 pm (fblackmo) employee was cutting trees when, branch fell striking him on his left side and knocking him to the ground hitting his right side. Supervisor: c. R. Adams
## 5660 12/15/2005 10:41 am (fblackmo) employee was getting out of his vehicle and coughed. He felt a sharp pain in his right side. Supervisor: j. M. Delapp
## 5661 12/15/2006 04:34 pm (fblackmo) employee was lifting trailer tongue of arrow panels to truck when, he felt pain in his back. Supervisor: joe justice
## 5662 12/15/2006 04:45 pm (fblackmo) employee was stepping out of cab of truck when, he felt pain in his left knee area. Supervisor: mary elle white
## 5663 12/15/2006 05:08 pm (fblackmo) employee was rolling 18' pipe on trailer and turning pipe on trailer. A mild pain came in back, as day went by more pain and stiffness in back and later the evening severe pain in lower back. Supervisor: t. F. Bray
## 5664 12/15/2006 05:23 pm (fblackmo) employee was standing on the side rail on the drivers side of a tandem dump truck bed. He raised the back screen of a good roads spreader to open position which is approx. 1 1/2 inches past vertical. He lifted and dropped
## 5665 12/15/2006 05:39 pm (fblackmo) employee states that a wall fell on another employee and while lifting wall off employee he felt pain in right shoulder. Employee states it has only been one month since he had rotator cuff surgery on right shoulder. Sup
## 5666 12/15/2006 11:26 am (fblackmo) employee was stationary at stop sign when, his state owned vehicle was struck in the rear by a suv. Employee complained of neck and upper shoulder soreness. Supervisor: t. S. Collins
## 5667 12/15/2006 11:37 am (fblackmo) employee was stepping down off a front end loader when, his boot got hung on step causing him to fall and injure his right arm. Supervisor: chip speight
## 5668 12/15/2009 01:47 pm (blgay) employee was sweeping under the drive on life in the shop and he raised up hitting his head on the ramp of the life. Supervisor: richard freeman
## 5669 12/15/2009 02:20 pm (blgay) employee was pulling a nylon rope connected to a chain through a cross-line pipe to clean out the pipe. Supervisor: thomas chavis
## 5670 12/15/2009 11:27 am (blgay) employee had been clearing trees and brush from right of way. While riding to lunch employee noticed a tick embedded in his left arm. Employee attempted to remove by conventional methods, but tick was to deeply embedded and
## 5671 12/16/1999 08:47 am employee stepped on nail covered by leaves in woods. Puncture wound in left foot.
## 5672 12/16/2003 03:53 pm (fblackmo) employee was shoveling rock to repair a driveway when, he felt pain in his chest. Supervisor: robert a. Mccarley
## 5673 12/16/2003 04:07 pm (fblackmo) employee was stepping down off vehicle and hit his face on the hay mulcher chute. Supervisor: robert a. Mccarley
## 5674 12/16/2003 04:16 pm (fblackmo) employee was standing on truss when it gaveway causing the injury to his ankle, knee, and cuts to face. Supervisor: a. W. Childres
## 5675 12/16/2003 04:28 pm (fblackmo) employee was coducting a basic inspection when, she stepped off the curb causing the injury to her right ankle. Supervisor: sylvia spain
## 5676 12/16/2003 10:38 am (fblackmo) employee was sitting at computer keying when, she felt something on her leg. Employee didn't realize that something had bitten her on lower left leg until the next morning. Supervisor: sylvia hall
## 5677 12/16/2003 11:15 am (fblackmo) employee states while cutting trees she came into contact with poison ivy. Supervisor: k. Blazer
## 5678 12/16/2003 12:26 pm (fblackmo) employee was loading wood into loader, wood fell and hit right hand. Supervisor: johnny ransdall
## 5679 12/16/2005 04:31 pm (fblackmo) employee was getting out of truck during drill when, he slipped on slope causing the injury to his left ankle. Supervisor: clinton b. Little
## 5680 12/16/2005 04:51 pm (fblackmo) employee was pushing ice chest full of ice when, it slipped off the cart striking his left leg. Supervisor: alicia simmons
## 5681 12/16/2008 01:07 pm (blgay) employee was hit in the rear and pushed into another car in front of him. Supervisor: mark thomas
## 5682 12/16/2008 01:20 pm (blgay) employee was walking to the back of truck to get chaps for chain saw and tripped on a small stump that was covered with grass. Employee fell on another stump injuring his ribs. Employee thought he was okay, but realized he
## 5683 12/16/2008 03:06 pm (fblackmo) employee was walking from his grader to fellow employee when, he stepped on uneven ground, turing his right ankle, can causing fracture. Supervisor: r. N. Harden
## 5684 12/16/2009 03:08 pm (blgay) employee was crack pouring on sr1533. While operating spray wand on the back of the machine, employee started having pain between his shoulder blades. Employee stated as the morning progressed, it gradually got worse. Super
## 5685 12/16/2009 03:37 pm (blgay) employee climbed out of a truck and took one step back and tripped over a block of wood used to prop up a snow plow. Employee fell back and injured his left hip when he hit the ground. Supervisor: edwin austin
## 5686 12/16/2009 04:07 pm (blgay) employee was conducting a criminal interview at 58 lindsey lane in nebo, nc 28761. Employee was bitten by a small white dog. The dog bite was on the right leg, close to the shin. Supervisor: gary mcintyre
## 5687 12/16/2009 04:27 pm (blgay) employee was emptying trash cans off the back of a pickup truck. One of the cans slipped on the tailgate causing him to get off balance and strain his back. Supervisor: danny parker
## 5688 12/16/2009 08:48 am (fblackmo) employee was pulling limbs up slope to fed in chipper when, he felt pain in his abdomen area. Supervisor: d. M. Honeycutt
## 5689 12/17/2001 04:15 pm (fblackmo) employee states that, while checking grade stakes on job site edge of pavement the asphalt gave way and he slid down the side of the embankment. Employees left leg slid down hillside causing his left knee to hurt. S
## 5690 12/17/2001 04:41 pm (fblackmo) employee was attempting to remove the salt sprayer from the back of a dump truck. The chain hoist hook slipped off of the sprayer safety latch causing the sprayer to fall and, in doing so, it hit the employee on his le
## 5691 12/17/2001 05:15 pm (fblackmo) employee strained a groin muscle while pulling on asphalt tank suction hose trying to free it from the bottom of the asphalt tank. Supervisor: l. O. Ethridge
## 5692 12/17/2002 02:24 pm (jgibson) employee was heading north on us 21 when he saw a vehicle with 2 hispanic males lose control and start to slide toward him. He stopped, hoping they would Miss Him or get stopped. They struck his truck then turned and sp
## 5693 12/17/2002 02:27 pm (fblackmo) employee was operating a chainsaw cutting a falling tree from the ice storm on us 64. The broken part of the tree fell toward employee striking him on his back, causing him to twist his foot. Supervisor: bobby lewis
## 5694 12/17/2002 03:41 pm (fblackmo) employee states he had walked off right of way to the edge of woods when, he stepped into a hole causing the injury to his right ankle. Supervisor: carlis smith
## 5695 12/17/2002 03:51 pm (fblackmo) employee states while exiting a ladder, felt pain in his left ankle. Supervisor: william t. Stone
## 5696 12/17/2002 09:57 am (fblackmo) employee states, on I-40 west in a 1999 dodge mini-van (91741) around mile marker 301, a black 1997 ford explorer was in the passing line when, it hit a patch of ice. The driver of the ford explorer struck employee on Dr
## 5697 12/17/2002 10:20 am (fblackmo) employee was walking on steep slope when, the injury occurred to his right ankle. Supervisor: j. L. Mcdonald
## 5698 12/17/2003 09:31 am (fblackmo) employee states file boxes fell on her arm while trying to update calendar. Supervisor: ann strickland
## 5699 12/17/2003 09:46 am (fblackmo) employee stepped in a hole while flagging traffic causing the injury to his right leg. Supervisor: r. E. Austin
## 5700 12/17/2003 09:57 am (fblackmo) employee was using a bush axe when he cut his finger on right hand. Supervisor: a. J. Mintz
## 5701 12/17/2003 11:23 am (fblackmo) employee slipped and fell on wood ramp causing the injury to his back. Supervisor: a. R. Wells
## 5702 12/17/2003 11:46 am (fblackmo) employee was stepping out of truck when, his foot slipped causing the injury to his left arm. Supervisor: b. J. Berryhill jr
## 5703 12/17/2003 12:09 pm (fblackmo) employee was operating a dump truck when he pulled off the to the shoulder of road to let a over-sized mobile home go by he, hit something that caused pain to his lower back. Supervisor: j. E. Walters
## 5704 12/17/2004 10:11 am (sshort) employee strained his lower back, side soft tissue area (flank) while moving office furniture from the office to a storage container. Supervisor: mike mckeel
## 5705 12/17/2007 02:13 pm (fblackmo) employee was mixing procreate to repair bridge deck. He heated the procreate and was pouring part a in a five gallon bucket to be mixed. When he went to pour it, it spilled on his and and glove causing a burn to his righ
## 5706 12/17/2007 02:24 pm (fblackmo) employee was waking back into the building after giving a road test when, her left ankle turned over causing her to fall. Supervisor: debbie hubbard
## 5707 12/17/2007 11:21 am (fblackmo) employee states that her shoe got caught on the bottom of the visage cabinet which caused her to fall on the floor. Employee felt pain in her left foot, right knee, and right arm. Supervisor: sandra harris
## 5708 12/17/2007 11:58 am (fblackmo) employee was clearing brush around flower bed when, he was bitten by a tick on his chest area. Supervisor: chris vause
## 5709 12/17/2007 12:08 pm (fblackmo) employee was on his way from the office to the project site when, private party ran stop sign and hit employee. Employee was sore and went to the doctor to get checked out. Employee was not injured. Supervisor: jason sa
## 5710 12/17/2007 12:41 pm (fblackmo) employee was stepping off of a jack block and twisted his right ankle. Supervisor: anthony cooke
## 5711 12/17/2008 10:56 am (fblackmo) employee was taking personnel hiring packages out of file drawer when, she was bitten by an insect on left hand. Supervisor: amanda olive
## 5712 12/17/2009 01:26 pm (blgay) employee was stepping down from the tailgate on the crew cab, when his right knee gave way. Supervisor: tammy johnson
## 5713 12/17/2009 07:05 pm (fblackmo) employee got his finger caught between the lifting gate and truck causing a deep laceration to the right pinky finger. Supervisor: roger pulcheon
## 5714 12/18/2000 02:36 pm employee was installing starter on truck; when a foreign object fell into his left eye. Supervisor: david e. Bowers
## 5715 12/18/2000 02:41 pm employee was attempting to jump a ditch; when his left foot hit the top of the ditch bending his foot backwards. He fractured the second and fourth toes on his foot. Supervisor: m. S. Reese
## 5716 12/18/2000 02:46 pm employee slipped and fell striking his tailbone on dump truck bed on 11/30/00. Mr. Marks was exiting the truck at time of incident. Supervisor: roy donald pittman
## 5717 12/18/2000 02:52 pm employee was pulling on plastic pipes; when he slipped and fell on deck straining his lower back (left side). Supervisor: b. R. Moore
## 5718 12/18/2000 02:58 pm employee was driving on I-85 north in gaston county; when his vehicle was struck from behind by a tractor trailer truck. Mr. King was hospitalized and has injuries to his vertabae in his neck, left shoulder and both hands (numbnes
## 5719 12/18/2000 03:06 pm employee was struck in the rear while assisting a disabled vehicle on 12/8/00. A private vehicle struck imap truck pushing it into the disabled vehicle and striking Mr. Brown. Mr. Brown has bruises and contusions to his right arm
## 5720 12/18/2001 02:03 pm (fblackmo) employee was climbing out from back of dump truck when he missed his step causing employee to fall striking upper shoulder and neck on the body of the truck. Supervisor: b. R. Knowles 01/09/2002 10:36 am (twerner)
## 5721 12/18/2001 02:22 pm (fblackmo) employee states that he was scrubbing on a slope when his feet slipped, employee tried to stop his fall causing the injury to his left hand. Supervisor: ronald canady
## 5722 12/18/2001 02:44 pm (fblackmo) the crew was in the process of installing pipe with backhoe but could not get the joints to close with the equipment. Therefore, a pry bar was used to close the joints. Employee was in the process of adjusting the end
## 5723 12/18/2001 03:11 pm (fblackmo) employee states that while working in the warehouse and while turning left his back started to hurt. Supervisor: terry l. Harris
## 5724 12/18/2001 03:30 pm (fblackmo) employee states that a piece of rope used to operate a drop hammer became embedded in the center of his right eye. It could not be removed by a q-tip or tissue. Once the doctor removed the object it left a scratch on e
## 5725 12/18/2001 03:58 pm (fblackmo) employee was lifting dead animal from roadside and loading in truck when he felt a sharp pain in left side. Supervisor; r. D. Davis
## 5726 12/18/2001 04:22 pm (fblackmo) employee was putting sandbag on road closed barricades on state road 1300 when sand and other particles from the bags went up employees nose and eyes causing much discomfort. Supervisor: o. D. Marcer
## 5727 12/18/2001 04:52 pm (fblackmo) employee was standing behind a swb dump truck while dumping asphalt out to fill a drop off. The asphalt was rather cold and a large chunk came out of the body while it was being dumped and struck employee on the left sh
## 5728 12/18/2001 12:46 pm (fblackmo) employee was putting bolts in a road closing sign when the post came a lose hitting the employee in the face and on left ear. Supervisor: horace huff
## 5729 12/18/2002 07:30 am (fblackmo) employee states, snow plow on front of truck caught onto rail road tracks. The jerking motions caused employee to experience pain in his right shoulder and rib area. Supervisor: j. Mark leatherman
## 5730 12/18/2002 07:43 am (fblackmo) employee was cutting tree with chain saw when, tree swung around hitting employee in back. Supervisor: h. Southerland
## 5731 12/18/2002 07:57 am (fblackmo) employee was typing data entry information when, a staple hit her in the left eye. Supervisor: brian hunter
## 5732 12/18/2002 08:39 am (fblackmo) employee was lifting sign rack when, felt pain in his right wrist. Supervisor: carlis smith
## 5733 12/18/2002 08:52 am (fblackmo) employee states while retrieving equipment from bin, the top of the bin fell on his left hand. Supervisor: jim allen
## 5734 12/18/2002 12:06 pm (fblackmo) employee states while getting tool out of box, lid fell on his hand. Supervisor: j. T. Honeycutt
## 5735 12/18/2002 12:16 pm (fblackmo) employee was removing seat from motor grader (equipment #948-6789) when, he felt pain in his shoulder and neck area. Supervisor: danny clapton
## 5736 12/18/2002 12:27 pm (fblackmo) employee was removing a plumbing fitting inside vault, using pipe wrench employee felt pain in his back. Supervisor: lee garrison
## 5737 12/18/2002 12:37 pm (fblackmo) employee states while moving materials to wood chipper, felt pain in his left shoulder. A. L. Smith
## 5738 12/18/2002 12:48 pm (fblackmo) employee was lifting forks form one backhoe to another when, the fork slipped catching his fingers between the bucket and fork. Supervisor: donald king
## 5739 12/18/2007 10:05 am (fblackmo) employee allege that an illness/injury occurred on/about 12/25/2005 due to his lungs being exposed to asphalt chemicals. The time, actual date, and location of the event is not known. Supervisor: gordy eurr 2/5/2008 09
## 5740 12/18/2009 01:11 pm (fblackmo) employee was shoveling millin off the back of crew cab truck when, she hit a piece of milling causing pain to her lower back. Supervisor: gordy eure
## 5741 12/18/2009 11:32 am (bhenders) road oil employee was on loan to craven maintenance. Employee was driving a loaded tandem truck. While driving through some curves in the road, the load in his truck shifted causing the truck to lean. As the employee
## 5742 12/19/2000 09:30 am employee was unloading hay from truck when the truck took off. This caused Mr. Hines to slip and fall on his left knee. Supervisor: clay p. Tyre
## 5743 12/19/2000 09:36 am employee was mowing the grass on sr 1133; when he hit a hole on shoulder of road. Mr. Dail left hip was jarred causing pain. Supervisor: carroll thomas
## 5744 12/19/2000 09:44 am employee came in contact with poison ivy plants while using chain saw on sr 1421 on 11/22/00. Mr. Weatherman has poison in both eyes. Supervisor: b. Boone
## 5745 12/19/2000 09:49 am employee was removing chunks of frozen salt on top of spreader; when he lost his footing on the snow/ice. Mr. Warf caught himself on bar and pulled/strained muscles in his lower back. Supervisor: s. G. Foster
## 5746 12/19/2000 09:55 am employee slipped and fell when he stepped on a patch of ice near steps of trailer. His feet slipped out from under him landing flat on his back. He also hit his right elbow and jarred his neck and head. Supervisor: ray stone
## 5747 12/19/2000 10:04 am employee was taking off tailgate spreader; when the pin came out striking Mr. Tabron on his left cheek bone. Supervisor: charles e. Moore
## 5748 12/19/2000 10:10 am employee was pulling a heavy object up to top of scaffold with a rope; when he lost his hold on the rope. Mr. Mahaffey caught the rope causing pain in his lower back. Supervisor: eric allen schenz
## 5749 12/19/2000 10:14 am employee was throwing trash off back of flat bed dump truck; when his foot slipped causing him to fall and twist/sprain his right ankle. Supervisor: clyde h. Winstead
## 5750 12/19/2000 11:19 am employee was driving past intersection and was hit by another vehicle on drivers side. The impact caused Mr. Pike to hit his head on the door. Mr. Pike also has pain in neck and shoulders. Supervisor: j. B. Dills
## 5751 12/19/2000 11:29 am employee states her injury has been progressive. Her hands started bothering her due to repetitive motion while working on keyboard computer. Supervisor: tim jackson
## 5752 12/19/2000 11:34 am employee was walking through work project and misstepped into a hole causing him to twist/sprain his left knee. Supervisor: michael biedell
## 5753 12/19/2001 04:02 pm (vsulliva) two large vehicles passed on road in opposite directions. Mirrors of the two vehicles struck, resulting in both mirrors being damaged. Driver of sov was injured by flying glass from the mirror hitting him in the face.
## 5754 12/19/2006 01:11 pm (fblackmo) employee was laying pipes when, h is finger got caught between the pipe and hook causing a fracture & cut to finger on left hand. Supervisor: sarah foster
## 5755 12/19/2006 01:22 pm (fblackmo) employee was placing tools inside the tool box of the pick up truck. His hand was on top of the truck bed beside the tool box. Another employee was placing a mail box and post in the back of truck when, the post fell on
## 5756 12/19/2006 01:30 pm (fblackmo) employee moved over to let another vehicle pass when, he ran in the ditch causing injury to his head. Supervisor: darrell wilkins
## 5757 12/19/2006 01:41 pm (fblackmo) employee has worked for the highway division for five years repairing equipment. He is experiencing numbness in his hands and lost strength in his hands. Supervisor: harold white
## 5758 12/19/2006 01:58 pm (fblackmo) employee was loading and unloading hvac equipment when, he felt pain in his lower back. Supervisor: jeff drayer
## 5759 12/19/2006 02:23 pm (fblackmo) employee tripped on cables under his desk, hitting toe/foot on corner of desk. Employees toe is now red, swollen, and causes discomfort while walking and wearing closed shoes. Supervisor: tammy montanez
## 5760 12/19/2006 11:12 am (fblackmo) employee was operating a motor vehicle and was involved in a accident. Upon impact, employees knee struck the dashboard, breaking his kneecap in three places. Supervisor: w. Trent anderson
## 5761 12/19/2006 11:25 am (fblackmo) employee has worked for the division of highways for twenty plus years repairing equipment, he is experiencing numbness in his hands and has lost strength in his hands. Supervisor: mark y. Walker
## 5762 12/19/2007 01:17 pm (blgay) employee was in the process of repairing a missing stop sign. Employee walked around behind truck and stepped on uneven pavement, turning right ankle. Supervisor: j. A. Ridge
## 5763 12/19/2007 03:47 pm (blgay) employee was examing on a road test. Customer turned into the far lane into traffic, causing employee to tense up. Supervisor: anthony lowe
## 5764 12/19/2007 04:05 pm (fblackmo) employee was getting out of her car when her left foot (shoe heel) got caught in the storm drain beside her car. Employee felt pain in her left foot/ankle/and leg. Supervisor: norma hodges
## 5765 12/19/2007 04:15 pm (fblackmo) employee parked truck at the end of the day to go home. While exiting the cab he saw the radio was still on so he turned around on the step of the truck entered the cab, cut the radio off, and while stepping on the groun
## 5766 12/19/2008 01:52 pm (fblackmo) employee was stepping down from truck when, she felt pain in her lower back area. Supervisor: hank bowie
## 5767 12/19/2008 04:28 pm (fblackmo) employee was a passenger in car when, vehicle was struck on left side by private vehicle. Employee felt pain in neck area. Supervisor: jr
## 5768 12/19/2008 12:12 pm (blgay) employee was existing inmate bus, when he slipped down steps injuring his left knee and ankle. Supervisor: mike walden 12/19/2008 12:17 pm (blgay)
## 5769 12/2/2004 01:37 pm (fblackmo) employee was getting into loader when, he caught his left hand in the door. Supervisor: john thomason
## 5770 12/2/2004 01:51 pm (fblackmo) employee was climbing out of tandem dump truck when, his foot slipped causing him to fall on the ground. Supervisor: c. L. Lucas 12/21/2004 06:41 am (kbarefoo)
## 5771 12/2/2004 02:00 pm (fblackmo) employee was dismounting a steel wheel roller when, she hit her right elbow on the roller. Supervisor: darrell dean
## 5772 12/2/2004 02:15 pm (fblackmo) employee was mowing on the right of way when, he hit a wash out causing tractor to fall forward, jerking employee. Supervisor: bob ramsey
## 5773 12/2/2004 03:23 pm (fblackmo) employee was stepping out of loader when, he stepped in a hole causing the injury to his left ankle. Supervisor: gerald brabble
## 5774 12/2/2004 10:23 am (fblackmo) employee was bitten by a dog while eating on job site. Supervisor: a. S. Bailey
## 5775 12/2/2004 10:36 am (fblackmo) employee was using a pry bar to lift snow plow to attach brace when, he felt pain in his upper left arm and shoulder area. Supervisor: doug williams jr
## 5776 12/2/2004 11:02 am (fblackmo) employee was driving a tandem dump truck when, it flipped onto its side. Supervisor: w. L. Thompson
## 5777 12/2/2008 01:00 pm (blgay) employee was inspecting a new surface paving at industrial access road located off nc hwy 10 near newton nc, in catawba county. A truck empty a load into the paver, truck pulled forward a small amount of asphalt dropped and
## 5778 12/2/2008 04:04 pm (blgay) employee was working with patch crew and stepped into a hole and hurt back. Supervisor: shelia chandler
## 5779 12/2/2008 04:15 pm (blgay) employee was dragging brush and backpack spraying on an incline. At the time of the accident she was operating a power trimmer in a daylily bed on a slope. Employee stated that her back began to hurt at that time. Supervisor
## 5780 12/2/2008 11:40 am (blgay) employee was putting out signs and one of the folding legs of the sign stand did not latch properly, causing it to fold up on employees left pinky finger. Supervisor: larry scruggs
## 5781 12/2/2009 02:10 pm (blgay) employee was putting asphalt packer onto patch pro packer slid off patch pro and ended up in the ditch. Employee tried to pull it out of the ditch and strained his upper back. Supervisor: david capps
## 5782 12/20/1999 01:07 pm employee was walking to truck on unpaved parking area and stepped on loose gravel; resulting in a fall which twisted employee's left ankle. Sprained left ankle
## 5783 12/20/1999 01:24 pm pushing 4 foot long timber into bed of truck. Timber had split end that caught on rough truck bed. Timber rolled over and crushed finger against tailgate. Little finger of left hand cut stitches applied.
## 5784 12/20/1999 01:34 pm employee was walking back to his pickup parked in the edge of a field. It was raining and employee's footing slipped and sprained right ankle.
## 5785 12/20/1999 01:43 pm injured employee was feeding brush into a chipper. Another employee was cutting a tree. Injured employee began walking towards the falling tree. Other employees tried to warn injured employee, but he did not hear them. Tree fell st
## 5786 12/20/1999 02:38 pm employee was helping to cut a tree on secondary road construction project. Most debris was loaded by backhoe. A few small limbs were loaded by hand. Pain in lower back
## 5787 12/20/1999 02:55 pm slipped off of truck hub while removing broom from truck bed. Fell over guardrail hit box culvert and fell into creek on highway 801 south. He landed on face on a steep bank and had to be removed from the creek bed. Inmates ayers
## 5788 12/20/1999 03:08 pm employee was pushing against chain to adjust height of spreader to align up with hookup of truck during snow drill, employee felt burning sensation in back. Pulled muscle and punched nerve in lower back.
## 5789 12/20/1999 03:15 pm employee was sawing board with circular saw. Wind was blowing and saw dust blew into right eye.
## 5790 12/20/1999 12:41 pm employee was in a crew cab, with the window down, pan truck came by causing dust and dirt to fly into employee's right eye.
## 5791 12/20/1999 12:53 pm employee was in bed of sign truck unhooking post driver attachment from hydraulic boom and was preparing to hook up post puller attachment. As employee pressed button on the hand held control to raise boom, the boom dropped and hit
## 5792 12/20/2000 03:51 pm employee was climbing down off welder truck on his way to get chainsaw from warehouse on 12/6/00. His legs collapsed causing him to fall to the ground injuring his back area. Supervisor: d. W. Fowler
## 5793 12/20/2000 03:57 pm employee was lifting one end of a 9' snow plow blade; when the bolts fell out causing the blade to drop. Mr. Vandiford has strain in his right lower back due to the fall of the blade. Supervisor: e. C. Thomas
## 5794 12/20/2000 04:06 pm employee was picking up pieces of lumber and throwing them onto bridge; when he strained his lower back. Supervisor: a. L. Clark
## 5795 12/20/2000 04:12 pm employee was enroute to accident scene on I-77 in mecklenburg county on 11/22/00. As he was slowing down, he was struck from behind by another vehicle. Mr. Bryant suffered bruises, a concussion and strains/sprains to his back are
## 5796 12/20/2001 02:36 pm (slee) employee was driving a backhoe when he decided to make a u-turn. Employee was going to turn his backhoe around in the road while waiting for a lane closure to be set up for a full depth patching operation. When he started to
## 5797 12/20/2002 01:51 pm (fblackmo) employee was assisting equipment personnel in installing a battery in the motor grader. Employees elbow hit grill causing the injury to his head. Supervisor: r. E. Langley
## 5798 12/20/2002 02:03 pm (fblackmo) employee states while changing pipes, felt pain in his right shoulder. Supervisor: s. Kinner
## 5799 12/20/2002 02:13 pm (fblackmo) employee was cutting trees when, the tree kicked back it hit him on his left leg. Supervisor: p. R. Draugh jr 10/16/2003 09:39 am (gwhite)
## 5800 12/20/2002 09:43 am (fblackmo) carpal tunnel syndrome. Supervisor: eula m. Williams
## 5801 12/20/2002 10:20 am (fblackmo) employee states while retrieve anti-freeze from top shelf, something flew into his right eye. Supervisor: jonathan rinehardt
## 5802 12/20/2002 10:33 am (fblackmo) employee states his thumb on left hand was smashed between the wood chipper and tree branch. Supervisor: l. S. Carpenter jr
## 5803 12/20/2002 10:44 am (fblackmo) employee was using a wrench when it slipped causing the injury to his thumb. Supervisor: l. S. Carpenter jr
## 5804 12/20/2002 11:05 am (fblackmo) employee was reaching to clean dirt off back of truck when the injury occurred to his left shoulder. Supervisor: grady hurley
## 5805 12/20/2002 12:46 pm (fblackmo) employee states while putting tree limbs into wood chipper, one of the limbs hit him on the nose. Supervisor; w. E. Mcclendon jr
## 5806 12/20/2002 12:58 pm (fblackmo) employee states while cutting a tree during the ice storm, one of the branches hit him in the head causing the injury. Supervisor: w. Herring (acting supervisor)
## 5807 12/20/2005 09:54 am (fblackmo) employee was cleaning a ditch with shovel when, foreign matter got into his eyes. Supervisor: j. S. Roller
## 5808 12/20/2005 11:19 am (fblackmo) employee was conducting surveys when, he was bitten by a tick on his right thigh area. Supervisor: mark taylor
## 5809 12/20/2005 11:33 am (fblackmo) employee was stepping out of pickup when, he felt burning in his lower back area. Supervisor: patrick norman
## 5810 12/20/2006 10:32 am (fblackmo) employee was working on his knees cutting off of the bridge floor. While cutting steel he started feeling pain in his right knee. When he came back to work the next day, he reported his his knee was hurting. He went to t
## 5811 12/20/2006 11:14 am (fblackmo) employee was proceeding to leave the maintenance yard after dump truck was loaded. As he mounted the second step to enter the truck, he twisted his left knee. Supervisor: c. M. Conner
## 5812 12/20/2006 11:44 am (fblackmo) employee was exiting the ladies restroom when she slipped causing injury to her right ankle and hip. Supervisor: t. S. Collins
## 5813 12/20/2006 12:05 pm (fblackmo) employee was measuring pipes when, he crossed over a fence he got his feet tangled in vines causing injury to his left shoulder and elbow. Supervisor: william l. Thompson 3/21/2007 07:56 am (lvaughan)
## 5814 12/20/2007 07:30 am (blgay) employee was pulling hose off of tar kettle and tripped over a limb that was lying in a gully, causing a broken and dislocated right ankle. Supervisor: james winebarger
## 5815 12/20/2007 12:54 pm (blgay) employee was parked on the shoulder of the road and was getting into vehicle in a hurry to avoid getting hit by oncoming traffic. When employee closed door, the door hit his left thigh, causing his thigh to move to the righ
## 5816 12/21/1999 07:21 am employee was working on an old herbicide spray truck, converting the truck to a guard rail sprayer. Employee came in contact with herbicide residue that can and did cause a skin irritation and infection on both arms, midsection,
## 5817 12/21/1999 09:03 am working with the platform truck finishing up and Mr. Mitchell was putting rag away inside panel of control box, and closed door. When he was walking away, he felt a sharp pain in his lower back between his shoulder blades.
## 5818 12/21/1999 09:36 am Mr. Lanier pulled/twisted his right side of lower back while dismounting from vehicle on 11/30/99. He has pain in lower back and right hip area and thigh. Supervisor: michael g. Jarman
## 5819 12/21/1999 09:45 am Mr. Douglas was driving on sr 1549 picking up litter and dead animals, when he failed to see a car coming in his direction. He pulled out in front of car receiving injuries to his head. Supervisor: r. T. Vestal
## 5820 12/21/1999 09:52 am Mr. Dixon was lifting/carrying equipment up and down steep hills on 12/15/99, when he pulled muscles in lower extremities. Supervisor: a. E. Moore 02/01/2000 01:29 pm
## 5821 12/21/1999 10:01 am Ms. Edwards noticed a sharp pain in her right arm and wrist while using her computer on 12/15/99. Supervisor: j. Paul ingram
## 5822 12/21/1999 10:07 am Mr. Narron has carpel tunnel syndrome caused by repetitive motion to his right hand/wrist. Supervisor: c. R. Whitfield
## 5823 12/21/1999 10:15 am Mr. Bennekin stepped on a nail hidden beneath thick grass and leaves on 12/15/99 while doing road work. The nail punctured his right boot pricking the skin of his foot. Supervisor: thomas p. Moorefield
## 5824 12/21/1999 10:42 am Mr. Leger strained his lower back while lifting a piece of steel (weighing appox. 100 pounds) on 12/14/99. Supervisor: r. H. Waldeck
## 5825 12/21/1999 10:59 am Mr. Laviner strained his lower and mid-back area while attempting to unload a portable asphalt compactor from pick-up truck on 11/29/99. Supervisor: william e. Mcclendon, jr.
## 5826 12/21/2000 09:05 am employee was pulling u-channel post by hand; when he strained his lower back, right leg and he has a compressed fracture of the 5th vertbrae. Supervisor: r. D. Isley
## 5827 12/21/2000 09:21 am employee was tearing down a building on 12/8/00. While removing tension springs on the bay door; a tool slipped cutting the back of his right hand (18 stitches). Supervisor: jesse hensley
## 5828 12/21/2000 09:31 am employee was cutting off a mud flap; when the utility knife exited the mud flap cutting two fingers (left index and ring) on his left hand requiring stitches. Supervisor: c. D. Cloud
## 5829 12/21/2000 09:41 am employee was stepping out of dump truck; when he stepped into a hole twisting/sprained his right ankle. Supervisor: terry j. Shaw
## 5830 12/21/2000 09:45 am employee was assisting in emptying garbage cans into dumpster; when the contents of the can came out. Sawdust billowed out into a cloud of dust causing foreign material to lodge in both eyes. Supervisor: c. S. Overcash
## 5831 12/21/2000 09:54 am employee was picking up large stones; when she strained muscles in her upper back area. Supervisor: tom burchell
## 5832 12/21/2000 10:01 am employee was walking behind guardrail; when he stepped on a board with nails in it. He punctured his right foot. Supervisor: s. G. Dillon
## 5833 12/21/2001 07:44 am (fblackmo) employee was handling barrels of paint to ready paint truck for painting. The barrel came loose from the top hook and the barrel shifted pushing employee into ceiling support I-beam. Supervisor: steve clayton
## 5834 12/21/2001 08:45 am (fblackmo) employee was working on a beaver dam at a culvert on us74 when he was bitten by an insect on right ear and broke out in a rash. Supervisor: l. R. Brown
## 5835 12/21/2001 11:45 am (fblackmo) employee was struck on the right thumb by a sign post while trying to free post that was caught between the bumper and the truck. Employee was attempting to straighten the sign post. Supervisor: charles reaves
## 5836 12/21/2004 01:03 pm (fblackmo) employee states he twisted his right knee while crossing fence. Supervisor: m. E. Plummer
## 5837 12/21/2004 02:42 pm (fblackmo) employee was holding the hood to keep it from hitting the snow plow frame. Employee turned his ankle on the hydraulic lift slide. Supervisor: steve smith
## 5838 12/21/2004 02:59 pm (fblackmo) employee was tightening a bolt on the front end of a mower tractor, ratchet slipped causing pain to his left shoulder area. Supervisor: g. K. Dozier
## 5839 12/21/2004 03:10 pm (fblackmo) employee was tightening the bolts on guardrail with a wrench. The wrench slipped causing employee to fall into the guardrail chipping his front tooth. Supervisor: roger pulcheon
## 5840 12/21/2004 04:24 pm (fblackmo) employee experienced pain in his knee. Supervisor: keith blazer
## 5841 12/21/2004 09:55 am (fblackmo) employee was stopped in traffic when, a private vehicle hit his truck in the rear. Employee experienced pain in his neck and shoulders. Supervisor: t. W. Simpson
## 5842 12/21/2004 10:07 am (fblackmo) employee was lifting a handheld bed of a dump truck when, he felt pain in his lower back. Supervisor: r. J. Hollifield
## 5843 12/21/2004 10:17 am (fblackmo) employee was cleaning brush off fence when, he came into contact with poison ivy. Supervisor: william dodson
## 5844 12/21/2004 10:38 am (fblackmo) employee states he experienced pain in both wrists while keying. Supervisor: brenda crump
## 5845 12/21/2004 10:51 am (fblackmo) employee was picking up a 5 gallon can of oil when, he felt pain in his lower back. Supervisor: gary wilson
## 5846 12/21/2004 11:03 am (fblackmo) employee was measuring silt fence when, stick went into his left eye. Supervisor: david poindexter
## 5847 12/21/2004 11:26 am (fblackmo) employee was cleaning out driveway pipe, throwing dirt on shoulder when, he felt pain in his back. Supervisor: r. G. Crews
## 5848 12/21/2004 11:36 am (fblackmo) employee was installing a driveway pipe when, ditch gave away causing his left knee to twist. Supervisor: patrick norman
## 5849 12/21/2004 11:47 am (fblackmo) employee states while lifting rocks and cement bags he, felt pain in his naval area. Supervisor: emmitt bullman
## 5850 12/21/2004 12:01 pm (fblackmo) employee was walking to another dump truck when, he slipped and fell on fuel hose. Supervisor: randy anderson
## 5851 12/21/2004 12:14 pm (fblackmo) employee was shifting vegetation while surveying when, he puncture his knuckles on left hand. Supervisor: m. Masihpour
## 5852 12/21/2005 02:58 pm (fblackmo) employee was bending down to pick up something when, he felt pain in his left knee. Supervisor: victor buzard 12/21/2005 03:10 pm (fblackmo) can not pay any medical bills, see jw
## 5853 12/21/2007 12:53 pm (blgay) employee was finished bushing and was coming up bank on top of rocks. The vine that was grown over the rocks slipped out from under employees foot causing employee to lose footing and fell backward on rocks. Supervisor: tim
## 5854 12/21/2009 05:14 pm (fblackmo) employee was removing bolts from guard rail when, he went to stand up, he felt pain in his left knee area. Supervisor: tony cooke
## 5855 12/21/2009 05:39 pm (fblackmo) employee was climbing down off ladder when, he felt pain in his left ankle. Supervisor: wendy fridley
## 5856 12/21/2010 04:32 pm (barnes) employee was running her snow and ice route. She stopped to check how much salt/mix she had left in the spreader. As she was climbing down the side of the truck bed, she extended her leg far as she could but was unable to
## 5857 12/22/1999 12:17 pm Mr. Bell was cutting branches on 11/16/99, when a branch went inside of his glove cutting his left hand palm 1/2' below his thumb. Supervisor: sue kinner
## 5858 12/22/1999 12:36 pm Ms. Lawson was assisting the sign erector in unloading a 4' x 8' sign when she strained her lower back. Supervisor: thomas e. Johnson
## 5859 12/22/2000 09:09 am employee was enroute to begin snow/ice operation; when a private vehicle slid out of control and hit his truck. Mr. Roach has neck pain (extent unknown) and was seen at sampson regional medical center. Supervisor: v. Smith
## 5860 12/22/2000 09:22 am employee was loosening band clamp with an air impact wrench on 12/15/00. He was holding the clamp when the bolt started vibrating causing the clamp to cut his left index finger. Supervisor: lewis baker
## 5861 12/22/2000 09:30 am employee was lifting latch on tractor trailer door to unlock it; when the latch swung out striking his lip. He has a laceration to his lip and chipped his front right tooth. Supervisor: kenny williams
## 5862 12/22/2000 10:02 am employee was helping load the hydro seeder with 50 pound bags of fertilizer on 12/13/00. Mr. Calvert strained his left arm. Supervisor: m. S. Reese
## 5863 12/22/2000 10:16 am employee complains of repetitive motion pain in right arm/shoulder. Supervisor: joyce evans
## 5864 12/22/2000 10:25 am employee was inspecting drainage inlets on roadway construction project on six forks road on 12/18/00. While attempting to cross the road he stepped into an oncoming vehicle. Mr. Baker was struck on his left side causing major in
## 5865 12/22/2000 11:25 am employee complains of repetitive motion pain in right and left hands. Supervisor: tola m. Bailey
## 5866 12/22/2003 02:10 pm (fblackmo) employee was reaching over to get shovel when, he felt pain in his right shoulder. Supervisor: w. H. Monroe
## 5867 12/22/2003 02:20 pm (fblackmo) employee was lifting boxes in file room when, she felt pain in her back. Supervisor: lynette parrish
## 5868 12/22/2003 02:32 pm (fblackmo) employee was shoveling when, he was bitten on his left hand by a insect. Supervisor: charlie watson
## 5869 12/22/2003 02:42 pm (fblackmo) employee was installing an end on a tow way radio antenna cable when, he cut his index finger on left hand. Supervisor: david bowers
## 5870 12/22/2003 02:51 pm (fblackmo) employee was blowing off deck when, foreign matter flew into his left eye. Supervisor: thomas foster bowser
## 5871 12/22/2003 12:40 pm (fblackmo) employee was conducting a road test when the driver hit a embankment causing the injuries to her neck and back. Supervisor: becky huffman
## 5872 12/22/2004 08:19 am (fblackmo) employee cut his left wrist with knife while cutting strings on bales of wheat straw. Supervisor: hardie tilett
## 5873 12/22/2004 08:34 am (fblackmo) employee was laying and mixing cement and rocks when, he felt pain in his back. Supervisor: emmitt bullman
## 5874 12/22/2004 08:53 am (fblackmo) employee was putting in gabions on state road 1200, guy ford road. The area was muddy and slick. Employee fell into a hole. Supervisor: m. B. Smith
## 5875 12/22/2004 09:20 am (fblackmo) employee was performing weapons inspection when, he felt pain in his left shoulder. Supervisor: k. King
## 5876 12/22/2004 09:43 am (fblackmo) employee states his leg was caught between another employees legs while conducting training drills. Employee felt pain in his groin area. Supervisor: k. King
## 5877 12/22/2005 08:18 am (fblackmo) employee was salting the road when, truck slid on ice and hit the embankment causing him to be thrown forward and sideways. Employee felt pain in his neck, back, and right side of face. Supervisor: d. E. Goss
## 5878 12/22/2005 08:48 am (fblackmo) employee was working on the turck dock recycling center lifting and rolling tires into trailer when, his right foot slipped in water causing the injury to his right ankle. Supervisor: keith smith
## 5879 12/22/2005 09:48 am (fblackmo) employee was walking back into office when, she caught her foot on carpet causing her to fall on both knees on tile floor. Supervisor: beverly brown
## 5880 12/22/2005 10:38 am (fblackmo) employee was walking along a ditch line covered with leaves when, he stepped in a hole and twisted his ankle. Supervisor: al smith
## 5881 12/22/2008 11:20 am (blgay) employee was cutting a piece of plywood using left hand. The plywood pinched the saw blade causing the skill saw to kick back and the employee was unable to hold on to the saw. The saw landed on the employees right ring fin
## 5882 12/22/2008 11:28 am (blgay) employee was removing stop sign on shoulder to do work and was carrying it to side of ditch, when employee lost his footing and fell on stop sign, causing him to sprain right thumb and right leg contusion. Supervisor: sarah
## 5883 12/22/2008 11:38 am (blgay) employee was surveying climbing up a bank with stake bag in one hand, when he slipped and lost his footing, both feet flew out from under him. Employee landed on his right wrist, causing him to sprain his right wrist. Super
## 5884 12/22/2009 04:15 pm (blgay) employee was climbing through a tree, cutting it and it was dark and rainy. As employee stepped on a limb and lost his balance and it throwed his back. Employee was holding a chain saw, but jeff davis was with him and helpe
## 5885 12/22/2009 04:26 pm (blgay) employee was exiting n. Patterson street at dmv. It was raining very hard with high winds. Employee fell going down front steps. Supervisor: julia swicegood
## 5886 12/22/2010 03:43 pm (fblackmo) employee was in town to take injured employee to doctor. While on lunch at chick-fil-a she slipped and fell causing injuries to both elbows and knees. Supervisor: cindy austin
## 5887 12/22/2010 04:56 pm (fblackmo) employee was stepping over "do not enter" caution tape when, his leg got caught up in the tape causing him to fall. Employee felt pain in his left knee. Supervisor: cindy austin
## 5888 12/22/2010 05:27 pm (fblackmo) employee was assisting with loading the truck for the days work. He was picking up 50lbs of fertilizer. As hew was picking up the 7th bag with both hands, as he straightened up, he felt a jerk in his right hip joint. He
## 5889 12/22/2010 09:40 am (barnes) employee was removing tree from right of way. He and another employee was pushing a tree that had vines wrapped up in it. The tree broke loose and the employee did not get clear before the tree fell. The tree hit him on th
## 5890 12/22/2010 11:01 am (fblackmo) employee operating mulch blower. Truck driver stopped suddenly throwing employee onto roll back. Employee felt pain on right side (upper body) and his right arm. Employee did not seek medical attention until 12/16/2010.
## 5891 12/22/2010 11:46 am (fblackmo) employee was walking to the back of shop when he stepped on floor lift lid. The lid shifted, employee slipped in hole, and the lid top struck him in his groin area. Supervisor: wesley powell
## 5892 12/22/2010 11:59 am (fblackmo) employee lorenz was helping employee eason (pat) remove a tailgate from a swb truck. Employee pat turn to pass the tailgate so that pins can be removed the tailgate fell striking her on the back of the head. Employee exp
## 5893 12/22/2010 12:11 pm (fblackmo) employee was installing tailgate when it slipped falling on his right hand. Supervisor: james campbell
## 5894 12/22/2010 12:24 pm (fblackmo) employee was helping disable motorist when he slipped on wet roadway (oil & antifreeze). Employee felt discomfort in his neck area. Supervisor: k. E. King
## 5895 12/22/2010 12:37 pm (fblackmo) employee was cleaning the ledge of the tailgate with a shovel when the shovel slipped striking his right hand. Supervisor: b. N. Braswell
## 5896 12/22/2010 12:56 pm (fblackmo) employee was retrieving barricade from trailer when he felt pain in his upper left arm. Supervisor: jim evans
## 5897 12/23/2010 10:19 am (barnes) employee was cleaning asphalt maintainer and the auger caught his pant leg and then caught his right foot in the equipment. Employee injured his right foot. Supervisor: warren anderson
## 5898 12/23/2010 11:02 am (barnes) employee was giving a road test, and client turned too fast to the right and hit a row of brick pillars. Employee hurt left hand. Supervisor: dean almond
## 5899 12/23/2010 11:43 am (barnes) employee was on her way to pick up keys from property owner when she was rear ended by private vehicle. Employee injured her neck and back. Also complained of headaches. Supervisor: lois little
## 5900 12/28/1999 10:45 am Mr. Sessoms slipped on 12/14/99 while cutting a canvas on a steep slope (35 degrees) injuring his back. Supervisor: d. T. Moss
## 5901 12/28/1999 10:53 am Mr. Main injured his lower back and right leg while bending down to place a computer on the floor. Supervisor: randy k. Pace
## 5902 12/28/1999 11:00 am Mr. Harrison was sitting on a running board of flatbed truck on 12/07/99, when he fainted and fell forward onto a rock surface of a parking lot. The left side of his forehead and left ring finger was scraped and bruised. Superviso
## 5903 12/28/1999 11:06 am Ms. Sovereign was getting into a truck when her foot slipped and fell. She sprained on left ankle at time of the incident on 12/16/99. Supervisor: e. W. Spivey
## 5904 12/28/2005 02:18 pm (fblackmo) employee was working at the sawmill when, dust got into his eyes. Supervisor: reuben e. Blakley
## 5905 12/28/2005 02:27 pm (fblackmo) employee was unloading driving equipment when, he forgot to put the man lift in front of the wheels. Employee felt pain in his rib cage and right thigh area. Supervisor: kathy lewis
## 5906 12/28/2005 02:40 pm (fblackmo) employee was attempting to walk down a fill section to inspect a cross line pipe culvert. Employee was walking through some brush when, he stepped off of the fill slope. The sudden drop caused the employee to pull a musc
## 5907 12/28/2005 02:53 pm (fblackmo) employee was walking into building when, he slipped and fell on ice causing the injury to his right elbow, back of head, lower back, and right hip area. Supervisor: tola m. Bailey
## 5908 12/28/2005 03:05 pm (fblackmo) employee was driving around curve when, the rear end of the truck went into a spin and ended up in the ditch turned over on drivers side. Employee felt pain in his lower back and left groin area. Supervisor: r. D. Mcintyre
## 5909 12/28/2005 03:13 pm (fblackmo) employee was unloading signs and stepped on a piece of wood and fell on his wrist. Supervisor: w. G. Wrenn
## 5910 12/28/2005 04:19 pm (fblackmo) employee was prying with a crowbar in order to remove a section of joist under the bridge when, he strain his shoulder. Supervisor: j. L. Cheek
## 5911 12/28/2010 01:24 pm (barnes) employee was carrying a 10 lb. Drop hammer. Due to the ground being frozen, his feet sipped out from under him. When employee fell down, he was struck on the top of his head by the drop hammer. Employee injury consisted o
## 5912 12/28/2010 01:52 pm (barnes) employee was sitting in her seat in her cubicle, when a guy installing security cameras, moved the tile in the ceiling above her, causing wires to fall and hit her in the face. Employee injured right side of face. Super
## 5913 12/28/2010 03:12 pm (barnes) employee was putting signs together at the rear of his sign truck. He was parked next to a sidewalk with curbing. He stepped backwards off the curb pulling something in his lower back. Employee injured lower back. Doctor t
## 5914 12/28/2010 12:04 pm (barnes) employee was walking to building from vehicle. Before reaching the sidewalk, he stepped on a patch of ice and fell to the pavement. Employee injured his right ankle. Supervisor: r. David beal
## 5915 12/28/2010 12:56 pm (barnes) employee was walking on sidewalk to his assigned vehicle. Employee slipped on ice and fell. Employee failed to notice the ice in order to take proper action to avoid falling. Employee stated that "he saw stars" employee
## 5916 12/29/1999 08:52 am Mr. Hunsucker was checking grade and metallic particles on 12/14/99, when foreign object got in right eye. Supervisor john r. G. Olinger.
## 5917 12/29/1999 09:08 am Mr. Chavis was performing inspection duties when a private owned vehicle tire blew-out on I-95. The car struck a temporary concrete barrier, causing debris from the impact to cut the upper left thigh of Mr. Chavis. Supervisor: l
## 5918 12/29/1999 09:14 am Ms. Rose was picking up glass on I-40 on 12/16/99, when a piece of glass punctured her right hand. Ms. Rose was wearing gloves at the time of incident. Supervisor: b. J. Berryhill, jr.
## 5919 12/29/1999 12:12 pm Mr. Moree was unhooking water pump from the back of a truck, when the pump fell and twisted away, causing the employee to feel pain in his lower back. Supervisor: wayne knight
## 5920 12/29/2000 08:56 am employee was climbing down off truck bed; when his foot slipped causing him to catch himself with his right arm. Mr. Dement has a contusion of the right elbow. Supervisor: j. A. Hobgood
## 5921 12/29/2000 09:02 am officer jonathan cabe was attempting to stop traffic on I-40 where he came upon an accident. Officer cabe got back in his vehicle to obtain assistance from highway patrol; when another motorist struck his vehicle from behind. Off
## 5922 12/29/2000 11:46 am employee was loading pine straw on flatbed truck; when he bent over to pick up bale he strained his lower back. Supervisor: kenny williams
## 5923 12/29/2000 11:50 am employee was trying to remove a rock that was stuck between rotor and brake caliper. He was turning the rotor with his right hand and holding a flash light with his left. His right hand was mashed and index finger was cut between
## 5924 12/29/2000 11:56 am employee was unhooking spreader; when he pulled the chain from the top rail it came back hitting him in the head. Supervisor: j. Mark leatherman
## 5925 12/29/2000 12:08 pm employee was clearing the right of way on sr 1333 on 12/12/00. Employee was felling a tree; when the tree fell on another tree causing limb to sprang back striking employee in his left eye. Supervisor: r. D. Holland
## 5926 12/29/2000 12:13 pm employee was sitting on bench in assembly room on 12/21/00. Mrs. Bowen slid over to make room for someone else; when a large splinter stuck in her left hip area. Supervisor: l. S. Carpenter, jr
## 5927 12/29/2004 10:22 am (fblackmo) employee states that due to continuous use of hand held power tools he, experience pain in both hands and wrists. Supervisor: wayne king
## 5928 12/29/2004 10:51 am (fblackmo) employee was stepping out of truck when, she slipped and fell causing the injury to her right ankle. Supervisor: chuck sharp
## 5929 12/29/2004 11:04 am (fblackmo) employee was stuck by private vehicle causing the injury to his lower back. Supervisor: ronald canady
## 5930 12/29/2004 11:16 am (fblackmo) employee was stopped at traffic light when, he was struck from behind. Employee experienced no injury stated on form 19 line 12. Supervisor: b. W. Drye
## 5931 12/29/2005 05:12 pm (fblackmo) employee was climbing embankment to check for erosion when, he slipped and fell causing the injury to his right hand and shoulder. Supervisor: l. H. Hathcock
## 5932 12/29/2006 01:34 pm (fblackmo) employee was holding onto the spreader when, he stepped down onto tire his foot slipped causing injury to his right shoulder. Supervisor: jack r. Fone
## 5933 12/29/2006 01:43 pm (fblackmo) employee lost footing on embankment and fell twisting his right ankle. Supervisor: jamie r. Wilson
## 5934 12/29/2006 02:00 pm (fblackmo) employee slipped on rain water that was tracked in from outside causing injury to buttocks & left leg. Supervisor: ken cassidy
## 5935 12/29/2006 11:34 am (fblackmo) employee experienced pain in left wrist and arm when a private vehicle struck front left wheel of dump truck while turning left into driveway. Supervisor: j. T. Wiggins
## 5936 12/29/2006 11:53 am (fblackmo) employee was attempting to control a grass fire on the shoulder of I-40 until emergency personnel arrived. In doing so employee felt pain in his lower back. Supervisor: john finnell
## 5937 12/29/2009 10:24 am (fblackmo) employee was welding a piece of flat bar when it started to fall off the table. Employee reached to catch it causing the injury to his lower back. Supervisor: marshall coleman
## 5938 12/29/2009 10:38 am (fblackmo) employee was pulling on tail gate when, he mashed his center finger on his left hand. Supervisor: darrell wilkins
## 5939 12/29/2009 11:04 am (fblackmo) employee was driving a tractor trailer when the right front tire blew out causing him to hit a guardrail. Employee had a bump on his forehead. Supervisor: william stone
## 5940 12/29/2009 11:54 am (blgay) employee was traveling to the mitchell county equipment shop, when private vehicle pulled out into path of state vehicle. Supervisor: rick lichtenhahn
## 5941 12/29/2009 12:10 pm (blgay) employee was removing snow and lost control of truck, rear end slid around, causing plow to hit side of ditch and turn truck over on its side. Supervisor: joel riley
## 5942 12/3/2008 02:31 pm (blgay) employee was cutting right of way when he became exposed to poison oak on both arms, legs, stomach, back and groin area. Supervisor: adam biddix
## 5943 12/3/2010 11:27 am (barnes) employee was observing paving operations on city street col-de-sac. He attempted to move out of oncoming trucks way, but boot was firmly stuck to the tack coat that had been applied to road. As he turned, he twisted his rig
## 5944 12/3/2010 12:20 pm (barnes) employee was working with another coworker setting a frame into catch basin. Prior to frame being secure, the coworker let it go and it caused the frame to pinch two of the employee's fingers. Employee injured his right ha
## 5945 12/30/2004 10:51 am (fblackmo) employee twisted his left knee while trying remove a saw that was stuck in a tree. Supervisor: k. L. Anderson 01/03/2005 10:47 am (kbarefoo)
## 5946 12/30/2008 02:26 pm (blgay) employee was giving a road test. Customer gave a right turn signal, turned right and was rear ended by another car, causing a lumbar sprain. Supervisor: theodore gray
## 5947 12/30/2008 02:57 pm (blgay) employee was removing tailgate from truck with help of 2nd employee. Employee was on the ground hooking chain to tailgate and 2nd employee was unhooking pins from tailgate, when 2nd employee removed pins, chains were not ho
## 5948 12/30/2009 02:50 pm (fblackmo) employee was traveling west toward pembroke in the middle of a heavy rain storm. Employee was coming out of a curve when the rear end of the vehicle hydrophane. Employee tired to correct the vehicle, crossed center lane,
## 5949 12/30/2009 03:08 pm (fblackmo) employees right hand was injured while loading an asphalt plate tamp onto a flatbed truck. Supervisor: doug williams
## 5950 12/30/2009 03:20 pm (fblackmo) employee was tightening a binder on lowboy when, he lost his foot due to snow and ice causing injury to his right shoulder. Supervisor: h. A. Moore
## 5951 12/30/2009 03:30 pm (fblackmo) employee was replacing sections of a damaged guardrail when, he felt pain in his lower back. Supervisor: w. T. Mintz
## 5952 12/30/2009 04:14 pm (fblackmo) employee was cutting a piece of rope when, the knife slipped cutting his left index finger. Supervisor: norris reed
## 5953 12/31/2001 02:16 pm (fblackmo) employee was working in survey party taking back shots on bridge project located on sloans mill road when he came into contact with poison oak. Supervisor: m. E. Stafford, pe
## 5954 12/31/2001 02:40 pm (fblackmo) employee was heading south on 111 when he came across a gallon jug in the road. Employee went to see the name of the chemical in the gallon jug. Employee immediately began to develop itching to the face, legs and arms.
## 5955 12/31/2001 02:55 pm (fblackmo) employee stopped to investigate a discarded jug and upon reading label and leaving employee started to itching on face, legs and arms. Supervisor: r. W. Lewis
## 5956 12/31/2001 03:06 pm (fblackmo) employee was doing a road test she was checking the vehicles brake lights and when she stepped back she lost her footing and fell to the pavement. Supervisor: julia b. Harris
## 5957 12/31/2002 03:09 pm (fblackmo) employee was assisting other employees with lower of a tailgate after completion, felt pain in his lower back area. Supervisor: d. W. Perkinson
## 5958 12/31/2002 03:42 pm (fblackmo) employee states while spraying tack straw on roadway. Felt pain in his back. Supervisor: j. D. Fuller
## 5959 12/31/2002 03:55 pm (fblackmo) employee was hauling trees when one of the trees hit him on the shoulder knocking him to the ground. Supervisor: m. H. Stegall 09/09/2003 08:19 am (gwhite)
## 5960 12/31/2002 04:08 pm (fblackmo) employee was moving debris from ice storm when, log rolled onto left leg resulting in puncture to calf on left leg. Supervisor: greg caudill
## 5961 12/31/2002 08:46 am (fblackmo) employee was helping cleaning up trees due to ice storm on us 64 when, he stepped on a limb. Employee experienced pain in his back due to mis-step on limb branch. Supervisor: bobby lewis
## 5962 12/31/2002 09:06 am (fblackmo) employee was bending to loosen pipe fitting when, felt pain in his lower back. Supervisor: c. H. Bennett jr
## 5963 12/31/2002 09:14 am (fblackmo) another employee was cutting a pipe with a cut off saw. Employee walked by and a piece of the metal flew into his right eye. Supervisor: w. H. Lynch
## 5964 12/31/2008 02:04 pm (fblackmo) employee was participating in oc spray training when pepper spray went in her right eye. Supervisor: barry cross
## 5965 12/31/2008 02:16 pm (fblackmo) employee was cutting sapling around road signs with a bush axe. As he struck the sapling with the bush axe, the sapling sprung up hitting him in his right eye. Supervisor: a. C. Coghill
## 5966 12/31/2009 11:36 am (fblackmo) employee states the injury occurred while running back hoe. Employee felt pain in both hands. Supervisor: a. B. Davis
## 5967 12/4/2006 02:38 pm (fblackmo) employee was climbing on back of pickup, he was not able to make it all the way up, he came down causing injury to his right knee/leg. Supervisor: r. A. Baker
## 5968 12/4/2006 02:48 pm (fblackmo) employee was assisting in the removal of shrubby & vine debris when, she came into contact with poison ivy. Supervisor: r. J. Brown
## 5969 12/4/2006 10:10 am (fblackmo) employee was stopped at intersection when, she was struck from behind by another pickup truck which pushed her vehicle into the rear of the vehicle in front of her. Employee felt pain in her neck and right hip area. Super
## 5970 12/4/2006 10:27 am (fblackmo) employee was removing fittings from a transmission valve body, he was bent over at the waist, he was putting pressure on the fitting with the assistance of another co-worker, as he straighten up, he felt pain in his chest
## 5971 12/4/2006 11:41 am (fblackmo) employee was attempting to remove broken post from asphalt with pry bar (post was too short for post puller). Bar slipped causing pain to left elbow and forearm. Supervisor: tim foster
## 5972 12/4/2006 11:56 am (fblackmo) employee stopped to help a truck driver on side of road when, he stepped in a man hole and fell in causing injury to face, right knee, and leg. Supervisor: sean epperson
## 5973 12/4/2006 12:13 pm (fblackmo) employee were chasing a deer across 343 north, as the dogs were crossing, bryan lightly tapped the brakes to warn the driver behind him, he heard the air alarm come on. He down shifted and hit the brakes two more times wh
## 5974 12/4/2006 12:24 pm (fblackmo) employee was helping the crew load the broom tractor while chaining the tractor down, employee grabbed the chain out from around the jack handle, employees right thumb got caught between the tongue and chain. Supervisor:
## 5975 12/4/2006 12:52 pm (fblackmo) employee was at the loading ramp, vehicle crossed the ramp, causing ramp to come down on employees foot. Supervisor: hal scarborough
## 5976 12/4/2009 05:25 pm (fblackmo) employee injury his right leg when he stepped in a hole while serving a warrant. Supervisor: r. E. Flaherty
## 5977 12/6/2004 08:52 am (fblackmo) employee was working with another employee passing sheets of plywood when, his right index finger was punctured. Supervisor: j. Ronald lee
## 5978 12/6/2005 02:29 pm (fblackmo) employee states that this is a reoccurence of carpal tunnel symptoms brought on by continuous use of crutches after fall occurred on 12/23/04. Supervisor: gary m. Wilson
## 5979 12/6/2005 09:15 am (fblackmo) employee was getting out of a dump truck and started walking to another truck to look for some hand tools when, felt pain in his neck. Supervisor: charles f. Vick
## 5980 12/6/2005 09:37 am (fblackmo) employee was raising the hood of a school bus for demonstration of the pre-trip inspection when, she felt pain in her right & left shoulder, arm, and hands supervisor: don johnson
## 5981 12/6/2005 10:04 am (fblackmo) employee was exiting backhoe when, he felt pain in left elbow. Supervisor: bobby leonard
## 5982 12/6/2005 10:52 am (fblackmo) employee was performing routine cleaning in the engine room, he wiped down white works and bent his knees when, he began to stand up he felt pain in his back. Supervisor: t. L. Gray
## 5983 12/6/2005 11:05 am (fblackmo) employee was unloading barrels with cart when, he felt pain in his back. Supervisor: franklin bullock
## 5984 12/6/2005 11:18 am (fblackmo) employee was trimming trees with pole saw when, debris from tree got into his eyes. Supervisor: patrick norman
## 5985 12/6/2005 11:30 am (fblackmo) employee was in the median of us 64 taking field shots when, he stepped into a hole causing the injury to his right ankle. Supervisor: jennifer brandenburg
## 5986 12/6/2005 11:44 am (fblackmo) employee was helping to unload a wood slab when, he bent over to pick up the slab, the slab hit him in the mouth. Supervisor: reuben e. Blakley
## 5987 12/6/2005 11:55 am (fblackmo) employee was fueling up truck when, a leak developed causing burns to his right index and ring finger. Supervisor: a. E. Griffith
## 5988 12/6/2005 12:07 pm (fblackmo) employee was winding down trailer stand when, he felt pain in his left shoulder. Supervisor: henry sturdivant
## 5989 12/6/2005 12:18 pm (fblackmo) employee was hooking asphalt edgar up to the small dump truck and didn't move his finger in time. Employee mashed his right thumb between iron brace and tailgate. Supervisor: kenneth horton
## 5990 12/6/2005 12:30 pm (fblackmo) employee was pulling on barricade when, the rope slipped causing him to fall backwards striking his leg on a rock. Supervisor: donald griffith
## 5991 12/6/2007 01:36 pm (blgay) employee was dumping load of material at dump site. Load got hung and employee had to pull material out of truck, causing contact with poison oak. Supervisor: j. F ruppard
## 5992 12/6/2007 01:56 pm (blgay) employee was moving oxygen tank, when he injured his stomach. Supervisor: ken anderson
## 5993 12/6/2007 02:09 pm (blgay) employee was helping crew members unload a sled off of trailer when sled got stuck. Employee was pulling when he felt a miscle pull in his back. Supervisor: t. W. Edwards
## 5994 12/6/2007 02:23 pm (blgay) employee was cutting line and moving under old cedar trees in woods, brush and old logs. Tree brush and old sticks went down his shirt off cedar trees. Supervisor: andrew murphy 3/13/2008 12:30 pm (sjerniga)
## 5995 12/6/2007 02:35 pm (blgay) employee was repositioning I beam and a piece of metal fell and mashed tip of middle finger of right hand. Supervisor: david moore
## 5996 12/6/2007 02:46 pm (blgay) employee was working under dump truck. When getting up he hit his head under edge of dump bed, cutting the top of his head. Supervisor: james conner
## 5997 12/6/2007 02:57 pm (blgay) employee was working on asphalt paver. It had a pile of asphalt beside it. Employee was standing on pile when it shifted under his foot and injured his right knee. Supervisor: james conner
## 5998 12/6/2007 03:06 pm (blgay) employee was mowing and was bitten by a bug or insect, causing rash on right arm and back. Supervisor: greg mccracken
## 5999 12/6/2007 03:21 pm (blgay) employee was unloading a roller off a tag along trailer when the plywood decking gave way. The roller slipped from the trailer, overturned and threw employee to the ground, bruising his right side of torso. Supervisor: w. R.
## 6000 12/6/2007 03:30 pm (blgay) employee tripped on vines and briars on backside of ditch and fell striking his head on the back bucket of the backhoe, cutting the top of his head. Supervisor: ronald grier
## 6001 12/6/2010 11:55 am (barnes) employee was looking in the warehouse to see if there were any safety vests. Upon closing the door, the wind caused the door to close on his hand. Employee injured his left hand. Supervisor: nanette fogleman
## 6002 12/7/2004 08:44 am (fblackmo) employee states while shoveling out a culvert due to flood he, felt pain in his lower back. Supervisor: tom huskins
## 6003 12/7/2004 09:06 am (fblackmo) employee was going to clean the lee boy paver. The seat was in the auger bin. Employee reached down to get the seat out, it was lodged in the bin. Employee was pulling against the seat when, he felt pain in his left groin
## 6004 12/7/2004 09:22 am (fblackmo) employee was moving boards off of trailer so he could turn it into shop for service when, he stepped off trailer and landed wrong causing pain to his lower back. Supervisor: don carpenter
## 6005 12/7/2004 09:32 am (fblackmo) employee was pushing asphalt with rake when, he felt pain in his chest area. Supervisor: r. L. Warlick jr
## 6006 12/7/2004 09:46 am (fblackmo) employee was traveling southbound in his state vehicle. Employee stopped for traffic jam when, his vehicle was hit in the rear by another vehicle. Supervisor: t. S. Collins
## 6007 12/7/2004 10:04 am (fblackmo) employee was unloading timber when, a splinter punctured his stomach area. Supervisor: earl d. Bell
## 6008 12/7/2004 10:14 am (fblackmo) employee was helping to set gabion basket when, he stepped on a rod that punctured his right foot. Supervisor: arthur hensley
## 6009 12/7/2004 10:56 am (fblackmo) employee was picking up steel plate to move outside of shop when, the plate fell striking his right foot. Supervisor: b. E. White
## 6010 12/7/2004 11:12 am (fblackmo) employee was checking clients documents when, client struck employee with a closed right fist on his left ear area. Supervisor: linda moose
## 6011 12/7/2005 03:51 pm (blgay) employee was helping another employee remove brake drums from a tamdon truck, when he pulled drum off and turned to sit it down pulled back. Supervisor: dayton lynch
## 6012 12/7/2005 04:18 pm (blgay) employee was coming in the back door, fell and hit head, back and right side on a file cabinet. Supervisor: joan j. Holland
## 6013 12/7/2005 04:32 pm (blgay) employee was cutting tree on sr 1210 hoover road when the chain saw became caught in the tree and kicked back causing wrist to jam. Supervisor: robert ramsey
## 6014 12/7/2005 04:42 pm (blgay) employee was removing tailgate latch pin with a chisel and hammer. After hitting pin the hammer glanced off and hit right thumb against the tailgate body. Supervisor: lewis baker
## 6015 12/7/2005 04:52 pm (blgay) employee was attempting to step down from trailer, tripped and fell landing on his right shoulder. Supervisor: charles jones
## 6016 12/7/2007 01:01 pm (blgay) employee was compacting dirt material to rebuild shoulder section. Material was dry and hard to achieve density. Material was statically rolled and when roller was switched to vibratory, materials shifted, causing roller to
## 6017 12/7/2007 01:17 pm (blgay) employee was bending over to pick up a silt fence post and felt a sharp pain. Pain worsened and employee sought medical attention. Supervisor: tony east
## 6018 12/7/2007 01:29 pm (blgay) employee went to the hendersonville shop to get a 11r22. 5 truck tire. Employee loaded tire without assistance. Employee reported to his supervisor the next day that he had strained his back loading the tire. Supervisor: bobb
## 6019 12/7/2007 01:48 pm (blgay) employee felt a pain in his back after he dismounted a dump truck. The employee had helped lift a heavy piece of equipment earlier in the day. Supervisor: sg dillon
## 6020 12/7/2007 02:03 pm (blgay) employee was conducting road test and while backing up, driver gunned the gas to floor and hit 2 parked cars. Supervisor: lorrie sineath
## 6021 12/7/2007 02:16 pm (blgay) employee was driving an imap truck on interstate 85 business, traffic was slowing due to congestion, pov struck imap truck from behind. Driver of pov was cited for a moving violation. Supervisor: sam whittington
## 6022 12/7/2007 12:51 pm (blgay) employee was cutting stumps on slope sr 1432, when chain saw kicked back striking leg and cutting right leg that required medical attention. Supervisor: joel riley
## 6023 12/7/2010 06:32 pm (barnes) employee was loading a spreader. When he unhooked the chain from the spreader he used it to pull himself up. The chain came unhooked from the top of the beam falling and hitting him in the head. He went to urgent care and r
## 6024 12/7/2010 11:52 am (fblackmo) employee was helping nail down metal roof on top of storage facility when, he got to close to the edge and slipped off. Employee fell approximately ten feet to the ground causing injury to his right ankle. Supervisor: mic
## 6025 12/8/2004 08:59 am (fblackmo) employee was inspecting a bridge concrete pouring when, he stepped onto uneven asphalt roadway and fell down and twisted right ankle. Supervisor: ron graham
## 6026 12/8/2004 09:20 am (fblackmo) employee was laying on tracks of crane removing bolts when he got up off the track he, felt pain in his back. Supervisor: h. Mason thompson
## 6027 12/8/2004 09:34 am (fblackmo) employee was putting up the warning that goes with the air compressor when, he burnt his arm on the hot end of the ward.
## 6028 12/8/2005 09:38 am (fblackmo) employee was getting out of vehicle at maintenance shope when, the wind blew foreign matter into his eyes. Supervisor: maurice e. Ring
## 6029 12/8/2005 09:52 am (fblackmo) employee was walking on rip rap under bridge to do an inspection when, he tripped over a rock causing the injury to his right shoulder. Supervisor: dan holderman
## 6030 12/8/2008 02:32 pm (blgay) employee was in the crew cab dump truck on nc 73 east with left turn signal on and waiting for traffic to clear in order to make a left turn on to hahn road. A pick up truck that was hauling a car on a trailer struck the cre
## 6031 12/8/2008 02:50 pm (blgay) employee was in the crew cab dump truck on nc 73 east with left turn signal on and waiting for traffic to clear in order to make a left turn on to hahn road. A pick up truck that was hauling a car on a trailer struck the cre
## 6032 12/8/2009 03:37 pm (blgay) employee was entering dmv headquarters and slipped on wet floor, injury his right ankle. Supervisor: julia swicegood 12/8/2009 04:14 pm (blgay)
## 6033 12/8/2010 09:56 am (barnes) employee was working on shoulder machine lifting flap and felt his right shoulder pop. Employee injured his right shoulder. Supervisor: mike walden
## 6034 12/9/2004 03:12 pm (fblackmo) employee was exiting flatbed truck without using handrail when, he twisted left knee. Supervisor: I. H. Mccombs
## 6035 12/9/2004 03:22 pm (fblackmo) employee was inspecting patching operations when, he stepped on fire ant hill causing a allergic reaction. Supervisor: ron graham
## 6036 12/9/2004 03:38 pm (fblackmo) employee was lifting hood on dump truck when, he felt pain in his lower back. Supervisor: james f. Bishop
## 6037 12/9/2004 03:46 pm (fblackmo) employee was clearing brush when, he came into contact with poison ivy. Supervisor: william dodson
## 6038 12/9/2004 03:56 pm (fblackmo) employee was closing tailgate on truck when, he felt pain in his back. Supervisor: r. G. Crews
## 6039 12/9/2004 04:09 pm (fblackmo) employee was clearing brush when, he came into contact with poison ivy. Supervisor: william dodson
## 6040 12/9/2004 04:19 pm (fblackmo) employee was pulling bag of fertilizer off back of truck when, he felt pain in his back. Supervisor: richard ieard
## 6041 12/9/2004 04:28 pm (fblackmo) employee states while standing on ladder reaching around to work on duck he, felt pain in his back. Supervisor: jeff dreyer
## 6042 12/9/2005 02:40 pm (blgay) employee was helping another employee unload 24" aluminum pipe from trailer. Pipe slipped out of other employees hand and hit the roadway surface, which caused it to bounce up and strike employees right hand, which was locat
## 6043 12/9/2005 02:55 pm (blgay) employee was conducting pretrip inspection on a cdl vehicle, slipped on gumball in parking lot and sprained right ankle. Supervisor: lorrie sineath
## 6044 12/9/2005 03:11 pm (blgay) employee was working as a deckhand and in putting mooring lines on cleat he mentioned he felt something in his groin area. When asked if employee was ok he said there didn't seem to be a problem and he would continue to work
## 6045 12/9/2008 02:15 pm (fblackmo) employee was reaching up to close bed cover on pick up when, he felt pain in his lower back area. Supervisor: archie r. Wells
## 6046 12/9/2008 02:36 pm (fblackmo) employee was getting up out of desk chair when, he felt pain in right knee area. Supervisor: w. I. Watson
## 6047 12/9/2008 02:50 pm (fblackmo) employee was transporting inmates from newport to onslow county when, private felled to yield causing collision. Employee felt pain in shoulder, neck, and right side of body. Supervisor: c. W. Wethington
## 6048 12/9/2008 03:04 pm (fblackmo) employee was walking through debris when, nail went into his right foot. Supervisor: dean argenbright
## 6049 12/9/2008 03:15 pm (fblackmo) employee was climbing down out of truck when, he felt pain in his back. Supervisor: dean argenbright
## 6050 12/9/2008 03:51 pm (fblackmo) employee was having blood drawn for lead testing at the nash county facility. Employee stated that the needled had been inserted and about half of a tube was filled when blood stopped flowing. Technician switched tubes an
## 6051 12/9/2008 04:04 pm (fblackmo) employee was checking tire on piece of equipment, he placed his hand on the ground to look closer at tire, and bee stung his left wrist. Supervisor: robert stox
## 6052 12/9/2008 04:13 pm (fblackmo) employee was pushing on a tile when, he felt something pop in his back. Supervisor: wayne wooten
## 6053 12/9/2009 03:46 pm (fblackmo) employee was jumping a ditch and injured her left ankle. Supervisor: dean argenbright
## 6054 1994 distal right fibulator fx, pain and tendernesselbow for 10 weeks, tender over ?? ??, pain with evirsion.
## 6055 1:1 patient leaped up from bed and started punching staff on the head and face.
## 6056 1:1 w client-redirected another client around west end doors-turned twisting l knee. ()
## 6057 1:1 w resident-resident attempted to punch another resident and employee (kept going back/forth btw. Resident and employee)-employee blocked punches-later in day noted pain in back ()
## 6058 1:1 w resident-resident started to stumble- employee caught - in process resident bent/pushed r. Thumb backwards. ()
## 6059 1:1 with patient-had to ease to floor-pain in low back ()
## 6060 1:1 with patient-kicked foot hitting l. Wrist ()
## 6061 1:1 with patient. Walked with patient to med room, patient suddenly turned and struck staff 4-5 times on the face. ()
## 6062 1:1 with pt. Pt leaning forward in geri-chair. EE attempted to assist pt to sit back in chair, felt pain in his back. Low back.
## 6063 1st and 2nd thermal burns to index finger and left shoulder ()
## 6064 1st veh slammed on brakes -EE hit 1st veh in rear then 3rd veh hit EE veh in rear.
## 6065 2 arms outstretched in front of body lifting water from waist high. Utility care for water filtration. Water bottle wt is 10 1/2 lbs. ()
## 6066 2 choral risers were up and worker was trying to raise the third riser. It was close to the upright ones and while raising the third riser the employee's hand was caught between the risers and smashed. ()
## 6067 2 dogs approached EE and bit at his legs
## 6068 2 dogs in a fight, tried to pull dogs apart and one dog bit the employee
## 6069 2 drawer file cabinet began to tip over, caught itto prevent falling
## 6070 2 ees moving file cabinet, r hand last finger severe laceration.
## 6071 2 employees removing door; door popped loose and dropped
## 6072 2 employees were fighting and EE pulled on of the people fighting struggling out of the building
## 6073 2 employees were loading a ups crate into a car when the protective plastic corner popped off. The exposed metal cut 1 employee's leg.
## 6074 2 hct's went into resident room to do adl care & while transferring resident hct left shoulder was pulled. ()
## 6075 2 inmates began fighting and he tried to break it up in process of doing this, he was hit in nose bya punch was thrown during fight.
## 6076 2 inmates in physical confrontation, EE assisting breaking up fight, inmates were bleeding, exposed blood to EE, both hands and arms
## 6077 2 inmates in physical confrontation, EE assisting to break up fight, inmates were bleeding, exposed blood to EE, both hands and arms
## 6078 2 inmates involved in physical confrontation, EE assisting to break up fight, exposed to blood, inmates were bleeding, both hands, both arms
## 6079 2 inmates were fighting. EE received small cut on finger from a bed spring
## 6080 2 juveniles fighting and employee was hit in mouth& strained lower back, also 2 bottom front teeth are loose.
## 6081 2 juveniles were fighting, while restraining one juvenile employee injured left side and chest
## 6082 2 officer takedown c/o jones was being placed on the ground one officer was guiding her to the ground with one hand and another wrapped up her legs an
## 6083 2 officers were putting inmate in full restraints. They entered the cell to put on waist chain and inmate charged at c/o sparks, hitting him in the face and nose. ()
## 6084 2 patients fighting staff attempt to intervene & patient yanked left arm resulting in left shoulderand neck pain
## 6085 2 patients fighting; employee intervened; EE and pt fell to floor ()
## 6086 2 patients were fighting & staff intervened & put patient in pic hold & tood to floor in process patient was jerking & EE twisted left ankle
## 6087 2 patients were fighting, EE was scratched on r wrist while trying to break fight up
## 6088 2 person /kneeling reload) using police ballistic shield during active shooter training. (annual in srv/training. In jury to r knee. ()
## 6089 2 person assist-resident to stand from sitting-resident started to sit back down-pulling employee down-strain mid/upper back. ()
## 6090 2 pts fighting, attempting to put pt in manual hold, twisted ankle. ()
## 6091 2 pts were about to fight, EE intervened, slipped, pt/EE fell to floor, pt continued to fight, bite EE ()
## 6092 2 pts were fussing, EE tried to break up, pt tried to hit EE, pt shoved EE, EE fell to floor, pts fell on top of EE
## 6093 2 students were arguing over a basketball EE went over to students and one student accidently poked EE in lt eye
## 6094 2 students were at bus stop in frt on p2p. I was walking toward them to ask where they were going watching them when I tripped over vehicle stop
## 6095 2 students were fighting & EE went to restrain thestudent who had been the aggressor & hurt back
## 6096 2 students were fighting. EE was trying to break them up when arm got caught between student and plexi-glass**sal contin EE***
## 6097 2-man take down in training, 3rd officer didn't follow instructor's directions, resulting her arm injuring my l/thigh and knee ()
## 6098 2/1/2005 08:45 am (fblackmo) employee was lifting platform when, he heard a pop in his back. Supervisor: dennis baker
## 6099 2/1/2005 08:55 am (fblackmo) employee was walking into ladies restroom when, she slipped on slick floor. Supervisor: gary m. Wilson
## 6100 2/10/2006 11:10 am (blgay) employee was coming through the back door of the office and slipped on wet floor that had just been mopped by the janitor. Employee fell on her knees, caught herself with her right hand and wrist, then fell completely on the
## 6101 2/10/2006 11:23 am (blgay) employee was climbing into loader, he was holding on to right grasp bar and reaching for the left one, when employee slipped on iced over step, causing him to swing around and hit the middle of his back on the wheel fender.
## 6102 2/10/2006 11:37 am (blgay) employee was cutting trees and dragging the bruch to the chipper. Thought the poison oak was dormant. Poison oak reaction. Supervisor: keith hill
## 6103 2/10/2006 11:46 am (blgay) employee was removing piece of lumber from roadway, when he fell back on elbow and hip, after losing balance. Supervisor: sean epperson
## 6104 2/10/2009 03:03 pm (fblackmo) employee was cooking, lifted a large heavy pot from counter to stove when, she felt pain in left wrist. Supervisor: h. C. Scarborough
## 6105 2/10/2009 03:16 pm (fblackmo) employee was working with crew chopping, sawing brush, and trees from sides of slope shoulders behind guard rail. Employee used bush axe in the morning and chainsaw in the afternoon on slope with severe washout. Employee
## 6106 2/10/2009 03:31 pm (fblackmo) employee was pulling bushes, limbs, and vines off fence when, he felt something giveaway in his left foot. Supervisor: dwayne warner
## 6107 2/10/2009 03:32 pm (blgay) employee was trying to a clogged material wand. Hot material blew back on right hand when tip was removed from material wand, causing burn on right hand. Supervisor: j. W. Brown
## 6108 2/10/2009 03:44 pm (fblackmo) employee had parked dump truck in parking area and was walking to the office (ground was covered with snow) when, he stepped off curb his feet slid out from under him causing him to fall landing on his lower back. Supervi
## 6109 2/10/2010 01:05 pm (blgay) employee was traveling home on us 421 south in the right lane, when a private vehicle began to spin out of control heading north on the snow covered road. The private vehicle continued to spin out of control and crossed the
## 6110 2/10/2010 01:48 pm (blgay) employee was working on the side of the dump truck helping to remove the salt out of the salt spreader. As he was trying to break the last portion of salt, the grate over the salt spreader hit him on the head. Supervisor: fr
## 6111 2/10/2010 02:00 pm (blgay) employee was walking across the parking lot at the equipment yard and slipped on an icy spot and fell down. Supervisor: reid rich
## 6112 2/10/2010 02:11 pm (blgay) employee was lifting dead animal to put onto the trash truck and heard a popping noise in his back. Employee stated that it did not bother him at that time. Employee did not report this until the end of working day on wednes
## 6113 2/10/2011 03:20 pm (barnes) employee was operating a grader. He brought it to a complete stop. As he exited the grader on level ground, he slipped on ice and snow. He fell and struck his head on the grader blade. He also struck his back, ribs and shou
## 6114 2/10/2011 10:09 am (barnes) employee was replacing a fuel line on a dump truck on 1/5/11. He strained his right arm and shoulder. The next day on 1/6/11, he mentioned the pain. After trying to relieve the pain with icy heat and alleve, the pain still d
## 6115 2/10/2011 10:28 am (barnes) employee was loading para-plastic boxes into pickup truck and injured his neck. Supervisor: anthony bostic
## 6116 2/10/2011 10:46 am (barnes) employee was driving plow truck when a private own vehicle crossed the center line and slid into the plow truck. Employee injured his right elbow. Supervisor: d. M pressley
## 6117 2/10/2011 11:04 am (barnes) employee was moving a large crate of road signs by pushing it across the floor. Employee injured his lower abdomen. Supervisor: wayne williams
## 6118 2/10/2011 11:38 am (barnes) employee was sitting in chair at his desk. Chair turned over causing employee to fall to the floor. Employee injured his shoulder and hip. Supervisor: clyde e. Scott
## 6119 2/10/2011 12:11 pm (barnes) employee was traveling north on nc 194 pushing snow. A tractor trailer truck that was traveling in front of him jackknifed, causing the employee to hit brakes to avoid an accident. However, this caused the truck that employ
## 6120 2/10/2011 12:33 pm (barnes) employee was operating the amz patcher machine. Employee injured his back. Supervisor: michael burke
## 6121 2/11/2004 05:05 pm (slee) employee was pushing snow on 70 bus. With motorgrader. He hit a manhole cover causing head to hit mirror.
## 6122 2/11/2004 8:00 am (kbarefoo) employee was walking across parking lot when, he slipped on the ice causing the injury to his wrist. Supervisor: jackie s. Holland 03/12/2004 08:17 am (kbarefoo)
## 6123 2/11/2004 employee was shoveling rocks into a drop off at the edge of pavement when, she felt pain in her chest. Supervisor: joe justice
## 6124 2/11/2005 07:52 am (fblackmo) employee was removing a "t" post stake when, he felt pain in his left hand. Supervisor: alvie lee
## 6125 2/11/2005 08:09 am (fblackmo) employees center finger on right hand was caught in between the door of a dump truck. Supervisor: william edward mcclendon jr
## 6126 2/11/2005 09:08 am (fblackmo) employee was breaking up large chunks of salt when, a piece of salt hit him in the head. Supervisor: sg dillon
## 6127 2/11/2005 09:20 am (fblackmo) employee stepped out of dump truck when, he felt pain in his left knee. Supervisor: al smith
## 6128 2/11/2005 09:33 am (fblackmo) employee was exiting van when, he tripped over rubber threshold on van steps. Supervisor: I. H. Mccombs
## 6129 2/11/2005 10:08 am (fblackmo) employee was checking chains on tires when, he was bitten by a dog on his right hand. Supervisor: james d. Shelton
## 6130 2/11/2005 10:31 am (fblackmo) employee was moving furniture from the hendersonville field office to asheville district. While loading a computer, he felt a pain in his right shoulder. Supervisor: g. V. Mckinney
## 6131 2/11/2005 11:15 am (fblackmo) employees vehicle was struck on the left side while trying to pass a snow plow. Supervisor: darrell dean
## 6132 2/11/2009 04:04 pm (blgay) employee was getting into truck that was sitting on a drive on lift, when he twisted his left knee and injured it. Supervisor: jeff whitney
## 6133 2/11/2009 09:38 am (blgay) employee was cutting a tree on asheville hwy nc 280 and tree had poison oak vine attached to it. Poison oak on several areas of the body. Supervisor: david capps
## 6134 2/11/2009 09:55 am (blgay) employee was trying to install tailgate on truck, tailgate slipped off hook on hoist, fell to floor, and bounced up striking employee in face on right cheek. Supervisor: s. G. Foster
## 6135 2/11/2009 10:46 am (blgay) employee was cutting right of way on cornelius road and bluefield road, came in contact with poison oak. Poison oak on face, neck, hands, arms, head, legs and fingers. Supervisor: jamie robinson
## 6136 2/11/2009 11:23 am (fblackmo) employee was involved in auto accident while on his way to a project work site. Employee is experiencing pain in his back. Supervisor: dough a. Ashe
## 6137 2/11/2009 11:48 am (fblackmo) employee was traveling south on nc 11 when, sport utility ran into back of crew cab truck. Employee felt pain in lower back. Supervisor: kenny dixon
## 6138 2/11/2009 12:03 pm (fblackmo) employee was digging a hole to bury a dead animal, she stepped on shovel to dig in hard dirt, slipped and fell down on her back. Supervisor: jackie fone
## 6139 2/11/2009 12:22 pm (fblackmo) employee was packing concrete in hole when, he jammed his left center finger. Supervisor: randy williams
## 6140 2/11/2010 02:18 pm (fblackmo) employee was conducting a road test when, driver ran into the back of a stopped vehicle. Employee felt pain in her left shoulder and side. Supervisor: lorie cantu
## 6141 2/11/2010 02:33 pm (fblackmo) employee was carrying box of parts across parking lot when, he slipped and fell due to snow and ice. Employee felt pain in right shoulder and right ankle. Supervisor: larry lewis 03/05/2010 10:38 am (lvaughan) fx r-s
## 6142 2/11/2010 02:47 pm (fblackmo) employee was stepping out of his vehicle when, he slipped and fell due to snow and ice. Employee felt pain in his left arm and elbow. Supervisor: david moore 03/04/2010 10:44 am (lvaughan) l-elbow dislocation
## 6143 2/11/2010 08:30 am (fblackmo) employee was walking to truck and slipped on ice causing injury to right hip. Supervisor: mike rogers
## 6144 2/11/2010 08:42 am (fblackmo) employee struck his head on the ground when he slipped and fell due to snow and ice. Supervisor: jerry keene
## 6145 2/11/2010 12:56 pm (blgay) employee was getting down the motor grader blades from the racks. The blades are very heavy and thick. The blade slipped out of employees hand and caught left hand between blade and board. Supervisor: rick jordan
## 6146 2/12/2004 02:03 pm (fblackmo) employee states she is experiencing pain in her left arm, shoulder, and neck. Supervisor: patsy champion
## 6147 2/12/2004 02:15 pm (fblackmo) employee states that due to daily exposure to various types of equipment he lost hearing in both ears. Supervisor: bubba r. Johnson
## 6148 2/12/2004 02:28 pm (fblackmo) employee was sitting in chair during lunch hour in the office. Another employee approached Mr. Bennett and opened a soda can in the proximity of his left ear causing his ear to go numb. Supervisor: c. D. Cloud
## 6149 2/12/2004 02:42 pm (fblackmo) employee was trying to lift a mailbox post that was attached to a five gallon bucket of cement when, he felt pain in his groin area. Supervisor: william cooke
## 6150 2/12/2004 02:57 pm (fblackmo) employee states that, both left and right ear suffered hearing loss due to equipment noise. Supervisor: iris h. Mccombs
## 6151 2/12/2004 03:09 pm (fblackmo) employee was walking on icy covered parking lot when, she slipped and fell causing the injury to her wrist. Supervisor: w. B. Crumpler
## 6152 2/12/2004 03:36 pm (fblackmo) employee was cutting trees when, on fell striking him on his lower left leg and knee. Supervisor: r. D. Pittman
## 6153 2/12/2004 04:01 pm (fblackmo) employee states while looking the the storage building he tripped over a wire fence causing a cut to his left hand. Supervisor: r. D. Isley 05/24/2005 02:26 pm (kbarefoo)
## 6154 2/12/2004 04:12 pm (fblackmo) employee was moving truck when, she set off the fire extinguisher. Inhaled the contents of the extinguisher causing pain to lungs and a headache. Supervisor: randall jackson
## 6155 2/12/2004 04:33 pm (fblackmo) employee was pulling pins from gate when, his hand and elbow was caught between the two gates. Supervisor: r. H. Rich
## 6156 2/12/2004 09:17 am (gsimmons) employee was pulling limbs into woods, limb flew back hitting employee in corner of right eye.
## 6157 2/12/2004 10:52 am (gsimmons) employee says that he is not sure but could be due to excessive keyboarding. Pain in both hands. 2
## 6158 2/12/2007 02:46 pm (speedin) employee was assisting crew to attach snow plow to dump truck. While employee was levering snow plow with a steel post, he strained his ankle. Supervisor: danny fuller
## 6159 2/12/2007 04:46 pm (fblackmo) employee states that he was exposed to loud noises over a period of 23 years. Hearing loss. Supervisor: dennis bennett
## 6160 2/12/2008 09:00 am (blgay) employee was loading parts truck with heavy box. When arriving in alexander county shop, employee was unloading truck chains from front of the truck to the back of the truck. When employee got home that evening he felt a pai
## 6161 2/12/2008 09:11 am (fblackmo) employee was patching potholes in new hanover county on 1/16/2008. Employee complained that left hand was hurting. Later, employee stated that the pain had moved to his left thumb. Supervisor: travis mintz
## 6162 2/12/2008 09:29 am (fblackmo) employees truck hydroplane and ran off on ramp. The truck continued to slide, hit the grass until the front tires dug in, and rolled over. Employee felt pain in his lower back, right shoulder, and ankle. Supervisor: bill w
## 6163 2/12/2008 09:43 am (fblackmo) employee was cutting cabbage for the cook in the kitchen, knife slipped cutting left thumb, requiring four stitches. Supervisor: t. L. Gray
## 6164 2/13/2004 02:12 pm (fblackmo) employee was using a hammer to beat in a tank guard that had been bent and slipped and hit his hand. Supervisor: g. W. Price
## 6165 2/13/2004 02:52 pm (fblackmo) employee lost his balance while exiting ferry, causing the injury to his left elbow. Supervisor: m. J. Gray
## 6166 2/13/2004 03:06 pm (fblackmo) employee was clearing ice and snow from sidewalk when, he slipped and fell causing the injury to his ear. Supervisor: melvin newton
## 6167 2/13/2004 08:40 am (fblackmo) employee was using a screwdriver when it slipped and punctured his hand. Supervisor: roger ayers
## 6168 2/13/2004 08:54 am (fblackmo) employee was walking outside to going to the cafeteria when, she slipped and fell on the ice causing the injury to her left knee. Supervisor: susan jernigan
## 6169 2/13/2004 09:10 am (fblackmo) employee stated that he pulled up a wood post with post puller. He stated that he then grabbed it to put it in the back of the truck when, he felt pain in his right arm. Employee requested to go home on 12/23/2003 becau
## 6170 2/13/2004 09:27 am (fblackmo) employee slipped on ice while attempting to get into truck, causing the injury to his head. Supervisor: mark wade
## 6171 2/13/2004 09:37 am (fblackmo) employee was installing a brake tube for air brakes when, the socket flew off air wrench striking him on his forehead. Supervisor: donald e. Rector
## 6172 2/13/2004 09:51 am (fblackmo) employee was attempting to remove a key when, the struck him above his right eye. Supervisor: j. W. Lassiter
## 6173 2/13/2004 10:02 am (fblackmo) employee was hooking up chains between wrecker and truck when, he lost his footing on the ice causing him to fall striking his face and wrist on pavement. Supervisor: j. W. Marler
## 6174 2/13/2004 10:12 am (fblackmo) employee states that a beam fell over striking him on his lower right leg. Supervisor: david l. Moore
## 6175 2/13/2004 10:25 am (fblackmo) employee stopped to clear snow form the windshield wipers when, he slipped and fell on the ice causing the injury to his left shoulder. Supervisor: scott capps
## 6176 2/13/2004 11:23 am (fblackmo) employee ran over a bottle of urine that splashed on his face. Supervisor: jeff hardy
## 6177 2/13/2004 11:48 am (fblackmo) repetitive motion. Supervisor: mike ennett
## 6178 2/13/2006 01:07 pm (blgay) employee was unloading tamp. When employees pinkie finger on right hand was cut. Employee had a gash on his finger and first aid was applied. Employee started feeling weak and then passed out, at this time an ambulance was
## 6179 2/13/2006 03:09 pm (blgay) employee was performing routine sign maintenance and was bitten by insect. Supervisor: todd whitaker
## 6180 2/13/2006 04:07 pm (blgay) employee was turning into driveway and hit a hole that he was unaware of. The truck bounced and he hit his head on the top of the cab, leaving a bump on the top of his head. Supervisor: tommy cottrell
## 6181 2/13/2006 04:15 pm (blgay) employee had climbed up on side boards to clean dirt off side board, when a rock rolled down, hitting the right index finger. Supervisor: r. F. Minto
## 6182 2/13/2006 04:24 pm (blgay) employee was in the engine room of the m/v stanford white installing a valve, using a wrench. The wrench slipped causing her to fall backwards on her left wrist. Supervisor: kevin lamar cooke
## 6183 2/13/2006 08:46 am (blgay) employee was driving state issued vehicle and pulled out at intersection nc 39 and nc 97. Employee was struck in drivers door by pv vehicle, crash impact caused death of employee. Supervisor: b. K. Bozard
## 6184 2/13/2007 02:26 pm (speedin) employee was getting a flag out of back of crew cab. He was standing on bumper of crew cab. He stepped off of bumper to ground and turned his ankle. Supervisor: james r. Ashe
## 6185 2/13/2007 09:37 am (speedin) employee conducted road test. Customer was attempting to drive through a 90 degree curve. Customer did not turn steering wheel and drove into ditch. Head & neck snapped backwards upon vehicle's impact in ditch. Supervisor:
## 6186 2/13/2007 10:47 am (speedin) employee slipped in mud while inspection of traffic signal cabinet. Employee twisted right knee. Supervisor: j. D. Edwards
## 6187 2/13/2007 11:14 am (speedin) employee was helping a fellow employee and injured his back. Sign rack fell off of backhoe truck, stopped on sr 2127 to pick it up. Bonford was helping s. F. Jenkins pick it up when he stepped wrong and hurt his back. Emplo
## 6188 2/13/2007 11:49 am (speedin) employee was getting in the sign truck, he stepped on the step of the sign truck with his right foot, pushed off the ground with his left foot and something popped in his left knee which caused sharp pain to the knee area.
## 6189 2/13/2008 03:10 pm (blgay) employee was assisting with chipping brush. Employee bent over to pick up more brush, when a limb caught hold in the roller wheels of the chipper, causing it to whip around and it made contact with employees forehead, causin
## 6190 2/13/2008 03:28 pm (blgay) employee was pulling a roll of wire off top of crate. Realizing it was to heavy to handle, employee threw wire to ground, causing roll of wire to bounce and hit right hand, fracturing middle finger on right hand. Supervisor:
## 6191 2/13/2009 01:40 pm (blgay) employee was getting into dot truck. Employee had a chain saw file in his right hand. While getting into truck file hit steering wheel of truck, forcing it into right hand. Supervisor: j. W. Brown
## 6192 2/13/2009 01:57 pm (blgay) employee was parking the motor grader and exited the grader. Employee exited the last step from the top of the blade to the ground, as he stepped down he hyperextended his right leg and knee. Supervisor: r. W. Rhodes
## 6193 2/14/2005 10:12 am (fblackmo) employee was crossing us-1 on galary drive truck headed south on us-1 ran stop light hitting state vehicle on passenger side. Employee experienced pain in his right shoulder. Supervisor: eddie bunn
## 6194 2/14/2005 10:31 am (fblackmo) employee was jumping up and down on bed of tilt trailer in order to level trailer bed. Employee felt pain in upper back and left shoulder area. Supervisor: j. M. Mitchell
## 6195 2/14/2005 10:51 am (fblackmo) employee was exiting state vehicle when, he slipped and fell due to ice. Supervisor: robert g. Davis
## 6196 2/14/2007 09:54 am (fblackmo) employee was walking through wooded area placing clearing limits when, he felt pain in his right calf muscle. Supervisor: wayne currie
## 6197 2/14/2007 10:20 am (fblackmo) employee was working the m/v cedar island, as he attempted to remove a section of bulwark he had just burned, he pulled on one section causing it to tip over bending his left wrist. Supervisor: marshall c. Coleman
## 6198 2/14/2007 11:36 am (fblackmo) employee was boring a hole with a hand held hydraulic auger with another employee when, they lost control of the auger causing it to pin employees left ankle to the ground. Supervisor: jason leonard
## 6199 2/14/2008 07:00 am (slee) employee overturned a dump truck into an adjacent ditch while traveling westbound on sr 1443. A personal vehicle in front of employee abruptly applied their brakes to make a turn without the use of a turn signal.
## 6200 2/14/2008 12:40 pm (blgay) employee was on a road test. Customer was approaching an yield sign and instead of yielding, customer accelerated and turned vehicle into the middle lane where she hit a nissan altima in the rear end. Supervisor: phyllis you
## 6201 2/14/2011 03:38 pm (fblackmo) employee was helping move a two drawer filing cabinet when it slipped causing laceration to third finger on left hand. Supervisor: steve adams
## 6202 2/14/2011 11:49 am (fblackmo) employee was removing an oil filter, filter slipped and cut his third finger on left hand. Supervisor: robert w. Norwood
## 6203 2/14/2011 12:06 pm (fblackmo) employee was testing/swinging davit during uscg drill when, he felt pain in his right shoulder.
## 6204 2/14/2011 12:43 pm (fblackmo) employee was using a bush axe to cut trees on roadway when one of the limbs hit him in his right eye. Supervisor: s. R. Ross
## 6205 2/15/2005 02:27 pm (fblackmo) employee was removing drifts form beneath a bridge by attaching nylon rope to truck winch cable. When wincing began tight, rope was overloaded and broke, striking employee on left forearm. Supervisor: j. D. Crank
## 6206 2/15/2005 02:46 pm (fblackmo) employee was replacing tailgate onto the truck when, the tailgate dropped on his left thumb. Supervisor: j. R. Price
## 6207 2/15/2005 03:49 pm (fblackmo) employee was bending over the tire of an international dump truck changing the fuel filter. Employee was twisting and trying to break the filter loose when, he stood up he felt pain in his back area. Supervisor: keith smit
## 6208 2/15/2005 12:18 pm (fblackmo) employee states she slipped on slick floor. Employee experienced pain in her left arm. Supervisor: lee r. Johnson
## 6209 2/15/2006 01:30 pm (blgay) employee was bending down to work on a signal cabinet in the signal shop and felt pain in the right knee area. Supervisor: james g. Taylor
## 6210 2/15/2006 01:38 pm (blgay) employee was picking up trash bags off of shoulder of road after a rain. In the process of throwing the bags into truck bed, a liquid got onto the arm of the employee. Later that night he noticed a rash began showing up on h
## 6211 2/15/2006 11:29 am (blgay) employee was driving van, when he ran off the road as he entered a curve, went through a couple of yards and clipped the corner of a porch, hitting an utility trailer. Van came to rest in a yard facing in the opposite direct
## 6212 2/15/2006 11:40 am (blgay) employee was standing behind the ncdot maintenance office, when another employee approached him and placed his arm around employees neck, placing him in a headlock type hold. Supervisor: joe justice
## 6213 2/15/2006 11:56 am (blgay) employee was raking stone on a driveway with a large asphalt rake. Employee pulled shoulder while raking. Supervisor: d. R. Arrington 2/14/2008 04:31 pm (lvaughan)
## 6214 2/15/2006 12:06 pm (blgay) employee was walking along side 15/501 project when an insect entered boot and around 10:00 am that morning it had bitten him on the pinky toe. Supervisor: marty c. Tillman
## 6215 2/15/2006 12:17 pm (blgay) employee was walking to the dumpster from the brown storage building to empty trash. On the way back to the building, employee tripped on the form board of the recently poured concrete apron. This caused him to fall, scrapin
## 6216 2/15/2006 12:27 pm (blgay) employee was cutting trees during an ice strom. Employee slid down a 10 foot slope, after losing his footing. Employee hooked a tree with his left arm to prevent falling, injuring his left elbow. Supervisor: m. M. Solon
## 6217 2/15/2006 12:36 pm (blgay) employee was sitting on side of the road looking at plans, when his truck was hit by a pv. Supervisor: m. C. Tillman
## 6218 2/15/2007 02:58 pm (speedin) employee was putting pin into snow plow attachment to correct snow plow. Employees glove got stuck between washer and pin. Employee pulled his hand back and hit it on part of plow attachment. Supervisor: r. D. Powell
## 6219 2/15/2007 12:04 pm (speedin) employee was cutting a small saplings along the right of way with a chain saw. After the employee completed cutting he turned and a limb from the sapling gouged his left eye thus causing a abrasion to the left eye cornea.
## 6220 2/15/2010 08:54 am (blgay) employee was unpluging wires from truck and salt spreader, when he had to pull hard and it came unplugged and he hit his right elbow on the salt spreader. Supervisor: kevin hazelwood
## 6221 2/15/2010 09:07 am (blgay) employee was exiting tow truck, he stepped on running board and twisted right knee. Supervisor: clyde mckinney
## 6222 2/15/2010 09:29 am (blgay) employee slipped on ice during early morning hours on maintenance yard, landing on left hip. Supervisor: a. K. Henderson
## 6223 2/16/2005 10:46 am (fblackmo) employee was at new hanover correctional facility for inmate training class. While climbing stairs his foot caught the step causing him to trip and fall on left knee. Employee said he tried to brace his fall by using his
## 6224 2/16/2005 11:01 am (fblackmo) employee was using heat from a torch to extract seized dram plug form tar kettle when, a piece of rust from the plug hit employee in his right eye under safety glasses. Supervisor: jimmy creech
## 6225 2/16/2005 11:12 am (fblackmo) employee was lifting a pan of stone when, he felt pain in his back. Supervisor: francis lockamy
## 6226 2/16/2005 12:30 pm (fblackmo) two employees were wrestling when, employee lost his footing on curb and fell toward truck hitting his rib cage. Supervisor: j. R. Price
## 6227 2/16/2006 02:52 pm (blgay) employee was stopped at a stop sign, when employee pulled out in front of a pv. Employee stated"his vision was apparently blocked by a tractor/trailer that was turning". Supervisor: r. D. Tuttle
## 6228 2/16/2009 03:01 pm (blgay) employee was pushing up dirt at stock pile and backed over uneven spot. The loader jerked and she pulled a muscle in her upper back. Supervisor: sarah foster
## 6229 2/16/2009 03:15 pm (blgay) employee was getting into undercover jeep after getting gas and hit his left knee on side rail, causing a contusion of the knee. Supervisor: b. K. Hawkins
## 6230 2/16/2010 10:30 am (blgay) employee was drilling a hole in a snow plow frame, when the drill bit got caught and he twisted his right hand, resulting in a spiral break on right hand. Supervisor: jimmy ammons
## 6231 2/16/2011 02:45 pm (barnes) employee(Mr. Hutchens) saw a fellow employee's truck starting to roll. He ran after the truck trying to catch it before it ran through the fence. Mr Hutchens injured his knee while jumping into the truck. Supervisor: clyd
## 6232 2/16/2011 03:49 pm (barnes) employee was stopped at the traffic signal on old charlotte road at rocky river road in monroe. Private vehicle failed to stop for red traffic signal and rear ended employee. Employee injured his neck. Supervisor: sean epp
## 6233 2/16/2011 04:08 pm (barnes) employee was picking up cases of antifreeze and moving them to a different location. He felt a sharp pain in his lower back. Employee did not got to the doctor on date of injury. He went to doctor on 2/3/2011. Employee inju
## 6234 2/17/2005 02:13 pm (fblackmo) employee was hanging signs when, sign dislodged and fell with one post hitting employee in the neck and chest area. Supervisor: charles m. Jackson jr
## 6235 2/17/2005 02:38 pm (fblackmo) employee was laying pipes in wet ditch which, caused the rash on his feet. Supervisor: joe justice
## 6236 2/17/2005 10:48 am (fblackmo) employee was climbing down ladder to cut off paint pump when, he struck his left hand on the platform. Supervisor: w. R. Wall
## 6237 2/17/2005 10:56 am (fblackmo) employee fell and fractured left hip. Supervisor: k. R. Davis
## 6238 2/17/2005 11:11 am (fblackmo) employee was talking to co-workers behind him while going down steps from building. Employee slipped on top step, landing on his left knee. Supervisor: t. L. Gray 2/18/2009 02:31 pm (lvaughan) ic ordered us to cover th
## 6239 2/17/2005 12:03 pm (fblackmo) employee was lifting a wooden seat onto a flat bed truck when, he felt pain in his right wrist. Supervisor: b. R. Webb
## 6240 2/17/2006 09:57 am (blgay) employee was helping unload 50-56 lb bags of fertilizer, seed, and hydromulch bales passed down from flatbed truck. When turning and lifting over head to pass to another employee, employee felt pain in his left shoulder. Sup
## 6241 2/17/2006 10:45 am (blgay) employee was changing position of thumb on excavator, when thumb fell on employees left arm. Supervisor: alan e. Brown
## 6242 2/17/2006 10:57 am (blgay) employee was going up a bank, when his foot became caught on a vine, causing him to fall off the wing of the bridge wall; injuring his back. Supervisor: ken anderson
## 6243 2/17/2010 05:17 pm (fblackmo) employee stepped on pallet when the wooden slant broke causing employee to twist his left foot. Supervisor: mike jefferys
## 6244 2/17/2010 10:45 am (fblackmo) employee injured his right bicep while shoveling rocks on driveway. Employee had pain during the night and had trouble flexing bicep muscle. Employee did not seek medical attention following incident. Employee continues t
## 6245 2/17/2010 10:57 am (fblackmo) employee was working on the computer while typing he felt pain in his right wrist down to his thumb. Supervisor: ben a. Riggs
## 6246 2/17/2010 11:11 am (fblackmo) employee states injured occurred when a private vehicle struck them in the rear. Employee felt pain n his neck, shoulder, and back area. Supervisor: elizabeth lusk
## 6247 2/17/2010 11:25 am (fblackmo) employee was driving dot vehicle when it was hit on the front left side by private vehicle. Employee was the passenger in the back set of the dot crew cab pickup truck. Employee felt pain in his lower back. Supervisor: w.
## 6248 2/17/2010 11:38 am (fblackmo) employee complained of catch and tightness in his back during mandated in service training. Supervisor: steve watkins
## 6249 2/17/2011 10:51 am (fblackmo) employee was helping other employees remove barrels of salt brine from trailer and forklift when, he felt pain in his right shoulder area. Supervisor: jeremy b. Creech
## 6250 2/17/2011 11:05 am (fblackmo) employee was pouring cracks on state road when three dogs ran at him; startled him. Employee fell causing injury to his right calf. Supervisor: archie smith
## 6251 2/17/2011 11:45 am (fblackmo) employee was torquing cylinder head bolts on an international truck engine. His socket slipped causing his hand to hit engine accessories resulting in a cut thumb and mashed ring finger. Supervisor: t. L. Jernigan
## 6252 2/18/2008 11:29 am (blgay) employee was reaching under dash of his work truck, attempting to release a faulty emergency brake peddle, cutting his middle right finger. Supervisor: leonard dills
## 6253 2/18/2009 10:08 am (fblackmo) employee was the passenger in a state vehicle when it was involved in a traffic accident. He was sore and spent thursday 8/7/08 at home. He was back to work on 8/8/08 at 8:00 a. M. Employee complained of pain in his left k
## 6254 2/18/2009 10:21 am (fblackmo) employee stepped through an opening on the deck of the m/v pamlico while removing equipment that was being used to change the oil in the vessel. Employee had cut to lower left leg. Supervisor: robert w. Norwood
## 6255 2/18/2009 10:33 am (fblackmo) employee was performing a density test on soil. The injury occurred while lifting a 50lb saddle weight from the ground onto the test apparatus. Employee felt a sharp pain in lower lumbar area on his back. Supervisor: broo
## 6256 2/18/2010 01:13 pm (blgay) employee was driving parts delivery truck on us 421 toward boone. A private vehicle crossed center line and hit ncdot parts truck in left front drivers side. The road was snow covered. Supervisor: j. D. Nichols
## 6257 2/18/2010 01:46 pm (blgay) employee was reporting to work; was transported by her husband due to winter weather conditions. Entering building from front entrance, slipped on ice on sidewalk, right knee struck steps, right shoulder struck adjacent shor
## 6258 2/19/2004 01:54 pm (fblackmo) employee states while climbing down off a spreader, his foot slipped causing the injury to his right knee. Supervisor: royce bennett
## 6259 2/19/2004 02:03 pm (fblackmo) employee was helping hook up snow plow when, he hit his knee. Supervisor: c. M. Taylor
## 6260 2/19/2004 02:12 pm (fblackmo) employee was climbing down out of truck when, his foot slipped causing the injury to his right shoulder. Supervisor: l. D. Greene
## 6261 2/19/2004 02:26 pm (fblackmo) employee was walking down to office when, he slipped and fell due to the snow and ice. Supervisor: l. W. Lyall
## 6262 2/19/2004 02:36 pm (fblackmo) employee was replacing a broken crossline pipe when, he came into contact with poison ivy. Supervisor: w. E. Mcclendon
## 6263 2/19/2004 02:46 pm (fblackmo) employee was walking across the parking lot when, he slipped and fell due to snow and ice. Supervisor: o. D. Sparks/gary neal
## 6264 2/19/2004 02:57 pm (fblackmo) employee was kneeling while sanding a fender when, he stood up he felt a sharp pain in his left knee. Supervisor: richard f. Jernigan
## 6265 2/19/2004 10:31 am (fblackmo) employee was operating a motor grader all day long. He did a lot of bouncing and had to hold the steering wheel tight, plus at one time had to pull off the road quickly to let an emergency vehicle pass. Employee states he
## 6266 2/19/2004 10:44 am (fblackmo) employee was installing exit sign when, he felt pain in his lower back area. Supervisor: b. T. Coble
## 6267 2/19/2008 03:00 pm (fblackmo) employee was delivering work to third floor of annex building and tripped over the metal piece that keeps the double doors in place. Employee landed on her left side but injured her right shoulder and arm while trying to
## 6268 2/19/2008 03:17 pm (fblackmo) employee was reaching for a metal locator on a slope and fell down bridge slope protection, tripped and landed on his wrists. Supervisor: larry williford
## 6269 2/19/2008 04:56 pm (fblackmo) employee was loading hay bails onto truck when, wind blew foreign matter into his right eye. Supervisor: charles francka
## 6270 2/19/2008 05:07 pm (fblackmo) employee was using a hand driver to drive sign post in ground, felt tingling in his shoulder. Later that same evening he started to feel pain in the shoulder (left). Supervisor: todd whitaker
## 6271 2/19/2009 05:37 pm (fblackmo) employee was stopped at a traffic light when another vehicle failed to stop. The other vehicle hit a delivery truck, side swiped a car, and hit the state own vehicle head on. Employee felt pain in his neck and back. Super
## 6272 2/19/2009 08:54 am (fblackmo) employee travel to worksite to diagnose equipment failure on backhoe. He got down on one knee and looked up under the rear axle at which time dirt fell from the machine striking his face. Debris got between his safety gla
## 6273 2/19/2009 09:08 am (fblackmo) employee was climbing up stairs on m/v hyde and missed a step. Felt pain in left ankle. Supervisor: cindy austin
## 6274 2/19/2010 02:20 pm (fblackmo) employee was assisting with sewer rodder operator. A vacuum truck was operating above employee; vacuum pump operator was assembling the vacuum tubes when tube fell on employee back. Supervisor: brian harper 03/02/2011
## 6275 2/19/2010 02:32 pm (fblackmo) employee was using wire brush to clean parts when his index finger was punctured. Supervisor: alfred wilson
## 6276 2/19/2010 11:52 am (fblackmo) employee was driving d. O. T. Truck when it was struck in the rear at intersection. Employee felt pain in her neck. Supervisor: rachelle beauregard
## 6277 2/19/2010 12:07 pm (fblackmo) employee was turing off water value when he tripped over a cement block fall back on a brick building. Employee felt pain in his right knee. Supervisor: billie l. Poole, jr
## 6278 2/2/2005 02:32 pm (fblackmo) employee was coming into the building from the back loading dock when, he tripped over a raised area in the sidewalk. Supervisor: richard howard
## 6279 2/2/2005 02:42 pm (fblackmo) employee was attempting to remove a small tree from the right of way. Tree was on a incline and employee fell causing the injury to his back. Supervisor: william edward mclendor
## 6280 2/2/2005 02:55 pm (fblackmo) employee was bringing a load of mail into the building and tripped and fell on a raised concrete pad at the door. Supervisor: ed raube
## 6281 2/2/2005 03:08 pm (fblackmo) employee was moving forks closer together on a loader to pick up beam. Another employee picked up the forks as employee was moving them mashing his finger between the fork and frame. Supervisor: jm leatherman
## 6282 2/2/2005 03:17 pm (fblackmo) employee was bending over getting money from the safe when, he felt pain in his back. Supervisor: marsha harris
## 6283 2/2/2005 03:59 pm (fblackmo) employee was changing a tire when, the tire fell over on his right foot. Supervisor: steve smith
## 6284 2/2/2005 04:18 pm (fblackmo) employee states repetitive use of keyboard during the insurance of driver license. Supervisor: dolphus marshburn
## 6285 2/2/2005 11:16 am (fblackmo) employee stated that she had been having trouble with her right hand and fingers for some time, but the pain has gotten worst for the past few months. Employee works on computer. Supervisor: angela faulk
## 6286 2/2/2005 12:17 pm (fblackmo) employee states injury occurred to his lower back while reaching into the passenger side of the patrol vehicle to remove a clipboard. Supervisor: gf butler
## 6287 2/2/2005 12:28 pm (fblackmo) employee was coming back to the yard with a loaded dump truck, attempted to stop to make left turn, truck slid in ditch causing the injury to his back. Supervisor: c. E. Thompson
## 6288 2/2/2005 12:38 pm (fblackmo) employee was pulling on a wire that was stuck in the ground when, he felt a pop in the center part of his back. Supervisor: wendell chastain
## 6289 2/2/2005 12:51 pm (fblackmo) employee climbed into truck bed, and twisted his back in the process of climbing down. Supervisor: darrell dean
## 6290 2/2/2007 01:44 pm (fblackmo) employee was flagging traffic when a transfer truck kicked up dirt causing it to go into her left eye. Supervisor: m. Tapp
## 6291 2/2/2007 01:59 pm (fblackmo) employee was assisting in binding a load of limbs and branches on to the flatbed with ratchet straps. The "hook end" of strap was thrown over the load and struck employee on top of her head. Supervisor: r. J. Brown
## 6292 2/2/2007 11:24 am (fblackmo) employee was conducting a road test when, a private vehicle rear ended customers truck causing injury employees neck. Supervisor: dean almond
## 6293 2/2/2007 11:33 am (fblackmo) employee was trying to lift a heavy rock from roadway construction project when, he felt pain in lower groin area. Supervisor: ben williams
## 6294 2/2/2007 11:42 am (fblackmo) employee removed bent sign post from ground and removed sign from post. Soil was lodged in u-channel of post and employee attempted to removed the soil by dropping post on pavement. Post hit pavement and sprung back striki
## 6295 2/2/2007 11:56 am (fblackmo) employee was hooking trailer to dump truck when, he put his finger under the pendal, the pendal fell, his finger was caught between hook and pendal. Supervisor: mark c. Smith
## 6296 2/2/2009 09:52 am (blgay) employee was cutting weeds around bridge when he slipped and fell into creek, catching barbed wire on the way down. Supervisor: joe smith
## 6297 2/2/2009 10:00 am (blgay) employee was investigating an equipment accident involving a private vehicle and a dot dump truck on roadway that was solid ice. Employees feet went out from under him, causing him to hit head and back. Supervisor: h. B. Rash
## 6298 2/2/2009 10:09 am (blgay) employee was loading post and turned over a stack of post and mashed his left pointer finger. He was separating the post. Supervisor: michael dearing
## 6299 2/2/2009 10:18 am (blgay) employee was picking up tires on I-40. Employee rolled a piece of recap form a truck. Employee lifted the tire and felt a pop in her hand/wrist. Employee went to doctor and had a pulled tendon. Supervisor: c. E. Bandy
## 6300 2/2/2010 01:41 pm (blgay) employee was setting up lane closure on left lane 485 outer. Employee was in crash truck protecting crew. Private vehicle hit crash truck in the rear, while setting up closure lane. Supervisor: mike campbell
## 6301 2/2/2010 10:43 am (blgay) employee slipped while lowering door on supply truck. Employee was holding the strap on the door, causing it to jerk his right arm and shoulder. Supervisor: j. R. Roper
## 6302 2/2/2011 04:49 pm (fblackmo) employee was picking up a bottle of water when, he felt pain in his lower back area. Supervisor: dawn godwin
## 6303 2/20/2004 07:39 am (fblackmo) employee was making repairs on a droit excavator when, he slipped on frost and fell causing the injury to his back. Supervisor: m. B. Mizelle
## 6304 2/20/2004 07:52 am (fblackmo) employee was moving equipment from out side before it was covered with snow and ice when, the injury occurred to his lower back and neck area. Supervisor: james isaac
## 6305 2/20/2004 08:05 am (fblackmo) employee was getting papers out of state truck when, he slipped on ice hitting head and shoulder area on another parked truck. Supervisor: b. L. Norris
## 6306 2/20/2004 08:28 am (fblackmo) employee was changing blades on the snow plow using the bar to get the blade off when, the blade slipped causing the injury to his right hand. Supervisor: gary darden
## 6307 2/20/2004 08:41 am (fblackmo) employee was sprayed with asphalt while trying to unload the distributor. Supervisor: robert k. Payne
## 6308 2/20/2007 03:56 pm (fblackmo) employee was pruning tree branches when, he cut his left index finger. Supervisor: r. J. Brown
## 6309 2/20/2007 04:11 pm (fblackmo) employee was loading a five gallon bucket of stone into the back of pickup truck when, he felt pain in his right shoulder. Supervisor: r. E. Capehart
## 6310 2/20/2008 11:39 am (fblackmo) employee was shoveling topsoil out of the rear of the dump truck when, he felt pain in his lower back area. Supervisor: r. W. Shoemaker
## 6311 2/20/2009 09:59 am (blgay) employee was helping cut trees on a bank off hwy 74 when he slipped and fell on his left shoulder and arm. Supervisor: mike walden
## 6312 2/21/2006 01:03 pm (blgay) employee was breaking bolt loose on motor grader, socket slipped off bolt and right hand hit frame, wrench cut inside middle finger on right hand. Supervisor: mike perkins
## 6313 2/21/2006 01:15 pm (blgay) employee was stopped in traffic on patton avenue, when he was rear-ended by pv. Employee experienced blurred vision and subsequent neck pain. Supervisor: ds peter w. Wan
## 6314 2/21/2006 12:52 pm (blgay) employee was descending a slope, near the bottom he had to jump over a ditch of 2 feet. When employee landed he injured knee. Supervisor: charles hunt
## 6315 2/21/2007 08:09 am (fblackmo) employee was putting up a sign when, the staff that holds the flags and the top part of the sign came down on his right hand causing a cut between the thumb and finger on right hand. Supervisor: ira harris
## 6316 2/21/2007 08:53 am (fblackmo) employee was moving a steel plate out of the way for a co-worker to pass by when, the plate fell over on his right foot. Supervisor: jeremy b. Creech
## 6317 2/21/2007 10:20 am (fblackmo) employee was placing an empty trash can under desk when, he felt a sharp pain in his lower back. Supervisor: c. W. Bridgers jr
## 6318 2/21/2007 10:33 am (fblackmo) employee was walking down stairs to go to a meeting when, she slipped and fell causing injuries to her right hand, left knee, and left ankle. Supervisor: brenda franks
## 6319 2/21/2008 01:20 pm (blgay) employee was checking force feed loader when he stepped back and tripped over the front wing of loader. Employee fell and landed on his left shoulder and back. Supervisor: h. G. Timberlake
## 6320 2/21/2008 01:32 pm (blgay) employee was repairing the tailgate on a dump truck. The latch was jammed and would not close. The employee pushed on the latch and it closed catching his index finger of his right hand, causing the fingertip to be pinched o
## 6321 2/21/2008 12:55 pm (blgay) employee was returning from a road test, tripped on a crub and fell. Supervisor: carolyn ritchie
## 6322 2/22/2005 02:17 pm (fblackmo) employee fell backwards striking his head on tractor. Employee experienced a cut to head. Supervisor: c. R. Tyson
## 6323 2/22/2005 02:26 pm (fblackmo) employee came into contact with poison ivy while cutting and chipping trees. Supervisor: keith blazer
## 6324 2/22/2005 02:34 pm (fblackmo) employee was driving down silt fence post with 4 lb. Sledge hammer when, the embankment caved in causing him to Miss The post and hit himself on the left knee. Supervisor: j. C. Gunter 8/9/2005 08:24 am (mpark)
## 6325 2/22/2005 03:19 pm (fblackmo) employee states she was diagnosed with carpal tunnel syndrome. Supervisor: helen landi
## 6326 2/22/2005 03:35 pm (fblackmo) employee was loading sign on truck when his finger became caught between the railing on trailer and hook. Supervisor: todd whitaker
## 6327 2/22/2005 04:11 pm (fblackmo) employee was moving and installing carpet when, he felt pain in his back and right shoulder. Supervisor: eric boyette
## 6328 2/22/2005 11:38 am (fblackmo) employee was on a ladder in stock room when, he slipped and fell causing the injury to his right hip area. Supervisor: chris taylor 2/22/2005 11:44 am (fblackmo) doctors notes states injury to back.
## 6329 2/22/2005 11:50 am (fblackmo) employee was climbing down off of flatbed truck when, he felt pain in his left leg. Supervisor: scott cornatzer
## 6330 2/22/2005 12:20 pm (fblackmo) employee was stacking cones on back of pickup truck when, driver stopped suddenly causing him to fall onto the road fracturing rib. Supervisor: fred king
## 6331 2/22/2005 12:55 pm (fblackmo) employee was leaving dredge when, he slipped and fell on concrete due to slippery walkway. Employee felt pain in his right shoulder. Supervisor: jerry gaskill
## 6332 2/22/2007 04:02 pm (speedin) employee was operating a chainsaw and stepped in a ditch improperly and hurt lower back. Supervisor: v. C. Staley
## 6333 2/22/2007 04:31 pm (speedin) employee was feeding brush into a chipper. The employee had his safety glasses during this operation. When the employee fed a piece of brush into the chipper, it abruptly twisted in him, and struck the employee in the face
## 6334 2/22/2008 10:43 am (blgay) employee was shoveling gravel on parker street when he felt a sharp pain in his right hand. Supervisor: dale loflin
## 6335 2/22/2008 11:00 am (blgay) employee was using a chainsaw, when it kicked back popping right wrist several times causing sprain to right wrist. Supervisor: mike evans
## 6336 2/22/2008 11:11 am (blgay) employee was loading brush on a dump truck, when a branch struck window of loader causing the glass to shatter and glass flew into right eye of employee. Supervisor: h. G. Timberlake
## 6337 2/23/2005 08:17 am (fblackmo) employee was putting oil can into side compartment of lube truck. The wind was blowing and blew something into left eye causing a corneal abrasion. Supervisor: carlton inman
## 6338 2/23/2005 08:31 am (fblackmo) employee was operating a jack hammer cutting asphalt when, jack hammer got hung in road. Employee was pulling on jack hammer when it kicked back striking him on his left knee. Supervisor: terry shaw
## 6339 2/23/2005 08:44 am (fblackmo) employee was removing a salt spreader. Employee was on top of the spreader hooking the chains and fell between the gates causing injury to his right leg and left shoulder. Supervisor: bill price
## 6340 2/23/2005 09:46 am (fblackmo) employee was removing swivel cylinder from back hoe bucket. Metal swivel fell on air line cutting it off. The air blew dirt into employees eyes. Supervisor: l. T. Garner
## 6341 2/23/2006 02:19 pm (blgay) employee was walking through equipment shop, when his right foot struck against a three step stool that was stored in work bay. Employee lost his balance and fell, striking face on concrete floor. Supervisor: danny lewis
## 6342 2/23/2006 03:33 pm (blgay) employee was driving a bearing on a mowing machine, while holding punch with left hand hammer glanced off, causing right thumb to come in contact with punch, cut thumb on right hand. Supervisor: g. D. Nance
## 6343 2/23/2006 03:44 pm (blgay) employee was attempting to lay driveway pipe and pulled his back the wrong way. Employee now has lower back pain. Supervisor: g. D. Dowdy
## 6344 2/23/2006 03:52 pm (blgay) employee was dragging cut brush to a chipper, when lifting up to place on chipper, some limbs fell and poked into lower right arm below elbow. Supervisor: r. E. Joyce
## 6345 2/23/2006 04:02 pm (blgay) employee was driving swb dump truck, when outside wheel ran off road. Employee slowed to pull vehicle back on to pavement and suddenly lost control of vehicle. Vehicle spun and flipped, landing on the north bound shoulder, v
## 6346 2/23/2006 11:42 am (blgay) employee was hit in the eye by strap while she was stabilizing boxes that were falling. Supervisor: maude creech
## 6347 2/23/2006 11:55 am (blgay) employee was working in shop, when an unpredictable wind gust blew through open shop doors, blowing a small piece of metal into the right eye. Supervisor: glen wade
## 6348 2/23/2006 12:07 pm (blgay) employee raised the screen on the salt spreader to shovel salt from the side of the spreader. Employee was standing on the side rail of the dump bed when the screen fell and hit him on the right arm from the elbow to the wri
## 6349 2/23/2007 09:28 am (speedin) employee was at quarry to be loaded with class b stone. A stone fell off the loader as his truck was being loaded. The stone hit the roof of the truck and bounced into the drivers side window and hit him on his left arm. S
## 6350 2/23/2007 09:51 am (speedin) employee was picking up brush from a ditch to put into the chipper, when a stick hit him in the right eye. Employee had previously been wearing his safety glasses, but glasses fogged up, and employee put glasses on top of
## 6351 2/23/2007 10:10 am (speedin) employee was cutting tree off r-o-w when chainsaw became lodged in tree. Employee attempted to pull chainsaw free from the tree and in doing so pulled a muscle in his back. Supervisor: scott gibson
## 6352 2/23/2007 11:40 am (speedin) employee was picking up ramp on trailer supervisor: john edmonds
## 6353 2/23/2007 12:02 pm (speedin) employee bent over to pickup concrete test cylinders and pulled lower back when twisting to place in truck. Supervisor: darin l. Waller
## 6354 2/23/2011 02:01 pm (fblackmo) employee was repairing a work float. As he stepped onto the float to take a measurement a board gave way and his left leg went through and scraped a nail tearing a part of his skin. Supervisor: franklin granda
## 6355 2/23/2011 02:16 pm (fblackmo) employee was walking up steps into the building when, she fell forward causing the injury to her right knee.
## 6356 2/23/2011 03:59 pm (fblackmo) employee was removing hoses from truck when wind blew dust into his left eye. Supervisor: brady fisher
## 6357 2/23/2011 12:05 pm (fblackmo) employee was cutting a 3 x12 inch piece of metal and while attempting to adjust metal, he stuck his hand into the shear while it was in operation. Supervisor: david mutschler
## 6358 2/24/2004 02:58 pm (fblackmo) employee was cleaning out file cabinets when, the overhead light fell striking her on the top of her head. Supervisor: h. D. Wiggins
## 6359 2/24/2004 03:08 pm (fblackmo) employee was tightening bolt when, the ratchet slipped causing the injury to his center finger. Supervisor: t. L. Gray
## 6360 2/24/2004 03:58 pm (fblackmo) employee was moving equipment when, she felt pain in her back. Supervisor: michelle g. Long
## 6361 2/24/2004 10:00 am (fblackmo) employee states he slipped on ice and fell causing the injury to his left leg/ankle. Supervisor: kent d. Boyer 04/19/2004 07:38 am (gwhite)
## 6362 2/24/2004 10:11 am (fblackmo) employee states while getting kitty liter off back of truck h, slipped and fell causing the injury to his back. Supervisor: r. J. Monroe
## 6363 2/24/2004 11:08 am (fblackmo) employee was walking across the parking lot in bridge yard when, he slipped and fell due to ice. Supervisor: jeremy b. Creech 7/8/2004 07:50 am (kbarefoo)
## 6364 2/24/2004 11:18 am (fblackmo) employee was lifting hay from trailer to truck when, he felt pain in his right shoulder area. Supervisor: w. W. Childress
## 6365 2/24/2004 11:27 am (fblackmo) employee was walking toward the maintenance building when, he slipped and fell on the ice. Supervisor: w. L. Thompson
## 6366 2/24/2004 11:37 am (fblackmo) employee was operating a dump turck hauling material to a pipe replacement job site on an unpaved road. The truck hit a hole in the road bouncing employee up and down causing him to strike his head on the top of the cab.
## 6367 2/24/2004 11:47 am (fblackmo) employee states while exiting truck she, slipped and fell on ice causing the injury to her back and elbow. Supervisor: b. J. Berryhill
## 6368 2/24/2004 11:58 am (fblackmo) employee was picking up mail bin when, she felt pain in her back. Supervisor: kimberly l. Canady
## 6369 2/24/2006 12:36 pm (blgay) employee was in the process of breaking the drill bit from the rod, when the split o ring holding the rod slipped. In doing so, it caused the rod to drop, which caught his finger between the clutch handle assembly on the mac
## 6370 2/24/2006 12:45 pm (blgay) employee was doing maintenance on 441. The sidewalk on the road is lower than the pavement and when he stepped onto the road, he tripped over the crub and fell on his arm, dislocating his left elbow. Supervisor: james r. Ash
## 6371 2/24/2009 12:21 pm (blgay) employee was unloading a spreader from a truck. The chain broke causing him to fall to the ground. Later that night employee went to the hospital and they said he was bruised and would be sore. Supervisor: robert hollifield
## 6372 2/24/2009 12:32 pm (blgay) employee was bent over fastening his chainsaw chaps, when a tree limb struck his head. A co-worker was clearing brush from a slope above the injured employee. A gust of wind blew the tree limb that struck the employee, causi
## 6373 2/24/2010 02:41 pm (fblackmo) employee was working with another co-worker carrying plow blades to truck when, he felt a pop to his right knee. Supervisor: joyce brim
## 6374 2/24/2010 02:54 pm (fblackmo) employee was helping another employee pick up snow plow cylinder when, his right hand thumb got caught in hole. Supervisor: mike jefferys
## 6375 2/25/2004 01:27 pm (slee) mechanical failure- steel pin in the swing arm broke causing the boom to fall and strike an employee. The steel pin is located in a housing bearing where it cannot be checked or seen for defects.
## 6376 2/25/2004 04:10 pm (fblackmo) employee was climbing out of dump truck when, she slipped causing the injury to her left knee. Supervisor: w. T. Teague
## 6377 2/25/2004 04:32 pm (fblackmo) employee was walking to parking lot when, she stepped up on the curb she lost her footing and fell causing the injury to her left foot. Supervisor: dolphine clark
## 6378 2/25/2004 04:44 pm (fblackmo) employee was dismounting form the bed of a tandem dump truck when, his foot slipped causing the injury to his lower back. Supervisor: t. W. Anderson
## 6379 2/25/2004 04:52 pm (fblackmo) employee was assisting wrecker operator pull a small dump truck out of ditch when, he lost his footing causing the injury to his back and ribcage area. Supervisor: g. K. Dozier
## 6380 2/25/2005 10:35 am (fblackmo) employee was cutting limbs when, twig went into his right eye. Supervisor: van b. Ellis
## 6381 2/25/2008 10:54 am (blgay) employee had returned form lunch and was talking on the phone, when she passed out and hit her head on the floor. Supervisor: gary neal
## 6382 2/25/2009 11:01 am (blgay) employee was replacing a sign on sr 3452. He had both hands on a hammer and was knocking bolts off so that the old damaged sign could be replaced. Employee swung hammer and missed the bolt, hitting the edge of the sign with
## 6383 2/25/2009 11:11 am (blgay) employee was cleaning a spreader and putting it back on track. Employee was pushing on it to align it into position, when he felt a pain in right shoulder from twisting the wrong way and applying too much pressure. Superviso
## 6384 2/25/2010 07:22 am (blgay) employee was repairing a restricted shop air line. Employee was opening the cut off valve when suddenly air shot out with rust. This caused a bad abrasion and embedded rust into the tissue on his left hand above the thumb. S
## 6385 2/25/2010 07:34 am (blgay) employee was riding with single axle dump truck with salt spreader and plow to green river cove, sr 1151 to push snow off and get stranded motorist off of roadway. When truck got to the motorist, they got out to look and emp
## 6386 2/25/2010 07:44 am (blgay) employee was keeping the suction hose free from debris, to keep the pump going. The next day employee had a knot come up on his right hand. Supervisor: wendell chastain
## 6387 2/25/2011 01:04 pm (fblackmo) employee was reinstalling electrical control cabinet for the void propulsion unit which is a confided space with limited overhead hight. While handling the control cabinet, employee strain right side of rib area. Supervis
## 6388 2/25/2011 01:34 pm (fblackmo) employee was carrying material not used back up the 30 degree incline to the truck. Employee felt pain in his abdominal area. Supervisor: louis wetherington
## 6389 2/25/2011 01:47 pm (fblackmo) employee was driving dump truck (hauling) to project site and jammed his lower back on the hard seat due to bouncing movements. Supervisor: j. Long
## 6390 2/25/2011 03:07 pm (barnes) employee was removing a hydraulic hose. While pulling on it, the fitting came a loose and the employee hit his left shoulder on the plow. Employee injured his shoulder. Supervisor: floyd e. Conner
## 6391 2/25/2011 03:59 pm (barnes) employee had a piece of metal lodged in his eye while he was changing a tire. Employee attempted to wash the metal out of his eye and he felt better. That night employee experienced more pain. When the employee came to work
## 6392 2/25/2011 10:05 am (fblackmo) employee states while spraying his foot slipped on mulch causing minor pain in his lower back area. Supervisor: chips vause
## 6393 2/26/2008 07:52 am (blgay) employee was working in a closed off work zone on hwy us 74 in the medium in front of preachland polkton school picking up rip rap by hand that the back hoe couldn't get up. When he picked it up, he felt a little sting in hi
## 6394 2/26/2009 06:37 pm (fblackmo) employee was removing broke 4x4 wooden sign post from ground by hand when, he felt pain in his lower back area. Supervisor: dewey f. Pierce
## 6395 2/26/2009 08:29 am (fblackmo) employee fell from body of truck onto the ground. Employee felt pain in his right elbow area. Supervisor: kevin baker
## 6396 2/26/2009 08:43 am (fblackmo) employee had delivered ncdot vehicle to dot equipment depot for pm. While walking around parked vehicle to leave keys to rail division vehicle, employee stepped on a section of uneven concrete pavement, turn left ankle, a
## 6397 2/26/2009 09:02 am (fblackmo) employee was leaving driver license office to conduct a road test when, she stepped off curb, lost balance, and fell face first to ground. Employee felt pain in right ankle. Supervisor: lori cantu
## 6398 2/26/2009 09:16 am (fblackmo) employee was walking down a slope coming from the railroad tracks when, he slipped on some loose rocks falling on his back. Supervisor: g. J. Liverman
## 6399 2/26/2010 03:03 pm (blgay) employee was exiting vehicle to help flag, when he stepped down, loss his footing and slipped on some ice causing him to fall in roadway. Supervisor: john springer
## 6400 2/26/2010 03:39 pm (blgay) employee was in the bucket truck cutting trees from right of way. As employee started down to refuel the chainsaw, he was holding onto the hand rail. His left middle finger got caught between the cut limb and hand rail, pinn
## 6401 2/27/2008 02:39 pm (fblackmo) employee felt ringing in both ears while entering the engine room-returned to main deck. Supervisor: albert oneal
## 6402 2/27/2008 03:01 pm (fblackmo) employee threw three limbs into truck bed and felt pain in his right shoulder. Supervisor: iris mccombs
## 6403 2/27/2008 03:18 pm (fblackmo) employee has begun to experiencing neck / shoulder pain while working at her desk. Pain has increased, and now includes some numbness on her right side. Supervisor: p. P. Mansfield
## 6404 2/27/2008 04:18 pm (fblackmo) employee was hauling rocks when, he ran off the shoulder of the road into a creek. Employee had lacerations to face and right arm. Supervisor: vann price
## 6405 2/27/2008 04:39 pm (fblackmo) employee was attempting to adjust forks on loader to fit lift points on salt tanks when, he mashed his right center finger between the rods on the fork. Supervisor: chris taylor
## 6406 2/27/2009 09:37 am (blgay) employee was using the tractor sweeper when something blew into employees right eye. Employee thought nothing about it until next morning when it was irritated and red. Employee reported incident to Mr. Cochran the next morn
## 6407 2/27/2010 09:23 am (fblackmo) employee was plowing snow on state road when he failed to stop at a stop sign; private own vehicle struck employees plow. Employee felt pain in his lower back and left shoulder. Supervisor: michael j. Vann 03/03/2010 09
## 6408 2/27/2010 09:39 am (fblackmo) employee was opening a box when he punctured his left center finger on a staple. Supervisor: mike jefferys
## 6409 2/28/2005 02:33 pm (fblackmo) employee was stepping from the truck when, she felt pain in her right knee. Supervisor: glenn barnett
## 6410 2/28/2005 10:38 am (fblackmo) employee was moving out of the way of a falling tailgate when, he struck his knee against the air compressor hitch. Supervisor: doug williams jr
## 6411 2/28/2005 11:19 am (fblackmo) employees fingers was caught between the bin box door while climbing down off of utility truck. Supervisor: d. M. Honeycutt
## 6412 2/28/2005 11:33 am (fblackmo) employee was unloading buckets of grass seeds when, trash went into his left eye. Supervisor: william dodson
## 6413 2/28/2005 11:46 am (fblackmo) employee was moving boxes full of chemical when, she felt pain in her left wrist. Supervisor: chris vause
## 6414 2/28/2005 12:11 pm (fblackmo) employee was lifting concrete when, he felt pain in his lower back. Supervisor: k. C. Bachelor
## 6415 2/28/2007 04:13 pm (speedin) employee was driving a tande dump truck on his way back to the office. A private vehicle pulled out in front of him at a intersection, employee hit vehicle. Employee's left shoulder, elbow and knee struck nsided of the tru
## 6416 2/28/2007 04:33 pm (speedin) employee was cleaning his boots off on a boot brush outside the office door. The boot brush is not mounted down, when employee pushed his boot across brush it caused brush to slide and employee twisted his left knee. Super
## 6417 2/3/2006 10:01 am (blgay) employee was trying to tighten a plow bolt, to attach a blade on a loader bucket. The employee was wearing mechanic gloves, while using an air gun that was in the right hand and the left hand was holding pressure on top of b
## 6418 2/3/2009 12:12 pm (fblackmo) employee was trying to unscrew a cap to a filter on the salt brine applicator when, he felt something pop in his elbow. Supervisor: tim raynor
## 6419 2/3/2011 03:15 pm (fblackmo) employee was reaching back to get sprayer with his left hand when, the weight turned his left wrist causing pain. Supervisor: shelton james
## 6420 2/3/2011 03:29 pm (fblackmo) employee was changing marker light on truck that had been left on when, he stepped off the lift falling into the wall. Employee fractured his left collarbone. Supervisor: r. W. Feher
## 6421 2/3/2011 03:57 pm (fblackmo) employee was bending over to pick up a piece of trash when a tree limb went into his right eye. Supervisor: mark conner
## 6422 2/3/2011 04:07 pm (fblackmo) employee stepped out of vehicle onto uneven pavement twisting his left ankle. Supervisor: t. L. Jernigan
## 6423 2/3/2011 06:26 pm (fblackmo) employee slipped on the decline of the aft ballast tank void and bumped his right elbow. Supervisor: thomas bowser
## 6424 2/3/2011 11:36 am (fblackmo) employee stated that he was traveling east on deep bottom road (snow packed roadway) when, he lost control of the vehicle. Employee experienced a bump on the right side of his head and scratches to his left ring finger. Su
## 6425 2/3/2011 11:56 am (fblackmo) employee was cutting tree limb due to snow when the limb fell striking him on his upper right leg. Supervisor: dwayne warner
## 6426 2/3/2011 12:11 pm (fblackmo) employee was removing snow and ice from state road with snow plow. Plow began to slide sideways on the ice coming to a stop on the shoulder of the road. The plow was immobilize due to ice on the roadway. Employee exited th
## 6427 2/3/2011 12:56 pm (fblackmo) employee walking in parking lot at maintenance yard. Even though he was aware of some spots that were extremely slippery, his feet slipped out from under him. While falling, he tried to catch himself with his hands. In doi
## 6428 2/4/2004 01:04 pm (fblackmo) employee was driving when he lost control of the vehicle due to ice on the road causing the injuries to his neck and shoulder. Supervisor: capt. J. S. Keeter and lt. G. J. Woodard
## 6429 2/4/2004 01:17 pm (fblackmo) employee slipped while working in a ditch on us 64 causing the injury to his left ankle. Supervisor: l. W. Lyall
## 6430 2/4/2004 01:27 pm (fblackmo) employee tried to straighten his fall from truck when, he felt pain in his groin area. Supervisor: r. H. Rich jr
## 6431 2/4/2004 01:37 pm (fblackmo) employee was removing front tire when, his fingers was caught between the wheel and brake drum. Supervisor: j. E. Stepp
## 6432 2/4/2004 01:51 pm (fblackmo) employee was driving stake in the ground with a brush axe when, the axe slipped causing the injury to his right lower leg. Supervisor: w. H. Roach
## 6433 2/4/2004 02:04 pm (jgibson) vehicle 1 was spreading salt. Truck went into a curve and slid off road and down an embankment.
## 6434 2/4/2004 02:10 pm (fblackmo) employee was standing on dump truck when, he lost his grip causing the injury to his left shoulder. Supervisor: t. W. Anderson
## 6435 2/4/2004 02:37 pm (fblackmo) employee hit his right little finger on file cabinet. Supervisor: thomas e. Johnson
## 6436 2/4/2004 02:59 pm (fblackmo) employee was changing tire on dump truck when, he felt pain in his lower back. Supervisor: james conner
## 6437 2/4/2004 03:36 pm (fblackmo) employee was picking up trash when, he stumbled and fell causing the injury to his arm. Supervisor: v. G. Scales
## 6438 2/4/2004 03:45 pm (fblackmo) employee was clearing right of way. As he was walking down off slope, he tripped over brush that had been cut and hit his knee over a piece of wood and his right prosthetic arm hit ground causing a crack in the fiberglas
## 6439 2/4/2004 04:03 pm (fblackmo) employee was standing on salt spreader when, he slipped and fell causing the injury to multiple body parts. Supervisor: james conner
## 6440 2/4/2004 04:12 pm (fblackmo) employee states he was climbing overhead sign to do inspection. The next morning he started to have pain in his right arm. Supervisor: tim earp
## 6441 2/4/2004 04:18 pm (fblackmo) employee was in the parking lot and was attempting to get to his vehicle to make bank deposit when, he slipped and fell on ice in parking lot. Supervisor: brenda p. Grady
## 6442 2/4/2004 04:24 pm (fblackmo) employee slipped on icy ferry dock causing the injury to his back. Supervisor: k. J. Morris 04/15/2004 09:23 am (gwhite)
## 6443 2/4/2004 05:05 pm (fblackmo) employee was using a hammer to beat on tailgate when, he lost hearing in his left ear. Supervisor: s. D. Chandler
## 6444 2/4/2004 10:39 am (fblackmo) employee was getting materials off the back of truck when, he slipped and fell causing the injury to his left foot. Supervisor: greg godwin
## 6445 2/4/2004 10:52 am (fblackmo) employee was changing snow blades on motor grader when, felt pain in right shoulder. Supervisor: al smith
## 6446 2/4/2004 11:12 am (fblackmo) employee was operating state vehicle and left the roadway striking a concrete pillar. The air bag deployed hit employee in his chest area. Supervisor: n. S. Gibson
## 6447 2/4/2004 11:36 am (fblackmo) employee was working with hydraulic jack when, the jack fell striking him on his right hand. Supervisor: kevin lamar cooke
## 6448 2/4/2008 09:53 am (fblackmo) employee reported that while moving the jlg aerial lift to another location onto the shipyard, it became stuck in the sand and while being towed out of the sand, it hit the ledge of concrete causing the lift to shade from
## 6449 2/4/2008 10:13 am (fblackmo) employee wyatt and downey were setting traffic control out for a lane closure on us 421 hwy. Employee downey was standing behind the pickup truck that had the arrow board attached to it when, he answered his nextel phone.
## 6450 2/4/2008 11:16 am (fblackmo) employee was standing by the paint truck watching for traffic when another employee (charles gerganous) fell and rolled into employees right knee causing the injury. Kathy barefoot was contacted on 1/28/07 and has schedule
## 6451 2/4/2008 11:33 am (fblackmo) employee was loading a broken post into bed of pick up. The post slipped from employees hands and he made a quick move to try to catch the post. Employee later informed crew leader that his back was hurt. Supervisor: r. G. Cr
## 6452 2/4/2008 11:42 am (fblackmo) employee was putting sign rack into back of 4wd pickup. He turned and hit left knee on pintle hook on back of truck. Supervisor: e. L. Sexton
## 6453 2/4/2008 11:51 am (fblackmo) employee was hooking up chain that holds the salt spreader and accidentally hit his hand on the muffler causing a burn. Supervisor: darrell wilkins
## 6454 2/4/2010 01:45 pm (blgay) employee was pulling brush out of packed snow, when limb broke and right knee twisted and he fell down. Supervisor: henry worley
## 6455 2/4/2010 01:59 pm (blgay) employee was bent over picking up a rock to place in the backhoe bucket (ext weight 50-60 pounds). The employee stated the his back became tight at this time. Returning to the shed in a flat dump, employees back became very s
## 6456 2/4/2010 02:10 pm (blgay) employee was installing a snow plow on a truck using a pry bar to align plow pin. Pry bar slipped and hit him in the mouth, chipping two teeth. Supervisor: charles hatley
## 6457 2/4/2010 02:27 pm (blgay) employee started to slide while plowing road. Snow plow grabbed and jerked employee forward, causing him to hit his left knee of dashboard of truck. Supervisor: harry williams
## 6458 2/4/2010 02:46 pm (blgay) employee was going to hang up rubber boots in boat house and pulled door open and felt a sharp pain in right shoulder. Supervisor: tommy culberson
## 6459 2/4/2010 02:54 pm (blgay) employee was cutting a tree limb on sr 11130 and as he was pulling down the limb while other employee was sawing. When employee cut the limb all the way through, employee holding the limb did not get out of the way in time an
## 6460 2/4/2010 09:03 am (fblackmo) employee was working on ramp light when, he cut electrical tape off the connection the knife slipped causing cut to left center finger. Supervisor: robert w. Norwood
## 6461 2/4/2010 09:27 am (fblackmo) employee was picking up bags of concrete when, he felt pain in his lower back area. Supervisor: carlis smith
## 6462 2/4/2010 12:41 pm (blgay) employee was driving north on pine hill road, when pov started pulling out of driveway. Employee hit brakes and swerved to Miss Pov. Employee lost control of vehicle, crossed center line, hit embankment and truck rolled over
## 6463 2/4/2011 01:45 pm (fblackmo) employee was moving limbs from snow storm when one of the limbs struck him in his left eye. Supervisor: ronnie wainwright
## 6464 2/4/2011 02:00 pm (fblackmo) employee and crew was trimming trees on state road when the ground caved in. Employee fell in a hole causing injury to his lower back area. Supervisor: john farrow
## 6465 2/4/2011 02:21 pm (fblackmo) employee was going across intersection when private vehicle struck the passenger side of the his vehicle. Employee stated no physical injuries and have refused medical treatment at the time of accident. Supervisor: cathy h
## 6466 2/4/2011 03:57 pm (barnes) employee was attempting to make a left hand turn onto purley church road when a private citizen passed several cars that were behind the salt truck and struck the plow of the truck. Employee reported to work the next day wit
## 6467 2/4/2011 04:36 pm (barnes) employee was jacking a tractor up to change a flat tire. While installing another jack to raise the tractor higher, something slipped and caught his thumb on right hand between the tractor and the jack. Employee injured his
## 6468 2/4/2011 10:29 am (fblackmo) employee was getting out of car when his foot slipped on ice causing him to lose his footing. Employee fell back onto the car causing pain to his lower back. Supervisor: samuel j. Frederick
## 6469 2/4/2011 10:44 am (fblackmo) employee was stepping off cap when he turned his left ankle. Supervisor: james m. Rogers
## 6470 2/4/2011 10:55 am (fblackmo) employee was leaving work for the day when he slipped on ice that was remaining on steps from earlier in the week. Employee injuries consists of lacerations to his right arm and hand. Supervisor: david hinnant
## 6471 2/4/2011 11:10 am (fblackmo) employee bumped his right elbow on fuel tanker. Supervisor: richard dewhurst
## 6472 2/4/2011 11:31 am (fblackmo) employee was leaving office area to assist with removal of snow plows from trucks. At the corner of office under the canopy there is a raised sidewalk. Employee walked from the raised sidewalk toward the parking area and s
## 6473 2/4/2011 11:44 am (fblackmo) employee was exiting rear entrance door and slipped on ice that accumulated at entrance way. Employee twisted while falling and hit his head on corner of doorway. Supervisor: ronald norris
## 6474 2/4/2011 12:52 pm (fblackmo) employee was tighting a nut with the socket wrench when it slipped and struck him on the nose. Supervisor: bradley burton
## 6475 2/5/2007 04:01 pm (fblackmo) employee was moving filing cabinet when, he felt pain in his lower back. Supervisor: c. D. Lee
## 6476 2/5/2007 04:27 pm (fblackmo) employee got of truck and was walking over to sign at intersection when, he stepped in a deep hole causing injury to his right leg. Supervisor: barry t. Coble
## 6477 2/5/2008 03:48 pm (blgay) employee was tightening ratchet strap, when strap popped off of hooking position. End of strap struck employee in the face, cutting his right eye lid and requiring 4 stitches. Supervisor: gary r. Cooper
## 6478 2/5/2008 09:25 am (fblackmo) employee was picking up tool box when, he felt pain in his right shoulder. Supervisor: jim t. Wiggins
## 6479 2/5/2009 01:12 pm (blgay) employee was loading calcium chloride and the hose burst and threw calcium back into employees face and eyes. Supervisor: ronald lisenbee
## 6480 2/5/2009 08:01 am (blgay) employee was making repairs to spinner extension frame on salt spreader. A piece of rusty metal flaked off falling into employees left eye. Employee was wearing safety glasses at the time of incident. Supervisor: d. J. Johnson
## 6481 2/5/2009 08:12 am (blgay) employee was cutting limbs from a downed tree. The tree rolled toward employee when he cut a limb. While attempting to move backward away from the tree, his foot became tangled in briars and honeysuckle vines, causing him to
## 6482 2/5/2009 08:27 am (blgay) employee stated that he pulled a muscle in his left shoulder while pulling on a bale of hydromulch that had become stuck when pallet of lime had shifted against the hydro mulch during transport to the job site at phillipsvill
## 6483 2/5/2010 10:27 am (fblackmo) employees' bucket of boom truck was struck by "renewal onsite trucking company". Employee was thrown form bucket onto the top of trailer and left hanging form the safety harness that was attached to the boom. Employee felt
## 6484 2/5/2010 10:50 am (fblackmo) employee was loading bags of ice melt when, he felt pain in his lower back. Supervisor: brian k. Glover
## 6485 2/5/2010 11:01 am (fblackmo) employee was leaving office when, he slipped and fell on ice causing injury to right side chest wall. Supervisor: c. N. Vaughn
## 6486 2/6/2006 01:49 pm (blgay) employee was performing an emissions audit at the above listed station as part of job responsibilities. Employee was walking to office when she slipped on oil and oil residue on the floor of the garage, injuring left knee. Su
## 6487 2/6/2006 01:59 pm (blgay) employee was walking into the rear of the building when she missed the step up to the sidewalk and fell. Supervisor: richard howard
## 6488 2/6/2006 02:05 pm (blgay) employee was putting tarp on the tandem. He had his left leg in the truck bed and sitting on the rail. He swung his right leg over and hit the tarp bar on the rail on the steps. It threw him off balance and he came down in th
## 6489 2/6/2006 08:37 am (blgay) employee was cutting vegetation off a slope on freeway drive, when a limb got hung up in kudzu and came down on his head hitting him in the eye through his glasses. Employee has pain in the cornea area of eye. Supervisor: r.L
## 6490 2/6/2006 08:48 am (blgay) employee was putting up temporary signs on side of the road. When employee stepped out of the truck and stepped in a hole, twisting his ankle. Supervisor: james d. Wilkins
## 6491 2/6/2006 09:00 am (blgay) employee was in bed of dump truck adjusting office debris so tarp could be extended over bed without getting caught. Employee was getting down and slipped, causing him to fall against side of truck. This caused a shoulder inj
## 6492 2/6/2006 09:13 am (blgay) employee was walking down steps from 2nd floor, when left foot didn't make the step, causing employee to fall against step. Lower back hit the step and landed sitting on step. Supervisor: linda hill
## 6493 2/6/2006 09:25 am (blgay) employee was checking heater in bus for inmates, when he stuck his hand down toward heater motor, the sheet metal cut his hand. Supervisor: w. J. Krider
## 6494 2/6/2006 09:50 am (blgay) employee was picking up dead animals on wildlife road, when employee slipped on mud and twisted left knee. Supervisor: l. Michael burke
## 6495 2/6/2007 02:58 pm (fblackmo) employee was driving imap truck to debris site when, truck was rear ended by a private vehicle. Employee felt pain in his back. Supervisor: sean epperson
## 6496 2/6/2007 03:47 pm (fblackmo) employee was opening a tailgate. When he pulled the pin, the weight of the mulch pushed the tailgate down causing the chain to catch thumb between the chain and the bed of the truck. Supervisor: h. E. Worley
## 6497 2/6/2007 09:01 am (fblackmo) employee was spreading salt on us 25. When he entered onto an elevated bridge the rear truck started sliding on the ice. When the truck reached dry pavement, it caught and turned over on the drivers side. Employee felt pai
## 6498 2/6/2007 09:21 am (fblackmo) employee was hanging salt spreader on rack. Employee fell off rack and landed on his left side on gravel. Supervisor: t. M. Smith
## 6499 2/6/2007 09:32 am (fblackmo) employee was carrying gun on crack sealing machine when, he felt pain in h is back. Supervisor: kelly perry
## 6500 2/6/2008 03:58 pm (blgay) employee tripped over camera station, causing employee to fall on left knee and divider, injuring knee and cutting back of left leg. Supervisor: b. Darryl pike
## 6501 2/6/2008 04:09 pm (blgay) employee was driving a dump truck, spreading sand. Employee hit a patch of black ice, causing truck to over turn on the drivers side, injuring employees back. Supervisor: ranette davis
## 6502 2/7/2005 02:24 pm (fblackmo) employee was picking up trash bags along side of the road when, he felt pain in his lower back & right leg. Supervisor: patrick norman
## 6503 2/7/2005 03:09 pm (fblackmo) employee was removing tailgate from truck with electric chain fall. Tailgate became lodged in truck. As employee tried to pry tailgate out, it came unhooked, falling on employee right hand. Supervisor: m. R. Ward
## 6504 2/7/2005 03:47 pm (fblackmo) employee was attempting to lift the hood of the tandem dump truck and hood became difficult. Employee jerk harder to lift hood, causing injury to left shoulder, upper left forearm and lower left forearm feeling a sharp pai
## 6505 2/7/2005 04:02 pm (fblackmo) employee was standing on top of brick head wall, stepped off onto ground and turned ankle over. Supervisor: b. R. Knowles
## 6506 2/7/2005 04:12 pm (fblackmo) employee was distributing rip/rap in plant bed on 485, a piece of rock was blown into her eye by swirling winds, caused by traffic. Supervisor: tim simpson
## 6507 2/7/2005 04:21 pm (fblackmo) employee states while going down the ladder to car deck he, slipped and fell on ice causing injury to his back. Supervisor: donald austin
## 6508 2/7/2005 12:31 pm (fblackmo) employee was closing tailgate when, he caught his center finger between the gate and locking pins. Supervisor: emmitt bullman
## 6509 2/7/2006 03:16 pm (blgay) employee was loading a water tank, when other employee he was helping dropped his end of the water tank, all the weight shifted to to Mr. Watson. Employee stated "he felt sharp pain in his back. " supervisor: iris h. Mccombs
## 6510 2/7/2006 03:27 pm (blgay) employee unsure of what happen. Twisted ankle picking up boxes. Supervisor: wayne currie
## 6511 2/7/2006 03:38 pm (blgay) employee was installing work zone signs and he turned around, lost his balance and fell into sign rack. Supervisor: joel riley
## 6512 2/7/2006 09:11 am (blgay) employee was working in polk county on debris removal, when he stepped in a ditch to remove limbs and debris and slipped on the wet leaves. Supervisor: don smith
## 6513 2/7/2006 09:22 am (blgay) employee was picking up a piece of deteriorated cement; when he lifted it, it fell apart and struck the employee on the top of his right foot. Supervisor: j. E. Chapman
## 6514 2/7/2007 08:06 am (fblackmo) employee was removing cones from accident when, his foot slipped out from under him causing the injury to his left foot/ankle. Supervisor: sean epperson
## 6515 2/7/2007 08:29 am (fblackmo) employee was changing tire, stood up, bumped his back on cabinet causing him to loose balance and fall. Employee tired to catch himself causing injury to his right hand/wrist. Supervisor: mick duncan
## 6516 2/7/2008 03:13 pm (blgay) employee was driving a bolt out of a wheel guard. The hammer glanced off the driving pin, striking first finger on left hand. Supervisor: terry j. Davis
## 6517 2/7/2008 03:25 pm (blgay) employee was removing flooring from a lowboy trailer. Employee was removing a board with a pry bar. The board broke and mashed his finger between pry bar and metal frame of trailer. Supervisor: j. E. Stepp
## 6518 2/7/2008 03:40 pm (blgay) employee was cutting trees from right of way and the trees were covered with poison ivy, causing poison ivy to cover employees entire body. Supervisor: bill tippett
## 6519 2/7/2008 08:51 am (fblackmo) employee was monitoring a stream for on-site mitigation project and slipped and fell on a rock causing injury to his right hand. Supervisor: leilani paugh
## 6520 2/7/2008 09:09 am (fblackmo) employee was removing bearings from ring gear, missed chisel with hammer and hit thumb on left hand. Supervisor: daylon lynch
## 6521 2/8/2005 08:58 am (fblackmo) employee was removing a block and tackle hoist, the clip on the hook released swinging the block out. The block swung back striking employee in the face. Employee experience a cut on nose, knocked out one of his upper teet
## 6522 2/8/2005 09:15 am (fblackmo) employee was getting into dump truck when, he felt his right knee pop. Supervisor: ed adcock
## 6523 2/8/2005 09:25 am (fblackmo) employee was cleaning shredder when, it began smoking. Employee states the smoke and flames from the machine caused irritation her eyes, nose, and throat. Supervisor: kevin bowen
## 6524 2/8/2007 02:42 pm (fblackmo) employee was using post digger to install a sign, when he felt stiffness & numbness in his left shoulder area. Form 19 was not completed because we thought it would be charged to a previous claim per: kathy barefoot. Afte
## 6525 2/8/2007 03:04 pm (fblackmo) employee was assisting district office move furniture when, he went to the restroom he observed a substantial amount of blood in his stool/toilet. Employee contacted supervisor and was advised to seek medical attention at
## 6526 2/8/2007 10:11 am (fblackmo) employee was clearing trees and brush from right of way when, he came into contact with poison ivy. Rash developed on face and neck. Supervisor: w. D. Phipps
## 6527 2/8/2007 12:27 pm (fblackmo) employee was lifting plants and a trailer onto truck when, he felt pain in his lower back. Supervisor: mark conner
## 6528 2/8/2008 12:41 pm (blgay) employee was giving a driving test. Customer hit a house while backing. At the end of the day, employee said shoulder was stiff. Supervisor: dwight godwin
## 6529 2/9/2005 07:18 am (slee) sov was struck in the rear by a tractor-trailer. The impact caused the dump truck to cross the north bound lane coming to a rest in the ditch.
## 6530 2/9/2010 02:25 pm (blgay) employee was flagging traffic, when he stepped in a hole on the shoulder of the road and pulled a muscle in his back. Supervisor: edwin austin
## 6531 2/9/2010 02:52 pm (blgay) employee got out of pickup on icy secondary road while performing debris removal and fell due to slick conditions, injuring his back. Supervisor: k. H. Johnson
## 6532 2/9/2011 01:02 pm (barnes) employee was working at the salt brine machine. He had to climb onto the machine to push salt down into the holding tank and slipped while doing so. Employee injured his right leg - shin. Supervisor: nanette fogleman
## 6533 2/9/2011 02:20 pm (barnes) employee was pushing salt up in a pile in the salt dome, so that he could load it onto some trucks. While doing so, the front end- loader turned over on its side inside the dome. Employee was visibly shakened and was taken b
## 6534 2/9/2011 03:20 pm (barnes) employee was operating a dump truck plowing the roadway and applying salt/sand due to snow & ice. Vehicle hit an icy patch on a steep roadway. Truck slid and hit guardrail and overturned onto passenger side. Employee compla
## 6535 2/9/2011 04:17 pm (barnes) employee (Mr. Shoaf) was helping chip brush. Another employee was pulling a limb that was leaning against a tree. Employee shoaf moved too close to the tree, and when the other employee pulled the limb, it rolled to the left
## 6536 2/9/2011 04:40 pm (barnes) employee was driving a snow plow. While she was pushing snow, she hit a manhole cover. The truck bounced and her body bounced with it. When her body came back down in the seat, her knee hit the metal gear box. Employee inju
## 6537 2/9/2011 05:09 pm (barnes) employee backed his snow truck#9 into the salt dome on hodges gap road(sr1104). Employee opened spreader screen propping it open with a 4 ft. Handle. Employee proceeded into the spreader to remove clumps of the frozen salt.
## 6538 2/9/2011 05:31 pm (barnes) employee was removing sign from rack. Rack was stuck and when it came a loose, the rack fell on left forearm. Employee had contusion on left forearm. Supervisor: shane edwards
## 6539 2/9/2011 12:24 pm (barnes) employee returning from lunch. When he got out of his car, his left foot slipped on ice causing employee to fall on his left knee. Once left knee slipped, it caused his left elbow to be injured. He also strained his neck. Em
## 6540 20 minutes after received required flu vaccine, employee broke out in hives. ()
## 6541 20% formic acid drop splashed into rt eye
## 6542 2x6was partially secured causing it to fall.
## 6543 3 1/2 weeks ago EE experienced sharp back pain pulling patient to assist getting up, currently has continued back pain.
## 6544 3 EE's were in transit to a meeting in purchasing when leaving stop sign, the van jerked upon acceleratin throwing her seat to floor.
## 6545 3 inmates were in a physical confrontation, EE wasassisting breaking up fight, inmates were bleedingand EE was exposed, both hans and r arm
## 6546 3 to 5 sms chemical #4 on hands broke out. Left & right hands.
## 6547 3 wks of demanding physical work shoveling out plants, tilling, grading, planting, mulching resultedin pain fr rt shoulder down to hand
## 6548 3-person carry, injured right wrist
## 6549 3/1/2006 10:26 am (blgay) employee was repairing a door closure, while standing on a ladder. When coming down from ladder, employee missed bottom step. Employee didn't have any pain until later that night, now he has lower back pain. Supervisor: w. S.
## 6550 3/1/2006 11:05 am (blgay) employee was stepping out of the blood mobile bus, when employee stepped out, all his weight was on his right leg and his knee bent backward, hyper-extending his right knee. Supervisor: phil manley
## 6551 3/1/2006 11:22 am (blgay) employee has carpal tunnel in both left and right wrist, caused by using office equipment. Supervisor: c. M. Taylor
## 6552 3/1/2007 02:36 pm (speedin) employee was removing forms from concrete wing on knees when felt pain in radiate from right knee. Supervisor: mason thompson
## 6553 3/1/2007 03:08 pm (speedin) employee was attempting to identify a motor and transmission that was lying on the ground. When employee attempted to turn the motor and transmission on its side, he stained his back. Supervisor t. S. Collins
## 6554 3/1/2007 03:34 pm (speedin) employee was pulling brush to the chipper when turned and/or twisted causing pain in his lower back. Supervisor: jd tucker
## 6555 3/10/2004 08:05 am (fblackmo) employee states while lifting a peace of angle iron to cut he, felt pain in his lower back. Supervisor: mark c. Smith 05/14/2004 11:48 am (gwhite)
## 6556 3/10/2004 09:07 am (fblackmo) employee was stepping out of truck (already had a broke foot) when, her foot gave way causing her to fall. Supervisor: devin drye
## 6557 3/10/2005 02:04 pm (fblackmo) employee states while pulling brush out of road, he slipped on the wet grass and fell in the ditch. Supervisor: r. D. Powell
## 6558 3/10/2005 02:22 pm (fblackmo) employee preformed concrete testing on wednesday. Employee experienced pain in his lower back. Supervisor: trey dickerson
## 6559 3/10/2005 02:31 pm (fblackmo) employee states while keying medical reports she, felt pain in her both hands & wrist. Supervisor: lisa carroll
## 6560 3/10/2005 02:47 pm (fblackmo) employee was stepping off the side of dump truck when, he felt pain in his left ankle. Supervisor: c. R. White
## 6561 3/10/2005 02:55 pm (fblackmo) employee and another employee was holding the door while another employee was removing jackhammer. Wind blew the door striking employee in the head. Supervisor: s. G. Dillon
## 6562 3/10/2005 04:20 pm (fblackmo) employee states while installing shore cable on the brow at extreme low tide the cable broke causing him to fall. Supervisor: ron mercer 3/16/2005 08:41 am (kbarefoo)
## 6563 3/10/2005 12:40 pm (fblackmo) employee states while working on a tile installation job, the adhesive caused him to loose his sense of smell and taste. The following week he started having headaches. Supervisor: vern lee
## 6564 3/10/2006 09:25 am (fblackmo) employee was driving to the pit for a load of material when, a private vehicle approaching the intersection failed to stop. The private vehicle struck the dump truck causing employee to fell pain in his lower back and ank
## 6565 3/10/2006 09:42 am (fblackmo) repetitive motion of handling concrete cylinders over the years. Carpal tunnel syndrome in right wrist. Supervisor: johnny hammonds
## 6566 3/10/2006 09:59 am (fblackmo) employee was helping to carry a concrete lid to place over a drop inlet on vickers store road when, he stepped in a low area and the weight of the lid shifted causing pain in his arm/elbow. Supervisor: k. R. Davis
## 6567 3/10/2006 10:16 am (fblackmo) employee was replacing right rear tire on f150 in squatted position when he placed the tire on truck. Employee stated he also assisted in removing side boards from a flatbed the same day. Employee felt pain in left side a
## 6568 3/10/2006 10:50 am (fblackmo) employee was picking up rack off of sign when he felt pain in his right forearm. Supervisor: kelly perry
## 6569 3/10/2008 11:37 am (blgay) employee was loading staging on hangers attached to beams under bridge. Employee moved under staging to slide it over to the other side of hanger and hit his head, causing a cut to the top of head requiring 6 stitches. Super
## 6570 3/10/2009 02:40 pm (fblackmo) employee was performing bridge survey when, he pick up a piece of wood and threw it out of his way. Employee felt pain in left elbow. Supervisor: roger d'jernes
## 6571 3/10/2009 02:59 pm (fblackmo) employee was pothole patching when, he got out of the truck, he stepped in a small hole, and twisted h is left ankle. Supervisor: ben nelms
## 6572 3/10/2009 11:37 am (blgay) employee was prying a pilot bearing and the bearing came out and struck the employee on the head, causing a cut to the left side of his face above the eye. Supervisor: robert d. Graham
## 6573 3/10/2010 02:21 pm (fblackmo) employee was shoveling dirt for plants when, he felt pain in his lower back. Supervisor: mary frazer
## 6574 3/10/2010 10:54 am (fblackmo) employee states she was leaving out of the restroom when she hit her nose on the corner of the door. Supervisor: tracy hawkins
## 6575 3/10/2010 11:13 am (fblackmo) employee was assisting with loading (small) spreader in back of crew cab single axle dump truck. Employee climbed on top of spreader to remove chains. After employee removed chains, the truck driver began lowering bed of
## 6576 3/10/2010 12:48 pm (blgay) employee claims work related hearing loss during employment at ncdot, without access to hearing protection. Supervisor: k. H. Johnson
## 6577 3/11/2004 02:24 pm (fblackmo) employee was exiting vehicle when, he slipped and fell on ice. Supervisor: s. U. Farrar
## 6578 3/11/2004 02:38 pm (fblackmo) employee was removing a rubber tie straps form a load of taped grain straw when, he was hit under the chin by the hook. Supervisor: bill dobson 04/06/2004 01:04 pm (gwhite)
## 6579 3/11/2004 02:49 pm (fblackmo) employee was replacing a nut on blade of motor grader. The wrench slipped causing right thumb to get caught between blade and ratchet handle. Supervisor: jabbo pressley
## 6580 3/11/2004 11:35 am (fblackmo) employee complain of pain in left arm. Repetitive motion. Supervisor: patsy champion
## 6581 3/11/2008 07:40 am (blgay) employee was installing sign post on shoulder of road. Weight of post driver shifted, causing him to strain his left shoulder. Supervisor: jason leonard
## 6582 3/11/2008 07:54 am (blgay) employee was putting limbs in chipper when log bounced out of chipper, pinching finger between log and chipper hopper frame. Supervisor: m. A. Quick
## 6583 3/11/2009 05:17 pm (fblackmo) employee was walking to maintenance yard when, he tripped (hole) and fell on right knee and side. Supervisor: t. H. Swayne
## 6584 3/12/2004 08:27 am (fblackmo) employee states that she experienced pain in her right arm while performing her daily duties. Supervisor: patsy champion
## 6585 3/12/2008 02:40 pm (fblackmo) employee was digging a hole with a mattock when, he felt pain in his left shoulder. Supervisor: anthony jones
## 6586 3/12/2008 02:54 pm (fblackmo) employee (green) was standing on one side of hwy 11/55 and another employee (killingsworth) was standing on the opposite side. Both were holding opposite ends of measuring tape when, a vehicle drove across the tape causin
## 6587 3/12/2008 04:15 pm (fblackmo) employee was going to use the weed eater to clear vegetation. She was walking across parking lot when, she stumbled and felt pain in her right upper leg. Supervisor: franklin granda
## 6588 3/12/2008 04:44 pm (fblackmo) employee fell on pvc pipe and cut his upper lip. Supervisor: james bell
## 6589 3/12/2008 04:52 pm (fblackmo) employee was removing a window ac unit from an old building. The window was stuck. Employee pushed up on window, frame broke, and employees hand went through the glass cutting his right hand. Supervisor: j. R. Price
## 6590 3/12/2008 05:01 pm (fblackmo) employee was pulling and stretching to remove old timber to replace with new timber when, he felt pain in his stomach area due to being in a awkward position. Supervisor: alton l. Bundy, jr
## 6591 3/12/2008 05:12 pm (fblackmo) employee was removing a wheel barrow from his pick up to test concrete when, he pinched his right thumb between the wheel barrow and the tailgate causing a cut to his right thumb. Supervisor: shawn mebane
## 6592 3/12/2008 05:18 pm (fblackmo) employee was shoveling asphalt, he stopped to put some asphalt release agent on his tools, in the process of replacing the spraying on the truck. Employee accidentally hit the bottom, spraying Mr. Shearing in the face an
## 6593 3/12/2008 12:09 pm (fblackmo) employee was walking down stairs on her way to lunch when, she slipped and fell causing the injury to her legs, arms, and knees. Supervisor: neal strickland
## 6594 3/12/2008 12:24 pm (fblackmo) employee went to remove can from the edge of the road with right foot. His right foot struck the can, hot rubber which had been placed in the can by another employee, the tar spout out of the can causing burns to his fore
## 6595 3/12/2008 12:35 pm (fblackmo) employee was working with sealant machine. While holding the sealant wand he turned to the right, felt pain in his back that went down his right leg. Supervisor: a. G. Hunter
## 6596 3/12/2008 12:47 pm (fblackmo) employee and co-worker were taking flange bolts off of a voit unit on the m/v neuse. An impact wrench was being utilized to perform the task. As employee continued to perform the task the threads on the bolts were burned
## 6597 3/12/2009 03:35 pm (blgay) employee and his crew were replacing a cross pipe on sr 1560. Employee was back filling pipe with dirt, using the backhoe. As he was scooping up dirt on the shoulder he struck a rock buried in the shoulder, causing the backh
## 6598 3/12/2009 04:41 pm (fblackmo) employee was lifting frozen 50lb asphalt bags over his head to dump into a heated trailer. Employee felt pain in his groin area. Supervisor: g. J. Liverman
## 6599 3/12/2009 04:53 pm (fblackmo) employee went to step up on porch of facility and tripped on step. Employee fell on right knee and wrist. Supervisor: h. C. Scarborough
## 6600 3/12/2009 05:57 pm (fblackmo) employee was conducting a road test, upon completion of the chest, the customer turn into parking lot traveling approximately 5-10mph striking wooden pole in front of office building. Employee felt pain in shoulders, cent
## 6601 3/12/2009 09:29 am (blgay) employee was using an air grinder to sharpen and polish mower blades on a work bench locked in a vice. The grinding disc came apart, hit employees left wrist and cut into his skin. Supervisor: melvin furr
## 6602 3/12/2011 02:14 pm (fblackmo) employee had stopped at burger king to get breakfast. He got out of his truck and walked to the icy sidewalk. He stepped on the sidewalk and slipped and fell on his right shoulder. Supervisor: t. S. Bozeman
## 6603 3/12/2011 02:33 pm (fblackmo) employee was walking from the building to the state pick up truck when, he slipped on ice causing injury to his left side. Supervisor: cameron murphy
## 6604 3/12/2011 02:53 pm (fblackmo) employee was walking to her car when, she fell on black ice causing the injury to her hip. Supervisor: renita kaczkowsky
## 6605 3/12/2011 03:08 pm (fblackmo) employee was dismounting loader properly when his right leg buckled causing his left leg to swing around and hit a bolt on the right fender bruising his left knee. Supervisor: charles w. Garris
## 6606 3/12/2011 05:38 pm (fblackmo) employee started to stand when the chair rolled from under her causing her to lose balance and twist her right knee. Supervisor: mary avery
## 6607 3/13/2006 02:04 pm (fblackmo) employee was working in plant bed, on a slope having to help clear the slope of trees and shrubs. While handling the cut material, the employee was struck repeatedly by limbs, debris, briars, etc... All over, including the
## 6608 3/13/2007 11:09 am (fblackmo) employee was walking into building when, she slipped and fell causing injury to her knees. Supervisor: todd morgan
## 6609 3/13/2007 11:49 am (fblackmo) employee was pulling a pull cord on the auger when, the cord stop suddenly causing a jerking affect to right finger and lower arm. Supervisor: jim evans
## 6610 3/13/2008 01:31 pm (blgay) employee was getting chemicals from self in cabinet and a chain saw fell from the self above, when trying to catch the saw it cut employees left hand. Supervisor: roger t. Moore
## 6611 3/13/2008 12:53 pm (blgay) employee was helping to install a tailgate on a tandem dump truck. Employee looked up from the ground to help line up the pins and felt something enter his eye. Supervisor: r. L. Ford
## 6612 3/14/2006 03:00 pm (fblackmo) employee was talking to trackhoe operator. When finished talking he turned to walk away, stepping in a hole twisting left ankle. Supervisor: bobby leonard
## 6613 3/14/2006 03:23 pm (fblackmo) employee fell while attempting to climb onto the back of a flatbed truck, causing the injury to back. Supervisor: j. D. Tucker
## 6614 3/14/2007 02:32 pm (fblackmo) employee was walking in building when, she tripped/slipped on wet pavement. Supervisor: marian perry
## 6615 3/14/2008 01:28 pm (blgay) employee was sawing on a tree that was in a bind, when tree kicked back and hit him in the right knee. Supervisor: david c. Capps
## 6616 3/14/2008 01:40 pm (blgay) employee was driving out ball joints with a drift and hammer. Employee was wearing safety shoes, glasses and had gloves on. Employees middle finger on the left hand came between the hammer and drift tool, causing a laceratio
## 6617 3/14/2008 01:55 pm (blgay) employee was cleaning up debris from the wind the night before. Employee was picking up a heavy log, when he felt something pull in his back. Employee went to grab another limb he felt it again and it hurt even to pick it up
## 6618 3/14/2011 03:58 pm (barnes) employee was filling a tire with air on a backhoe trailer. He noticed a black discolored area on his left ring finger, with no pain and just a bump. The next morning his finger was dark colored more. He was concerned that
## 6619 3/14/2011 05:00 pm (barnes) employee was in door way talking to traffic signal supervisor. Employee had hand resting on door frame. The door was accidently shut, crushing right little finger between door and door frame. Supervisor: phillip eaker
## 6620 3/15/2006 08:33 am (fblackmo) employee was feeding brush into the chipper when, limbs rolled to the other side of the opening striking the employees right hand. Supervisor: john thomason
## 6621 3/15/2006 08:44 am (fblackmo) employee felt pain in the lower back as he lowered a traffic signal cabinet in the bed of the pickup truck. Supervisor: ken morge
## 6622 3/15/2010 01:04 pm (blgay) employee saw a private citizen hand a cigarette to the inmate flagger. Employee was on the back side of the ditch and stepped to cross the ditch to approach the inmate. The shoulder at the top of the ditch slope collapsed ca
## 6623 3/15/2010 01:31 pm (blgay) employee was hooking chains and bunjie cords on a dump truck. When employee stood up, he felt a pop in his back. Supervisor: danny keever
## 6624 3/15/2010 01:56 pm (blgay) employee was working on chipping crew, bent down to pick up a tree limb and lower back started to hurt. Supervisor: c. S. Johnson
## 6625 3/15/2010 02:32 pm (blgay) employee was working on chipping crew, picking up limbs to put in chipper, when he felt a tree limb hit the top of his head. The next thing employee remembered was laying face down in the road, with lacerations to his face a
## 6626 3/15/2010 02:54 pm (blgay) employee was in the watauga maintenance yard checking spreader, when he was coming back down his left arm slipped and hit the corner of the bed on the truck. Supervisor: michael b. Smith
## 6627 3/15/2010 12:34 pm (blgay) employee was performing normal job duties. Employee didn't stumble, trip or fall. Employees left knee buckled. Employee went to medical facility on his own, wasn't told to go, but went without ncdot knowledge or approval. S
## 6628 3/15/2011 10:40 am (barnes) employee was watching a video in a scheduled first aide class---video viewing caused employee to pass out. Employee injury---na supervisor: ken pruett
## 6629 3/16/2005 08:42 am (fblackmo) employee got in dump body to secure truck cover damaged by high winds. When getting out of the body he placed his right foot on the side rail and shifted all his weight on it. He lifted his left leg over the rail and his
## 6630 3/16/2005 09:01 am (fblackmo) employee was unloading backhoe. His hand was between the backhoe and trailer. He mashed his thumb on his right hand. Supervisor: greg jordan
## 6631 3/16/2005 09:24 am (fblackmo) employee states when, completing cdl road test she, hurt her left foot while stepping out of truck. Supervisor: lorrie sineath 3/28/2006 09:15 am (fblackmo) *see claim #41787, get bill approval before paying under t
## 6632 3/16/2005 09:36 am (fblackmo) employee states while getting out of vehicle during road test she, twisted her left knee. Supervisor: jerry sawyer
## 6633 3/16/2005 11:21 am (fblackmo) employee was driving s. On n. Tryon street at mellow drive. Another vehicle cut in front of him, causing collision with employees car. Employees car impacted other vehicle on right side near the center pillar. Employee exp
## 6634 3/16/2005 11:37 am (fblackmo) employee was driving personal pick up in route to job assignment when, he hit a car in the rear due to fog. Supervisor: alvie e. Lee jr
## 6635 3/16/2006 08:51 am (fblackmo) employee were attempting to reset sign. Employee was holding post while employee was removing rusted and branded bolts with hammer and chisel. When last bolt was cut top post with signs dropped, catching employees right t
## 6636 3/16/2006 09:08 am (fblackmo) employee was walking up steps on m/v southport when, wind blew something in his right eye. Supervisor: jud ferguson
## 6637 3/16/2006 09:54 am (fblackmo) employee was sitting at stop red light when, a private vehicle ran into the back of her car. No injuries stated. Supervisor: w. M. Ballentine
## 6638 3/16/2006 10:31 am (fblackmo) employee was putting a swing post pin in backhoe frame to check the fit when, he moved the pin to align it his fingers was mashed. Supervisor: buddy dixon
## 6639 3/16/2007 02:30 pm (speedin) employee was entering office and slipped on a slick area on the floor. Fall caused employee to spain her left ankle. Supervisor: linda hyder
## 6640 3/16/2007 02:58 pm (speedin) employee was sawing down a tree that was leaning over road with a chain saw. The chainsaw kicked back, knocking his helmet off, and making a large laceration on his head. Supervisor: j. D. Lusk
## 6641 3/16/2007 04:37 pm (speedin) employee got sawdust in his left eye while flooring a trailer he was underneath trailer tightening bolts. Employee was wearing goggles. Supervisor: d. F. Holman
## 6642 3/16/2007 12:43 pm (fblackmo) employee was loading brake drums onto fork lift when, he caught his left ring finger between the drum and fork lift. Supervisor: d. C. Sherrod
## 6643 3/16/2009 12:08 pm (fblackmo) employee was attempting to help the sign erector to lift the hydraulic post puller from off the truck when, he felt pain in his left shoulder. Supervisor: todd whitaker
## 6644 3/16/2009 12:44 pm (fblackmo) employee was moving tree out of road when, he slipped on straw causing injury to his right shoulder. Supervisor: james van riddick
## 6645 3/16/2011 10:04 am (barnes) employee (Mr. Deese) was part of a crew which had been cleaning snow and ice off of the parking lots in the madison county nc I-26 rest area. He was walking away from a tractor driven by another employee (they had been talk
## 6646 3/16/2011 11:35 am (barnes) employee was dragging brush and feeding it into chipper when he felt a pain in his back. Employee injured back. Supervisor: michael wilson
## 6647 3/17/2004 01:08 pm (fblackmo) employee was driving a dump truck when, he lost control and ran off the shoulder of the road causing the injury to his back and neck. Supervisor: j. E. Burleson
## 6648 3/17/2004 02:22 pm (fblackmo) employee was plowing snow when he met an oncoming vehicle that was over the center line. The employee pulled over the shoulder to avoid a collision. The plow dug into the shoulder and caused truck to spin around in he ro
## 6649 3/17/2004 02:41 pm (fblackmo) employee states while shoveling dirt to clear curb and gutters he, felt pain in his back. Supervisor: c. H. Winstead
## 6650 3/17/2004 02:50 pm (fblackmo) employee was pulling limbs when, the limb broke causing employee to fall and injure his left hip. Supervisor: b. R. Knowles
## 6651 3/17/2004 03:00 pm (fblackmo) employee states while bending over to pick up box she, felt pain in her lower back. Supervisor: cliff rudd
## 6652 3/17/2004 03:11 pm (fblackmo) employee states while pulling tree limbs he, felt pain in his hands. Supervisor: ronnie woodcock
## 6653 3/17/2004 04:00 pm (fblackmo) employee reached over from the right side of truck to pull pallet closer to him to pick them up when, he felt pain in his left side. Supervisor: a. L. Smith jr
## 6654 3/17/2004 04:11 pm (fblackmo) employee was was stepping out of crash truck when, the injury occurred to her left shoulder. Supervisor: ray garren
## 6655 3/17/2004 04:21 pm (fblackmo) employee was tightening nuts on a 3 in valve when, the wrench slipped causing the injury to his left wrist. Supervisor: l. D. Greene
## 6656 3/17/2004 12:56 pm (fblackmo) employee was loading beads from bags into the tank on a flatbed truck when, the bag slipped causing injury to his right wrist. Supervisor: franklin bullock
## 6657 3/17/2006 03:09 pm (fblackmo) employee was climbing in tractor when, he felt pain in his lower back. Supervisor: g. L. Baker
## 6658 3/17/2006 03:20 pm (fblackmo) employee was using a pocket knife to pry out a parking light on rear of truck when, blade fold up on employees index finger on right hand. Supervisor: mike hamm
## 6659 3/17/2009 03:12 pm (blgay) employee was delivering and picking up mail for office. Driving back from asheville, stopped by flagman in construction site and was hit from rear by private vehicle, causing contusions on head, right shoulder and right knee
## 6660 3/17/2009 03:23 pm (blgay) employee was walking back to pickup and stepped in a hole he didn't see, causing him to twist his left knee. Supervisor: clay murray
## 6661 3/17/2010 10:46 am (fblackmo) employee claims that he he hurt himself while straining to install a cross line pipe. Supervisor: g. L. Baker
## 6662 3/17/2010 10:59 am (fblackmo) employee stepped off of m/v buxton jr onto the dredge carolina when, he slipped and bell on the bit causing injury to back and right wrist. Supervisor: albert o'neal
## 6663 3/17/2010 11:31 am (fblackmo) employee was putting up a road closed sign when he noticed a dog approaching. Employee rush to put the sign post in hole when splinter from wood punctured his left index finger. Supervisor: roderick wyatt
## 6664 3/17/2010 11:43 am (fblackmo) employee was demonstrating to his supervisor how he used a wooden red top stake to measure a pipe diameter. During the demonstration, a splinter punctured his right hand between his thumb and index finger. Supervisor: an
## 6665 3/17/2010 11:58 am (fblackmo) employee was inspecting project when stepping out of the vehicle door struck him on top of his head on left side. Supervisor: w. S. Joyner
## 6666 3/17/2010 12:54 pm (fblackmo) employee was unloading trash at land field when, he stepped on nail. Supervisor: alfred wilson
## 6667 3/18/2004 09:10 am (fblackmo) employee states while operating a loader the door, closed on his left hand. Supervisor: david bowers
## 6668 3/18/2004 09:21 am (fblackmo) employee was helping another employee lower a tailgate when, he caught his right index finger between the gate and chain. Supervisor: lindsey o ethridge
## 6669 3/18/2004 09:37 am (fblackmo) employee was putting sign on truck when, a splinter went into his finger. Supervisor: b. K. Marley
## 6670 3/18/2004 09:50 am (fblackmo) employee was lifting a cardboard box from traffic signal cabinet when, he felt pain in his left shoulder. Supervisor: kelvin peele
## 6671 3/18/2004 11:19 am (fblackmo) employee was holding a chain used to bind down a spreader to truck bed when, his finger was caught between the chain and truck. Supervisor: d. L. Dean
## 6672 3/18/2005 01:27 pm (fblackmo) employee states she had finished cleaning her desk. She was sitting straddled to open the bottom felt drawer when, the entire left side collapsed. Supervisor: mike campbell
## 6673 3/18/2005 01:39 pm (fblackmo) employee was loading signs when, he slipped and fell. Supervisor: donald griffith
## 6674 3/18/2005 02:13 pm (fblackmo) employee states while loading packages of stop signs into rear of vehicle he, felt pain in his lower back. Supervisor: david greene
## 6675 3/18/2005 03:37 pm (fblackmo) employee was traveling on river road when, the vehicle went off side of road. Employee tried to correct the vehicle when, it over turned. Employee experience a cut over left eye, felt pain both his back and neck area. Sup
## 6676 3/18/2005 04:01 pm (fblackmo) employee was pumping with mud pump out of footing. Hose sunk in mud and would not pump. Employee tried to pull it up when, he felt pain in his back. Supervisor: tim k. Southard
## 6677 3/18/2005 04:20 pm (fblackmo) employee slipped on ditch bank while exiting ditch, falling on elbow and injuring shoulder. Supervisor: c. M. Conner 3/3/2006 10:03 am (sshort) 3/13/2006 09:58 am (fblackmo) *can not pay any bills containing to t
## 6678 3/18/2005 10:34 am (fblackmo) employee states while walking down hallway to cafeteria she, fell. Supervisor: donna brandis
## 6679 3/18/2005 10:45 am (fblackmo) employee was turning off water valve on the water line running to salt brine tank. Employee was using a vise grip when, vise grips slipped off causing him hand to strike the pressure flange. Supervisor: greg frye
## 6680 3/18/2008 08:40 am (fblackmo) employee states the chute on the chipper was stopped up and employee was using a pipe bar to clean out and the employees foot slipped and his left hand hit the housing blade cutting his thumb on the left hand. Supervisor:
## 6681 3/18/2008 09:37 am (fblackmo) employee was stepping down from engine compartment and missed his step, causing him to fall backwards, and hitting head on table. Supervisor; albert vann
## 6682 3/18/2009 10:17 am (blgay) employee was loading debris in a dump truck which had been removed from the roadway ditch. The employee heard a pop in his right knee accompanied by intense pain as he was loading a piece of debris by swinging it upward over
## 6683 3/18/2009 10:27 am (blgay) employee was checking for outlet end of culvert pipe, employee slipped and fell, spraining left wrist. Supervisor: wayne king
## 6684 3/18/2009 10:38 am (blgay) employee was changing nozzle on a crack pouring wand, when hot liquid asphalt splattered on employees right hand, resulting in 2nd degree burns to the hand. Supervisor: charles vick
## 6685 3/18/2009 10:43 am (fblackmo) employee was running tree chipper machine when, another employee threw a branch striking Mr. Herring in the head. Employee felt pain in head and neck. Supervisor: steven blake
## 6686 3/18/2009 10:48 am (blgay) employee went to tighten hose reel by using the hydraulics. Hose slipped out of fitting, striking employee in the mouth busting lips, knocking out one tooth and loosened five other teeth. Supervisor: t. L. Hall
## 6687 3/18/2009 11:01 am (blgay) employee was picking up a block of wood, when employee threw the block of wood, he felt his back pop. Supervisor: j. L. Yelton
## 6688 3/18/2009 11:14 am (blgay) employee was cutting a piece of rope preparing to work with a tree. When cutting the rope the knife slipped through the rope, cutting left middle and ring finger, severing tendons in ring finger. Supervisor: greg mccracken
## 6689 3/18/2010 08:55 am (blgay) employee was walking thur wooded, leaf covered area. His feet slipped out from under him (uneven ground). Employee landed on exposed concrete slab on back, hurting his back. Supervisor: david black 04/13/2010 10:14 am (mem
## 6690 3/18/2011 03:18 pm (fblackmo) employee ran into the back of a tractor while in route to statesville maintenance. Employee received multiple contusion and lacerations. Supervisor: mike jefferys 03/25/2011 03:30 pm (lvaughan) abdomen/intestines, r-
## 6691 3/18/2011 05:46 pm (barnes) employee was doing hand construction, lifting rip rap when he strained his back. Employee injured back. Supervisor: darrell dean
## 6692 3/18/2011 10:32 am (fblackmo) employee was helping another employee (kelly) lift tailgate when, he felt pain in his right shoulder. Supervisor: kelly f. Perry
## 6693 3/18/2011 10:51 am (fblackmo) employee was setting up computer lines for mobile unit when, he was bitten by a spider on his left hand. Supervisor: dean almond
## 6694 3/18/2011 11:18 am (fblackmo) employee states he injured the top of his left foot while running during inspector training. Supervisor: s. M. Watkins
## 6695 3/18/2011 11:52 am (fblackmo) employee smashed his left hand center finger between the drill rig and a rod while welding. Supervisor: jaime love pedro
## 6696 3/19/2009 02:58 pm (fblackmo) employee was cutting through brush when, he cut his left pinky finger. Supervisor: terry k. Wheeler
## 6697 3/19/2009 03:17 pm (fblackmo) employee was using auger to make holes for post ( to mark off reforestation area) when, auger hit something hard in ground causing the handle to striking employee in the mouth. Supervisor: john farrow
## 6698 3/19/2009 03:40 pm (fblackmo) employee was reaching into cash drawer to give customer change when, she hit her hand on corner of drawer (metal). Supervisor: donna boone
## 6699 3/19/2010 08:09 am (blgay) employee was cutting wiring harness protector with his knife. Knife slipped out and cut palm of left hand. Supervisor: james stepp
## 6700 3/2/2004 01:20 pm (fblackmo) employee was stepping down inside the bed of a dump truck when, the injury occurred to his right ankle. Supervisor: leroy farrish
## 6701 3/2/2004 01:30 pm (fblackmo) employee was walking down sidewalk when, he slipped and fell causing the injury to his right knee. Supervisor: jackie crumpler
## 6702 3/2/2004 01:39 pm (fblackmo) employee was using hammer to install mold board when, the injury occurred to his left thumb. Supervisor: a. W. Keeton
## 6703 3/2/2004 01:53 pm (fblackmo) employee was getting out of truck when, he slipped and fell on ice causing the injury to his left hip area. Supervisor: d. S. Lee
## 6704 3/2/2004 09:08 am (fblackmo) employee states he was exposed to carbon monoxide fumes for a period of two years. Supervisor: not stated keyed from form 18
## 6705 3/2/2004 09:19 am (fblackmo) bi-lateral carpal tunnel. Repetitive typing. Supervisor: not stated keyed from form 18
## 6706 3/2/2004 09:28 am (fblackmo) employee slipped and fell on ice at the back of shop while coming to work. Supervisor: terry r. Yates
## 6707 3/2/2004 09:38 am (fblackmo) employee states while sweeping out backhoe a piece of debris blew into his right eye. Supervisor: robert winslow
## 6708 3/2/2004 09:50 am (fblackmo) employee was walking up bridge to complete a inspection when, right foot slipped causing the injury to his back. Supervisor: mark wade
## 6709 3/2/2004 11:07 am (fblackmo) employee was walking to his vehicle when, he slipped and fell due to snow and ice. Supervisor: kelvin peele
## 6710 3/2/2004 11:18 am (fblackmo) employee was helping to lift a propane tank into back of dump truck when, he slipped causing the tank to fall on his right hand. Supervisor: w. H. Draper, jr
## 6711 3/2/2004 12:52 pm (fblackmo) employee was re-moving a deer from right of way when, he jumped back over the ditch he felt pain in his left knee. Supervisor: d. S. Lee
## 6712 3/2/2005 02:06 pm (fblackmo) employee states that he twisted his right knee while handing out traffic cones. Supervisor: abdul h. Kalam
## 6713 3/2/2005 03:03 pm (fblackmo) employee was sitting at picnic table eating lunch when, another employee kicked the bottom of his seat. Employee states he felt pain in his right upper leg. Supervisor: j. R. Williamson
## 6714 3/2/2005 03:16 pm (fblackmo) employee was forcing leg (12 x 12 treated timber) between cap and mud sill with 16 lb.. Hammer. Employee was swinging at shoulder level causing twisting motion of body when, he felt pain in his left shoulder. Supervisor: n
## 6715 3/2/2005 03:27 pm (fblackmo) employee was sliding guardrail post off of flatbed truck when, he felt pain in his left forearm. Supervisor: g. Todd cole
## 6716 3/2/2006 03:47 pm (blgay) employee was cleaning up brush, when backhoe dragging brush, pulled employees feet out from under him, causing him to fall. Bruising left hip. Supervisor: r. E. Metcalf
## 6717 3/2/2006 04:06 pm (blgay) employee was cleaning brush and trees from the ice strom on a steep bank when he slipped and turned his left foot and ankle. Supervisor: r. E. Metcalf
## 6718 3/2/2006 04:15 pm (blgay) employee was pulling and pushing on a binder on the salt spreader, when employee felt a pop in right shoulder. Supervisor: rick jordan
## 6719 3/2/2006 04:26 pm (blgay) employee was working on a crack sealing operation in left lane of I-85, when a tractor trailer ran into the hot rubber sealant, splashing it onto employee, burning him on his face and neck in four small locations. Approx. 1"
## 6720 3/2/2006 04:39 pm (blgay) employee was pulling brush off bank, when he felt like he pulled a muscle in his back. Supervisor: t. F. Rhodes
## 6721 3/2/2010 11:35 am (fblackmo) employee was using pressure washer to clean salt spreader when, foreign matter got into his right eye. Supervisor: a. B. Davis
## 6722 3/20/2006 09:56 am (fblackmo) employee was removing desk from office when, the door slide out of shelf catching his fingers on right hand. Supervisor: w. D. Lane
## 6723 3/20/2006 10:28 am (fblackmo) employee was mounting swb dump truck when, he felt a twinge in left side hip. Supervisor: m. A. Quick
## 6724 3/20/2007 01:37 pm (speedin) employee was washing out bed of dump truck, while climbing down ladder on side of truck, foot got caught on step causing him to slip and fall into a sit position and elbow cam straight down causing shoulder injury. Superv
## 6725 3/20/2007 03:06 pm (speedin) employee was rolling over a log and pulled in his back, while working on I-40 west bound m. M 27 cutting trees and brush. Supervisor greg mccracken
## 6726 3/20/2007 04:04 pm (fblackmo) employee was conducting an inspection when he found a tick on his left thigh area. Supervisor: rachella beauregard
## 6727 3/20/2007 10:31 am (speedin) employee slipped on top stop of mobile unit and hit wall with left hand. Exiting mobile unit. Supervisor: b. D. Pike
## 6728 3/20/2007 11:47 am (speedin) employee was searching in a supply closet for a tube of grease, and was bitten on the right hand, middle finger. Employee was unaware a t that time he was bitten. Supervisor: jerry l. Green
## 6729 3/20/2007 12:21 pm (speedin) employee lifted and pushed a tire from the top of a pile that were in inventory. Employee stated she felt something pull in her right wrist. Supervisor: steven l. Bullis
## 6730 3/20/2008 01:02 pm (blgay) employee was spreading stone when his almost empty bed caught a telephone line. The line went at an approx. 45-degree angle across the road. With the bed fully extended and empty, when the slack came out of the line, it caus
## 6731 3/20/2008 01:17 pm (blgay) employee was pushing snow and ice on nc 80 in mitchell county when the front tire dropped off the edge of pavement. Employee stopped on the shoulder and opened the door to exit the vehicle, when the truck began to turn over.
## 6732 3/20/2008 01:48 pm (blgay) employee was working around salt/sand spreader and walked into one, causing a cut on top of his head. Supervisor: doug metcalf
## 6733 3/20/2008 01:57 pm (blgay) employee was attempting to measure pavement markings by rolling a tape from truck window. Employee was struck in the rear by a private vehicle. Employee stated he hurt his shoulder and needed to go to doctor on 2/25/08. Empl
## 6734 3/21/2005 02:39 pm (fblackmo) employee states while traveling on us 421 two tires blew out causing employee to lose control of vehicle. Vehicle turned over causing employee to injury his right leg and shoulder. Supervisor: k. D. Register
## 6735 3/21/2005 03:04 pm (fblackmo) employee was backing up dirt ramp when, truck overturned. Employee injuries include contusion of right leg, cervical strain, laceration to right forearm. Supervisor: j. W. Weatherman
## 6736 3/21/2005 04:05 pm (fblackmo) employee was working on the m/v lupton, he tried to move an eliminator (similar to a vacuum cleaner - weighs approximately 60-80 lbs. ) by himself. Employee felt something pop in his lower back. Supervisor: thomas foster b
## 6737 3/21/2005 04:16 pm (fblackmo) employee was putting laptop into vehicle. She twisted her left wrist while lifting the care into the vehicle. Supervisor: jerry jennings
## 6738 3/21/2006 03:19 pm (fblackmo) employee was removing a skid mounted sprayer from bed of truck when, he stood up from a bend position he, hit his head on sharp object connected to the sprayer. Supervisor: corey sudderth
## 6739 3/21/2006 03:31 pm (fblackmo) employee was replacing a leaking wheel seal on truck with dual wheels when, he swung hammer, he missed striking thumb and finger on left hand. Supervisor: richard f. Jernigan
## 6740 3/21/2006 03:45 pm (fblackmo) employee was working on roadside when, he stepped backwards on to the ditch bank due to loose debris. As he fell, he tired to catch himself with his left hand causing the injury to his wrist. Supervisor: chuck mcdonald
## 6741 3/21/2006 09:23 am (fblackmo) employee was chipping brush when, brush struck him in right eye. Supervisor: jim ashe
## 6742 3/21/2006 09:37 am (fblackmo) employee ran into a 12 x 12 steel h-pile that was driven into ground and was protruding above bridge deck. Employee states he pulled his little finger on right hand backwards, popping finger out of socket. Supervisor: j.R
## 6743 3/21/2007 03:45 pm (fblackmo) employee was pulling on telephone line so the backhoe bucket could excavate earth material between the two line. Employees fingers were struck by backhoe while he was holding the line. Supervisor: arthur person
## 6744 3/21/2007 08:52 am (fblackmo) employee was taken empty oil drums to the trailer when, he stepped into a hole causing injury to his left foot. Supervisor: danny lewis
## 6745 3/22/2005 08:35 am (fblackmo) employee jump a ditch early in the day. Later in the afternoon he was pulling himself up on equipment trailer. Employee believes during one of these events lead to the pain he experienced in his back area. Supervisor: nei
## 6746 3/22/2005 08:51 am (fblackmo) employee was conducting a road test. Driver failed to stop for red light. Seatbelt pulled tight across chest on impact. Supervisor: vickey s. Fields
## 6747 3/22/2006 02:41 pm (fblackmo) employee was traveling on us 276 north when, a golf ball struck upper right windshield on motor grader, causing glass to go into employees right eye. Supervisor: david c. Capps
## 6748 3/22/2006 03:39 pm (fblackmo) employee was performing the normal duties and tasks of his job when, he complained about a constant tingling and numbness in his right hand and arm while using computer keyboard and mouse. Supervisor: jackie ruffin 3/22
## 6749 3/22/2006 04:06 pm (fblackmo) employee was walking between customers chairs while conducting a road test when, she tripped over the one of the chairs. Employee fell striking her head on a table causing a cut above her right eye. Supervisor: stacy woot
## 6750 3/22/2007 04:09 pm (speedin) employee was holding a 7 inch piece of h-pile steel for track-hoe operator to push into ground, when h-pile struck solid soil or rock, causing the pile to turn out while I was still holding it. It struck my right thumb.
## 6751 3/22/2007 04:37 pm (speedin) employee was loosening strap on flat bed truck. Went to push down on bar to release strap and heard and felt pop in right hip. Supervisor: mark c. Smith
## 6752 3/22/2007 09:36 am (speedin) employee was repairing an oil furnace and was bleeding air from fuel lines. He was pushing reset button to bleed lines an prime pump. Smoke was building in firebox and employee opened sight hole to firebox to draw smoke ou
## 6753 3/22/2007 10:53 am (speedin) employee walked around trachoe, tripped on rocks and fell injuring his back, and arm. Supervisor: tom huskins
## 6754 3/23/2004 08:59 am (fblackmo) employee was walking back to parked pickup truck when, he slipped and fell due to icy conditions on highway. Supervisor: d. S. Lee
## 6755 3/23/2004 09:14 am (fblackmo) employee was assisting in replacing a man hole cover that had been knocked off by a snow plow. The cover slipped, pinching employees hand between the cover and ring. Supervisor: gary darden
## 6756 3/23/2004 09:26 am (fblackmo) employee states while holding property sticker and trying to cut tape from the package the, box cutter slipped causing the injury to her left hand. Supervisor: thomas johnson
## 6757 3/23/2004 09:39 am (fblackmo) employee was using a shovel handle to prop up a tailgate when, the tailgate gave way causing a splinter to puncture left thumb. Supervisor: a. F. Smith
## 6758 3/23/2004 09:53 am (fblackmo) employee was replacing a trap on the dump truck when, he hit the rod with a hammer the rod popped back striking him on his right arm. Supervisor: l. D. Lucas
## 6759 3/23/2004 10:35 am (fblackmo) employee states, crew was working on a bridge damage repairing the guardrail. They had cut the rail but it was still in a bind. Employee bent over to pick up a sledge hammer when, another employee kicked the rail causing
## 6760 3/23/2004 11:01 am (fblackmo) employee was pulling plastic off of window seal when, his right hand went across a piece of glass stuck in the frame causing the injury to his right hand. Supervisor: a. L. Smith jr
## 6761 3/23/2004 11:12 am (fblackmo) employee was exiting dot truck when, she felt pain in left knee. Supervisor: henry sturdivant
## 6762 3/23/2004 11:32 am (fblackmo) employee states while standing on back of duro-patcher truck racking rocks he felt discomfort just below his belly button area. At the time there were no signs of a injury; however, on 3/13/2003 employee had severe pain
## 6763 3/23/2004 12:18 pm (fblackmo) crews were cleaning up storm debris form 3/7/04 along I-95. They were moving from one location to another in the south bound lane on shoulder. The lead traffic slowed due to the state equipment on the shoulder when, a pow
## 6764 3/23/2004 12:33 pm (fblackmo) employee states while helping shoveling and raking concrete slab he, experienced pain down his left leg. Supervisor: dennis l. Johnson
## 6765 3/23/2009 08:22 am (blgay) employee was preparing to remove batteries from pallet. Batteries were wrapped in shrink wrap. When employee was unaware that one of the batteries had leaked acid on to the wrap. When employee cut the wrap, the tension on th
## 6766 3/23/2009 08:34 am (blgay) employee was bringing pallet jack down to lower level of parts department. Employee lifted the 200lb jack onto the conveyor belt and attempted to lower it by sliding it down with a rope. Employee was bent over holding load o
## 6767 3/23/2010 08:08 am (blgay) employee was on a high slope cutting tree, when employee took step and left knee gave out on him. Supervisor: k. H. Johnson
## 6768 3/23/2010 08:21 am (blgay) employee and co-worker were moving a piece of steel. Co-worker let go of his end before employee was ready, causing piece of steel to land on both hands of employee. Supervisor: herbert ramsey
## 6769 3/23/2011 04:03 pm (fblackmo) employee begin to experience pain in his arm and neck after eating lunch. He advised his supervisor he needed to go to the doctor because of the pain. The supervisor took the employee to the er for medical attention. Earl
## 6770 3/23/2011 04:16 pm (fblackmo) employee was trying to remove old county paddle sign off of post to replace with a new one. The hammer slipped causing his hand to hit the corner of the sign, cutting through the glove, and cutting his middle finger above
## 6771 3/23/2011 04:28 pm (fblackmo) employee was removing vines from signs off state road when, he came into contact with poison ivy. Supervisor: leon gross
## 6772 3/23/2011 04:46 pm (fblackmo) employee was getting into dump truck and grabbed steering wheel to pull himself up when, something popped in his right hand. Supervisor: jeff radford
## 6773 3/24/2010 04:06 pm (blgay) employee was sitting in chair and leaned over to pick up a piece of paper from the floor. Chair went out from under her and as she fell, her right arm hit the metal sliding bracket that holds the printer. Supervisor: mary el
## 6774 3/25/2004 03:42 pm (fblackmo) employee was exiting motor grader when, he felt pain in his lower back area. Supervisor: j. L. Tuck
## 6775 3/25/2004 03:59 pm (fblackmo) employee was filling holes in driveway with abc stone. While pulling stone toward himself with rake, he felt a sharp pain run from lower back to right leg causing him to fall. Supervisor: j. W. Lassiter
## 6776 3/25/2004 04:09 pm (fblackmo) employee was lifting a heavy ramp on trailer when, he felt a burning sensation in left groin area. Supervisor: wesley powell
## 6777 3/25/2004 04:18 pm (fblackmo) employee states while lifting his tool box to back of truck he, felt pain in his back. Supervisor: d. L. Ferguson
## 6778 3/25/2010 08:54 am (fblackmo) employee claims repetitive motion in right arm due to keying data entry work over a number of years. Supervisor: terry schoonderwoerd
## 6779 3/25/2010 09:12 am (fblackmo) employee was replacing a fuel line when diesel spilled out into area were employee was working. Employee tired to grab onto inmate (jimmy) to keep from falling. Jimmy end up falling onto employee causing injury to employe
## 6780 3/25/2010 09:30 am (fblackmo) employee was getting out of truck when he turned his left ankle. Supervisor: ray sanderson
## 6781 3/25/2010 09:55 am (fblackmo) employee was sweeping engine room; while bending over to pick up trash he felt a pop in his back. Supervisor: s. H. Kinner
## 6782 3/25/2010 10:07 am (fblackmo) employee was carrying a bundle of stakes from the shed; there are no steps in front of the shed only stones. Employee missed stones and fell on the ground causing injury to left ankle. Supervisor: steve edgerton
## 6783 3/25/2011 02:43 pm (barnes) employee was cutting trees on a slope. He had cut several trees down when he began walking across the slope and down a hill with a saw in his hand. His foot slipped just a few inches and stopped. The sudden stop caused him
## 6784 3/25/2011 03:39 pm (barnes) employee was cleaning the chipper. The back hoe started moving brush and a limb fell and hit the employee across his hard hat and head. Employee injured top of head, nose and loose front tooth. Broken nose. Supervisor: e
## 6785 3/25/2011 04:34 pm (barnes) employee was removing signs from state property. After removing the signs, the employee felt a burning sensation in both hands. Employee went to the hospital and the diagnosis is contact dermatitis. This occurred due to rem
## 6786 3/25/2011 09:30 am (barnes) employee was checking to see if a driveway pipe was stopped up when the ground under his foot gave way. He used a shovel to keep from falling in a creek. Employee thought he would be okay and did not seek medical attention.
## 6787 3/25/2011 10:05 am (barnes) employee was picking up the trailer ramp after the backhoe was unloaded. As he lifted the ramp, he felt a pop and a tear in his left shoulder. Employee injured his left shoulder. Supervisor: richard roberts
## 6788 3/25/2011 12:22 pm (barnes) employee had just cleared debris from grate surrounded by a concrete apron, and was attempting to return to the truck. As employee stepped away, his left foot and leg dropped into a void that was next to the concrete apron.
## 6789 3/26/2004 02:20 pm (fblackmo) employee was un-latching tailgate to swing open when, the tailgate fell striking employee on his head and slid down his body and landed on his left foot causing the injury. Supervisor: s. W. Nance
## 6790 3/26/2004 09:31 am (fblackmo) employee was working on lights on back of tractor when, he slipped and fell causing the injury to his left side area. Supervisor: sam wilson
## 6791 3/26/2004 11:00 am (fblackmo) employee was picking up a guardrail to attach a bolt when, the guardrail slipped causing the injury to his back area. Supervisor: charlie e. Watson jr
## 6792 3/26/2004 11:14 am (fblackmo) employee was trying to remove axle from axle housing on right rear of truck by using a sledge hammer. The hammer head slid off handle causing the injury to employees left hand. Supervisor: j. C. Sloan
## 6793 3/26/2004 11:29 am (fblackmo) employee was getting out of dump truck and stepped on a piece of class b stone causing the injury to his right ankle. Supervisor: s. E. Propst
## 6794 3/26/2004 12:47 pm (fblackmo) employee was stacking tires on pallet when, he felt pain in his back area. Supervisor: william t. Stone
## 6795 3/26/2007 02:10 pm (speedin) employee was lifting tailgate on trash and animal truck to place a dead animal on truck. He caught his thumb between the door and the lift tailgate as it was raising, injuring the thumb on his right hand. Dr Sherrill jr w
## 6796 3/26/2007 02:42 pm (speedin) employee was cutting trees with a boom truck operated by jeff leonard. As Mr. Lee was climbing approximately 40 feet in the air, another tree that was behind this tree fell pinning Mr. Lee in the bucket by his right arm an
## 6797 3/26/2009 06:20 pm (fblackmo) employee began experiencing chest pains on thursday and left early sick. The next day, she came back in feeling light headed with re-occuring chest pains. Employee began feeling woozy, shortness of breath, and could not s
## 6798 3/26/2009 09:28 am (blgay) employee has worked on the asphalt patch crew for over twenty years. During this time she has shoveled and ranked asphalt, causing serve shoulder and upper back pain due to repetitive motion. Supervisor: robert hollifield
## 6799 3/26/2009 09:58 am (blgay) employee was cutting a limb off of a downed pine tree. As he cut the limb, the tree started to roll toward him. Employee tried to step back away from the tree. His foot slipped on the pine needles causing him to sit down. Hi
## 6800 3/26/2009 10:12 am (blgay) employee was lowering jack stand. He pulled pin out and the center of the jack fell, severing the left middle finger at the first joint and severing top of left ring finger through the finger nail. Supervisor: robert graham
## 6801 3/27/2006 03:06 pm (fblackmo) employee was cutting limbs from fallen trees when, limb fell striking him on his left wrist. Supervisor: t. S. Allen
## 6802 3/27/2006 03:17 pm (fblackmo) employee was walking down embankment when, he stepped on a piece of wood with a nail in it. Wood and nail was covered by leaves. Supervisor: j. W. Robinson
## 6803 3/27/2006 03:28 pm (fblackmo) employee was releasing asphalt agent when, it splattered going into his right eye. Supervisor: brian harper
## 6804 3/27/2006 03:38 pm (fblackmo) employee was working in dare county assisting in the building of a bike trail bulkhead when, he struck his left foot with the post hole digger. Supervisor: h d. Wiggins
## 6805 3/27/2006 03:53 pm (fblackmo) employee was shoveling asphalt when, he felt pain in his left wrist. Supervisor: j. M. Campbell
## 6806 3/27/2006 11:41 am (fblackmo) employee was had stop to make a left turn when, he was hit in the rear by a private vehicle. Employee felt pa in in his back and shoulder area. Supervisor: melvin dorsey
## 6807 3/27/2006 12:08 pm (fblackmo) employee was changing blades on grader when, debris went into his right eye. Supervisor: james conner
## 6808 3/27/2006 12:25 pm (fblackmo) employee was climbing up onto flatbed truck to release overhead crane from tank. Employee felt pain and burning in his left sided area when, he reached to pull himself up. Supervisor: james e. Stepp
## 6809 3/27/2006 12:38 pm (fblackmo) employee was holding a stop/slow paddle performing flagging duties. As a state vehicle entered the work zone, employee lost control of the paddle and struck the mirror on state truck. The paddle was pulled out of employee
## 6810 3/27/2008 10:31 am (blgay) employee was attempting to remove a glass globe off the back porch light, when the globe shattered cutting his right hand and requiring 6 stitches. Supervisor: j. P. Ingram
## 6811 3/27/2009 01:09 pm (blgay) employee had notched a tree and returned to back side to cut. Employee looked up to see where tree was falling. Employee fell on rocks. Employee looked up again and tried to get out of way, but couldn't get up and twisted ba
## 6812 3/27/2009 01:41 pm (blgay) employee was shoveling a curb when he pushed his left foot on the shovel and twisted his left knee. Employee went to doctor and was diagnosed with a torn acl left knee, requiring surgery. Supervisor: a. D. Lafacle 11/30/2009
## 6813 3/27/2009 02:00 pm (blgay) employee was in the process of clearing an area for silt fence installation. They were working on an uneven grade at an approved waste site. Employee bent over to remove some limbs, twisted and felt a sharp pain in his back.
## 6814 3/27/2009 10:32 am (bhenders) sov (inmate bus) was stopped at railroad crossing to check for train. When bus driver started to take off, pov struck bus in the rear. Driver of the bus had all of flashing lights on at the time.
## 6815 3/27/2009 12:32 pm (blgay) employee has been typing for the state for 15 years. Carpal tunnel.
## 6816 3/27/2009 12:58 pm (blgay) employee missed the bottom step on the way down to the district office jammimg his left knee, causing something to pop in his knee. Supervisor: henry worley
## 6817 3/28/2005 01:25 pm (fblackmo) employee was riding as a passenger in state dump truck when, a private vehicle crossed the highway and struck the snowplow attached to the truck on the drivers side. Several hours after the accident Mr. Ryan complained of b
## 6818 3/28/2005 01:42 pm (fblackmo) employee was loading boxes of paraplastic onto truck when, he felt pain in his back. Supervisor: terry shaw
## 6819 3/28/2005 01:55 pm (fblackmo) employee was opening a file drawer when, she cut her right index finger. Supervisor: ron w. King
## 6820 3/28/2007 08:24 am (bhenders) employee was driving a tandem dump on sr 1762 (avon road). Employee met a tractor trailer in a curve and their mirrors hit. The mirror shattered into pieces and flew into the window cutting employee's face.
## 6821 3/28/2007 10:19 am (fblackmo) employee was stretching to turn on power lever for shore when, he felt something pull in his groin area. Supervisor: sherry hollowell
## 6822 3/28/2007 10:30 am (fblackmo) employee was entering building when, she slipped and fell causing injury to her right shoulder and left ankle. Supervisor: barbara webb
## 6823 3/28/2007 10:43 am (fblackmo) employee slipped on wet grass and he reached to catch himself when, his right hand struck a piece of metal on the running board causing a cut on his hand. Supervisor: d. W. Fowler
## 6824 3/28/2007 10:56 am (fblackmo) employee was carrying truck maps to car when, he pain in his lower back. Supervisor: maude creech
## 6825 3/28/2008 01:28 pm (blgay) employee was driving swb dump truck hauling asphalt, when his arm locked up and began hurting. Supervisor: h. G. Timberlake
## 6826 3/28/2011 04:34 pm (barnes) employee was entering building from the parking lot, carrying a cpu when she tripped and fell. Employee injured her left hand, bumped her knee and hurt right elbow. Supervisor: cheryl m. Leonard
## 6827 3/28/2011 05:22 pm (barnes) employee was cutting dead trees in the right of way when he came in contact with some poison oak/ivy that spread all over both his arms, his left side, chest area and left leg. Supervisor: john springer
## 6828 3/28/2011 05:52 pm (barnes) employee, while getting ready for work, discovered an embedded tick on his back on 7/14/2010. Supervisor: mike johnson
## 6829 3/29/2005 08:36 am (fblackmo) employee was walking down stairs when, she tripped and fell causing the injury to her left knee, ankle, and right hand. Supervisor: helen dickens
## 6830 3/29/2006 09:08 am (fblackmo) employee was giving a road test to a customer. While going pass a cvs pharmacy a private vehicle pulled out and hit the car employee was in on the right front fender and bumper. Employee felt pain in her back and neck are
## 6831 3/29/2006 09:29 am (fblackmo) employee was leaving work when, exiting the building his foot missed block used for step at road oil facility causing him to fall on his right side injuring his right wrist and right ankle. Supervisor: kelly perry
## 6832 3/29/2006 09:38 am (fblackmo) employee was helping to open battery box lid of dozer when, lid flipped down scraping the skin off top of his left hand. Supervisor: s. G. Foster
## 6833 3/29/2006 09:46 am (fblackmo) employee was dumping dirt into the backhoe bucket when a clog of dirt got caught in the tailgate. Employee started pulling on the tailgate with both hands and lost his grip. While trying to regain balance his hand became
## 6834 3/29/2006 09:56 am (fblackmo) employee was attempting to pull up sign on shoulder of road and backhoe bucket hit employee in his left shoulder/arm and wrist area. Supervisor: k. L. Anderson
## 6835 3/29/2006 10:09 am (fblackmo) employee was cleaning bed of dump truck when, he slipped and fell causing the injury to his left shoulder. Supervisor: l. D. Lucas
## 6836 3/29/2010 10:44 am (fblackmo) employee was conducting a road test when customer vehicle was struck by another vehicle. Employee experiences right shoulder pain, lower back pain, head contusion, rib pain, and front tooth damage. Supervisor: dale rankin
## 6837 3/29/2011 04:33 pm (barnes) employee was attending a class at the division office. The class took a break at 10. 00 a. M. While exiting the building, the employee stepped out onto the walkway and missed the last step down. His ankle twisted, and all o
## 6838 3/29/2011 05:35 pm (barnes) employee was getting out of the dump truck using 3 points of contact. His left ankle rolled getting out of the truck. Employee injured his left ankle. Supervisor: tommy culberson
## 6839 3/29/2011 12:14 pm (barnes) employee was flagging on us 220, when he suddenly felt like he was going to pass out. He called his crew leader and immediately hit the ground face first causing a bloody nose and mouth. The doctor found an abnormal ekg. E
## 6840 3/3/2004 09:02 am (fblackmo) employee was pushing asphalt into pothole and felt a sharp pain in lower abdomen. Supervisor: l. S. Carpenter, jr
## 6841 3/3/2005 08:27 am (fblackmo) employee was filling potholes on us 19e when, he fell over timber in parking area. Supervisor: t. G. Huskins
## 6842 3/3/2005 08:48 am (fblackmo) employee was bending over fence picking up trash when, he cut his forehead. Supervisor: o. D. Sparks
## 6843 3/3/2005 09:23 am (fblackmo) employee ran off side of road, into a ditch, driveway through yard, and sapling. Employee experienced pain in his back. Supervisor: a. C. Coghill
## 6844 3/3/2005 09:40 am (fblackmo) employee was lifting wheelbarrow loaded with dirt when, he felt pain in his back. Supervisor: k. L. Anderson
## 6845 3/3/2005 09:48 am (fblackmo) employee was removing a valve from the m/v carteret when, he bumped his right elbow on a bulkhead frame. Supervisor: kevin lamar cooke
## 6846 3/3/2005 10:43 am (fblackmo) employee was reaching to pick up a piece of wood off pintle hook when, the hook came loose pinching her left hand ring finger. Supervisor: t. M. Smith
## 6847 3/3/2005 10:53 am (fblackmo) employee was trying to find damaged places in windshield washer hose with the motor arm when, it hit the side of his hand causing a laceration. Supervisor: c. R. Tyson
## 6848 3/3/2005 11:03 am (fblackmo) employee was using hand crank to raise step due to power failure when, the handle broke striking him on his left hand. Supervisor: n. L. Hunnings
## 6849 3/3/2006 02:41 pm (blgay) employee was loading backhoe and when he bent his knees to left the trailer ramp, his back caught with a sharp pain. Lumbar strain. Supervisor: j. Parks
## 6850 3/3/2006 02:51 pm (blgay) employee was using a rake to help repair unpaved shoulder on pipe replacement project, when the wind blew sand into right eye. Supervisor: tim finger
## 6851 3/3/2006 03:03 pm (blgay) employee was doing a driving test, when customer came to a sudden stop with great force, causing employee to fall forward and back. Employee in having pain in her upper right arm. Supervisor: phyllis young
## 6852 3/3/2007 01:12 pm (fblackmo) employee was carrying a table top with another co-worker when, his right pinky finger got smashed. Supervisor: dennis baker
## 6853 3/3/2007 01:32 pm (fblackmo) employee was attempting to remove a connecting pin on the excavator bucket when, the pin came out by force and struck hand, causing injury to finger. Supervisor: j. T. Wiggins
## 6854 3/3/2007 10:37 am (fblackmo) employee was coming down steps when, she slipped and fell causing injury to her left hip and arm, right wrist, and lower back. Supervisor: jerry jennings
## 6855 3/3/2007 10:48 am (fblackmo) employee was driving flat bed truck when, the trailer started to slide on black ice. Employee had to use a lot of effort to hold the truck/trailer from causing a accident. Employee felt pain in his neck, lower back, and a
## 6856 3/3/2007 11:05 am (fblackmo) employee was hooking chains on a salt spreader when, he was climbing down the spreader shifted mashing his right center finger between the spreader and dump truck. Supervisor: greg vinson
## 6857 3/3/2007 11:19 am (fblackmo) employee was trying to get bolts in the blade of snow plow when, he felt something in is groin area. Supervisor: doug williams jr
## 6858 3/3/2007 11:50 am (fblackmo) employee was stepping on deck when the step shifted causing him to fall. Robert e. Hill
## 6859 3/3/2007 12:17 pm (fblackmo) employee was walking when, she tripped and fell causing the injury to her left knee and left elbow. Supervisor: pam lett
## 6860 3/3/2007 12:48 pm (fblackmo) employee was in the passenger seat of a dump truck. Dirt got hung on the tailgate of the truck so the driver pulled forward then hit the brakes attempting to lossen the material. The employee was leaning forward looking ou
## 6861 3/3/2009 05:10 pm (fblackmo) employee was driving a rebar into ground and pinched skin on left hand between the hammer and the rebar
## 6862 3/3/2010 02:20 pm (fblackmo) employee was supervising work being done on a 3' water line that had busted. He wanted to be sure that the union was tight. When he pulled on the pliers, he felt his left knee pop. Supervisor: wade harper
## 6863 3/3/2010 10:56 am (fblackmo) employee was entering building when, she slipped in the hallway in front of restroom causing injury to her right knee and wrist. Supervisor: ashley dawless
## 6864 3/3/2010 11:10 am (fblackmo) employee slipped and fell while coming in office door. Employee felt pain in her left ankle, back, and neck. Supervisor: becky s. White
## 6865 3/3/2010 11:21 am (fblackmo) employee had cut his co-worker a piece of plywood. While passing the plywood to his co-worker it stuck him in his right arm leaving a splinter. Supervisor: guy white
## 6866 3/30/2004 01:24 pm (slee) employee was operating his assigned state vehicle. He stopped at the end of the drive. A blue car was attempting to make a right turn into the drive. The operator motioned for the employee to proceed so he could make the t
## 6867 3/30/2006 09:00 am (fblackmo) employee was installing spare tire on vehicle when, jack slipped striking him on his back and right arm. Supervisor: ann lorscheider )
## 6868 3/30/2006 09:11 am (fblackmo) employee was standing on a ladder cutting a u-channel post with a skill saw. Employee reached up to break the post off when it was almost cut through. Employee right arm hit the broken post causing a cut to his elbow. Sup
## 6869 3/30/2007 01:51 pm (speedin) employee was raking asphalt, when he started to feel faint. He went to crew cab to get some water, it did not help, he got weak, light headed, and incoherent. So we transported him to morehead hospital and was diagnosed wi
## 6870 3/30/2007 02:10 pm (fblackmo) employee was assisting the asphalt patching crew repair the asphalt kettle. He placed the hand wand in the top of the tank for circulation of the crs-2 when, his right wrist came into contact with opening of the tank cau
## 6871 3/30/2007 02:31 pm (speedin) employee was getting off tractor when he stepped down to the ground he shifted all of his weight to his left knee and the knee twisted. Supervisor: r. E. Austin
## 6872 3/30/2007 10:58 am (speedin) employee had stepped off the ladder. His foot slipped and he tripped over a vine causing employee to fall. He strained his wrist trying to catch his falll. The embankment was a 1 to 1 slope with very little room to work du
## 6873 3/30/2007 11:22 am (fblackmo) employee was helping another employee carry a tree when, he slipped causing the tree to fall on his right shoulder. Supervisor: c. E. Thompson
## 6874 3/30/2007 12:04 pm (speedin) employee was bending over on boat, pulling 4" by 12" boards back into the boat when he felt pain in his right hip. Supervisor william t. Lowery, jr.
## 6875 3/30/2011 09:40 am (barnes) employee was helping to form a storm drain. The form was full of concrete. While employee was holding it in place, the form broke loose. Employee felt something in the palm of his left hand followed by a stinging sensation.
## 6876 3/31/2004 02:32 pm (fblackmo) employee was using equipment when, his finger was caught between the machine, causing the injury to his left ring finger. Supervisor: j. D. Shelton 6/7/2004 01:44 pm (gwhite)
## 6877 3/31/2004 09:38 am (fblackmo) employee states while loading pipes' he, stepped in a hole causing the injury to his left knee area. Supervisor: j. F. Bishop
## 6878 3/31/2004 09:55 am (fblackmo) employee states while pulling out of parking lot a private citizen waved him out when, he was struck on the left front side of truck causing the injury to his left side area. Supervisor: w. D. Prestwood
## 6879 3/31/2004 11:21 am (fblackmo) employee states while finishing a road test she jumped out of the truck, causing the injury to her left leg. Supervisor: lorrie sineath 8/2/2005 02:11 pm (fblackmo) show all bills to joyce before paying!
## 6880 3/31/2004 12:28 pm (fblackmo) employee states the fluorescent lighting in his office does not have covers on them. The light from the exposed bulbs has caused the injuries to his eyes. Supervisor: randy wise
## 6881 3/31/2005 02:07 pm (fblackmo) employee was lifting steel beam over his head when, dust from the steel went into his eyes. Supervisor: hosea blount
## 6882 3/31/2005 02:19 pm (fblackmo) employee was hanging bucket of release agent on side of truck when, the strap broke splashing fluid in his eyes. Supervisor: chip speight
## 6883 3/31/2005 02:53 pm (fblackmo) employee was going down a hill as he proceeded down the backhoe he was pulling a tree around. The tree struck him in the back of the leg which pushed him to the ground causing him to twist his right knee. Supervisor: d. M.
## 6884 3/31/2005 03:11 pm (fblackmo) employee states that his vehicle and a gas truck swiped side mirrors while traveling down state road. Employee experience pain in his left ear. Supervisor: terry woody 1/10/2007 09:02 am (lvaughan)
## 6885 3/31/2005 03:33 pm (fblackmo) employee burned his arm with a acetylene torch while cutting a hole in a h-pile to insert a bolt. Supervisor: ronald j. Terry
## 6886 3/31/2005 03:43 pm (fblackmo) employee states wile changing blade on scraper, blade slipped and cut his left index finger. Supervisor: k. R. Burrell
## 6887 3/31/2005 04:02 pm (fblackmo) employee states that while in warehouse to pick up a battery he, tripped over a pallet. Supervisor: d. L. Carter
## 6888 3/31/2005 12:51 pm (fblackmo) employee states while trying to catch a falling spreader he, felt pain in his left shoulder area. Supervisor: g. Milton tapp
## 6889 3/31/2008 08:58 am (blgay) employee was grabbed by another employee to prevent him from being hit by a log on the back of a log truck, hurting his back. Supervisor: anthony bostic
## 6890 3/31/2008 09:12 am (blgay) employee was trying to unstop chipper. Employee was on top cleaning it out, when an inmate turned the wheel and caught his thumb between the wheel and housing. Supervisor: cole gurley
## 6891 3/31/2009 02:38 pm (blgay) employee was traveling on interstate 40/85, he reached over to pickup a water bottle, taking his eyes off the road, ran off the right side of road. Vehicle traveled approximately 500 feet on wet dirt and hit a culvert, causi
## 6892 3/31/2009 03:06 pm (blgay) employee was walking downhill around bridge wing wall to get a marking chalk. He slipped and fell landing on his back. Employees right elbow broke his fall and the right elbow made contact with a piece of concrete, causing s
## 6893 3/4/2004 01:51 pm (fblackmo) employee was helping put up tailgate when, his finger was mashed. Supervisor: a. S. Bailey
## 6894 3/4/2004 02:19 pm (fblackmo) employee was walking down a hill when, he slipped and fell causing the cut to his hand. Supervisor: c. R. Styles
## 6895 3/4/2004 02:31 pm (fblackmo) employee was climbing out of truck when, he slipped and fell causing the injury to his head. Supervisor: jerome locklear
## 6896 3/4/2004 04:33 pm (fblackmo) employee was operating a state vehicle in cumberland county returning form a job site in roberson county. The roadway was icy and employee was traveling at a slow speed due to the weather conditions. Vehicle # 2 was trave
## 6897 3/4/2004 08:59 am (fblackmo) employee was lifting anti-freeze when, he felt pain in his lower back and right leg. Supervisor: w. E. Evans 04/15/2004 09:34 am (gwhite)
## 6898 3/4/2004 09:13 am (fblackmo) employee was stepping down out of dump truck when, he felt pain in his back. Supervisor: j. R. Cook
## 6899 3/4/2004 11:54 am (fblackmo) employee was walking up to office when, he slipped and fell due to ice causing the injury to his right shoulder. Supervisor: michael kozak
## 6900 3/4/2008 01:54 pm (fblackmo) employee was stacking tractor trailer tires 3-4 high in a trailer at johnston county landfill when, he felt pain in his lower back. Supervisor: lee holley
## 6901 3/4/2008 02:07 pm (fblackmo) employee states he became aware of bumps and blisters on his left index finger. The area became sensitive and painful. Supervisor: danny lewis
## 6902 3/4/2008 02:33 pm (fblackmo) employee was stacking tractor trailer tires in a trailer at the landfill. Employee felt pain n his lower back on right side. Supervisor: lee holley
## 6903 3/4/2008 02:44 pm (fblackmo) employee was pulling four plastic drilling mats from rear of utility truck when, he felt pain in his lower back on left side. Supervisor: j. Milkovits, jr 5/12/2009 01:51 pm (sjerniga)
## 6904 3/4/2008 02:54 pm (fblackmo) employee was using a binder to secure a roller to a trailer. As he was applying pressure in a downward motion, the binder slipped, and caused his hand to hit the trailer, injuring his hand and palm. Supervisor: ronald whit
## 6905 3/4/2009 04:05 pm (blgay) employee was unloading equipment from low boy. While low boy operator was lowering ramp, employee went to put flags back into tubes on gooseneck of truck, when he stepped back another employee was letting down the ramp and it
## 6906 3/4/2009 04:13 pm (blgay) employee was removing sign post with a pry bar. The bar slipped out of the post as employee stepped on it, causing his left knee to jam. Supervisor: andrew helms
## 6907 3/4/2010 09:44 am (blgay) employee had returned to the newton office and when entering the building she slipped and fell. It was raining this date and her shoes and the floor could have been wet. Supervisor: j. W. Hill
## 6908 3/5/2008 10:01 am (fblackmo) employee hit right index finger with hammer while trying to start lag bolt to attach floats to pontoon. Supervisor: don rich
## 6909 3/5/2008 10:23 am (fblackmo) employee turned around to start walking and walked into a metal post filled with concrete. Employee felt pain in his chest area. Supervisor: steven blake
## 6910 3/5/2008 10:41 am (fblackmo) employee was cutting bushes around the bridge with a weed eater when, he was hit in the right eye by debris. Employee was wearing safety glasses. Supervisor: ronald j. Terry
## 6911 3/5/2008 12:01 pm (fblackmo) employee injured right wrist while helping mail person with delivery by pushing a box through doorway and moving a chair out of the way. Supervisor: e. Mckay
## 6912 3/5/2009 03:22 pm (blgay) employee was moving a work zone sign further away from the edge of the road on sr 2168 goodman lake road. He was concerned about traffic blowing the sign down. In the process of moving the sign, employee stepped into a hole a
## 6913 3/5/2009 03:34 pm (blgay) employee was pouring clorox in the back of the tank of the commode and it slashed back into his left eye. Supervisor: james brooks
## 6914 3/5/2009 07:56 am (blgay) employee was on a road test with client. The client drove his vehicle into a parked car in the dmv parking lot, causing neck sprain (whiplash). Supervisor: anthony lowe
## 6915 3/5/2010 08:50 am (fblackmo) employee reports she was removing a container of hot soup from the microwave in the break room. The container was hot, she dropped it, and the hot soup spilled burning her right hand. Supervisor: elizabeth leonard mckay
## 6916 3/5/2010 09:35 am (fblackmo) employee was pulling on cable when he felt pain in his right shoulder while trying to tighten a cable line due to hydraulic leak. Supervisor: r. G. Crews
## 6917 3/5/2010 10:08 am (fblackmo) employee was washing sand out of a pipe with a fire hose when he pulled on the hose he felt a pop in his upper back area. Supervisor: guy white
## 6918 3/5/2010 10:22 am (fblackmo) employee was loading material onto truck when he felt pain in his lower back. Supervisor: w. B. Crumpler
## 6919 3/6/2006 03:04 pm (fblackmo) employee was unloading new truck wheel from service truck when, his foot slipped causing him to pinch left thumb between bed and wheel. Supervisor: t. M. Griffith
## 6920 3/6/2009 03:47 pm (fblackmo) employee was retrieving mail from division office. Leaving the building employee missed final step and fell landing on left elbow. Supervisor: jason hedley
## 6921 3/6/2009 09:35 am (fblackmo) employee was getting sign from sign rack. Sign slipped down and jarred his left hand and wrist. Supervisor: h. D. Wiggins
## 6922 3/6/2009 09:49 am (fblackmo) employee was cutting the top of dead tree when, top fell striking the platform basket, breaking the hydraulic hose, and basket. Employee felt pain in his rightarm. Supervisor: roderick wyatt
## 6923 3/6/2009 11:11 am (blgay) employee was standing on a 2' retaining wall beside truck attempting to tighten chains holding spreader in truck. The retaining wall had ice on it and he was holding on to truck as he was working with the chains. Employee los
## 6924 3/6/2009 12:30 pm (blgay) employee was responding to a highway patrol call about a deer carcass in the center lane of the roadway on I-40 eastbound near harper road. He put on his flashers and arrow board as he approached the carcass in an attempt to
## 6925 3/7/2005 01:05 pm (fblackmo) employee was eating in truck. While attempting to exit vehicle, he began to choke on the food he was chewing. Employee lost his three point of contact, slipped and fell, striking the concrete. Employee experienced un-consc
## 6926 3/7/2005 01:19 pm (fblackmo) employee was standing in a chair to reach an area on the wall to pass something off to another employee when, the chair fell out from under him. Employee landed on his lower back area and buttocks. Supervisor: g. W. Price
## 6927 3/7/2005 01:29 pm (fblackmo) employee came down ramp at rear door of the office trailer, he did not see the ice on last four bands. Employee slipped and fell on his left wrist. Supervisor: d. R. Ross
## 6928 3/7/2005 04:04 pm (fblackmo) employee was conducting a road test. She was checking brake lights and signals of car when, another car was backing out of parking lot struck her from behind. Employee fell forward and her knees hit the pavement. Supervis
## 6929 3/7/2006 12:12 pm (blgay) employee was climbing on platform of excavator to close compartment door, while closing door, employee lost balance and fell 4 ft. To concrete floor, fracturing his left wrist. Supervisor: danny clapton
## 6930 3/7/2006 12:27 pm (blgay) employee was stopped due to traffic and was rear ended by pv, straining his neck and back. Supervisor: ardell m. Lewis, jr.
## 6931 3/7/2006 12:37 pm (blgay) employee was installing a transmission, when the employee pushed on the transmission, he had pain in right groin. Supervisor: robert d. Graham
## 6932 3/7/2007 02:50 pm (fblackmo) employee was carrying a 702 instrument and tce data collector when he fell in a hole on the shoulder of road, causing injury to his left knee and arm. Supervisor: jason smith
## 6933 3/7/2007 03:05 pm (fblackmo) employee was sitting in chair while steering the ferry, seas where rough, and the ferry took a roll. Employees chair flipped over causing him to hit his head the cover on a water line. Employee felt pain in his head and ba
## 6934 3/7/2007 03:17 pm (fblackmo) employee was walking out the automated door when, she slipped on brown title, twisted her ankle and hit her head. Supervisor: anita smith 3/12/2007 09:14 am (lvaughan) also seen for upper back & neck area
## 6935 3/7/2008 01:26 pm (blgay) employee was carrying glass table top out of building. Employee struck step with back of glass top. Glass broke and fell against back of employees leg, causing a laceration on back of left leg. Employee returned to work immed
## 6936 3/7/2008 01:40 pm (blgay) employee was using grinder to remove old weld from mower frame, when debris went under safety glasses into right eye, causing a scratched right eye. Supervisor: s. R. Hancock
## 6937 3/7/2008 01:57 pm (blgay) employee was stepping down out of pickup truck, when employee twisted left knee slightly. Employee noticed some discomfort at the time and next day knee was swollen and sore. Supervisor: davis diggs
## 6938 3/7/2008 02:10 pm (blgay) employee was putting rebar in the shelter, when it rolled. Employee bent over to stop it and lifted the rebar. Employee felt sharp pains in lower left back area. Supervisor: w. D. Watkins
## 6939 3/8/2005 09:01 am (fblackmo) employee states that while maneuvering hand truck to delivery supplies he, jammed his left thumb between the handle and door. Supervisor: pat glenn
## 6940 3/8/2007 04:13 pm (bhenders) employee was driving 6 wheel dump truck west on nc 33. Driver ran over yellow line, hit ditch with truck. (employee blacked out or went to sleep)
## 6941 3/8/2010 04:52 pm (blgay) employee was holding a sign post to be drove into the ground, when the post driver came apart. The part that fell out of the driver, hit employee in the head. Supervisor: clint stanley
## 6942 3/8/2010 10:09 am (blgay) employee was conducting a road test. The customer made a wrong turn, driving down the wrong side on english street, when he got on the correct side of the street he hit a car in front of him in his lane. Supervisor: teresa pa
## 6943 3/8/2010 10:29 am (blgay) employee was unloading a used motor grader moldboard. After employee hooked the lifting chain, he turned to get off the trailer and his left foot and leg fell between center boards and metal side frame. Supervisor: j. E. Adams
## 6944 3/8/2010 10:44 am (blgay) employee was operating machine lathe, chuck was not turning. Employee reached to remove a finished piece and while removing the piece, he hit his right hand on tooling bit, cutting the backside of his right hand between finge
## 6945 3/8/2010 10:57 am (blgay) employee was cleaning up truck after snow storm. Employee climbed into his truck, when he felt his left knee pop and hurt, this was near quitting time. The next morning employee reported to b. L. Sapp and went to doctor with a
## 6946 3/8/2011 03:02 pm (fblackmo) employee states that a private vehicle was merging into traffic when, vehicle went off the side of the road and hit the dot vehicle in the rear. Employee experience soreness in his chest area. Supervisor: tommy moss 04/
## 6947 3/8/2011 03:17 pm (fblackmo) employee was pulling on tree limbs when, he slipped and fell causing injury to his lower back area. Supervisor: jeff radford
## 6948 3/8/2011 03:32 pm (fblackmo) employee was walking to her vehicle when, she slipped and fell on icy pavement. No physical injury was stated. Supervisor: kristen erin roberts brissm
## 6949 3/8/2011 03:46 pm (fblackmo) employee was walking to the engine room when, he fell on steps. Employee states the deck plate frame was removed. Employee felt pain in his left shoulder and leg. Supervisor: richard dewhurst
## 6950 3/8/2011 04:58 pm (fblackmo) employee was surveying the bottom of a box culvert to obtain the vertical elevation. A bamboo stem punctured his right leg at a point above his boot. Supervisor: stephen coats
## 6951 3/9/2004 02:15 pm (fblackmo) employee was helping change blades on snowplow. He was lifting blade to mount on snowplow hen, he felt a sharp pain in his back. Supervisor: lindsey ethridge
## 6952 3/9/2004 02:33 pm (fblackmo) employee was lifting a 10 x 12 x 20 piece of timber when, he felt pain in his back. Supervisor: d. F. Mikeal
## 6953 3/9/2004 02:46 pm (fblackmo) employee states he was helping two other employee put a tailgate up when, he felt a pain in his lower back. Supervisor: randall jackson
## 6954 3/9/2004 03:12 pm (fblackmo) on 2/25/2004 at 11:45 am employee was helping another employee unload a catch basin grate off a utility truck bed and placing it on a catch basin. Employee never reported that anything was wrong until 7:55 am on 03/02/200
## 6955 3/9/2004 03:44 pm (fblackmo) employee was plowing snow when, he hit a icy spot and lost control of the vehicle. Vehicle slid off road down the embankment and landed on it's side. Supervisor: s. G. Foster
## 6956 3/9/2004 03:59 pm (fblackmo) employee stepped up on a crack sealing machine to check material level. While stepping down off of the machine, he stepped on the edge of the pavement and twisted his right ankle. Supervisor: william edward mcclendon
## 6957 3/9/2004 04:17 pm (fblackmo) employee was pulling up a silt fence post and heard his back pop. Supervisor: w. T. Lowery
## 6958 3/9/2004 04:27 pm (fblackmo) employee was walking to her vehicle when, she lost her foot and fell causing the injury to hier left ankle and right elbow. Supervisor: wright archer
## 6959 3/9/2004 10:29 am (fblackmo) employee states a private vehicle ran a stop sign striking dot vehicle on passenger side door at a full rate of speed. Supervisor: t. F. Welch 11/12/2008 02:29 pm (sshort)
## 6960 3/9/2004 10:40 am (fblackmo) employee was washing out salt spreader, the augar was turning and caught the end of the hose pulling employees right hand into the auger. Supervisor: d. R. Summers
## 6961 3/9/2004 10:50 am (fblackmo) employee was working on steep incline when, he felt pain in his left calf and ankle. Supervisor: randy pace 06/21/2005 09:47 am (kbarefoo)
## 6962 3/9/2004 11:06 am (fblackmo) employee states while moving timber he, felt pain in his lower back. Supervisor: a. W. Childers
## 6963 3/9/2006 08:25 am (fblackmo) employee was hauling asphalt in a tandem truck when a toyato celicia crossed the yellow line, causing truck to skid when it hit the dirt and overturned. Employee experienced pain to his left shoulder area. Supervisor: eric
## 6964 3/9/2006 08:49 am (fblackmo) employee was walking on deck of ferry when, she slipped on wet deck, on oil spot. Employee felt pain in left knee area. Supervisor: jeff credle
## 6965 3/9/2006 09:17 am (fblackmo) employee was raking leaves when, he was bitten by a spider on lower leg. Supervisor: terrell r. Smith
## 6966 3/9/2006 09:32 am (fblackmo) employee was welding on a pump frame and stepped on a welding rod, puncturing his right foot. Supervisor: richard f. Jernigan
## 6967 3/9/2006 09:43 am (fblackmo) employee was painting over graffiti with concrete when, debris got into right eye. Supervisor: abdul kalam
## 6968 3/9/2006 10:12 am (fblackmo) employee was inspecting a bridge when rocks he was standing on moved causing him to fall on his left shoulder. Supervisor: dalton r. Alligood
## 6969 3/9/2010 04:50 pm (blgay) employee was removing brush, when he felt a pulling sensation in his back and sides. Employee thought the pain would diminish over the weekend, but by monday he had to leave work early due to pain and go see doctor. Superviso
## 6970 3/9/2011 02:40 pm (barnes) employee was test driving a pick-up to set readiness for an emission inspection. In the meantime, his vehicle was struck in the rear by another vehicle that left the scene of accident. Employee did note any injuries at time
## 6971 3/9/2011 02:51 pm (fblackmo) employee was cleaning the face of a sign. Standing on a post (to attach sign) his safety belt came a loose causing step to fall. Employee grabbed for post as he was falling causing injury to the palm of his left hand. Sup
## 6972 3/9/2011 03:05 pm (fblackmo) employee was performing coast guard man overboard drill when he leaned over the side to pull the training dummy back into the boat he felt pain in his right side (rib cage area). Supervisor: kirk pistel
## 6973 3/9/2011 03:18 pm (fblackmo) employee was driving steel wedge between cap and piling. Sledge hammer handle hit ground causing fingers to be mashed between sledge hammer and steel wedge. Supervisor: james m. Rogers
## 6974 3/9/2011 03:44 pm (barnes) employee was getting materials to repair a hole on motsinger road. He shoveled and loaded 5 gallon buckets of abc rock into the bed of the truck. He then unloaded the buckets and poured the rock into the hole. On the way bac
## 6975 3/9/2011 04:18 pm (barnes) employee was giving road test to a customer. The customer maneuvered an emergency stop. This caused the employees neck to severely extend forward causing radiating pain down left arm. Employee injured his neck. Supervisor:
## 6976 3/9/2011 04:47 pm (fblackmo) employee was using a cart that had three boxes of plates in it when it fell over on his left leg. Supervisor: lynn chalk
## 6977 3/9/2011 05:43 pm (barnes) employee was working in a crew that was responsible for removal of vegetation. Employee was dragging brush and feeding material into the brush chipper. Employee stopped to wait while a tree was being cut down. Employee re-e
## 6978 3/9/2011 09:07 am (fblackmo) employee was loading roll paper into the oce860 plotter when, she struck the side of the plotter with her right hand. Supervisor: larry strickland
## 6979 3/9/2011 11:44 am (fblackmo) employee was driving 4" wooden stake when, axe handle made contact with his left wrist. Supervisor: keith green
## 6980 3/9/2011 12:54 pm (barnes) employee claims noise induced hearing loss form loud noises such as impact air wrenches, hammers, grinders, running machines and other misc. Loud noises. Supervisor: larry tibbs
## 6981 30+ years in clerks office typing, wiritng etc. ()
## 6982 3e making night contacts, EE states car hydroplaned and went into a ditch, contusion to lower back
## 6983 3rd finger on lt hand was treated for a contusion reached to grab door, door closed on left hand/finger
## 6984 4 liters of chiloroform was broken-vapors titered throughout bldg-casued EE to get dizzy and nauses.
## 6985 4 or 5 foot ditch was dug to replace broken 4in drainline was getting down in ditch to replace it and fell backwards on right hand
## 6986 4% paraformaldehyde was back-flashed into EE's rt eye when she was doing an experimental procedure to perfuse a mouse
## 6987 4/1/2008 02:55 pm (fblackmo) employee felt numbness in fingers and thumbs on both hands while typing. Repetitive motion. Supervisor: neil roberson
## 6988 4/1/2008 03:18 pm (fblackmo) employee was operating an a-boom mowing tractor on state road 1005 when, a private vehicle ran into the back of the mower. Employee felt pain in his neck area. Supervisor: pedrew williamson
## 6989 4/1/2008 03:33 pm (blgay) employee was going down steps of the tar tank and misjudged the last, causing employee to twist his right ankle. Supervisor: derek dixon
## 6990 4/1/2008 03:39 pm (fblackmo) employee was driving down wade avenue when, traffic came to a sudden stop, and the car following him, hit him the back. Employee felt pain in his back area. Supervisor: corey sudderth
## 6991 4/1/2008 03:49 pm (fblackmo) employee was chipping on the inside of a bulwark with his goggles on. He stopped chipping and removed his goggles, as he did, a piece of rust off his goggles blew into his left eye. Supervisor: thomas bowser
## 6992 4/1/2008 04:16 pm (fblackmo) employee was working on the m/v neuse in the passenger lounge. He was using a ladder to weld overhead. The ladder slipped and employee used his left hand to grab the I-beam. Employee felt pain in his left shoulder area. Su
## 6993 4/1/2008 04:28 pm (fblackmo) employee was inspecting fabrication of prestressed concrete girders when hot water/anti-freeze hose broke. Employee experienced burns to face, hands, and chest. Supervisor: trudy l. Mullins
## 6994 4/1/2008 04:59 pm (fblackmo) employee strained left knee while getting into the back of a crew cab pick up truck. The tailgate was down and employee placed left foot onto rear bumper with both hands on left side bed rail. The injury occurred as his we
## 6995 4/1/2008 05:09 pm (fblackmo) employee was moving a cabinet when, he felt pain in his back. Supervisor: cindy austin
## 6996 4/1/2008 05:19 pm (fblackmo) employee was operating a bobcat when, he felt pain in his lower back. Supervisor: cindy austin
## 6997 4/1/2008 05:31 pm (fblackmo) employee was walking to back door of building, tripped on septic system and rolled foot on curb. Supervisor: s. K. Garrett
## 6998 4/1/2009 09:16 am (fblackmo) employee was walking out the entrance when, she tripped over 2 x 2 boards laying in the pathway. Employee landed on her right knee and hands on concrete. Supervisor: d. I. Chapman
## 6999 4/1/2009 09:31 am (fblackmo) employee was sitting in back seat of parked state crew cab with her arm sticking out of window while they were on lunch break. Employee outside of vehicle stepped on running board of truck, slipped and hit her arm with his
## 7000 4/1/2009 10:20 am (fblackmo) employee went to reset breaker on board m/v hyde due to power failure, he struck his right knee on guard rails while going down into the engine room. Supervisor: cindy austin
## 7001 4/1/2009 10:53 am (fblackmo) employee was hooking the hydraulic hose from the spreader to the truck when, his right shoulder popped. Doctors notes states injury is not "work related". Supervisor: ben nelms
## 7002 4/10/2006 02:58 pm (fblackmo) employee was un-hooking the trailer from dump truck after the backhoe was loaded when, he reached to undo the piddle hook he caught his left index finger on trailer. Supervisor: michael t. Beane
## 7003 4/10/2006 03:16 pm (fblackmo) employee was getting out of truck when, he closed the door on his finger on right hand. Supervisor: bill stephenson
## 7004 4/10/2006 12:58 pm (fblackmo) employee was trimming limbs when, a limb fell striking him on his right shoulder. Supervisor: ricky ellington
## 7005 4/10/2007 01:20 pm (speedin) employee was walking through trees and brush looking for property corners, poison ivy vines brushed the right side of his face, cheek area, chin and neck. Supervisor: andrew murph
## 7006 4/10/2007 01:48 pm (speedin) employee was operating a tractor. When he got off the tractor he noticed the tick was attached to his chest. Supervisor chris crump
## 7007 4/10/2007 02:08 pm (speedin) employee was cutting up a tree on stone mountain road and pulling limbs, felt a briar stick on his right leg, he later started running a high fever and leg began to swell, went to family doctor and was diagnosed with a sna
## 7008 4/10/2007 02:49 pm (speedin) employee was using a drill press, when the bit went through, it grabbed and spun the metal, pressing the employees hand against the safety guard. Supervisor: g. E. Morris
## 7009 4/10/2007 03:19 pm (speedin) employee was moving filled sand bags. When employee reached down to pick up sand bag with left hand his felt something pull on the right side. Supervisor: d. Shane edwards
## 7010 4/10/2007 03:52 pm (fblackmo) employee was sitting at traffic light when, a private vehicle struck him in the rear, causing injury to his neck and back. Supervisor: r. E. Flaherty
## 7011 4/10/2007 04:03 pm (fblackmo) employee was moving ladder when, the hammer that was left on top step fell striking him on the head. Employee was not wearing his hard hat. Supervisor: wayne tosto
## 7012 4/10/2007 04:25 pm (fblackmo) employees were stopped at red light when a private vehicle struck them in the rear. Supervisor: jody langdon
## 7013 4/10/2007 04:46 pm (fblackmo) employee was removing bolts from cutting edge of loader bucket. He had his hand on the under side of the cutting edge. The bolt turned cutting through his glove onto the palm of his left hand. Supervisor: c. G. Inman
## 7014 4/12/2005 03:04 pm (fblackmo) employee was pulling on a branch when, the branch snapped causing employee to fall backwards. The branch hit employee on the chin, employee felt pain in his back. Supervisor: robert ramsey
## 7015 4/12/2005 03:58 pm (fblackmo) employee was assigned to perform a repetitive test (liquid limit) since October 2004. In mid January he started having pain in his hands. Supervisor: mehdi haeri
## 7016 4/12/2005 04:13 pm (fblackmo) employee pulled chain that was attached to tailgate which caused the tailgate to come open pinching his left index center finger. Supervisor: david l. Lane
## 7017 4/12/2005 11:07 am (fblackmo) employee was preparing a pipe for installation when, he slipped and bumped his right elbow on the pipe. Supervisor: dalton r. Alligood, jr
## 7018 4/12/2006 08:54 am (fblackmo) employee was dumping trash when, dust particles flew into his face and eyes. Supervisor: jimmy creech
## 7019 4/12/2006 09:07 am (fblackmo) employee was exiting truck when, wind blew door closed on his right hand. Supervisor: henry sturdivant
## 7020 4/12/2006 09:26 am (fblackmo) employee was sweeping the edge of the roadway off with a push broom to prepare it for asphalt when, he felt a sharp pain in his back. Supervisor: john ellis
## 7021 4/12/2010 07:47 am (blgay) employee was using a pneumatic wrench to remove a bolt from a paint drum, when his glove was caught by the turning bolt as it was being removed. Employees pinkie finger on his left hand was twisted, causing injury to the fin
## 7022 4/12/2010 08:00 am (blgay) employee was securing backhoe with binder to trailer. Binders gear slipped while employee was tightening it, causing handle to strike employee in the mouth and right side of face. Supervisor: ronnie king
## 7023 4/12/2010 08:46 am (blgay) employee was walking and stepped into a 2' hole, causing a fracture to employees left foot. Contractor had excavated a hole for the outeiggers of crane. Supervisor: kenn bridges
## 7024 4/13/2004 01:47 pm (fblackmo) employee was installing bob-wire when, he stuck his little finger on the fence. Supervisor: t. A. Powers
## 7025 4/13/2004 02:08 pm (fblackmo) employee was raising hood on tractor when, the hood slipped and fell on his right hand. Supervisor: glenn barnett
## 7026 4/13/2004 04:07 pm (fblackmo) employee was removing limbs when, one of the limbs struck employee in left eye. Supervisor: t. A. Woody
## 7027 4/13/2004 08:28 am (slee) state employee driving 1 ton delivery truck while stopped at the light on hwy. 74 and wesley chapel road. Private tractor trailer hit dot truck in the rear, pushed dot truck through the intersection causing employees head to
## 7028 4/13/2004 10:42 am (fblackmo) employee experienced carpal tunnel syndrome in both hands while keying daily operations. Supervisor: linda f. Battle
## 7029 4/13/2004 10:55 am (fblackmo) employee states while driving a stone density pin into a abc stone he, felt pain in his lower back. Supervisor: anthony talley
## 7030 4/13/2004 11:10 am (fblackmo) employee was shoveling all day when, he felt pain in his left arm and elbow. Supervisor: l. D. Lucas 10/6/2008 04:06 pm (sshort)
## 7031 4/13/2004 11:21 am (fblackmo) employee was unloading pipe from utility trailer, pipes slipped off dolly causing trailer to lift up and end struck employee under his chin. Supervisor: b. R. Knowles
## 7032 4/13/2005 02:51 pm (fblackmo) employee states while walking through door of office her body was cleared from entry. The door slammed on her right shoulder area. Supervisor: sylvia hall
## 7033 4/13/2005 03:01 pm (fblackmo) employee stepped in the woods when, a tree limb struck him in the eye. Supervisor: w. R. Wall
## 7034 4/13/2005 03:57 pm (fblackmo) employee was holding a stack of metal signs with another employee and the other employee let go causing a pulled muscle on employees left side. Supervisor: wilbur d. Lane
## 7035 4/13/2007 03:13 pm (speedin) employee was walking over to bridge to check some measures that the contractor had established and tripped over the backwall at end bent#1 on bridge #5. He fell and bruised his leg & punctured his jaw on a all thread rod.
## 7036 4/13/2009 09:31 am (blgay) employee was putting chains on swb truck. Driver was backing up on chock block. The wheel kicked the block out, striking the lower front of employees right leg, causing bruising and swelling. Supervisor: doug eller
## 7037 4/13/2010 03:12 pm (fblackmo) employee was stepping up onto a post stand to replace damaged stop sign. He stepped up with his right foot, foot lipped off stand causing him to fall and injury left knee. Supervisor: todd whitaker
## 7038 4/13/2010 03:31 pm (fblackmo) employee claims as a result of long term work with computers and the addition of driving the state vehicle to various sites; carpal tunnel had been detected in both hands. Supervisor: michael jarman
## 7039 4/13/2010 03:45 pm (fblackmo) employee states he twisted his left knee while dragging a concrete pump hose in muddy terrain (natural swampy ground). Supervisor: kevin sebold
## 7040 4/13/2010 04:09 pm (blgay) employee was reaching into truck bed from drivers side of truck and hurt back or neck. Employee made supervisor aware of incident on April 07, 2010 at approximately 2:30pm. Appointment was made with provider, where employee
## 7041 4/13/2010 04:44 pm (fblackmo) employee was completing a road test when, customer lost control of vehicle while turing into parking lot. Customer struck two parked vehicles causing employee to experience pain in his rib cage area, neck, and back. Super
## 7042 4/13/2010 09:15 am (blgay) employee was stepping up on tongue of amz machine to see why the rock didn't come out. When employee stepped down, his right foot turned over injuring his right ankle. Supervisor: randall howell
## 7043 4/14/2004 08:30 am (fblackmo) employee states while leaning over a tire he, felt pain in his back area. Supervisor: s. R. Hancock
## 7044 4/14/2004 09:15 am (fblackmo) employee was cutting a tree when, the tree struck him on his lower leg and ankle causing him to fall. Supervisor: j. H. Freeman jr
## 7045 4/14/2004 09:35 am (fblackmo) employee was checking load of asphalt to make sure he had the load equally distributed in the truck. He climbed up onto he tire and was holding to the sideboard to the truck. Employee foot slipped off the tire causing th
## 7046 4/14/2005 08:30 am (fblackmo) employee was lifting a box of license plate when, the bottom of the box came apart bending her left wrist back. Supervisor: tonia stevens
## 7047 4/14/2005 09:36 am (fblackmo) employee slipped on embankment while climbing to the top. Experienced pain in groin area. Supervisor: john jeffreys
## 7048 4/14/2007 02:07 pm (fblackmo) employee pinched his finger (left hand) between the tailgate on the truck. Supervisor: donald king
## 7049 4/14/2007 02:18 pm (fblackmo) employee was moving 30 lbs blocks of crack sealing materials when, he felt pain in his back. Supervisor: grady raynor
## 7050 4/14/2007 02:28 pm (fblackmo) employee was cutting a 18' metal plate with acetylene torch. The melted metal blew back and flew up striking him in the face resulting in a piece of metal getting underneath his safety glasses and causing a burn to his le
## 7051 4/15/2005 09:09 am (fblackmo) employee was walking back in building from break when, she slipped and fell on floor. Employee fractured her right hand and sprain the left hand. Supervisor: yvonne smith
## 7052 4/15/2008 03:52 pm (fblackmo) employee was driving state vehicle when it was struck by a private vehicle. Employee felt pain in is right thigh and groin area. Supervisor: ron king 4/16/2008 03:06 pm (fblackmo) rosalin hennein felt soreness
## 7053 4/15/2009 02:27 pm (bhenders) while aboom operator was mowing ditch bank, the mower blade came off the mower and traveled 145 feet and struck motor grader. It broke the lower window on the left door, busted the fire extinguished and hit the motor gra
## 7054 4/15/2009 11:49 am (blgay) employee was climbing over a guardrail. Employee put left foot over guardrail, right hand on guardrail and swung his right leg over guardrail. Employees rubber boot caught on guardrail and when right foot came loose his body
## 7055 4/15/2010 03:03 pm (blgay) employee was walking on shoulder of roadway and stepped into a shallow hole that was hidden by the grass, jarring his back. Supervisor: chris medlin
## 7056 4/15/2011 04:52 pm (barnes) employee was repairing a leaking oil seal on tandem dump truck. While reassembling the front hub and picking up the brakes and drums, the employee felt a pain in his lower back. Employee injured lower back. Supervisor: ja
## 7057 4/15/2011 05:16 pm (barnes) employee was working with asphalt patch crew. Employee started walking backwards from dump truck with shovel in his hands. He tripped over the landing gear of the backhoe. Employee landed on his right hand and arm. Emplo
## 7058 4/15/2011 05:50 pm (barnes) employee was picking up trash bags and throwing it into the back of a dump truck. Employee injured his right shoulder. Supervisor: l. M burke
## 7059 4/15/2011 06:02 pm (barnes) employee was cutting trees on right of way. The tree split and flew back hitting the employee's left leg and foot. Employee injuries consisted of contusion to left leg and left foot. Supervisor: troy dalrymple
## 7060 4/15/2011 06:22 pm (barnes) employee blevins along with other fellow employees was lowering a 3" water pump. The other employee advised employee blevins that he was about to let go. However, employee blevins did not let go at the same time. Holding
## 7061 4/15/2011 06:46 pm (barnes) employee was blowing straw with a straw blower. The wind blew straw back towards employee face. Employee got debris in his left eye. Supervisor: anthony reel
## 7062 4/15/2011 10:13 am (fblackmo) employee was placing a wooden block under the engine mount of the engine removed from the m/v cape point when, a loose splinter pierced the palm of his hand and was deeply imbedded. Supervisor: robert w. Norwood
## 7063 4/16/2004 03:21 pm (fblackmo) employee was re-stacking straw when, he fell of the truck causing the injury to his hand. Supervisor: glenn koepp
## 7064 4/16/2008 01:00 pm (fblackmo) employee was emptying shredder when the top of shredder fell on employees left foot. Supervisor: m. G. Jarman
## 7065 4/16/2008 01:17 pm (fblackmo) employee was getting out of cab after cleaning of sweeper on lowboy trailer when he fell backwards to the ground. Employee experienced a severe headache and swollen left elbow. Supervisor: rodney l. Tanner
## 7066 4/16/2008 01:37 pm (fblackmo) employee sates while traveling down I-40 a private vehicle hit us from the side merging into our traffic lane. Supervisor: jimmy hawley
## 7067 4/16/2008 02:22 pm (fblackmo) employee was pulling the water hose out to water the flowers at the maintenance office when, her foot got caught in the hose causing her to fall on right elbow. Supervisor: s. R. Ross
## 7068 4/16/2008 03:13 pm (fblackmo) employee was driving eastbound on I-40 in a multi lane section. He was in the lane adjacent to the outside lane when his vehicle was struck by a private vehicle that was attempting to merge into his lane from an on ramp.
## 7069 4/16/2008 03:20 pm (fblackmo) employee picked up battery, turned to install in service truck, and felt pain in his back. Supervisor: jimmy tuck
## 7070 4/16/2008 04:59 pm (fblackmo) employee states while exiting the truck employees foot slipped, causing him to fall hurting his left knee. Supervisor: t. S. Bozeman
## 7071 4/16/2009 03:01 pm (fblackmo) employee was cleaning out a driveway pipe with a sewer rodder. The cleaner head came through the pipe and came towards the employee. Employee caught the hose and it picked him up and threw him to the ground. In the proces
## 7072 4/16/2009 03:17 pm (fblackmo) employee was helping to take water pump out of tandem truck when, he felt pain in his lower back. Supervisor: r. R. Cartrette
## 7073 4/16/2010 03:00 pm (fblackmo) employee was driving when he slammed on brakes to avoid collision when, he was rear ended by a vehicle. Employee felt pain in his neck. Supervisor: wesley powell
## 7074 4/16/2010 03:28 pm (fblackmo) employee fell backwards from truck while cleaning off top board. Employee felt pain in his back. Supervisor: a. T. Ellis
## 7075 4/16/2010 11:19 am (fblackmo) employee was elongating a hole with a light bar die grinder when, the die grinder came out of the hole striking his left hand. Supervisor: charles watkins
## 7076 4/17/2007 02:00 pm (speedin) employee was traveling on nc 105 about. 10 mile southwest of sr 1109(laurel fork road) on his way into the watauga maintenance yard. Employee past out and ran off roadway into a field. Supervisor: kevin whittington
## 7077 4/17/2007 02:25 pm (speedin) employee was traveling south on hwy 105, there was another vehicle that was crossways in the travel lane, due to fog, employee struck the other vehicle. Supervisor: n. K. Turner
## 7078 4/17/2007 03:12 pm (speedin) employee was locating topography of land in wooded area that had poison ivy growing. Supervisor: r d. Bret henson
## 7079 4/17/2007 03:34 pm (speedin) employee was standing on edge of road waiting on ncdot truck to come by him so he could get the paddle sign from driver. Employee was struck by mirror on the left shoulder. Supervisor: chip speight 4/17/2007 03:36 pm (sp
## 7080 4/17/2007 03:53 pm (speedin) employee was standing at the front counter in office. He turned right to return to his desk. A small child was standing next to his right leg. Trying to avoid the child employee fell and breaking the fall with his hands, h
## 7081 4/17/2007 04:27 pm (speedin) employee smashed finger between to pieces of rip rap while moving rip rap by hands from backhoe bucket supervisor james garner
## 7082 4/17/2008 08:14 am (blgay) employee was putting away some files, when the rubber band holding the files together popped and struck employee in the right eye. Supervisor: r. E. Blakley
## 7083 4/18/2006 02:31 pm (bhenders) pov pulled out in front of sov (dump truck).
## 7084 4/19/2004 03:17 pm (slee) employee was headed back to job site loaded with asphalt. Private vehicle was making a left turn. As employee noticed the car in front of him turning, he applied brakes, veering onto the right shoulder to keep from hitting
## 7085 4/19/2005 02:40 pm (fblackmo) employee was loading ramps used to load and unload mower when, he felt pain in his left wrist. Supervisor: a. L. Lassiter
## 7086 4/19/2005 02:52 pm (fblackmo) employee was walking through doorway when she bent down to pick something up off the floor, a wood splinter was lodged under her right ring fingernail. Supervisor: michael kozak
## 7087 4/19/2005 03:50 pm (fblackmo) employee and co-worker was carrying file boxes to storage room at the end of hall. Later that evening, employee started experiencing pain from right side of lower back down right leg and calf area. Supervisor: anthony rope
## 7088 4/19/2005 10:05 am (fblackmo) employee states while administering road test and approaching the intersection a private vehicle struck the state vehicle on front fender. Employee experience pain in his nose, knees, right thigh, right shoulder, and ches
## 7089 4/19/2005 10:21 am (fblackmo) employee was driving a state owned vehicle when, he ran off the shoulder of the road striking a pine tree. Employee experienced pain to his chest and lacerations to right side of head. Supervisor: william edward mcclendo
## 7090 4/19/2005 11:26 am (fblackmo) employee was unloading traffic cones from bed of imap truck when, he felt pain in his right shoulder area. Supervisor: t. W. Kirk
## 7091 4/19/2005 11:41 am (fblackmo) employee was conducting a survey when, he was bitten by a tick on torso. Supervisor: mark ward
## 7092 4/19/2005 11:56 am (fblackmo) employee was removing load binder from low boy trailer when, operator dropped trailer on employees right foot. Supervisor: ronnie brigmon
## 7093 4/19/2005 12:07 pm (fblackmo) employee eyes was subjected to casual contact with pesticide spray when another employee was attempting to exterminate a wasp. Irritation to both eyes. Supervisor: milton dean
## 7094 4/19/2005 12:18 pm (fblackmo) employee was putting up silt fence when, he missed the driver post causing a laceration to his right hand. Supervisor: paul r. Draughn jr
## 7095 4/19/2005 12:30 pm (fblackmo) employee was getting into bucket of "snooper" truck when, his foot slipped and he fell into bucket. Employee experienced pain in his left hip and leg. Supervisor: j. Ronald lee
## 7096 4/19/2006 02:44 pm (fblackmo) employee was kneeling to nail cabinet when he stood up he felt pain in his left knee. Supervisor: dennis baker
## 7097 4/19/2006 02:56 pm (fblackmo) employee was walking and slipped on a rock and fell on payment. Supervisor: c. S. Austin
## 7098 4/19/2006 03:08 pm (fblackmo) employee was stepping down from truck when, stepped on a rock causing the injury to his right ankle. Supervisor: charles sharp
## 7099 4/19/2006 03:45 pm (fblackmo) employee stated while hanging up hose from sprayer that her index finger got caught between hose and metal bar. Supervisor: bill murrell
## 7100 4/19/2006 03:55 pm (fblackmo) employee was working with mechanic with truck repair under truck. He stood up to quick and hit the frame causing a cut to his head. Supervisor: r. L. Marshall
## 7101 4/19/2006 04:05 pm (fblackmo) employee picked up 30lb. Block of crack seal material when, he felt something pop in his left elbow followed by burning and weakness. Supervisor: j. T. Williams
## 7102 4/19/2006 11:29 am (fblackmo) employee was stepping off elevator when, she stepped on slick spot on floor and fell. Employee felt pain in her right ankle. Supervisor: lisa j. Carroll
## 7103 4/19/2006 11:43 am (fblackmo) employee was lifting a box of plates to place on top of another box when, she felt pain in her left hand. Supervisor: donna creech
## 7104 4/19/2006 11:58 am (fblackmo) employee was moving boxes of forms and manuals with her foot and bruised her foot in the process. Supervisor: charles vinson
## 7105 4/19/2007 02:38 pm (fblackmo) employee experienced pain in her left hand and arm due to keying. Supervisor: p. G. Harrington
## 7106 4/19/2010 09:49 am (fblackmo) employee was cutting limbs with bush axe when, he felt pain in his right hand and wrist. Supervisor: a. B. Davis
## 7107 4/2/2007 01:26 pm (speedin) employee was shoveling asphalt & stepped onto the roller and felt a sharp pain in his lower back. Supervisor r. D. Loflin
## 7108 4/2/2007 02:49 pm (speedin) employee was moving a large piece of asphalt off the road and she slipped and fell and hurt her right shoulder. Supervisor l. D. Lucas 6/1/2009 11:45 am (grwhite) steve johnson will schedule an appointment for second op
## 7109 4/2/2007 03:37 pm (speedin) employee was using roofing tack. Roofing tack turned into finger rather than penetrating flashing. Supervisor jimmy dameron
## 7110 4/2/2007 04:07 pm (fblackmo) employee was putting pine straw around azalea plants. She squatted down to put pine straw in around plant when, she lost her balance falling backwards. She put her left hand behind her to catch herself when, she felt some
## 7111 4/2/2007 04:17 pm (speedin) employee was walking in a ditch when he slipped and fell, striking his right elbow on the rim of a tractor rim as he landed, resulting in a bruise to same. Supervisor charles f. Vick
## 7112 4/2/2008 03:04 pm (fblackmo) employee was going down stairs to another floor when, she lost her footing and fell. Employee reported she was using the hand rails. Employee broke her left foot. Supervisor: michael shumsky
## 7113 4/2/2008 03:16 pm (fblackmo) employee was removing a gantry pin. As gantry pin was removed boom section dropped approximately eighteen inches causing his hand to be pinched between boom section and pender cable. Supervisor: guy white
## 7114 4/2/2008 08:40 am (fblackmo) employee was climbing ramp to lower car, when he fell five feet causing injury to his left arm, wrist, leg, and shoulder. Supervisor: s. S. Warren
## 7115 4/2/2008 08:57 am (fblackmo) employee was spotting small dump truck while backing up to a driveway that was being installed on state road 1307. Employee stepped back to get truck over pipe and stepped into a backhoe wheel losing his balance and fell b
## 7116 4/2/2008 09:08 am (fblackmo) employee dropped bead bag into drum and when he removed bag and shook it loose beads got into his left eye. Supervisor: l. J. Kirby
## 7117 4/2/2008 09:21 am (fblackmo) employee was assisting sign erector willie ford in installing a new stop sign on existing sign post. Mr. Ford was putting the bolts on the back of the sign and Mr. Strickland bent down to get the wrench, when he stood up he
## 7118 4/2/2008 09:38 am (fblackmo) employee was cutting and pulling limbs off right of way where a pine tree top had fallen into the roadway when, he felt pain in his right arm. Supervisor: greg vinson
## 7119 4/2/2008 09:49 am (fblackmo) employee was picking up a box, the box fell striking her right foot. Supervisor: kevin lacy
## 7120 4/2/2008 10:09 am (fblackmo) employee vehicle was struck on left side by a private vehicle while crossing intersection. Employee felt pain in his left elbow. Supervisor: don g. Lee
## 7121 4/2/2008 11:12 am (fblackmo) employee was letting tailgate down to shovel asphalt. Tailgate fell off truck and chain caught his left pinky finger, cutting finger. Supervisor: calvin ricks
## 7122 4/2/2008 11:20 am (fblackmo) employee was changing the blades on the front end loader bucket. He was using an air wrench to break a nut loose, and bolt slipped, causing cut to left index finger. Supervisor: william o. Braddy
## 7123 4/2/2009 01:33 pm (blgay) employee was on the back of the crew cab dump bed for the purpose of replacing tools, and securing the two joints of concrete pipe on the bed. Employee lost his balance and fell over the side rail of the truck. As he fell, pe
## 7124 4/2/2009 01:53 pm (blgay) employee was conducting covert investigations and heard a noise under the truck. Part of his job duties is checking underneath the vehicle for vandalism from doing covert investigations. While he was lying on the ground turni
## 7125 4/20/2009 08:50 am (blgay) employee was dragging brush on us 220 bypass north, when a tree limb hit him in the head. Supervisor: terry pugh
## 7126 4/20/2009 09:00 am (blgay) employee was dumping his last load of dirt, when crossing over the ditch the cab of the truck started rocking back and forth causing employee to hit his left elbow on the door. Supervisor: dannie tomberlin
## 7127 4/20/2010 09:13 am (fblackmo) employee was picking up a bench seat off the shoulder of the road. As he was throwing it into the bed of the trash truck, rusty water poured out onto him and into his right ear. Supervisor: jessie knight
## 7128 4/21/2004 02:09 pm (fblackmo) employee was heating asphalt on front bucket of a backhoe and scraping it off when, the scraper slipped and his right hand went in front of the torch causing the injury to his right hand. Supervisor: james r. Burgess
## 7129 4/21/2004 02:26 pm (fblackmo) employee was exiting truck from ladder when, he stepped on a rock causing the injury to his left ankle. Supervisor: w. D. Silver
## 7130 4/21/2004 02:37 pm (fblackmo) employee states while walking in a wooded area he, stepped on a tree root causing the injury to his left ankle. Supervisor: wade tate
## 7131 4/21/2004 02:46 pm (fblackmo) employee was cleaning debris off bridge and putting the debris in a wheel-barrow when, the wheel-barrow shifted to the left causing the injury to his left hand. Supervisor: d. W. Fowler
## 7132 4/21/2004 02:59 pm (fblackmo) employee along with another employee and 3 inmates was picking up an old piece of carpet when, he was stuck with a sewing needle that was sticking out of the carpet. Supervisor: d. L. Lane
## 7133 4/21/2004 09:39 am (fblackmo) employee was driving state vehicle to a project meeting being held in goldsboro and new bern. Employee was traveling on us -70 at raines mill road in the princeton area when, he ran into a parked utility truck. Superviso
## 7134 4/21/2004 11:02 am (fblackmo) employee was getting out of truck when, his right foot slipped off wet running board causing the injury to his right ankle. Supervisor: s. W. Davis
## 7135 4/21/2004 11:14 am (fblackmo) employee was dismounting from bucket truck when, he lost his footing on the curb causing the injury to his right foot. Supervisor: tim ashe 6/10/2004 09:37 am (gwhite) authorized pt 2x to 3x a week referred by Dr.
## 7136 4/21/2004 12:02 pm (fblackmo) employee was conducting a road test when, the driver ran into a parked truck, wall, and gate causing the injury to her back and left side area. Supervisor: not stated on 19
## 7137 4/21/2004 12:26 pm (fblackmo) employee was unloading plastic drainage pipe when, the injury occurred to his right wrist. Supervisor: r. T. Bland
## 7138 4/21/2004 12:55 pm (fblackmo) employee was inspecting asphalt when, he stepped into a drop off causing the injury to his left ankle. Supervisor: a. L. Talley
## 7139 4/21/2005 11:33 am (fblackmo) employee was on his way to job site when, a private vehicle crossed over into his lane striking driver side mirror and window. Glass from the mirror and window caused minor cuts to his left side of face and forearm. Supe
## 7140 4/21/2005 11:45 am (fblackmo) employee was attempting to walk up steps, missed top step and fell onto concrete porch catching with right arm. Supervisor: l. W. Lyall
## 7141 4/21/2005 11:59 am (fblackmo) employee was removing a dead animal form roadway when, he felt pain in his left shoulder. Supervisor: terry shaw
## 7142 4/21/2006 01:56 pm (fblackmo) employee was operating hand held motorized auger when, auger bit caught a metal pipe in the ground. Auger then twisted employees left hand. Supervisor: scott crocker
## 7143 4/21/2009 12:19 pm (blgay) employee noticed that right wrist was hurting more and more frequently during work hours. Brace helps some. Using keyboard and computer mouse makes pain worse. Noticed over weekend at home that pain went away and came back o
## 7144 4/21/2011 02:14 pm (fblackmo) employee had placed his lunch cooler on top of the refrigerator and was reaching for it when he pulled his back. Supervisor: g. L. Baker
## 7145 4/21/2011 02:44 pm (fblackmo) employee was getting off the side of the bed of the dump truck when he felt pain in his right wrist area. Supervisor: jeff radford
## 7146 4/21/2011 03:01 pm (fblackmo) employee was working under tandem truck on slack adjuster and while cleaning off mud and straw to get grease fitting he, felt pain in his right index finger. Possible cause, spider bite. Supervisor: g. N. Allen
## 7147 4/21/2011 03:14 pm (fblackmo) employee was assisting work crew with cleaning out ditches; while clearing vegetation from ditchline and right of way he got into some poisonous vines. Supervisor: r. T. Moore
## 7148 4/21/2011 03:39 pm (fblackmo) employee tripped over work basket that was placed on the floor in the aisle outside of her cubicle. Supervisor: melanie weisbeck
## 7149 4/22/2004 01:57 pm (fblackmo) employee was conducting a road test when, the driver hit a truck. Employee experience pain in her neck and lower back. Supervisor: r. M. Huffman
## 7150 4/22/2004 10:34 am (fblackmo) employee was crossing a high woven wire fence with a barbed wire top when, his right hand was caught on wire. Supervisor: mark wade
## 7151 4/22/2004 10:52 am (fblackmo) employee states while mounting a fire extinguisher bracket on a forklift he, hit his right hand on a bolt causing the injury to his right hand. Supervisor: raymond paul brown
## 7152 4/22/2004 11:32 am (fblackmo) employee was securing vessel at end of shift when, he accidentally put his foot under the ramp. Vessel was unloading weight of vehicle pushed ramp down on his foot causing the injury. Supervisor: g. L. Rollinson
## 7153 4/22/2004 12:07 pm (fblackmo) employee states "alleged" working with plasma cutter and girder his entire body was red and irritated. Allergic reaction. Supervisor: hosea blount
## 7154 4/22/2005 08:24 am (fblackmo) employee was painting a roof when, he slipped on wet paint causing him to fall off the top of the roof. Employee injured his left elbow. Supervisor: k. R. Davis
## 7155 4/22/2005 08:40 am (fblackmo) employee was doing field investigation of traffic signal when, he went to remove the "survey ahead" sign he, stepped awkwardly off the curb causing the injury to his right ankle. Supervisor: robert ziemba
## 7156 4/22/2005 08:52 am (fblackmo) employee was cutting and removing trees from shoulder of road when, he came into contact with poison ivy. Supervisor: denis harrell
## 7157 4/22/2005 09:02 am (fblackmo) employee was climbing down off the ather loader when, he wedding ring got caught on top step causing him to lose his balance and fall off bottom step. The machine was on the low boy trailer. Supervisor: rodney tanner
## 7158 4/22/2009 03:13 pm (blgay) employee was cutting bushes and as he was walking down a steep, slick embankment, he fell and injured his back. Supervisor: larry d. Scruggs
## 7159 4/22/2009 03:27 pm (fblackmo) employee was standing on wet ground stretching upwards to adjust a mirror on the door of sweeper truck. Mirror and ground were wet from rain. Employee lost footing and slipped cutting his left thumb on cracked / broken mi
## 7160 4/22/2009 04:38 pm (fblackmo) employee stated that he was lifting a 2x6x20" timber off the trailer when, he felt something pull in left shoulder and neck area. Supervisor: c. N. Vaughn
## 7161 4/22/2009 04:49 pm (fblackmo) employee knocked off his glasses after being stung by insect. While trying to find his glasses he, didn't realize the light had turned red and struck the vehicle in front of him at the intersection. Employee had bruises o
## 7162 4/22/2009 05:17 pm (fblackmo) employee was operating mower when blade broke. Blade broke the lower window in left door and busted the fire extinguisher. Fire extinguisher struck employee on his right ankle. Supervisor: terry barnette
## 7163 4/22/2009 06:02 pm (fblackmo) employee was assisting in unloading pavement marking remover from trailer when, his left foot got caught under the ramp and fell twisting his left knee. Supervisor: ira harris
## 7164 4/22/2010 01:19 pm (fblackmo) employee was breaking studs off of bridge girders with a hammer. As he struck one of the studs, rust and dirt flew up into his face; causing injury to left eye. Supervisor: guy white
## 7165 4/22/2010 10:32 am (fblackmo) employee fell while walking in the hallway of the transportation building. Employee said she felt she turned and stepped while wearing platform s hoes, falling on her right side injuring wrist. Supervisor: lisa coleman
## 7166 4/22/2010 10:49 am (fblackmo) employee was attempting to loosen belts on the spreader using a shovel. The belts were stuck which caused him to use force. He experienced pain in his chest and left shoulder/arm while pushing the belt. Supervisor stated
## 7167 4/23/2008 02:40 pm (blgay) employee was getting into the sign truck (drivers side) and slipped off running board, hurting back. Supervisor: johnny coleman
## 7168 4/23/2008 02:41 pm (fblackmo) employee davis and averitt were trying to loosen a nut on a carriage bolt. The head of the bolt would turn as they tried to loosen the nut. Davis had his knee against the head of the carriage bolt trying to hole it down a
## 7169 4/23/2008 02:52 pm (blgay) employee was shoveling gravel out of a front end loader. Employee felt a twinge or pull in lower back. Supervisor: robert dennie
## 7170 4/23/2008 03:11 pm (blgay) employee was replacing a fuel filter on a truck. Employee was standing on the bumper and had his knee on the radiator, when his foot slipped off of the bumper and slide down the grill and bumper. Supervisor: jimmy ammons
## 7171 4/23/2008 03:23 pm (blgay) employee was performing the backing up portion of the road test and the customer was going to fast. Employee asked customer to slow down, customer hit gas instead of brake, went off the road, down a bank and struck a tree. S
## 7172 4/23/2008 03:32 pm (fblackmo) employee was cutting trees to open up right of way. Employee was wearing long sleeve shirt and on guard while working. A limb scratched/cut employee across left wrist and poison ivy presented in that area that next mornin
## 7173 4/23/2008 09:19 am (fblackmo) employee was on his truck unloading signs. Employee became unbalanced and fell striking his head on truck before hitting the ground. Employee felt pain in his right shoulder & elbow, neck, and head. Supervisor: stephen fu
## 7174 4/23/2008 09:35 am (fblackmo) employee was welding in yard on prefabricate steel components for a prompt action. A fan was used to blow smoke and fumes away from employee. A piece of metal blew under hood into employees left eye. Accident happened on
## 7175 4/23/2010 10:25 am (fblackmo) employee was working beside asphalt paver during a lane closure when, private vehicle in the open lane drove to close to the operation and side mirror struck employee in lower back(right side). Supervisor: k. C. Batchelor j
## 7176 4/24/2007 02:58 pm (speedin) employee was accidentally injured while attempting to close a tailgate while in the course and scope of his employment. Supervisor; not stated from form 18
## 7177 4/24/2007 04:30 pm (speedin) employee was trying to pull chain off of spreader hitch and he put his hand around hitch and the other operator hit hutch button and closed hitch on employees finger cutting first end off of left middle finger supervisor:
## 7178 4/24/2009 02:27 pm (fblackmo) employee was loading a 5" drill to back of utility truck when, he felt pain in his lower back. Supervisor: thomas p. Moorefield
## 7179 4/24/2009 02:42 pm (fblackmo) employee was working at worksite when, he twisted his left ankle while walking up embankment. Supervisor: w. T. Mckenzie
## 7180 4/25/2008 11:25 am (blgay) employee was dismounting mower, when he stepped down a pin on the mowing deck that was turned up punctured his right leg in the lower calf area. Supervisor: bruce myers
## 7181 4/25/2008 11:38 am (blgay) employee was driving state vehicle at a slow rate of speed, when he was rear-ended by a fast moving vehicle, causing neck, lower back and left shoulder pain. Supervisor: harry viera
## 7182 4/25/2011 01:50 pm (barnes) employee was loading a tractor onto a trailer. As he was climbing down, his hand slipped off the front tire and he fell backwards onto the asphalt. He landed on his lower back. Employee injured his lower back. Supervisor
## 7183 4/25/2011 02:18 pm (barnes) employee was inspecting work on sr 1506 (macon county) under contract 14c. 056119. He assisted in piling brush, and contacted poison oak. Employee injuries consisted of blistering on right and left arms and hands. Superviso
## 7184 4/25/2011 03:46 pm (barnes) employee was loading I-beam on backhoe trailer. When stepping onto trailer, he misjudged his step and missed the trailer. This caused him to skin his left leg on the trailer. Supervisor: barry kizziah.
## 7185 4/25/2011 04:17 pm (barnes) employee was in the back of a flat bed truck cutting straw strings on bales of straw that was to be fed into a mulch blower. The truck stopped causing him to loose his balance. This resulted in him cutting his left hand. S
## 7186 4/25/2011 04:41 pm (barnes) employee sat down to take a break. He felt pain in his right foot/ankle. He pulled down his sock and discovered a knot above his ankle bone. Employee limped and had pain when he tried to walk. Employee injuries consisted
## 7187 4/26/10 assist. Resident from recliner into w/c-resident started to stand-dropped-emp. Holding gait belt-felt pull in r. Shoulder. 4/27/10 assisting resident to br-resident bent over-full weight on r arm. ()
## 7188 4/26/2004 10:28 am (fblackmo) employee reported to work and was shot in leg and buttocks by an off duty co-worker. Supervisor: melvin dorsey *let joyce see all bills*
## 7189 4/26/2005 09:26 am (fblackmo) employee was loading trash with loader onto truck when, had window open and trash blew into his right eye. Supervisor: r. L. Anderson
## 7190 4/26/2005 10:40 am (fblackmo) employee was cutting holes in plastic sheeting around chain to get it to hook when, he cut his right thumb with knife. Supervisor: ted burns
## 7191 4/26/2005 10:51 am (fblackmo) employee was laying a stop / slow paddle (sign) on the ground when, he lost control and it struck him in the head. Supervisor: s. G. Dillon
## 7192 4/26/2005 11:03 am (fblackmo) employee was inside the bed of a dump truck repairing the tarp. The trap closed. Another employee open the trap when, the arm struck employee in the face causing a laceration to his lip. Supervisor: leslie g. Reynolds
## 7193 4/26/2005 11:12 am (fblackmo) employee was walking along the shoulder of the road when, he fell and twisted his left knee. Supervisor: rudy batchelor 08/21/2006 12:41 pm (gwhite) shoulder and neck included on 10/14/2005 injury.
## 7194 4/26/2005 11:32 am (fblackmo) employee was in bed of dump truck shoveling asphalt when, he felt pain in his back. Supervisor: perry mitchell
## 7195 4/26/2005 11:51 am (fblackmo) employee states that elevator was not in operation. Employee took stairs to first floor. Employee was reporting to work when, she entered first floor and fell on her left arm. Employee was helped to her feet by janet d'ig
## 7196 4/26/2006 01:01 pm (fblackmo) employee was climbing out of a dump truck. When he got both feet on the ground, he released from his "three points of contact" to turn however one of his feet was on the edge of a small depression in the roadway s shoulde
## 7197 4/26/2006 01:14 pm (fblackmo) employee was pulling himself up to work table when, stool went out from under him causing him to fall. Employee felt pain in his forearm, knee, and head. Supervisor: reese briley
## 7198 4/26/2006 01:26 pm (fblackmo) employee was mopping floors when, he went to pick up mop bucket he felt pain in his back. Supervisor: curtis r. Banhill
## 7199 4/26/2006 01:39 pm (fblackmo) employee was cutting a tree from roadway when, he came into contact with poison ivy on arms, hands, abdomen, and eyes. Supervisor: terry woody
## 7200 4/26/2006 01:56 pm (fblackmo) employee threw a roll of jute mat into the back of dump truck causing pain to his lower back. Supervisor: w. K. Jarman
## 7201 4/26/2006 02:09 pm (fblackmo) employee states that due to repeating motion of right arm cutting brush, swinging hammers, and other duties that is related to surveying he felt pain in his neck area. Supervisor: richard d. Hensley
## 7202 4/26/2006 02:28 pm (fblackmo) employee was working on grading job while working in high grass, employee stepped hole and twisted right ankle. Supervisor: steve davis
## 7203 4/26/2006 02:43 pm (fblackmo) employee was pulling a metal band from under a stack of lumber, band got hung causing hand to slip and metal to cut through gloves and fifth finger on left hand. Supervisor: terry j. Davis
## 7204 4/26/2007 03:40 pm (speedin) employee was removing something from a toolbox and the wind blew the lid over and it hit him in the head, supervisor; tony east
## 7205 4/26/2011 12:23 pm (fblackmo) employee states she was sitting at her desk when the chair leg broke/ gaveway and she fell to the floor. Supervisor: cashuanda mclaurin
## 7206 4/27/2006 04:02 pm (fblackmo) employee was working on the rental patch truck cleaning out the rock hose. As he was re-connecting the hose beneath the truck, employee either strained a muscle or rolled over something causing injury to his lower back. S
## 7207 4/27/2006 04:27 pm (fblackmo) employee was cutting limbs and brush that was hanging over dump truck. Employee cut a limb, it fell, hit the ground, bounced back, and hit the top of employees foot causing a contusion. Supervisor: ray metcalf
## 7208 4/27/2007 03:45 pm (speedin) employee was carrying a board to the bank, when he stepped on a board with an old rusted nail sticking out and it when through his right foot. Supervisor: j. P. Callicut
## 7209 4/27/2010 04:33 pm (fblackmo) employee was standing on the road when he felt pain in his left ankle. Supervisor: phelids rickard
## 7210 4/27/2010 04:55 pm (fblackmo) employee was surveying property lines when he felt something crawling behind his left ear. Employee experienced pain and swelling. Supervisor: daine hampton
## 7211 4/27/2010 05:59 pm (fblackmo) employee was carrying a wet paint sign when he ran into the paint machine causing injury to right knee. Supervisor: tony brown
## 7212 4/27/2010 06:12 pm (fblackmo) employee was attempting to weld a angle iron brace onto steel h-pipe bent for bridge when, iron brace fell striking employee on right knee/leg. Supervisor: phillip m. Parker
## 7213 4/27/2010 06:22 pm (fblackmo) employee was lifting a bucket when he felt something pull on the right side of his back. Supervisor: alan c. Levens
## 7214 4/27/2010 06:31 pm (fblackmo) employee states crew was trimming trees when one of the limbs fell striking him on the top of his head. Employee felt pain in his neck and back area. Supervisor: a. J. "tony" mintz
## 7215 4/27/2011 07:21 am (fblackmo) employee was climbing on side of truck and slipped off causing pain in his lower back area. Supervisor: jimmy evans
## 7216 4/28/2005 01:46 pm (fblackmo) employee was stepping onto wet trailer when, his foot flipped causing a scrap to his right shin. Supervisor: bruce myers
## 7217 4/28/2005 02:03 pm (fblackmo) employee was using a razor blade to cut wire tie when, he cut his left thumb. Supervisor: roger furr
## 7218 4/28/2005 09:08 am (fblackmo) employee was pushing drawer when, he felt pain in his back. Supervisor: douglas williams jr
## 7219 4/28/2005 09:29 am (fblackmo) employee tripped, landing on right knee while walking up steps. Supervisor: greg godwin
## 7220 4/28/2005 09:40 am (fblackmo) employee was on the shoulder of road when, debris flew into his left eye. Supervisor: r. J. Holifield
## 7221 4/28/2005 10:07 am (fblackmo) employee was lifting a piece of broken asphalt with a shovel when, he felt pain in his back. Supervisor: g. J. Liverman
## 7222 4/28/2005 10:17 am (fblackmo) employee was carrying box of cdl manuals from stock room when, she was sitting case down she, felt pain in her right shoulder. Supervisor: lorie cantu
## 7223 4/28/2005 10:29 am (fblackmo) employee was moving tools from one truck to another when, the shovel struck him in the eye. Supervisor: r. M. Ladd
## 7224 4/28/2005 10:45 am (fblackmo) employee was clearing trees from right of way when, he came into contact with poison oak. Supervisor: james smith
## 7225 4/28/2006 08:39 am (fblackmo) employee was operating grader when, he found a tick on his private area. Two days later it began to swell and had knots around it where he had removed the tick. He went to the workers comp doctor on saturday morning. Supe
## 7226 4/28/2006 09:09 am (fblackmo) employee was stepping out of flatbed truck to take out tail boards when, he slipped and fell causing the injury to his left side area. Supervisor: p. P. Mansfield
## 7227 4/28/2006 09:21 am (fblackmo) employee came into contact with poison ivy that was rapped a dead tree during tree removal operation. Supervisor: jp ingram
## 7228 4/28/2009 09:20 am (blgay) employee was working in a crew clearing vegetation from right of way. The injured employee was standing below other co-workers and dragging brush to a chipper. A co-worker had cut a small tree and was tossing limbs to the bo
## 7229 4/28/2009 09:38 am (blgay) employee was rolling out fabric to use under rip rap. Employee rolled out fabric and was walking off the distance that would be used, when he stepped in catch basin that was covered with fabric. The lid on the catch basin wa
## 7230 4/28/2009 09:53 am (blgay) employee was operating a walk behind saw cutting asphalt. Pieces of carbide teeth came off while blade was spinning, striking employee in the right forearm, causing a minor laceration. Supervisor: ranette davis
## 7231 4/28/2009 10:22 am (blgay) employee was unloading debris off the tandem dump truck, when a board fell off the top and fell on employees right arm, causing a fracture right wrist. Supervisor: danny dees
## 7232 4/29/2004 01:06 pm (fblackmo) employee states while attempting to cross highway he, slipped and fell causing the injury to multiple body parts. Supervisor: arnold cabe
## 7233 4/29/2004 03:36 pm (fblackmo) employee was cleaning the yard when, a piece of metal hit his left foot pinching his little toe. Supervisor: j. E. Stepp
## 7234 4/29/2004 08:18 am (fblackmo) employee was operating a broom tractor in work zone when, tractor was struck from behind by a private on vehicle. Supervisor: bobby j. Berryhill jr
## 7235 4/29/2004 08:31 am (fblackmo) employee was sitting in a crew cab dump truck when, it was struck in the rear by a private vehicle. Supervisor: arthur g. Short
## 7236 4/29/2004 08:50 am (fblackmo) employee was on jobsite carrying a chainsaw when, he stepped in a ditch covered with leaves causing the injury to his lower back and left leg. Supervisor: j. Paul ingram
## 7237 4/29/2004 09:05 am (fblackmo) employee states she tripped over construction materials while carrying files to secretary office causing the injury to her left wrist. Supervisor: t. Lane mallonee
## 7238 4/29/2004 10:06 am (fblackmo) employee was helping to pull limbs to chipper when, he felt pain in his chest area. Supervisor: ricky l. Ford
## 7239 4/29/2004 10:18 am (fblackmo) employee was working on building brackets for shelves and was sawing with a dewalt miter saw cutting 2x2 blocks when, he cut his left arm above wrist area. Supervisor: m. B. Smith
## 7240 4/29/2004 10:30 am (fblackmo) employee states while pulling limbs to chipper he, felt pain in his right wrist. Supervisor: b. R. Webb
## 7241 4/29/2004 10:41 am (fblackmo) employee stated that he was checking radiator coolant level when, the hot liquid burned his left forearm. Supervisor: j. F. Sloop
## 7242 4/29/2004 11:01 am (fblackmo) employee states he was bitten by a tick on his left shoulder while loading and blowing straw in flowerbed. Supervisor: terry v. Leazer
## 7243 4/29/2004 11:12 am (fblackmo) employee was working with paint crew marking roads when, he was bitten by a tick on right side of abdomen (waist line). Supervisor: joe s. Parker 04/30/2004 07:57 am (gwhite)
## 7244 4/29/2004 11:24 am (fblackmo) employee states he tried to catch himself from falling while exiting a tandem truck, causing the injury to his right wrist. Supervisor: joseph c. Pruitt jr
## 7245 4/29/2004 11:39 am (fblackmo) employee was removing a hose from the equipment when, foreign matter sprayed him in the eyes and face. Supervisor: j. L. Hansley
## 7246 4/29/2004 12:00 pm (fblackmo) employee was on I-85 south during a crack sealing operation when, another employee ran over his left foot/ankle. Supervisor: archie coghill
## 7247 4/29/2004 12:14 pm (fblackmo) employee was un-hooking tailgate from truck when, he slipped and fell striking his right wrist on corner of trailer. Supervisor: donald king
## 7248 4/29/2004 12:42 pm (fblackmo) employee parked beside the road near some tree branches. As he was getting out of the truck, he pushed against the branch and something bit or stung him on the left hand. Supervisor: e. W. Spivey
## 7249 4/29/2004 12:53 pm (fblackmo) employee was repairing a tire change machine. While installing the hydraulic cylinder using a pry bar, bar slipped striking him in the mouth chipping right front tooth. Supervisor: charles hatley
## 7250 4/29/2008 09:55 am (fblackmo) employee was performing a cdl skills test when, she stepped out of the truck she felt a pop in her left knee. It popped again while she was talking to customer while changing standing position. Supervisor: michael jarman
## 7251 4/29/2008 10:10 am (fblackmo) employee was cutting brush with bush axe when, tree sap got into his right eye. Supervisor: ed mcelroy
## 7252 4/29/2008 10:19 am (fblackmo) employee was cutting underbrush on new project when bush axe hit a limb that was above employees head. Point hit tree and axe bounced back and hit employee on the head. Made a small hole in head that required five stitche
## 7253 4/29/2008 10:29 am (fblackmo) employee was unloading cold patch on pallet located onto the loading dock of the warehouse. Wilson was trying to turn the pallet jack into place by pushing and then pulling the jack to get it into place. While employee wa
## 7254 4/29/2008 11:31 am (fblackmo) employee was working on mobile unit when, bungee cord popped loose and the end hit the end of her right thumb causing knot and swelling over the end of her thumb. Supervisor: charles almond
## 7255 4/29/2008 12:50 pm (fblackmo) employee states tick bite occurred during ncdot wetland mitigation site visit in gates county. Supervisor: philip harris
## 7256 4/29/2009 01:05 pm (blgay) employee has been shoveling and raking asphalt for almost 6yrs. Employee has osteoarthritis and its aggravated by the repetitive motion. Since his initial doctor visit his condition has become worse, causing pain and loss of
## 7257 4/29/2009 01:47 pm (blgay) employee was jacking up a car to change the tire. When taking tire from rear driver side, right hand was caught between jack handle and bumper. Supervisor: ann lorscheider
## 7258 4/29/2009 02:06 pm (blgay) employee was bending over and removing timber nailer from I-beam with a pry bar, when he felt pain in his lower back area. Supervisor: thomas chavis 7/27/2009 04:19 pm (sshort)
## 7259 4/29/2010 08:33 am (fblackmo) employee was working inside the void of the m/v cape point when he slipped on wet point and fell into the bilge, resulting in a laceration to the left side of his head in the scalp area. Supervisor: thomas bowser
## 7260 4/29/2010 08:59 am (fblackmo) employee was shoveling around catch basin when he felt pain in his lower back. Supervisor: b. N. Braswell
## 7261 4/29/2010 09:17 am (fblackmo) employee was trying to remove bearing from gear box shaft. Employee was driving a chisel between bearing inner race and shaft. After hammering a couple of times the tip of the chisel shot free and hit employee in the stom
## 7262 4/29/2010 09:34 am (fblackmo) employee placed chock under tractor trailer tires to stop the movement. Truck started moving causing chock to shot out and hit employee on his right index finer and bruise to lower left leg. Supervisor: h. C. Scarborough
## 7263 4/29/2010 09:46 am (fblackmo) employee was attempting to straighten the bracket of a light when the wrench slipped striking employee on left forearm and wrist. Supervisor: johnny r. Price
## 7264 4/29/2010 10:30 am (fblackmo) employee was welding studs without helmet when both eyes was burned. Supervisor: g. N. Allen
## 7265 4/29/2010 10:44 am (fblackmo) employee was preparing to take photographs of bridge conditions when he turned, stumbled on raised bridge median and fell causing injury to his face and both wrist. Supervisor: darren pittman
## 7266 4/29/2010 11:23 am (fblackmo) employee states while performing inspections on project he rolled his left foot while walking on uneven ground covered with sticks and stumps. Supervisor: jason salisbury
## 7267 4/3/2006 09:52 am (fblackmo) employee was bending over to pick up trash when, he felt pain in his back. Supervisor: terry a. Woody
## 7268 4/3/2006 10:20 am (fblackmo) employee was replacing corrugated crossline when, he felt pain in his lower back area. Supervisor: tommy cottrell
## 7269 4/3/2006 10:55 am (fblackmo) employee was in process of removing traffic control cones from highway. He stepped wrong getting out of the pickup truck causing the injury to his right ankle. Supervisor: w. E. Mcclendon, jr
## 7270 4/3/2007 02:16 pm (speedin) employee was cutting trees and shipping brush on I-85 and came in contact with poison oak. Supervisor l. C. Dedmon
## 7271 4/3/2007 09:05 am (speedin) employee was installing shoulder closed signs on hwy. Right of way when another employee struck him in head with a metal shoulder closed sign. Supervisor w. W. Childress
## 7272 4/3/2007 09:29 am (speedin) employee was burning trash and a spray foam can exploded supervisor jl cornell
## 7273 4/3/2007 10:51 am (fblackmo) employee states a wooden keyboard fell on her right foot/toe. Supervisor: gwen s. Witherspoon 4/19/2007 03:54 pm (fblackmo) has an attorney " robert lucas with lucas, denning & ellerbe"
## 7274 4/3/2007 11:18 am (speedin) employee was at a stop and a box truck hit a suv and the suv hit my map truck. Supervisor melvin dorsey
## 7275 4/3/2009 10:02 am (fblackmo) employee was at the back of the bridge yard looking for a piece of metal in a pile of salvage metal. He almost tripped on a piece of metal, caught himself with his right hand, causing injury to his pinky finger. Supervisor
## 7276 4/3/2009 10:16 am (fblackmo) employee found tick bite on back of right leg behind right knee. Supervisor: jimmy hawley
## 7277 4/3/2009 10:53 am (fblackmo) employee was walking up steps when, he slipped, and caught himself feeling a tear in his stomach. Supervisor: thomas bowser
## 7278 4/3/2009 11:13 am (fblackmo) employee was in the field when, he was bitten by insect on neck. Supervisor: lee stone
## 7279 4/3/2009 11:27 am (fblackmo) employee was reaching in the back of the work truck leaning over the tailgate attempting to pick up the stop paddle which was buried under 120lbs of asphalt in gags. Employee forcefully lifted the sign from under the aspha
## 7280 4/30/2008 03:48 pm (fblackmo) employee was clearing brush under guard rail when, he was bitten by a tick on his back. Supervisor: mark conner
## 7281 4/30/2009 02:21 pm (blgay) employee was picking up litter along roadway on us 15-501 north. At home after work, employee found a tick embedded in his left lower abdomen. Supervisor: meta cooper
## 7282 4/30/2009 02:54 pm (blgay) employee was driving the spray truck on 03/20/09 and 03/23/09. Employee drove the attenuator truck on 03/17/09 and 03/24/2009. Employee went home sick on 03/26/09 and went to the hospital on 04/01/09. Employee worked on 03/3
## 7283 4/30/2009 03:37 pm (blgay) employee was standing on a rut and stepped on a stick, causing his right knee locked back. Employee originally injured this knee with us on 11/02/2007 and reported it at that time, but never sought medical treatment. At that
## 7284 4/30/2010 04:15 pm (fblackmo) employee was installing and programming radio when he extended his left arm to place lap top on desk he heard a pop in his left shoulder. Supervisor: james hoffman
## 7285 4/4/2006 09:25 am (fblackmo) employee states while moving rocks he felt pain in his lower back. Supervisor: albert oneal
## 7286 4/4/2006 09:37 am (fblackmo) employee was helping to lift tamp to complete compaction of backfill material when, he felt pain in his lower stomach area. Supervisor: tim finger
## 7287 4/4/2006 09:50 am (fblackmo) employee states while stepping down ladder un-loading truck he, felt a tearing sensation in his lower back area. Supervisor: larry daniels
## 7288 4/4/2008 01:55 pm (blgay) employee was taking signs down, when the ladder he was standing on broke. Supervisor: andy helms
## 7289 4/4/2008 02:14 pm (blgay) employee was reaching into the back of crewcab to get his coat at the end of the day, hitting a bush axe blade that was turned up with his finger. Supervisor: ronald lee
## 7290 4/5/2005 12:02 pm (fblackmo) employee was removing new parts of spreader from inside where they were shipped from factory when, he stepped into a 5 1/4 inch gap between grates scraping his right arm. Supervisor: n. A. Clark
## 7291 4/5/2005 12:15 pm (fblackmo) employee reached into the glove compartment of the vehicle and was cut on the finger by a box cutter which was not fully retracted. Supervisor: dennis harrell
## 7292 4/5/2006 09:05 am (fblackmo) employee had bent down to look under the state vehicle that he was driving. The vehicle had a noise/vibration under the front end. When employee stood up he felt a sharpe pain in his back. Supervisor: ads w. T. Ballentine
## 7293 4/5/2007 10:13 am (fblackmo) employee was blowing out cracks in pavement when, debris was blown up into his left eye. Supervisor:
## 7294 4/5/2007 10:26 am (fblackmo) employee was walking down hallway when, she tripped and fell causing injury to hands. Supervisor: caresha wall
## 7295 4/5/2007 10:51 am (fblackmo) employee was removing door glass when, he cut his right hand. Supervisor: w. E. Evans
## 7296 4/5/2007 11:37 am (fblackmo) employee was working on a crack sealing crew switching out between using a wand to fill cracks and a squeegee to smooth material over cracks. Employee told his supervisor his back was hurting. No specific incident that cau
## 7297 4/5/2007 11:51 am (fblackmo) employee was lifting nuclear density when, he felt pa in in right shoulder. Supervisor: w. C. Kincannon
## 7298 4/5/2007 12:02 pm (fblackmo) employee was lifting 500 pound tractor wheel weights when, he felt pain in his back. Supervisor: charles watkins
## 7299 4/5/2010 07:36 am (blgay) employee was working under a trailer installing a abs control valve back onto tank. Employee let go of the valve to reposition his hands to get a better grip on the valve. The valve fell off fitting and struck employee on the
## 7300 4/5/2010 07:48 am (blgay) employee was going through a hole in chain link fence on job site, had instrument pack on his back, machete was attached to pack with machete inside sheath. The machete got snagged on fence, employee reached back to release m
## 7301 4/6/2004 02:26 pm (fblackmo) employee is experiencing repetitive motion in both wrists supervisor: charles willford
## 7302 4/6/2004 02:39 pm (fblackmo) employee states while pulling a driver up out of the ground he heard something pop in his left shoulder. Supervisor: thomas johnson
## 7303 4/6/2004 02:53 pm (fblackmo) employee states while loading and un-loading plant materials he, felt pain in his lower back and left leg area. Supervisor: derek smith
## 7304 4/6/2004 03:05 pm (fblackmo) employee states while stepping off of excavator he, felt his right knee buckle. Supervisor: c. I. Lucas
## 7305 4/6/2004 03:27 pm (fblackmo) employee states while pulling limbs, one limb struck his left eye. Supervisor c. H. Winstead
## 7306 4/6/2004 04:03 pm (fblackmo) employee was clearing survey line when, a limb sprung back striking him on the left eye. Supervisor: t. K. Wheller
## 7307 4/6/2004 12:14 pm (fblackmo) employee slipped on clay while directing tuck to dump rocks on I-95, causing the injury to his left hip area. Supervisor: greg vinson
## 7308 4/6/2004 12:27 pm (fblackmo) employee states while shoveling stones she, felt pain in her back and side area. Supervisor: jesse mercel
## 7309 4/6/2004 12:37 pm (fblackmo) employee states while lifting a cold patch mix in bags he, felt pain in his chest and back area. Supervisor: c. H. Winstead
## 7310 4/6/2004 12:46 pm (fblackmo) employee states while planting flowers he, felt pain in his groin area. Supervisor: j. M. Hicks
## 7311 4/6/2004 12:57 pm (fblackmo) employee states he was struck in the back by a back hoe bucket driven by a contractor while observing a paving operation. Supervisor: o. T. Anderson
## 7312 4/6/2005 02:58 pm (fblackmo) employee was using drain cleaner when, it splashed into his eyes. Supervisor: ricky davis
## 7313 4/6/2005 03:17 pm (fblackmo) employee was walking out of maintenance office when, he tripped over concrete plat form for air conditioner unit. Employee stated that the area was not marked with any type of marking paint to show change in height of the
## 7314 4/6/2005 03:30 pm (fblackmo) employee was watching two employees wrestling when, he went to stand up he lost his footing on the curb. Employee fell toward truck striking his rib cage area. Supervisor: j. R. Price
## 7315 4/6/2006 01:10 pm (fblackmo) employee was pulling an asphalt sample from a dump truck when, he felt pain in his lower back area. Supervisor: Jan t. Womble
## 7316 4/6/2006 02:42 pm (blgay) employee was on job site, watching crew clean out a pipe, when she took hood off her head and felt extreme pain on the back of the neck. At that time, she told her co-workers that she had been stung by a bee, and was allergic
## 7317 4/6/2006 03:31 pm (fblackmo) employee was stepping out of truck when, he missed one step causing him to fall on his right knee. Supervisor: joe lee
## 7318 4/6/2006 04:18 pm (fblackmo) employee was loading supplies at the equipment shop. He began to secure the supplies that were on pallet on trailer. A chain became obstructed by plastic that was wrapped around traffic cones causing resistance with pullin
## 7319 4/6/2006 12:37 pm (fblackmo) employee was cutting blade off the bucket of a backhoe using an impact wrench. Employee was pushing up on bolt when bolt turned. The bolt cut his left index finger. Supervisor: michael wilson
## 7320 4/6/2010 07:27 am (blgay) employee was checking oil in dump truck, turned to exit between tire and frame, tripped and fell, twisting left knee. Supervisor: mark taylor
## 7321 4/6/2010 07:41 am (blgay) employee was sitting down checking in customers at the front counter. Employee stated that she dropped the lens in her glasses onto the floor. Employee stated that she got down on her hands and knees and had difficulty gettin
## 7322 4/6/2010 09:04 am (fblackmo) employee was conducting a car inspection for a road test when, she turned and tripped over the concrete stoop. Supervisor: vickey bridges
## 7323 4/6/2011 03:41 pm (barnes) employee was trying to pull tarp back by hand. The tarp was stuck on the l bracket. He tried to pull it back, but it ripped and pulled his hand into the lower roller cutting the top of his left hand. Employee injured his le
## 7324 4/6/2011 04:56 pm (barnes) employee was operating tractor with auger. He had the clutch depressed, and when he turned to look to the rear he twisted his knee. Employee injured his left knee. Supervisor: steve ingold
## 7325 4/6/2011 05:18 pm (barnes) employee benton was one of four employees lifting a cement lid to look at a pipe. Another employee lost his grip causing the lid to fall, and employee benton's finger was smashed. Employee injured his left middle finger.
## 7326 4/6/2011 07:31 am (fblackmo) employee was working with crew replacing and end joint pipe on a crossline. The pipe needed to be rolled over. With the assistance from another employee, Mr. Robbins attempted to roll the pipe over when he felt a sharp pai
## 7327 4/6/2011 07:57 am (fblackmo) employee was helping put canvas arm stops on truck when his thumb was caught between the tarp arm and the top of the tailgate. Supervisor: albert d. Vann
## 7328 4/6/2011 08:11 am (fblackmo) employee was on crutches due to a prior incident to his right toe (non-work related). Employee was trying to stand up when, he bumped his toe against his desk. Supervisor: srinvasarao kandimalla
## 7329 4/6/2011 08:27 am (fblackmo) employee states repetitive motion to her right hand and wrist due to keyboard, phone, and calculator usage. Supervisor: charles e. Jones
## 7330 4/6/2011 08:52 am (fblackmo) employee was involved in scat training when he had an allergic reaction to mat. Employee feet became inflamed and swollen. Supervisor: s. M. Watkins
## 7331 4/6/2011 09:10 am (fblackmo) employee was transferring crs-2 tar from storage tank into a tank on tack truck when the crs-2 splashed onto his face and clothing. Supervisor: s. R. Ross
## 7332 4/6/2011 09:25 am (fblackmo) employee states the construction crew was working on a ditching operation. Brain house had dropped her off at the flagging station while backing up the rear bumper struck her right lower leg. Supervisor: adam s. Walls
## 7333 4/6/2011 09:42 am (fblackmo) employee was rolling a water hose, while pulling it his thumb on his right hand popped causing soreness and swelling. Supervisor: david pleasants
## 7334 4/6/2011 10:44 am (fblackmo) employee stepped on some uneven pavement and rolled his right foot/ankle. Supervisor: alvin ball
## 7335 4/6/2011 11:00 am (fblackmo) employee was exiting his crew cab flatbed when, he twisted to close the door he felt pain in his upper back area. Supervisor: hoza l. Thompson
## 7336 4/6/2011 11:13 am (fblackmo) employee was loading post driver in back of truck when the driver got hung on the mounting device. Employee tried to unstuck the driver when his ring finger on right hand got caught between the driver and bed of the truck.
## 7337 4/6/2011 12:58 pm (barnes) employee was removing a switch from panel by using a pocket knife to release locks on switch. Blade of knife closed cutting employees right index finger. Employee injured his right index finger. Supervisor: larry greene
## 7338 4/7/2005 03:40 pm (fblackmo) employee was setting cylinders on floor when, she felt pain in her back area. Supervisor: darin l. Waller
## 7339 4/7/2005 04:13 pm (fblackmo) employee was driving crew cab pickup truck. Employee met a log truck causing debris to fly up striking employees windshield. Windshield shattered causing the injury to his hands, face, and eyes. Supervisor: g. J. Liverman
## 7340 4/7/2005 08:30 am (fblackmo) employee was putting out salt with spreader, the truck started to make a noise so employee slowed down, the left front tire fell off. Employee experienced pain in his lower back area. Supervisor: james d. Shelton
## 7341 4/7/2005 08:44 am (fblackmo) employee was climbing down from 4" trailer when, his right leg gave way causing him to fall to the ground. Employee experienced head pain and right leg pain. Supervisor: bobby thrower
## 7342 4/7/2005 08:58 am (fblackmo) employee was checking load on bed of truck when, he fell due to ice build up. Employee experienced pain in his left hand. Supervisor: robert k. Payne
## 7343 4/7/2005 09:31 am (fblackmo) employee was pushing barrels of paint on truck when, he felt pain in his left leg. Supervisor: mike carrington
## 7344 4/7/2009 10:11 am (blgay) employee was helping change a stop sign from old to new. Employee was standing on a changer post bracket that slipped causing him to grab the top of the sign. Employee cut his hands as he was falling. Small cuts on left and r
## 7345 4/7/2009 10:42 am (blgay) employee went to get a rubber tarp to be used in the snow. When he walked into the building where the fuel truck was parked, he didn't see the black ice, causing him to slide and twist his left knee. Supervisor: rufus white
## 7346 4/7/2009 10:54 am (blgay) employee was working traffic control on an accident. Employee was going between the truck and the trailer that pulled the barrier light. Employee stepped onto the hitch, losing his footing and fell injuring his right knee. Su
## 7347 4/7/2009 11:10 am (blgay) employee was putting dye in manhole to be able to follow path of water. Employee bent down to climb into drainage box, changed his plans. Employee went to stand back up and twisted or hyper extended right leg. Supervisor: nan
## 7348 4/7/2010 03:31 pm (blgay) employee was attempting to walk down a steep embankment (approximately 10' below the surrounding grade) when his feet slipped from under him on the soft soil material and grass. This caused employee to fall and twist slightly
## 7349 4/7/2010 08:07 am (fblackmo) employee was raking a ditch and when he went to turn his body, his left knee popped. Supervisor: ben nelms
## 7350 4/7/2010 08:29 am (fblackmo) employee was standing on embankment when he slipped and fell causing injury to his lower back, neck, and right elbow. Supervisor: jim ahlmark
## 7351 4/7/2010 10:18 am (fblackmo) employee was helping to lift a hood for tandem truck when, he felt a pop in his back. Supervisor: h. D. Wiggins
## 7352 4/7/2010 10:27 am (fblackmo) employee was installing a driveway around pine trees when, he was bitten by a tick on right side of neck and shoulder. Supervisor: t. S. Bozeman
## 7353 4/7/2010 10:42 am (fblackmo) employee was stepping down out of dump truck when, he felt pain in his abdomen and upper thigh area. Supervisor: retha l. Leigh
## 7354 4/7/2011 01:32 pm (barnes) employee was taking snow plow off with air ratchet. The trigger was pulled on ratchet and it twisted the employees hand inward. Employee injured left wrist and left arm. Supervisor: michael gentry
## 7355 4/7/2011 02:21 pm (barnes) employee was working in salt brining operations on 02/09/2011 and 02/10/2011. Employee began feeling pain in his right hand and wrist (according to employee's note). On 02/12/2011 employee could not use right hand at all. E
## 7356 4/7/2011 02:52 pm (barnes) employee was taking the strap off the tarp over the bed of the dump truck, when he slipped and hit his right forearm and right hip on the asphalt. Employee injured his right forearm. Supervisor: tammy johnson
## 7357 4/7/2011 03:18 pm (barnes) employee was cutting right of way on new road construction. He got into poison oak/ivy on tree that he was cutting with power saw. Employee injuries was on left eye, face, arms and legs. Supervisor: brad long
## 7358 4/7/2011 08:59 am (barnes) employee was removing a tree from roadway. The tree was covered with poison oak. Employee injuries was on left arm and left side. Supervisor: ray moore
## 7359 4/7/2011 09:31 am (barnes) employees hand slipped while lifting the base of a concrete air meter. Employee injured the palm of his right hand. Supervisor: d. L ferguson
## 7360 4/7/2011 09:49 am (barnes) employee informed supervisor that she conducted a road test with a 16 year old female applying for her license for the first time. The customer tried to turn right on red and turned in front of oncoming traffic, almost causi
## 7361 4/8/2008 10:04 am (blgay) employee was lifting up a bag of cold patch and twisted the wrong way, causing employee to pull a muscle on the left side of rib cage. Supervisor: dale loflin
## 7362 4/8/2009 04:07 pm (fblackmo) employee was walking down stairs when, she slipped and fell on left side. Supervisor: lee johnson
## 7363 4/8/2009 09:17 am (fblackmo) employee states that after sanding he, removed his safety glasses and something fell into his right eye. Supervisor: thomas bowswer
## 7364 4/8/2011 04:05 pm (fblackmo) employee was loading bags of cement from pallet to place in wheel barrow when, he felt pain in his upper left arm. Supervisor: chris pendergraph
## 7365 4/8/2011 04:23 pm (fblackmo) employee was lifting a box when, he felt pain in his left side area. Supervisor: mitchell dixon
## 7366 4/9/2007 10:35 am (speedin) employee was working under bridge, employee stepped on rock and fell hurting knee. Supervisor a. W. Childers
## 7367 4/9/2007 10:52 am (speedin) employee was washing fire ants away from the parking lot and somehow they got onto my boots and found their way to my ankles and stung me several times on both ankles. Within the hour my right ankle began to swell. Supervi
## 7368 4/9/2007 11:22 am (speedin) employee was returning from road test-the customer pulled into the parking lot and hit a pole. The police were not called to the scene. No insurance, information provided due to customer requesting fleet only restriction s
## 7369 4/9/2007 11:47 am (speedin) employee was taking cross sections on project site. While stepping over concrete barrier rail he hit his left knee on the top of the barrier wall. Supervisor c. R. Styles, p. E.
## 7370 4/9/2007 12:14 pm (speedin) employee was getting off of the spreader, he stepped on the wooden board holding onto the tarp cover bar, but his foot slipped causing him to fall. He tried to catch himself by grabbing onto something else because the tarp
## 7371 4/9/2008 01:47 pm (blgay) employee was working with bark on bridge end. During some point of the day, a tick lodged onto the employees right leg on the shin, becoming attached. The employee removed the tick that evening, but over the weekend the spot
## 7372 4/9/2008 01:59 pm (blgay) employee was feeding a limb into the brush chipper, while another employee cut a small tree that fell and brushed against another tree causing it to fall toward employee. The tree top brushed the top of wesley mcknight's shou
## 7373 4/9/2008 02:12 pm (blgay) employee was doing a pm on a tandem dump truck, greasing the release bearing for the clutch. Employee had to remove inspection plate on the bell housing, causing the wrench to slip off of the bolt, hitting employee in the rig
## 7374 4/9/2008 02:24 pm (blgay) employee had pulled over on the right shoulder of the road to assist a stranded motorist. The police report stated that employee began merging into the northbound travel lane from the emergency strip and was struck by a tract
## 7375 4/9/2008 02:41 pm (fblackmo) employee was walking towards personal vehicle while on break, foot missed curb, and employee fell causing injury to her right foot/ toe. Supervisor: libby allen
## 7376 4/9/2008 02:43 pm (blgay) employee knelt down to floor to look at a piece of equipment and felt pain in right knee. Supervisor: d. W. Burchette
## 7377 4/9/2008 02:54 pm (fblackmo) employee along with the crew was cutting lines when, employee hit a dead tree and felt pain in his right shoulder. Supervisor: chuck mcdonald
## 7378 4/9/2008 03:05 pm (fblackmo) employee was changing tires on tractor when he felt pain in his lower back area. Supervisor: ricky feher
## 7379 4/9/2008 03:08 pm (blgay) employee was giving a road test and customer was traveling on north tryon road to hampton road. As customer made right turn onto hampton church road, he pressed gas pedal instead on brake. The customers vehicle went across th
## 7380 4/9/2008 03:44 pm (fblackmo) employee was working mixing paint locker located on the shipyard when, he was bitten by a spider on his right arm. Supervisor: thomas f. Bowser
## 7381 4/9/2008 03:54 pm (fblackmo) employee felt pain in left ankle when stepping onto sidewalk and hitting side of handicapped ramp. Employee had excessive amount of materials in hands and did not see drop off. Supervisor: bev saylor
## 7382 4/9/2008 04:03 pm (fblackmo) employee was stepping down out of a cab of a ten wheeler truck for the plate agency. He was holding onto the cab bar and stepped to the ground and twisted his back. His back popped. Supervisor: lynn chalk
## 7383 4/9/2009 11:08 am (blgay) employee stuck a nail in his left hand while trying to move a piece of wood. Employee was going to use the wood to build a box with that would be used to transport concrete cylinders to the ncdot test lab. Supervisor: ron gra
## 7384 4/9/2009 12:30 pm (blgay) employee was inspecting on night time paving operation. Employee was walking back to his vehicle to move it further up. Employee stepped on a 4" drop off between the new asphalt and the old, falling to his hands and knees on
## 7385 4/9/2010 03:59 pm (fblackmo) employee was lifting a box of plans when, he felt pain in his lower back. Supervisor: johnathan reed
## 7386 4/9/2010 10:18 am (fblackmo) employee stepped on wooden pallet when the board broke causing him to fall on right side. Supervisor: dwayne warner
## 7387 4/9/2010 10:30 am (fblackmo) employee was in back of crew cab lifting hand tamp into truck when, he felt a stinging sensation in his lower back. Supervisor: gary mcsweeney
## 7388 4/9/2010 10:38 am (fblackmo) employee was moving barricades back into the roadway. Employee ben down to place sandbag on barricade when the wind blew the sign back down striking him on the top of his head. Supervisor: mike rogers
## 7389 4th floor - in the dirty utility room EE mashed thumb inbetween the green ben and hand sanitizer.
## 7390 5 miles of running. Exhaustion.
## 7391 5 ticks imbedded into skin on 4/6/13. Bite on upper right arm swelled. ()
## 7392 5% ppd Dr Paul 12/29/8 - leg
## 7393 5/1/2006 03:08 pm (fblackmo) employee was performing annual firearm training with shotgun when, injured his right shoulder. Supervisor: w. T. Keel
## 7394 5/1/2006 03:21 pm (fblackmo) employee was cutting trees on right of way when, he came into contact with poison ivy on face. Supervisor: mike smith
## 7395 5/1/2006 03:33 pm (fblackmo) employee was cleaning asphalt from steel wheel roller with a shovel. He was striking steel wheel with shovel and missed the wheel and hit thumb on side of roller causing laceration. Supervisor: m. L. Fogleman
## 7396 5/1/2007 02:18 pm (fblackmo) employee was pulling limbs to wood chipper from right of way when, he came into contact with poison ivy. Supervisor: t. J. Shaw
## 7397 5/1/2007 02:29 pm (fblackmo) employee was stung on his back by a bee while driving. Supervisor: grady raynor
## 7398 5/1/2007 02:37 pm (fblackmo) employee was bitten on her back during a wet land field trip. Supervisor: charles cox
## 7399 5/1/2007 03:52 pm (fblackmo) employee was removing a tree that had fell across nc 46 during a wind storm when, he felt pain in his lower back. Supervisor: g. J. Liverman
## 7400 5/1/2007 04:07 pm (fblackmo) employee had to break quickly due to a vehicle in front of her stopping abruptly. The pov that was behind her rear ended her vehicle. Employee felt pain in her neck and back. Supervisor: william kincannon 9/7/2007 11:07
## 7401 5/1/2008 10:34 am (blgay) employee was placing grate in frame, when grate slipped and pinched left hand. Supervisor: harrison southerland
## 7402 5/1/2008 10:43 am (blgay) employee was cutting brush in high grass and stepped on a black snake, causing snake to bite him on the left leg. Supervisor: roger arrowood
## 7403 5/1/2008 10:56 am (blgay) employee was driving a metal pin to make the hole for a nuclear density test. During the process of driving the pin with a sledge hammer, employee felt pain in right shoulder. Supervisor: james t. Garner
## 7404 5/1/2008 11:04 am (blgay) employee was pushing log off stump, when log mashed left foot. Supervisor: david chambers
## 7405 5/1/2008 12:00 pm (blgay) employee was lifting a 5 gallon bucket of cold mix off a tailgate, causing him to tear right shoulder labrum. Supervisor: c. R. Stephens
## 7406 5/1/2009 02:41 pm (blgay) employee was operating wand on crack pouring machine, he began to experience pain in his right wrist. Date of injury is listed as unknown. Reported to supervisor 04/16/09. Supervisor: wiley norton
## 7407 5/1/2009 03:18 pm (blgay) employee stepped out of backhoe and then stepped into ditch to clean pipe. When he stepped in ditch his back popped out of place. Supervisor: bobby berryhill
## 7408 5/10/2005 03:07 pm (fblackmo) employee was bending over picking up trash when, a blade of grass struck in him in his left eye. Supervisor: clyde adams
## 7409 5/10/2005 03:17 pm (fblackmo) employee states while attempting to change tire on lawnmower the, pry bar slipped hitting him in the mouth cracking front tooth and bursting lip. Supervisor: a. Glenn wade
## 7410 5/10/2007 08:33 am (fblackmo) employee was walking on side of road picking up trash when, he felt pain in his left knee. Supervisor: b. N. Braswell
## 7411 5/11/2004 02:17 pm (fblackmo) employee was climbing down ladder when, he lost his footing and fell causing the injury to his left knee and elbow. Supervisor: r. E. Joyce 6/11/2004 08:58 am (gwhite)
## 7412 5/11/2004 02:30 pm (fblackmo) employee was exiting the engine room of the m/v hyde when, he was struck in the head by a board causing the injury to his head and neck. Supervisor: kevin lamar cooke
## 7413 5/11/2004 02:43 pm (fblackmo) employee states he was bitten by a tick under right arm pit. Supervisor: j. Kearney
## 7414 5/11/2004 02:53 pm (fblackmo) employee was placing pre-markings on pavement when, a private vehicle moved away from a stop sign striking employee causing him to fall on pavement. Supervisor: sid tomlinson
## 7415 5/11/2004 03:09 pm (fblackmo) employee states while moving from private vehicle to the departments truck he, felt pain in his left knee. Supervisor: makr stafford
## 7416 5/11/2004 03:36 pm (fblackmo) employee states he was sitting in pickup and reached in back seat resulting in lower back pain. Supervisor: m. W. Currie
## 7417 5/11/2004 04:32 pm (fblackmo) employee states while picking up cones on nc 177 he, felt pain in his left shoulder. Supervisor: charles m. Jackson jr
## 7418 5/11/2004 05:12 pm (fblackmo) employee turned around to place gage on asphalt when, he felt pain in his right shoulder. Supervisor: r. J. Downes
## 7419 5/11/2004 11:52 am (fblackmo) employee was on nc 210 at woodpecker road when, his vehicle ran off the road and started flipping. Employee was on conscious. Supervisor: thomas e. Johnson
## 7420 5/11/2004 12:09 pm (fblackmo) employee states while installing a motor on bridge when, he slipped and fell causing the injury to his right knee. Supervisor: d. R. Alligood
## 7421 5/11/2004 12:28 pm (fblackmo) employee states he was reaching for his computer from dock station when, he felt pain in his back. Supervisor: l. L. Purnell sowall
## 7422 5/11/2005 08:22 am (fblackmo) employee was picking up a trap when, he slipped and fell cutting his right hand on guardrail post. Supervisor: paul r. Draughn jr 7/14/2005 11:11 am (fblackmo) do not pay any bills or use this claim number for anythin
## 7423 5/11/2005 08:35 am (fblackmo) employee states that while picking up a trap he found on I-40 he, felt pain in his back. Supervisor states that employee was asked on friday if wanted to go to the doctor and employee refused treatment at that time. Emplo
## 7424 5/11/2005 09:33 am (fblackmo) employee was walking in building to get ice when, he stepped in a dip in the cement causing the injury to his right ankle. Supervisor: a. S. Bailey
## 7425 5/11/2005 10:07 am (fblackmo) employee states the injury occurred to his back on August 20, 2004 while laying pipe. Employees statement indicates that when he called work on August 30th and 31st, that he was "down with his back". Employee had surgery
## 7426 5/11/2006 11:23 am (fblackmo) employee was sitting at her desk when, she felt dizzy,. Cold, and shaky. Employee was sick. Supervisor: tammy larisle
## 7427 5/11/2006 11:40 am (fblackmo) employee was pushing thermo-plastic applicator push cart when, he felt pain in his back. Supervisor: arnold cabe
## 7428 5/11/2006 12:01 pm (fblackmo) employee was using penatometer hammer when, he hit right thumb. Supervisor: bob fields
## 7429 5/11/2006 12:18 pm (fblackmo) employee states that on last thursday she was typing and her right hand started to hurt, she also felt numbness in little finger and ring finger. Supervisor: phyllis young
## 7430 5/11/2007 02:02 pm (speedin) employee was tightening a 5/8" * 3" bolt on a metal span wire bracket. Employee was using an adjustable wrench. Employee stated that the wrench slipped off the bolt and hit him in his mouth, chipping his front tooth. Super
## 7431 5/11/2007 04:06 pm (speedin) employee was walking down stairs, at last step knee gave away causing employee to fall on knee supervisor: roger icenhour
## 7432 5/11/2007 10:22 am (speedin) employee was reaching over the tailgate of the truck to retrieve a can of gasoline. When he lifted the can he felt a sharp pain in his upper back. Supervisor: timothy w. Smith
## 7433 5/11/2007 11:06 am (speedin) employee was helping strap down pipe on trailer, strap came loose striking employee over his right eye. Supervisor david c. Capps
## 7434 5/11/2010 09:59 am (fblackmo) employee is having difficulty hearing in both ears. Supervisor: ray brown
## 7435 5/11/2010 10:12 am (fblackmo) employee was in attic insulating ductwork when he struck his center finger on left hand on duck hanger. Supervisor: jeff drayer
## 7436 5/12/2004 02:37 pm (fblackmo) employee was operating arrow board when, it was side swiped by a semi-truck. Supervisor: f. Keith blazer 12/29/2004 02:36 pm (kbarefoo)
## 7437 5/12/2004 02:51 pm (fblackmo) employee slipped and fell while climbing down off of tar kettle. Supervisor: b. J. Berryhill jr
## 7438 5/12/2004 03:09 pm (fblackmo) employee was getting out of dump truck bed when, his foot slipped causing him to fall inside bed causing the injury to his left shoulder. Supervisor: shelton james
## 7439 5/12/2004 03:19 pm (fblackmo) employee states while installing crossline pipes when, he cut right hand (thumb) on metal band. Supervisor: lin reynolds
## 7440 5/12/2004 03:28 pm (fblackmo) employee states while raking gravel on job site he, felt pain in his lower back. Supervisor: jimmy chapman
## 7441 5/12/2004 03:38 pm (fblackmo) employee was moving equipment when, he tried to lift a ramp he felt a pop in his back. Supervisor: ricky l ford
## 7442 5/12/2004 03:52 pm (fblackmo) employee states while exiting vehicle he lost his footing causing the injury to his left ankle. Supervisor: j. R. Price
## 7443 5/12/2004 08:24 am (fblackmo) employee had stopped in front of and accident scene. Employee walked back to the car and leaned down on the car with his left hand on the door. Another vehicle hit the back of the car employee was leaning on causing the
## 7444 5/12/2004 08:40 am (fblackmo) employee states while holding bolt up to turn blade around on loader, the bolt slipped causing the injury to his left hand. Supervisor: jerry keene
## 7445 5/12/2004 08:53 am (fblackmo) employee was on working crew fixing driveway pipes when, he collapsed. Supervisor: robert winslow
## 7446 5/12/2004 09:07 am (fblackmo) employee lifted up 50 lb. Weight used for running densities. He lowered the weight, holding it with his left arm he turned to continue working on density felt pain in his arm. Supervisor: jonathan barnes
## 7447 5/12/2004 09:23 am (fblackmo) employee states while spraying with a backpack sprayer he, stepped on uneven ground or a hole causing the injury to his right leg. Supervisor: tim simpson
## 7448 5/12/2004 09:34 am (fblackmo) employee states while loading asphalt tanker he, was bitten by a tick. Supervisor: m. L. Thompson
## 7449 5/12/2004 09:59 am (fblackmo) employee was walking downstairs on her way home when, she slipped and fell. Supervisor: diane strickland
## 7450 5/12/2004 10:11 am (fblackmo) employee was changing tire on dot equipment when, he felt pain in his back. Supervisor: richard jernigan
## 7451 5/12/2004 10:23 am (fblackmo) employee states while trying to open the hood on motorgrader his foot slipped between the wheel and frame causing the injury to his right knee. Supervisor: c. E. Gartin
## 7452 5/12/2004 10:36 am (fblackmo) employee states while performing her daily duties she, felt pain in both wrist. Carpal tunnel. Supervisor: jim whitmire
## 7453 5/12/2004 11:44 am (fblackmo) employee was walking to get into dump truck when, she hit a 4 x 4 post that was sticking up from the ground causing the injury to her right leg. Supervisor: charles d. Childless
## 7454 5/12/2006 09:07 am (fblackmo) employee was stacking cone in bed of truck. Diver did not see him proceeded to drive off and he fell on his side. Supervisor: j. E. Boyette
## 7455 5/12/2006 09:25 am (fblackmo) employee was loading bales of grain straw onto a flat bed truck, he was picking up bales from bed of truck and stacking on truck when, he felt pain in his right shoulder. Supervisor: e. Glenn koepp
## 7456 5/12/2006 09:34 am (fblackmo) employee aggravated a previous back injury while holding a rod with a rod catcher. Employee strained his back when, he caught the rod due to the position he was in. Supervisor: dean argenbright
## 7457 5/12/2006 09:50 am (fblackmo) employee was at home when, he found tick on right side. Supervisor: r. Pittman
## 7458 5/12/2006 10:15 am (fblackmo) employee lost footing when getting out of truck, slipped and truck door slammed on left hand. Supervisor: mark newton
## 7459 5/12/2006 10:26 am (fblackmo) employee was helping to fill tire when, tire compound flew into employee face and eyes. Supervisor: ed adcock
## 7460 5/12/2006 10:37 am (fblackmo) employee was putting down driveway pipe when, dirt flew into right eye. Supervisor: jimmy f. Walls
## 7461 5/12/2006 10:46 am (fblackmo) employee was lifting I-beams and sand bags when, he experienced pain in his upper back. Supervisor: a. C. Levens
## 7462 5/12/2006 11:31 am (fblackmo) employee was digging a ditch turnout on dallas road with a backhoe and hit an underground service line to a house. Employee backed out of ditch and was hurting in his chest. Supervisor: n. C. Mckinney
## 7463 5/12/2006 11:52 am (fblackmo) employee states that he was shoving asphalt on the job site when, he felt a pulling in lower left side of his back. Supervisor: ke pruett
## 7464 5/12/2006 12:01 pm (fblackmo) employee was dragging and lifting brush when, he felt pain in lower back and left hip area. Supervisor: loretta welborn
## 7465 5/12/2008 02:21 pm (fblackmo) employee was traveling (personnel vehicle) from the transportation building to the I. T. Building when, her car was struck in the rear by another private vehicle. Employee felt pain in her neck and upper back area. Super
## 7466 5/12/2008 02:44 pm (fblackmo) employee was tighting a bolt on a sign at mile marker 409 on interstate I40 when, his right pinky finger was pinched between the basket lift and the wrench causing a deep laceration to his finger. Supervisor: doug downey
## 7467 5/12/2008 03:02 pm (fblackmo) horseplay - employee walked from the wash & grease house where a group of employees were standing/working over a mower. Negative verbal exchanges were made and jerome began walking toward the office and heard someone say
## 7468 5/12/2008 03:59 pm (fblackmo) employee was removing a sign off us 17 when, he was bitten by a tick on his chest area. Supervisor: david leonard
## 7469 5/12/2008 04:37 pm (fblackmo) employee was working on a cross line when, he hit his hand on fence stake while shoveling. Supervisor: kenny white
## 7470 5/12/2009 12:26 pm (blgay) employee was pulling up t-post and debris. Left hand slipped and hit t-post. Supervisor: wendell chastain
## 7471 5/12/2010 03:01 pm (fblackmo) employee had climbed into the loader which was on the trailer to retrieve the key from the ignition. Upon his dismount of the trailer, his foot slipped causing injury to lower back. J. M. Ellis
## 7472 5/12/2010 03:13 pm (fblackmo) employee was helping three other employees lift a copy machine into the back of a pickup truck when, he felt pain in his back and groin area. Supervisor: lydia mckeel
## 7473 5/12/2010 03:26 pm (fblackmo) employee was loading and unloading a concrete saw from the truck when, he felt pain in his lower back. Supervisor: jimmy evans
## 7474 5/12/2011 08:06 am (fblackmo) employee was walking around the truck when he stepped in a hole. Employee felt pain in his lower back. Supervisor: david m. Carter
## 7475 5/12/2011 08:22 am (fblackmo) employee was bolting down deck plates on m/v stanford white which required drilling and re-tapping holes. The drill bit got caught in the hole causing a jam. Employees right hand was pushed back against the wall causing t
## 7476 5/12/2011 08:39 am (fblackmo) employee was lifting a large piece of wet carpet onto the pick up truck when, he twisted his right knee. Supervisor: I. H. Mccombs
## 7477 5/12/2011 08:50 am (fblackmo) employee picked up a bag of litter found on right of way when he had an allergic reaction. A rash formed on both his hands and became very itchy. Supervisor: I. H. Mccombs
## 7478 5/12/2011 09:07 am (fblackmo) employee was inspecting the grinding/milling operation on state road when walking on the shoulder of the road his foot got caught tangled in a vine causing him to fall. Employee felt pain in his left rib cage area. Superv
## 7479 5/12/2011 10:12 am (fblackmo) employee was priming handrail on m/v pamlico when he struck his left elbow on a bracket. Supervisor: thomas bowser
## 7480 5/12/2011 10:34 am (fblackmo) employee was changing transmission fluid when he hit his head on the under carriage of the vehicle. Supervisor: gordon creech
## 7481 5/13/2008 08:45 am (fblackmo) employee was cutting angle from overhead on the m/v white. Debris from the upper deck blew into his left eye. Supervisor: marshall coleman
## 7482 5/13/2008 08:56 am (fblackmo) employee was working on a federal surplus dump truck that has numerous rusty spots on it. When employee closed the drivers door, the canvas top blew up causing rust and trash to fall on his forehead and between safety gla
## 7483 5/13/2008 09:06 am (fblackmo) employee was filling a customers order when, she turned to locate a telephone number she, stripped over a power cord. Employee has a small cut on the bridge of nose, scraped & bruised right knee, and felt pain in right sh
## 7484 5/13/2010 11:23 am (fblackmo) employee exited his vehicle and walked towards the front door of a mobile home. A medium sized brown dog approached him from behind and bit him on his right forearm. Supervisor: ads kevin d. Mackey
## 7485 5/13/2010 11:36 am (fblackmo) employee was walking down embankment from working on bridge when his foot slipped causing him to fall and injure right arm. Supervisor: herman futrell
## 7486 5/13/2011 04:33 pm (barnes) employee was feeding brush into chipper. A large limb hit employees ring finger on left hand fracturing the bone at the end of his finger. Supervisor: a m myers
## 7487 5/14/2007 02:03 pm (fblackmo) employee was tighting up line on the m/v pamlico when, he felt something pop in his left wrist. Supervisor: cindy austin
## 7488 5/14/2007 02:37 pm (fblackmo) employee was working with road side crew patching operation when, mowers mowing the grass adjacent to the setup operation came by blowing up dust and debris. Debris/dust got into employees right eye. Employee was not wear
## 7489 5/14/2007 02:48 pm (fblackmo) employee went to climb up on the rear of the tractor with mower on it when, he slipped causing injury to his knee. Supervisor: charles watkins
## 7490 5/14/2007 03:02 pm (fblackmo) employee was walking when, his pants leg caught handle of jack causing him to trip. Employee felt pain in his right knee and left hand. Supervisor: chester e. Gartin
## 7491 5/14/2007 03:06 pm (speedin) employee was putting water tank on dump truck. Employee reached to get airline when loader operator picked up on tank catching employee's finger between tank & truck. Supervisor: j. W. Tilley
## 7492 5/14/2007 03:47 pm (speedin) employee was taking up silt fence moving from post to post. Employee was holding on to tree when employee running backhoe bumped his hand with the backhoe bucket bruising his right hand and thumb. Supervisor: m. H. Thomas
## 7493 5/14/2008 03:30 pm (blgay) employee believes it occurred when he was putting a spreader on truck. Employee stated that he climbed on bed to unhook chains and slipped but caught himself on the side rail. This injury was reported on 04/30/08, but May ha
## 7494 5/14/2008 03:37 pm (fblackmo) employee was picking up trash when, he was bitten by a tick on his right leg. Supervisor: t. H. Swayne
## 7495 5/14/2008 03:58 pm (blgay) employee and an inmate were unloading metal fencing stakes from a dump truck. As stevens bent down to pick up stake, inmate was rising up with some stakes and the tip of a stake hit stevens in the hair line just above the ri
## 7496 5/14/2009 09:36 am (fblackmo) employee was walking out of door a9 when, she stepped out the door she stepped into a small puddle of water which caused her to slide. Employee slid from the door to the sidewalk landing on her hands to avoid hitting her
## 7497 5/14/2009 09:49 am (fblackmo) employee was attempting to go down embankment to check the condition of a cross line pipe when, he stepped on top of the pipe his left foot slipped and he injured his left ankle. Supervisor: s. R. Ross
## 7498 5/14/2009 10:03 am (fblackmo) employee was using shovel to clean out the end of driveway pipe when, he lost his footing in the ditch. Employee fell, his foot step on the end of the shovel causing the handle to strike him on the forehead. Employee was
## 7499 5/14/2009 10:20 am (fblackmo) employee was carrying files to file room when, she slipped and fell backwards. Employee felt pain in her left knee, elbow, and shoulder, right elbow and foot. Supervisor: beth mckay
## 7500 5/14/2009 11:07 am (fblackmo) employee was weedeating in tall grass, later that night he found a tick on his left thigh area. Supervisor: p. P. Mansfield
## 7501 5/14/2009 11:18 am (fblackmo) employee was at the new hanover county landfill dumping bags and debris off the truck. A metal box hit the ground and bounced up and hit employee on his right leg. Supervisor: ronnie woodcock
## 7502 5/14/2009 11:30 am (fblackmo) employee was outside of the ticket booth helping traveling public when, she returned to booth the wind blew the door shut on her right hand. Supervisor: cindy s. Austin
## 7503 5/14/2009 11:39 am (fblackmo) employee was showing co-worker how to operate backhoe when, he burn his left forearm on muffler. Supervisor: bn braswell
## 7504 5/14/2009 11:50 am (fblackmo) employee was working with survey party putting in fine grade stakes when, he was bitten by a tick on his left shoulder. Supervisor: ken batchelor
## 7505 5/14/2009 12:03 pm (fblackmo) employee states while photographing historic building in project area she, slipped on wet gravel landing on her right knee. Supervisor: mary pope furr
## 7506 5/14/2010 03:52 pm (fblackmo) employee was flagging traffic when he stepped quickly out of the path of a fast moving car, he felt pain in his right ankle. Supervisor: kevin hazelwood
## 7507 5/14/2010 04:04 pm (fblackmo) employee had some discomfort in left wader after putting it on. Stuck left hand down between the wader and pants legs when left hand middle finger popped. Supervisor: d. Bret henson
## 7508 5/14/2010 10:54 am (fblackmo) employee was inspecting a steel girder painting operation on the manns harbor bridge in dare county. Employee bumped the bottom of a steel girder with the right front side of his head. Supervisor: shawn mebane
## 7509 5/14/2010 11:13 am (fblackmo) employee was working with patch crew on us 301. While looking at a small hole on opposite side of operation he stepped in a hole on the shoulder of the road. Employee did not go to the doctor at the time of the incident.
## 7510 5/14/2010 11:26 am (fblackmo) employee was attempting to roll 55 gallon of drum of oil from forklift to stationary platform. Employee grabbed drum with both hands and pulled drum towards him. Drum rocked back pinching middle finger on left hand agains
## 7511 5/14/2010 11:38 am (fblackmo) employee was working with patch crew when he stepped back into a depression in the ground causing pain to right knee. Supervisor: fred j. King 06/11/2011 11:06 am (lvaughan)
## 7512 5/14/2010 12:04 pm (fblackmo) employee was unloading a sign from back of truck with tailgate up when, he felt pain in his left shoulder. Supervisor: bradley burton
## 7513 5/15/2006 04:17 pm (slee) employee's were hauling dirt for a pipe replacement project. Mr. Small was empty and Mr. Ross was loaded. The two trucks met in a curve, hitting the drivers side mirror of each dump truck together breaking them and the door
## 7514 5/15/2006 04:21 pm (fblackmo) information keyed from form 18, which states "running heavy equipment which bounced, wrenched back. Supervisor not stated on 18. Still waiting for more paper work for clarity.
## 7515 5/15/2007 01:08 pm (fblackmo) employee was walking to do a road test when, his right ankle gave away causing him to fall on both knees. Employee scraped right knee on concrete. Supervisor: joyce roberts
## 7516 5/15/2007 01:21 pm (fblackmo) employee states while climbing out of truck his ankle gave away causing him to fall. Employee felt pain in his right ankle. Supervisor: jim dilda
## 7517 5/15/2007 10:02 am (speedin) employee was sitting in plastic chair on a porch and the front legs of the chair collpased causing Mr. Williams to fall on his knees. Supervisor: lorrie sineath
## 7518 5/15/2008 03:11 pm (blgay) employee was pulling brush off of right of way and feeding chipper, when he received extreme pain in his lower back. Supervisor: david chambers
## 7519 5/15/2009 10:18 am (fblackmo) employee was cutting juniper limbs on rail road track bridge slope on us 301 in wilson. As he proceeded to cut, one limb snapped up and struck him under the face shield puncturing his top lip. Supervisor: kevin baker
## 7520 5/16/2005 01:20 pm (fblackmo) employee states that he hit his right elbow on truck bed and then at dinner time he hit the same elbow on the truck door. Supervisor: w. D. Bunton
## 7521 5/16/2005 02:23 pm (blgay) employee was stopped on gresham lake road waiting for vehicle in front of her to turn left. Vehicle behind employee did not see stopped vehicles and swivel right and hit back right side of employees truck. Supervisor: Jan w
## 7522 5/16/2005 03:42 pm (blgay) employee slipped and fell on floor. Supervisor: miriam s. Perry
## 7523 5/16/2005 09:12 am (fblackmo) employee stepped on nail that was hidden in grass and it stuck in his right foot. Supervisor: ronnie woodcock
## 7524 5/16/2005 09:27 am (fblackmo) employee states while shoveling asphalt he felt pain in his groin and lower back area. Supervisor: mike quick
## 7525 5/16/2005 09:40 am (fblackmo) employee started noticing toe nail on left foot (also right foot toe) turning black and getting thicker over a period of time. Employee visited doctor who told him that it was a fungus caused by wearing confined shoes. Su
## 7526 5/16/2005 09:59 am (fblackmo) employee that she was bitten by a tick on left leg. Supervisor: logan williams
## 7527 5/16/2005 10:56 am (fblackmo) crew was installing driveway pipe, employee had his left hand on pipe when, the horse shoe slipped and mashed his little finger. Supervisor: t. L. Ingle
## 7528 5/16/2005 11:07 am (fblackmo) employee was walking up steps when, he felt his left knee pop. Supervisor: ron graham
## 7529 5/16/2005 11:19 am (fblackmo) employee was putting out signs for stripping operation in wake county on several state roads (1162, 1173, 2552, & 2553)) when, he was bitten by a tick on his abdomen area. Supervisor: ira harris
## 7530 5/16/2005 11:36 am (fblackmo) employee states he felt pain in his lower back while helping to lift a pvc pipe. Supervisor: robert m. Ladd
## 7531 5/16/2006 09:34 am (fblackmo) employee was driving a swb dump truck hauling stone. He had stopped to eat lunch and when he went to get back into the cab of the dump truck he was pulling himself up and pulled a muscle in his back. Supervisor: s. R. Rose
## 7532 5/16/2006 10:06 am (fblackmo) employee climbed into front end loader, left door open and door slammed back on employees left hand. Supervisor: adam henderson
## 7533 5/16/2006 11:07 am (fblackmo) employee was conducting road test. Upon returning to parking lost, employee opened door to exit and her left foot got caught on brake pedal (driving school car) causing her to fall. Supervisor: jacqueline florence
## 7534 5/16/2006 11:35 am (fblackmo) employee was raising crash attenuator on rear of flatbed pushing hydraulic controls. Attenuator reached upright position buy hydraulic lock pins would not engage. Employee manually pushed on attenuator with arms extended
## 7535 5/16/2006 12:10 pm (fblackmo) employee stepped down from asphalt roller and injured left knee. Supervisor: rick gordon
## 7536 5/16/2007 03:49 pm (speedin) employee turned truck over, off shoulder of roadway while pushing snow, due to white out conditions, from heavy snowfall, and high winds. Supervisor: t. G. Huskins, jr
## 7537 5/16/2007 05:41 pm (fblackmo) employee was flagging0000 traffic when, pov struck him on left leg while backing out of private driveway. Employee felt pain in left leg, knee, and hip area. Supervisor: r. R. Cartrette
## 7538 5/16/2007 09:20 am (fblackmo) employee was stopped at traffic light when, state vehicle was struck in the rear by a private vehicle. Employee experience no physical injuries stated on 19. Supervisor: c. K. Lovisa
## 7539 5/16/2007 10:09 am (fblackmo) employee was driving a tandem dump truck, while making a left turn a tractor trailer merged into the right lane and side swiped the truck. Employee felt pain in his left shoulder/arm area. Supervisor: lindsey o. Ethridge
## 7540 5/16/2007 10:29 am (fblackmo) employee supervisors states on 19 " not sure when or how alleged injury occurred. " employee has not reported a work related injury to supervisor. Supervisor: robert w. Ipock 5/16/2007 10:37 am (fblackmo) on form 18 st
## 7541 5/16/2008 10:04 am (blgay) employee was laying a rock wall, when a rock slide off bank and smashed end of finger on the left hand. Supervisor: herb ramey
## 7542 5/16/2008 10:23 am (blgay) employee was lighting a burner. Fire went out and employee tried to re-light, causing the flame to flare up and burn his face and right hand. Supervisor: tommy g. Culberson
## 7543 5/16/2008 10:38 am (blgay) employee was trying to enter the truck while it was rolling to stop it before contact was made with another truck. The door came shut on employees right knee. Supervisor: g. S. Frye
## 7544 5/16/2008 10:54 am (blgay) employee was cutting and loading trees with backhoe. The dead trees had some poison oak on them. Supervisor: david prestwood 5/16/2008 10:56 am (blgay)
## 7545 5/16/2008 12:23 pm (blgay) employee was unloading a flatbed truck. When employee stepped of the loader, his foot got caught between the boards of a pallet. Supervisor: gary neal
## 7546 5/17/2007 09:27 am (speedin) employee was trying to get out of concrete truck, the step was so high up, holding onto a handle and yanked arm. Heard shoulder pop. Supervisor: dwight godwin
## 7547 5/18/2005 10:36 am (fblackmo) employee was cutting beams that was covered with red lead paint when, he felt nauseous, light headed, body aches, and feeling disoriented. Supervisor: david l. Moore
## 7548 5/18/2005 10:53 am (fblackmo) employee states while tightening com-a-long around piling cluster, the cable broke and employee fell on deck of tug. Supervisor: h. F. Oneal
## 7549 5/18/2006 01:01 pm (fblackmo) employee was hauling gravel to work site in a short wheel base dump truck when he dropped off the right side shoulder as he was coming out of a curve. When he tried to bring the truck back onto roadway he lost control and
## 7550 5/18/2006 01:32 pm (fblackmo) employees was pumping asphalt out of spray bars from back of tank. Off and on switch was in wrong position that caused pressure to build in the tank. That resulted in a loading hose to blow off spraying employee with hot
## 7551 5/18/2006 04:19 pm (fblackmo) employee was removing a metal locking plate off the door. It slipped and caught the left ring finger in between doorknob and door. Supervisor: g. M. Taylor
## 7552 5/18/2006 10:24 am (fblackmo) employee was stepping into building when, he felt pain in his right foot. Supervisor: m. P. Newman
## 7553 5/18/2006 10:55 am (fblackmo) employee states his vehicle was struck on passenger side by a private vehicle who failed to stop at a red light. The impact caused his vehicle to overturn causing pain to his back and neck. Supervisor: s. Watkins
## 7554 5/18/2006 11:28 am (fblackmo) employee was lifting a bundle of survey stakes (50 pounds) when, he felt pain in his lower back. Supervisor: charles vinson
## 7555 5/18/2009 08:12 am (blgay) employee was closing door on backhoe, when he pinched and cut his left ring finger. Supervisor: t. M. Smith
## 7556 5/18/2009 08:22 am (blgay) employee was traveling eb on 150, when truck ran off the road and overturned, causing multi-injuries to head, chest, torso, knees and neck sprain. Supervisor: p. L. Eaker
## 7557 5/18/2009 08:38 am (blgay) employee was driving out pens in a loader bucket with a sledgehammer. While swinging the sledgehammer, employee felt a pain in his back and groin area. Supervisor: rick lovingood
## 7558 5/18/2010 02:11 pm (fblackmo) employee was exiting front end loader when, he stepped in a hole causing pain to his groin area and lower back. Supervisor: j. K. Murdock
## 7559 5/18/2010 12:40 pm (fblackmo) employee was parked in the median picking up debris when private vehicle ran into the back of her vehicle. Employee felt pain in her back and left arm. Supervisor: ashley pilkington 06/10/2010 11:17 am (lvaughan) ba
## 7560 5/18/2011 04:00 pm (fblackmo) employee states he injured his right foot while producing a project. Supervisor: greer beaty
## 7561 5/19/2005 01:00 pm (fblackmo) employee slipped and fell off of bulldozer injuring his lower back. Supervisor: w. R. Loyd jr
## 7562 5/19/2005 01:12 pm (fblackmo) employee was cleaning window while standing on hydraulic tank, slipped and fell hitting right elbow on tank corner. Supervisor: d. M. Carter
## 7563 5/19/2005 01:23 pm (fblackmo) employee was a passenger on a cone retrieval vehicle which was involved in a collision with another vehicle. Employee felt pain in his left shoulder. Supervisor: joe s. Parker
## 7564 5/19/2005 04:28 pm (fblackmo) charlie was in back of truck bed spraying asphalt release. Employee then climb out of bed and slip hitting his right knee. Supervisor: jimmie evans
## 7565 5/19/2006 09:00 am (fblackmo) employee was crossing I-40 to speak with a contractor when, he felt pain in his left ankle, lower left leg, and foot. Supervisor: scott cook
## 7566 5/19/2006 10:04 am (fblackmo) employee was loading small pieces of scrap metal beams into bucket loader by hand, when tossing metal into bucket the bottom part of the beam struck him in the lower left leg. Supervisor: ricky ball
## 7567 5/19/2008 01:08 pm (blgay) employee was scratched on the nose by another employee pinting at him during an altercation between the two employees. Supervisor: steven d. Gilmore
## 7568 5/19/2008 01:22 pm (blgay) employee was cutting back right of way from a fence line when she felt some type of insect bite on her left forearm. Supervisor: lawrence long
## 7569 5/19/2008 01:32 pm (blgay) employee was in the back of the barrel trailer stacking barrels. A few barrels were still on the road, so employee decided to get them. Employee leaped off the back of the trailer, which is 2 ft high and turned his ankle. Su
## 7570 5/19/2010 11:20 am (fblackmo) employee was chipping epoxy off a steel h-pile with hammer drill when a piece of epoxy flew into his left eye. Supervisor: mason thompson
## 7571 5/19/2010 11:36 am (fblackmo) employee was opening the hood of a c-2 thomas school bus in order to perform a pre-trip inspection demonstration. The right side hood strap was not completely unfastened. The hood back lashed and pulled employees left elb
## 7572 5/19/2011 02:32 pm (fblackmo) employee was maintaining yard with weed eater and blower. When she removed safety gear some debris fell from her hat into her left eye. Supervisor: frank granda
## 7573 5/19/2011 02:44 pm (fblackmo) employee was riding in dump truck when he was bitten by a bee on his upper lip. Employee is allergic to bee stings. Supervisor: b. N. Braswell
## 7574 5/19/2011 02:56 pm (fblackmo) employee was out surveying when he was bitten by an insect on his right lower leg. Supervisor: ricky poythress
## 7575 5/19/2011 03:08 pm (fblackmo) employee was trying to test speed controller inside cab. Employee was using a knife in right hand to cut heat shrink to troubleshoot diode when knife slipped cutting index finger on left hand. Supervisor: robert cannady
## 7576 5/19/2011 04:14 pm (fblackmo) employee stepped on a nail while accessing a job site. Supervisor: barry gelezinsky
## 7577 5/19/2011 04:44 pm (fblackmo) employee legs was pinned between the tailgate of a dump truck and the road widener he was working on. Supervisor: greg vinson
## 7578 5/19/2011 05:08 pm (fblackmo) employee was climbing out of vehicle when he slipped and fell causing injury to his left wrist. Supervisor: joyce roberts
## 7579 5/19/2011 10:26 am (fblackmo) employee was on ladder prying a stuck part loose when, the bar slipped causing him to fall approximately six feet. Employee felt pain in his lower back and left wrist. Supervisor: c. D. Francka
## 7580 5/19/2011 10:49 am (fblackmo) employee experienced loss of hearing in both ears due to high levels of noise on the shipyard. Supervisor: raymond brown
## 7581 5/2/2008 10:44 am (blgay) employee was dusting and knocking down cobwebs in the supply room, when employees left leg got tangled up in water hose laying on the floor. Supervisor: alan g. James
## 7582 5/2/2008 10:57 am (blgay) employee was holding a post for a road close sign. Another employee was driving the post into the ground with a sledgehammer, when the other employee missed and struck Mr. Shuffler in the right wrist with the sledgehammer. Su
## 7583 5/2/2008 11:10 am (blgay) employee was removing rip rap check dam from ditch line. Employee and 3 inmates were picking rip rap out of ditch and putting it into the bucket of backhoe, when employee bent down an inmate came up with rip rap and hit emplo
## 7584 5/20/2004 01:45 pm (fblackmo) employee states while setting stakes with hammer, hammer slipped striking him on his right leg/ankle. Supervisor: mark t. Gibbs
## 7585 5/20/2004 01:56 pm (fblackmo) employee was standing on hitch trying to reach a light which had fallen off. Employee lost his footing and fell between the tractor and bush hog causing the injury to his left leg. Supervisor: don smith
## 7586 5/20/2004 02:07 pm (fblackmo) employee states while clearing brushes he came into contact with poison ivy. Supervisor: stephen dillon
## 7587 5/20/2004 02:17 pm (fblackmo) employee states his pants leg or boot caught hold on a pipe band while stepping over a pipe causing him to fall and injure his chest wall. Supervisor: b. J. Berryhill jr
## 7588 5/20/2004 02:28 pm (fblackmo) employee states he raised the door on truck to get hand cleaner, door came down striking him on the head chipping front tooth. Supervisor: r. L. Faulkner
## 7589 5/20/2004 02:39 pm (fblackmo) employee states there was some mechanical problems with auger while digging a hole. Employee was trying to make the repairs when, he touched a hot part of the equipment causing the injury to his right hand. Supervisor:
## 7590 5/20/2004 02:54 pm (fblackmo) employee was loading straw with mite. During the night he started itching and notice ed mite bites over varies parts of his body. Supervisor: t. R. Burns
## 7591 5/20/2004 03:04 pm (fblackmo) employee was climbing ladder when, he hit the top of his head on a beam causing the injury to his neck and shoulder. Supervisor: b. Moore
## 7592 5/20/2004 03:54 pm (fblackmo) employee states while walking down embankment he, fell causing the injury to his left arm. Supervisor: d. B. Henson
## 7593 5/20/2004 04:06 pm (fblackmo) employee states while stepping down off truck he, felt a pop in his left knee. Supervisor: c. H. Winstead
## 7594 5/20/2004 04:42 pm (fblackmo) employee was driving post. Employee lifted the driver to high hitting the top of the post causing the driver to kick back striking him on the head. Supervisor: w. H. Lynch
## 7595 5/20/2004 04:53 pm (fblackmo) employee was installing shocks on trailer when, the shock fell striking him on the head. Supervisor: s. J. Gupton 5/20/2004 04:57 pm (fblackmo) I-2 states strain/sprain arm.
## 7596 5/20/2004 05:02 pm (fblackmo) employee was trying to get tarp to open and had to push it to get it started. When employee pushed the tarp she felt a pop in her neck. Employee states she was unable to turn her neck to the left. Supervisor: b. W. Jacks
## 7597 5/20/2004 05:18 pm (fblackmo) employee was clearing bushes when, he came into contact with poison ivy on both arms. Supervisor: stephen dillon
## 7598 5/20/2004 05:27 pm (fblackmo) employee tired to catch himself from falling when, the injury occurred to his right wrist. Supervisor: ken anderson
## 7599 5/20/2004 08:45 am (fblackmo) employee was walking through maintenance shope when he tripped and fell over a truck fender that was sticking out into the walkway. Supervisor: b. J. Berryhill jr
## 7600 5/20/2004 09:27 am (fblackmo) employee was stepping down out of dump truck when, his left foot slipped causing the injury to his left ankle. Supervisor: mark williams
## 7601 5/20/2004 09:42 am (fblackmo) employee was stepping down from truck when the injury occurred to his right ankle. Supervisor: w. H. Monroe
## 7602 5/20/2004 09:56 am (fblackmo) employee was exiting a dump truck when, his right foot slipped causing the injury to his right knee. Supervisor: john montgomery
## 7603 5/20/2004 10:41 am (fblackmo) employee states while pulling hose out of the ground the hose flew up, striking him directly in left eye. Supervisor: david shepard
## 7604 5/20/2004 10:54 am (fblackmo) employee was operating a motor grader. He was making a left turn when a private vehicle ran into the rear end of the grader causing the injury to his back and leg. Supervisor: robert winslow 08/11/2004 08:23 am (kbare
## 7605 5/20/2004 11:18 am (fblackmo) employee was working on tow machine when, he felt pain in his right knee. Supervisor: w. E. Evans
## 7606 5/20/2004 11:36 am (fblackmo) employee states while cutting trees he came into contact with poison ivy. Supervisor: aubrey fuqua jr
## 7607 5/20/2004 11:45 am (fblackmo) employee was helping another load detour barricades on truck when, he felt pain in his back. Supervisor: sid tomlinson 6/3/2004 09:04 am (gwhite) 6/3/2004 09:07 am (gwhite) authorized mri thru occupational sol
## 7608 5/20/2005 01:35 pm (fblackmo) employee was dismounting from the belt loader when, his finger was caught in step. Supervisor: w. C. Kincannon
## 7609 5/20/2005 01:55 pm (fblackmo) employee states after returning to office from field he noticed a burning sensation and rash on neck. Supervisor: j. S. Coats
## 7610 5/20/2005 02:28 pm (fblackmo) employee was installing a 48"x48 lane drop sign when, he felt pain in his neck and shoulder area. Supervisor: john a. Ridge
## 7611 5/20/2005 02:38 pm (fblackmo) employee was called in due to snow and ice. Employee was in personal vehicle when, he hit a slick spot on the road and lost control, skidded off the pavement into a tree. Head contusion. Supervisor: c. E. Thompson
## 7612 5/20/2005 03:46 pm (fblackmo) employee was walking down cut line when, he tripped and fell over fresh cutting. Supervisor: clift bodenhamer 8/24/2005 12:41 pm (fblackmo) this is a duplicate claim. Do not pay any bills under this claim number. All
## 7613 5/20/2005 09:40 am (fblackmo) employee was driving attenuator truck when, he was bitten by an insect, causing injury to multiple body parts. Supervisor: j. E. Harrison
## 7614 5/20/2009 09:47 am (fblackmo) employee was conducting road maintenance when, he was bitten by a tick on right under arm. Supervisor: jerry keene
## 7615 5/20/2009 10:06 am (fblackmo) employee was shoveling asphalt when co-work dropped asphalt onto his right hand (had on gloves) causing a burn. Supervisor: stacy evans
## 7616 5/20/2010 03:47 pm (fblackmo) employee experienced hearing loss after years of exposed while using state issued hearing protection. Hearing loss in both ears. Supervisor: ken anderson
## 7617 5/20/2010 11:28 am (fblackmo) employee was cutting brush with a bush axe. The axe got caught in some vines causing strain to his right shoulder. Supervisor: chuck mcdonald
## 7618 5/20/2010 11:39 am (fblackmo) employee was struck on the back of the head by a limb while the crew was placing mulch at dump site. Supervisor: jeff robinson
## 7619 5/20/2011 04:30 pm (barnes) employee was driving a flatbed truck with a crash attenuator attached to it. He was shadowing for the spray truck during a slow moving operation. A private citizen ran into the back of the attenuator. Employee injured his b
## 7620 5/21/2007 03:45 pm (speedin) employee stated he was putting up silt fence on side of hill and twisted left knee when foot got tangled in vine supervisor: steve lee
## 7621 5/21/2007 05:00 pm (speedin) employee was pushing a limb onto the truck when a block of wood rolled down mashing his left finger against the tailgate. Supervisor: david c. Capps
## 7622 5/21/2008 02:08 pm (fblackmo) employee was sitting at left rear tamden of dump truck in a chair installing a brake drum. He was about six foot from a receptacle where a drop cord was plug in that was being used by employees doing repairs to main shop.
## 7623 5/21/2008 02:22 pm (fblackmo) employee was pulling a sign and post out of the ground when, he felt pain in his lower back. Supervisor: d. W. Rascoe
## 7624 5/21/2008 02:35 pm (fblackmo) employee had loaded a mowing tractor on the lowboy trailer. As he was stepping off the tractor he missed the last step and fell to the ground landing on his back. He scratched his left elbow. Supervisor: hilton wade
## 7625 5/21/2008 02:43 pm (blgay) employee was walking around the work truck when he backed into a pitchfork that had been placed on the truck facing outward instead of toward the truck. The pitchfork cut the employee on the left shoulder. Supervisor: lawren
## 7626 5/21/2008 02:47 pm (fblackmo) employee states while exiting building at back door he, missed a step and fell causing injury to his lower back and right ring nail region. Supervisor: marcia smith
## 7627 5/21/2008 02:52 pm (blgay) employee was installing pipe when he was exposed to poison oak, getting it into his right eye. Supervisor: h. E. Worley 5/22/2008 07:56 am (blgay)
## 7628 5/21/2008 03:03 pm (blgay) employee was standing on the lowboy trailer watching the loader operator to load a spreader. He walker around the backside of the spreader and a board on the trailer floor broke and he fell threw the floor hitting his left l
## 7629 5/21/2008 03:16 pm (blgay) employee was assisting another employee dragging a plate compactor from a road pavement patch to the crew cab when the compactor struck the back of his right foot causing pain in his big toe on the right foot. Supervisor: j.
## 7630 5/21/2008 11:48 am (fblackmo) employee state cause of incident was from "repetitive typing" and that it could have been prevented by "wrist supports for typing". Supervisor: b. M. Cross
## 7631 5/21/2008 12:00 pm (fblackmo) employee was installing advance warning signs on state road 1905 in durham county when, he stepped into a hole along the shoulder of roadway causing him to sprain his right ankle. Supervisor: tony roberson
## 7632 5/21/2008 12:11 pm (fblackmo) employee states a bee flew into truck window he was driving and stung him on his back and shoulder area. Supervisor: percy h. Harrell
## 7633 5/21/2010 08:31 am (fblackmo) employee was talking on cell phone to her mother when a board on the handicap ramp gave way were she was standing. Employee left leg went through the deck. Employee state she experienced pain in her right shoulder, hand,
## 7634 5/21/2010 09:07 am (fblackmo) employee was cutting metal band off box when band hit his index finger on right hand causing laceration. Supervisor: charles vinson
## 7635 5/21/2010 09:22 am (fblackmo) employee was bitten by a tick on his left arm while performing field work for bridge replacement. Supervisor: carla dagnino
## 7636 5/21/2010 10:20 am (fblackmo) employee was surveying in high grassy area when he was bitten by a tick on inner right thigh area. Tasha johnson
## 7637 5/22/2007 02:06 pm (fblackmo) employee was loading barricades and sandbags onto sign truck when, he felt pain in his lower back. Supervisor: jerome locklear
## 7638 5/22/2007 02:36 pm (fblackmo) employee intervened between a male and female arguing and shuffling when, employee attempted to pursue male he, slipped and skinned right knee and left pinky finger. Supervisor: jim edwards
## 7639 5/22/2007 03:10 pm (fblackmo) employee was picking up metal post when, post slipped causing injury to his left hand & finger. Supervisor: archie smith
## 7640 5/22/2007 03:39 pm (fblackmo) employee was trying to start lifeboat when, he hit arm on oar. Supervisor: r. E. Hamilton
## 7641 5/22/2007 03:56 pm (fblackmo) employee was getting away from an approaching truck when, he got caught up in some wire on embankment causing injury to his right knee. Supervisor: m. R. Hill
## 7642 5/22/2007 04:37 pm (speedin) employee was stepping off distributor, when he stepped down onto uneven terrain. Therefore causing an ankle sprain. Supervisor: c. C. Crump
## 7643 5/22/2007 08:32 am (speedin) employee was weed-eating a steep bank, stepped in a hole & fell backwards in creek on a rock. Employee fell approximately 4 to 6 feet. Supervisor: jeff robertson
## 7644 5/22/2007 09:19 am (fblackmo) employee was doing combat training when, he felt pain in his right lower leg. Supervisor: jimmie massengill
## 7645 5/22/2007 09:35 am (fblackmo) employee was participating in a physical assessment test when, he felt numbness in his leg and back. Supervisor: jimmie massengill
## 7646 5/22/2007 09:50 am (fblackmo) employee stated on 19 "unknown" for description of incident and cause of incident. Supervisor: c. Neal vaughn
## 7647 5/22/2007 11:14 am (fblackmo) employee was closing tailgate on dump truck when, his finger got caught between the tailgate and body of the truck. Supervisor: jonathan long
## 7648 5/22/2007 11:26 am (fblackmo) employee was running in inspector/trainee training when, he had a complaint of joint pain in both knees. Supervisor: jimmy masengill
## 7649 5/22/2009 08:27 am (fblackmo) employee was standing in the marsh when, she felt an insect bite/sting on the forehead. Employee could not see what type of insect it was, bite area was swollen instantly. Supervisor: lee stone
## 7650 5/22/2009 08:45 am (fblackmo) employee was loading soil samples and shelby tubes in the truck to transport to raleigh. Not realizing how heavy they were he picked up the rack causing pain to lower back. Supervisor: lee stone
## 7651 5/22/2009 11:46 am (blgay) employee was traveling on poplar springs road, when he observed a private vehicle sitting half in the road and half off the road. Employee stopped to assist vehicle owner, due to the fact her car was in a blind spot in a cur
## 7652 5/23/2005 07:45 am (fblackmo) employee states while picking up 5 gallon drums of lubra seal he, felt pain in his left shoulder. Supervisor: j. C. Roper
## 7653 5/23/2006 02:00 pm (fblackmo) employee was working on a maintenance crew performing manual labor and operating equipment on 5/3/06. Upon returning home at the end of the work day the employee removed a tick which had bitten the employee on the back of
## 7654 5/23/2006 02:19 pm (fblackmo) employee was mounting cup dispenser in new mobile office unit. While adjusting dispenser, his hand slipped and was cut by the mounting bracket. Supervisor: g. R. Sproles, jr
## 7655 5/23/2006 02:33 pm (fblackmo) employee was operating rubber tire roller when roller left roadway and slid into ditch. Supervisor: walter crumpler
## 7656 5/23/2006 02:44 pm (fblackmo) employee was sprinting during physical training when, he felt pain in his upper right leg. Supervisor: j. M. Mansgill
## 7657 5/23/2006 12:45 pm (fblackmo) employee was working under vehicle when, debris got into his left eye. Supervisor: jerry bagwell
## 7658 5/23/2006 12:56 pm (fblackmo) employee came into contact with poison ivy while weedeating. Supervisor: t. R. Burns
## 7659 5/23/2007 02:54 pm (speedin) employee believed to have been bitten by an ant on the project. Supervisor: t. R. Smith
## 7660 5/23/2007 08:16 am (fblackmo) employee attempted to pick up a box that was too heavy causing injury to lower back. Supervisor: mike jefferys
## 7661 5/23/2011 04:36 pm (barnes) employee was clearing brush around pipe and gutters along I-40 westbound when he came in contact with poison oak/ivy. He had rash on left eye, both arms, hands and wrists. Supervisor: henry worley
## 7662 5/23/2011 12:13 pm (barnes) employee was on a project site reviewing a project. He stepped in a slight depression that was not touching the ground as he expected, and he hyperextended the right knee. Employee injured right knee. Supervisor: ron gra
## 7663 5/24/2005 08:05 am (fblackmo) employee was picking up a package of signs to place in bin for storage when, he felt pain in his left shoulder. Supervisor: j. A. Ridge
## 7664 5/24/2005 08:22 am (fblackmo) employee states while weed eating the blade hit a glass bottle, glass from the bottom struck his left upper arm. Supervisor: alton lee bundy jr
## 7665 5/24/2005 08:38 am (fblackmo) employee was walking up the shoulder of nc 215 to pickup a portable traffic counter. He slipped on a patch of snow/ ice and fell against the guardrail. He received a cut on his left wrist, two cults on his right hand and
## 7666 5/24/2005 08:55 am (fblackmo) employee was making deposit for the state when, a gust of wind caught the door catching her finger on left hand. Employee states her ring finger became paralyzed for a few minutes. Supervisor: mike salisbury
## 7667 5/24/2005 09:17 am (fblackmo) employee was walking to excavator at stockpile when, a gust of wind blew dirt in his eyes. Supervisor: hilton wade
## 7668 5/24/2005 09:30 am (fblackmo) employee was stepping out of truck when, he felt pain in his right ankle. Supervisor: r. R. Murdock
## 7669 5/24/2005 10:44 am (fblackmo) employee was trying to dislodge a small log from the back of a bulldozer blade. As he pulled on the log he felt a sharp pain in his right shoulder. Supervisor: r. J. Hollifield
## 7670 5/24/2005 11:28 am (fblackmo) employee was shoveling and raking asphalt when, he felt pain in his lower back. Supervisor: ben jordan
## 7671 5/24/2007 02:48 pm (speedin) employee was stacking a shipment of pipe that was received by the maintenance yard. He had cut off three bands and thought that he had cut all of the bands off the pipe, but there was a band in the middle wand when he cut
## 7672 5/24/2007 03:52 pm (speedin) employee stopped behind line of traffic and was rear-ended by driver of 1997 honda accord. Supervisor: terrell smith
## 7673 5/24/2007 04:13 pm (speedin) employee was running to get into position to flag traffic when he stepped into a hole and fell. He injured his left ankle and right hand. Supervisor: gg melton
## 7674 5/24/2011 03:52 pm (fblackmo) employee was called to come into work early due to icy weather. As he headed to his state vehicle he slipped on the steps and twisted his left knee. Supervisor: I. H. Mccombs
## 7675 5/24/2011 04:25 pm (barnes) employee was bent over putting sleeve on tongue of leeboy when he felt pain in his back. Employee complained of lumbar strain and muscle spasms. Supervisor: t. M smith
## 7676 5/25/2004 02:13 pm (fblackmo) employee states while removing heavy object form trailer he, felt pain in his right upper arm. Supervisor: s. J. Gupton
## 7677 5/25/2004 02:27 pm (fblackmo) employee states that a cord from a crane became tangled up with a u-channel. While trying to free up the cord the u-channel fell over striking him behind his left ear. Supervisor: jason leonard
## 7678 5/25/2004 02:45 pm (fblackmo) employee states she is having pain in both hands due to repetitive motion from driving a dump truck. Supervisor: eddie guganious *show joyce all bills*
## 7679 5/25/2004 02:57 pm (fblackmo) employee was walking on side of road when, he went to step around a pipe his right foot slipped causing the injury to his right knee. Supervisor: kennie covington
## 7680 5/25/2004 03:09 pm (fblackmo) employee states while using a razor to remove a sticker he, cut his right thumb. Supervisor: j. W. Cahoon
## 7681 5/25/2004 03:22 pm (fblackmo) employee states while putting sings for paint crew on shoulder of road he came into contact with poison ivy. Supervisor: chuck sharp
## 7682 5/25/2004 03:32 pm (fblackmo) employee was riding on the back of crew cab when, the driver hit a pot hole employee hit his head on back of cab. Supervisor: donald king
## 7683 5/25/2004 03:45 pm (fblackmo) employee states the engine hood fell on his hand and fingers while checking hose for leaks. Supervisor: terry r. Yates
## 7684 5/25/2006 08:54 am (fblackmo) employee was operating rental rubber tired roller in paving operation. Employee possibly over accelerated in his attempt to relocate to the next phase of operation. Supervisor: a. C. Coghill
## 7685 5/25/2006 09:12 am (fblackmo) employee was chipping at a rock in the ditch line w/trax. A piece of the rock broke loose and hit the front windshield of the trax shattering the window causing, glass to fly into employees right eye. Supervisor: kim keph
## 7686 5/25/2006 09:22 am (fblackmo) employee was putting signs in their storage locations and pulled a muscle in his neck. Supervisor: jerome locklear
## 7687 5/25/2006 09:34 am (fblackmo) employee was installing a pipe. He did not know it had poison oak on it. He got the oil on his gloves and wiped the sweat off his face getting it in his eyes and on his hands. Supervisor: m. H. Thomas
## 7688 5/25/2006 09:47 am (fblackmo) employee was walking by building and was stung by wasp on upper arm near right shoulder area. Supervisor: jeff credle
## 7689 5/25/2007 01:44 pm (speedin) employee was loading a 3 in. X 10 in x 5ft bridge timber onto the bed of a truck by hand. When the timber landed on the truck bed, it bounced and struck employees middle finger on his right hand. Supervisor: terry j. Davis
## 7690 5/25/2007 03:03 pm (fblackmo) employee hit knee on corner of desk. Supervisor: ava parker
## 7691 5/25/2007 09:46 am (speedin) employee was picking up trash and rubber along I-85 and attempted to load a truck hold onto the tailgate of the truck and strained something in my left elbow. Supervisor: rd loflin
## 7692 5/25/2007 10:29 am (speedin) employee was removing tree from road and felt pain in his groin. Supervisor: derrick dixion
## 7693 5/25/2007 11:24 am (fblackmo) employee was driving a tractor on us 264 to meet up with the other tractors where they were mowing. A private vehicle was traveling west on 264 and ran into the back of the tractor. Supervisor: joe ross
## 7694 5/25/2007 11:39 am (fblackmo) employee was wearing a special shoe for her toe injury when, her foot caught tangled in a computer cord causing her to fall. Employee felt pain in her right foot/hip. Supervisor: w. J. Massengill
## 7695 5/25/2007 11:54 am (fblackmo) employee was unloading his flat bed truck when, trash blew into his left eye. Supervisor: mike jefferys
## 7696 5/25/2011 02:42 pm (barnes) employee states that it had been raining and the road was wet. When he applied his brakes the truck he was driving slid into the rear of a private vehicle. Employee injured his knee, chest and abdomen. Supervisor: lee answ
## 7697 5/25/2011 03:41 pm (barnes) employee was climbing onto the track hoe and he felt pain in his lower back. Supervisor: hubert m. Hooper
## 7698 5/25/2011 04:29 pm (barnes) employee was walking in high grass and something bit her right leg. Supervisor: tim wright
## 7699 5/25/2011 05:08 pm (barnes) employee was standing about 15' behind chipper while another employee was putting limb into it. As the limb was chipping, it began moving and hit the employee that was standing behind it in the head and face. He went to ur
## 7700 5/25/2011 12:34 pm (barnes) employee was replanting endangered plants in right of way when he came in contact with poisonous plant on left arm. Employee injured left arm. Supervisor: art king
## 7701 5/26/2005 08:35 am (blgay) employee was getting down from back of pickup when he hit his ankle on the right leg on the tailgate. Supervisor: boyd griffin
## 7702 5/26/2005 08:41 am (blgay) employee was raking asphalt and when he stood up he felt catch in back. Supervisor: w. H. Monroe
## 7703 5/26/2005 09:53 am (fblackmo) employee was conducting a road test when the driver turned to hard to the right causing the car to ruining into a telephone pole and in up in the ditch. Employee states she was shaken by the accident and whipped lash to t
## 7704 5/26/2005 10:15 am (blgay) employee was drilling hole in metal box. Bit broke on drill causing drill to slip and strike employees finger, causing deep laceration to index finger on left hand. Supervisor: r. G. Crews
## 7705 5/26/2005 11:10 am (blgay) employee was driving a dump truck and had stopped for a vehicle making a right turn in front of him. A tractor trailer approaching from the rear did not stop, hitting the truck the employee was driving. Supervisor: travis mi
## 7706 5/26/2009 07:58 am (blgay) employee was traveling west and a mitsubishi suv was traveling east on sr 1221 with a tractor trailer following behind him. The hood of the suv flew up and the driver of the vehicle stopped. Attempting to avoid suv, the driv
## 7707 5/26/2009 08:27 am (blgay) employee was feeding limbs into a brush chipper. A limb swung around and struck him on his right elbow, causing a contusion. Supervisor: ronald e. David
## 7708 5/26/2009 08:46 am (blgay) employee was hauling dirt/mud from bridge project on bowles road to alvin harris stockpile. While driving on sr 1542 dump truck operators george graham and french parsons met and employee thought that their mirrors were goin
## 7709 5/26/2009 08:50 am (fblackmo) employee found tick attached to genital area supervisor: ben nelms
## 7710 5/26/2009 09:07 am (fblackmo) employee was exiting his vehicle when, he twisted his left knee. Supervisor: a. G. Hunter
## 7711 5/26/2010 01:26 pm (fblackmo) employee was changing front tire on mowing tractor, when he felt pain in his left arm. Supervisor: richard jernigan
## 7712 5/26/2010 01:52 pm (fblackmo) employee was changing tire for disabled vehicle when his right hand slipped from the hand tool that loose the lug nuts. Supervisor: ron pharr 9/10/2010 08:50 am (sjerniga)
## 7713 5/26/2010 02:32 pm (fblackmo) employee was cutting small trees and vines on a steep embankment from bank. He was standing in road dragging a fallen tree down embankment to to chipper when, tree got entangled and snapped. Tree rush down bank knocking
## 7714 5/26/2010 02:46 pm (fblackmo) employee was cleaning ditches and loading debris into dump truck when, he came into contact with poison ivy on multiple body parts. Supervisor: david m. Carter
## 7715 5/26/2010 03:01 pm (fblackmo) employee was changing a tire when his hand got caught between the jack handled and the frame of the car. Supervisor: gene allman
## 7716 5/26/2010 03:11 pm (fblackmo) employee was closing tailgate when he noticed pain in his right index finger. Supervisor: charlie sinclair
## 7717 5/26/2010 10:37 am (fblackmo) employee was driving a t-post with driver. The t-post driver caught a tooth, bounced back, and hit employee on the head. Supervisor: david esposito
## 7718 5/26/2010 10:50 am (fblackmo) employee was surveying in tall grass when, he found two ticks on left side/abdomen area. Supervisor: al blanton
## 7719 5/26/2010 11:02 am (fblackmo) employee was walking down embankment when, he stepped in a hole causing injury to his right ankle. Supervisor: r. K. Payne
## 7720 5/26/2010 11:17 am (fblackmo) employee state that he was walking around to get in truck when, he twisted his left knee. Supervisor: b. L. Sapp
## 7721 5/26/2011 10:01 am (barnes) employee was stepping out of the patch truck, when he twisted wrong causing a pain to develop in his lower back area. Supervisor: a. C. Cochran
## 7722 5/26/2011 10:20 am (barnes) employee was cutting a tree, when his saw got stuck in it. Employee got a backhoe operator to push the tree to try and free the saw. The tree broke and fell against the employee's legs. Employee requested and x-ray to make
## 7723 5/27/2008 09:08 am (blgay) employee was picking up a log to move it to the side. When employee bent and grabbed hold of the log and lifted, he felt a pop in lower abdomen. Pain in hip and back which is a constant pain. Supervisor: kevin whittington
## 7724 5/27/2008 10:23 am (blgay) employee was helping install r/w marker when she jumped into ditch in order to get to the back side of ditch. Employees foot landed in mud, got stuck and momentum carried her body forward, causing her knee to twist. Supervis
## 7725 5/27/2008 10:42 am (blgay) employee was cutting right of way coming off a bank, he slipped on a tree limb, causing him to fall down the bank. Employee complained of right knee pain, but refuse medical treatment. Employee later went for medical treatme
## 7726 5/27/2008 12:07 pm (blgay) employee was replacing a pipe on sr 2146. Employee was working in and around tall grass and at the end of the day he found a tick stuck to his right hip. Employee started to have symptoms on 5/16/08 and was seen by a doctor
## 7727 5/28/2004 09:14 am (fblackmo) employee states while climbing embankment he, felt pain in his right calf muscle area. Supervisor: mark callis
## 7728 5/28/2004 09:33 am (fblackmo) employee states while leaving the building she, lost her footing when she missed a step. Employee experienced pain in right ankle and both knees. Supervisor: don nail
## 7729 5/28/2004 09:48 am (fblackmo) employee states she was cutting up ham in a pot of boiling water when, the water splashed on her face, neck, and arms causing burns. Supervisor: c. S. Fearing
## 7730 5/28/2004 10:33 am (fblackmo) employee states while standing on shoulder of road he, felt something bite him on upper left arm. Supervisor: w. H. Monroe
## 7731 5/28/2004 10:43 am (fblackmo) employee was loading straw on truck when, he noticed he had been bitten by grain itch mites on stomach, chest, back, and arms. Supervisor: t. R. Burns
## 7732 5/28/2004 10:55 am (fblackmo) employee states while changing out sings in high grassy area, he did not see a hole in the ground which caused the injury to his left foot. Supervisor: b. T. Coble
## 7733 5/28/2004 11:05 am (fblackmo) employee stepped to the side to allow fellow worker to load material when, he stepped in a hole causing the injury to his right ankle. Supervisor: c. E. Watson jr
## 7734 5/28/2004 11:23 am (fblackmo) employee was holding ends of pieces of metal to be welded together. He started to weld, the wire form the wielder went between the two ends and his glove causing the injury to his left index finger. Supervisor: jim e. Ad
## 7735 5/28/2004 11:35 am (fblackmo) employee was working on vehicle when, he hit his forehead on battery box cover. Supervisor: jimmy ammons
## 7736 5/28/2004 12:00 pm (fblackmo) employee was welding dump truck bed. Employee was wearing an auto dimming welding helmet. He was chipping slag form the weld when a piece of slag flew off. It bounced off of employees welding coat, went inside the weldi
## 7737 5/28/2009 08:48 am (fblackmo) employee was setting pilings his right hand was on water jet pump when, his hand was caught between the pump and the piling. Supervisor: norris reed
## 7738 5/28/2009 09:02 am (fblackmo) employee hit leg on sharp object causing laceration to left leg. Supervisor: a. C. Gavetti
## 7739 5/28/2009 09:21 am (fblackmo) employee found two tick bites on her lower left leg while conducting field work. Supervisor: lerlani paugh
## 7740 5/28/2009 10:12 am (fblackmo) employee was surveying in grassy field for new location roadway when, he was bitten by a tick. Supervisor: ben upshaw
## 7741 5/28/2010 03:22 pm (fblackmo) employee was laying on creeper under trailer when he felt burning and stinging on his left buttocks. Employee looked for possible insect but could not find one. He thought at that time something had bitten or stung him. S
## 7742 5/28/2010 03:52 pm (fblackmo) employee and hg crouse were throwing traffic cones on and off the trailer. Employee walked around the back of the trailer into the pat of a cone being thrown by hg crouse striking him in the head near right temple area. For
## 7743 5/28/2010 09:57 am (fblackmo) employee was stepping out of dump truck when his right foot slipped. Employee heard a pop in his lower back. Supervisor: hilton wade
## 7744 5/29/2008 12:26 pm (blgay) employee was working on sr 1307. Employee was getting into the long arm tractor, when he fell off backwards onto the ground. Employee expressed body pain on the right side of his body, including right shoulder, right arm, ri
## 7745 5/29/2008 12:37 pm (blgay) employee was on job site when the high wind blew shivers of rock in his left eye. Supervisor: mike walden
## 7746 5/29/2008 12:47 pm (blgay) employee was returning two rental rollers to briggs equipment. Employee dismounted the first roller using the three point method when his right foot slipped off of the step of the roller causing his extended left leg to go s
## 7747 5/3/2005 01:17 pm (fblackmo) employee was un-chaining backhoe from trailer when, he stepped over loading ramps placed body weight onto left leg felt kept knee pop. Supervisor: neil crumpler
## 7748 5/3/2005 09:00 am (fblackmo) employee was shoveling rocks when, he felt pain in his lower back area. Supervisor: eddie gurganious
## 7749 5/3/2005 09:16 am (fblackmo) employee was returning from raleigh when, he was rear ended by private vehicle in a five car accident. Employee felt pain in his neck and numbness in his right arm. Supervisor: shawn mebane
## 7750 5/3/2005 09:33 am (fblackmo) employee was cutting lids off of plastic buckets when, his knife slipped cutting his left index finger. Supervisor: brian harper
## 7751 5/3/2005 09:45 am (fblackmo) employee states he operates a variety of machinery relating to seeding, mulching and mowing. Employee has been wearing ear protection. Bilateral hearing loss. Supervisor: keith h ill
## 7752 5/3/2005 10:00 am (fblackmo) employee was working on state road when, he was hit in his back and legs by a school bus. Employee felt pain in his left s shoulder and neck. Supervisor: kevin bowen
## 7753 5/3/2005 10:10 am (fblackmo) employee was digging out bad areas in road when, he came into contact with poison ivy. Supervisor: mark r. Moore
## 7754 5/3/2005 10:30 am (fblackmo) employee was cleaning out waste oil separator and had to enter the inside of tank to replace plates into tank groves. While entering tank, employee struck left shoulder on side of tank. Supervisor: r. W. Feher, jr
## 7755 5/3/2005 11:30 am (fblackmo) employee was removing pin from bucket linkage on backhoe to install cylinder. When the pin came out of the first part of the linkage, the rest moved. This pinched his thumb between the linkage and a hydraulic hose mounting
## 7756 5/3/2005 11:42 am (fblackmo) employee was lifting a small sheet aluminum to place in shear when, he fell striking his knee on concrete and chipping tooth on the aluminum sheet. Supervisor: r. W. Feher, jr
## 7757 5/3/2005 11:54 am (fblackmo) employee states while mowing grass he, was bitten by at spider or insect on his right hip. Supervisor: steven blake
## 7758 5/3/2005 12:30 pm (fblackmo) employee was working in the battery box of backhoe when, he felt something bite him on his little finer on right hand. Supervisor: t. H. Hackett
## 7759 5/3/2005 12:39 pm (fblackmo) employee was traveling south on coble ave when, a private vehicle ran the red light striking state truck on drivers side door. Employee bumped the left side of his head on window. Supervisor: davis diggs
## 7760 5/3/2005 12:59 pm (fblackmo) employee was working in clayton when, he picked up a plaintop survey stake and a large splinter stuck in his right hand. Supervisor: kevin bowen
## 7761 5/3/2007 02:24 pm (speedin) employee was getting out of the dump truck. He was stepping out in a 3 point of contact when right foot reached the ground, his foot rolles over on a piece of asphalt that was in tall grass, resulting in a severe ankle spra
## 7762 5/30/2006 02:45 pm (fblackmo) employee was driving state pickup truck when, private vehicle struck state vehicle in rear causing the injury to employees neck and back. Supervisor: j. Scott cole
## 7763 5/30/2006 02:56 pm (fblackmo) employee and tyler humphrey were loading a 10' metal back form for c & g divider on cold patch when, employee felt pain in his left shoulder area. Supervisor: robert ladd
## 7764 5/30/2006 03:06 pm (fblackmo) employee ran off the road and as he tried to get the dump truck back on the road the back of dump truck came around causing the dump truck to turn on its side. Supervisor: t. L. Pugh
## 7765 5/30/2006 03:16 pm (fblackmo) employee was positioned under bridge looking up while scraping lead paint from surface when, particles fell into his eyes. Supervisor: robbie beach
## 7766 5/30/2006 10:59 am (fblackmo) employee was driving pickup truck when, he was hit in the rear by another vehicle. The impact caused his right hand to hit the dash board causing injury to his ring finger. Supervisor: mark conner
## 7767 5/30/2006 11:14 am (fblackmo) employee was cleaning up the firing range when, he scratched his index finger. Supervisor: c. E. Irvin
## 7768 5/30/2006 11:38 am (fblackmo) employee found two ticks on his body on 5/5/06. Over the weekend he found a tick imbedded behind his ear. Supervisor: jerome locklear 8/25/2006 02:38 pm (fblackmo) show all bills to joyce wilson before sending to cor
## 7769 5/30/2006 11:47 am (fblackmo) employee was mounting an electrical sub-panel on a post with the assistance of two inmates. As he went to align the panel box to the post one of the inmates dropped his end and the panel box fell on the employees left thu
## 7770 5/30/2007 09:06 am (speedin) employee was tightening a bolt when the wrench slipped off and the back of his hand hit the rock guard. It then tore a place on the back of his hand which needed 3 stitches. Supervisor: greg mccracken.
## 7771 5/30/2008 07:29 am (blgay) employee had to climb an embankment to cut a failed tree. Employee didn't realize the tree was covered with poison oak/ivy. Employee developed a serious rash in three days, covering both hands and arms. Supervisor: r. W. Robe
## 7772 5/30/2008 07:39 am (blgay) employee was driving a metal post in the ground for silth fence. Employee was the one holding the post, when it kicked out after hitting a rock and caught employees thumb, straining his right hand. Supervisor: bobby webb
## 7773 5/30/2008 07:55 am (blgay) employee was stepping off of sled trailer and injured left ankle. Supervisor: tommy edwards
## 7774 5/30/2008 08:05 am (blgay) employee was removing brush from right of way and got poison oak in both eyes. Supervisor: b. W. Jackson
## 7775 5/30/2008 08:14 am (blgay) employee was walking down an embankment when a rock moved underneath his foot, causing him to almost fall. When employee caught himself, he had a sharp pain in his back. Supervisor: mark collins
## 7776 5/31/2005 02:23 pm (fblackmo) employee was getting tools, walking toward truck when, he ran into the door on the loader. Employee hit his forehead on the corner of the door knocking him to the ground. Supervisor: a. W. Keeton
## 7777 5/31/2005 02:33 pm (fblackmo) employee was conducting his pre-trip inspection. He opened the hood and the hood latch caught on the truck, he lost his grip on the hood. The hood slipped out of his hand causing pain I his right hand and shoulder. Note:
## 7778 5/31/2005 02:54 pm (fblackmo) employee reached in the hopper to pick up a spring and into he process of lifting it up, a grate fell on his little finger on right hand. Supervisor: w. T. Garrett
## 7779 5/31/2005 09:02 am (fblackmo) employee states she began to shaking, cry, and felt sick on her stomach. She states she was shaking so bad that she could not hold the phone or type. Supervisor: not stated on form 18
## 7780 5/31/2005 09:27 am (fblackmo) employee was helping to push a cut tree when, he lost his footing on a steep embankment causing him to fall in the road and injuria his left ankle. Supervisor: t. L. Hall
## 7781 5/31/2005 10:09 am (fblackmo) employee was walking behind truck when, he was struck by a rake that was extended out over the tailgate. Employee felt pain in his back and head. Supervisor: w. J. Nall
## 7782 5/31/2005 10:55 am (fblackmo) employee was pulling up hood on dump truck when, the latch became hung up causing a jerking motion to his right arm. Supervisor: mike hamm
## 7783 5/31/2005 11:06 am (fblackmo) employee was operating pavement marking removal machine ( grinder) when, something broke & grinder teeth came from under machine striking employee in several locations. Supervisor: ira harris
## 7784 5/31/2005 11:17 am (fblackmo) employee was driving silt fence post with post driver. Employee raised post driver up when, the edge of post struck him on the head. Supervisor: l. W. Lyall
## 7785 5/31/2005 11:30 am (fblackmo) employee was checking a windshield for a leak. He was standing on left front tire of vehicle. Employee turned to his right, he says is when, he felt a sharp pain in his knee and fell of the truck. 10/07/2005 08:55 am (
## 7786 5/31/2007 02:48 pm (speedin) employee was overseeing shoulder maintenance operations and helping to spread grass seed. Employee turned to speak w/ one of his employees and felt a sharp pain in his back, pain continued to worsen with time and employee
## 7787 5/4/11 drove to boone, photographed fisherman in stream, drove to asheville, 5/4/11 drove to waynesville and photographed fisherman in workshop, unloaded and set up studioy lighting, tore down lighting and hoist lights into truck. ()
## 7788 5/4/2004 01:03 pm (fblackmo) employee was removing nails form floor joist. Employee slipped on wet joist and fell. Employee cut left ear from head to outer edge with approximately a 1/2 inch cut completely through ear. Supervisor: c. C. Coggins
## 7789 5/4/2004 02:25 pm (fblackmo) employee was working on a ferry boat when, he was hit in the ribs by a shaft. Supervisor: thomas foster bowser
## 7790 5/4/2004 04:17 pm (fblackmo) employee was leaving trailer when, he slipped and fell down the steps. Supervisor: robert winslow
## 7791 5/4/2004 04:44 pm (fblackmo) employee was washing out mop head in sink when, water splashed into his eyes. Supervisor: curtis r. Branhill
## 7792 5/4/2004 05:04 pm (fblackmo) employee was driving a crash truck when, a private vehicle struck in the rear causing the injury to employees neck and shoulder. Supervisor: w. W. Childress 5/25/2004 12:13 pm (gwhite)
## 7793 5/4/2004 08:42 am (fblackmo) employee states while installing a fence post he, stepped back on a pile of dirt causing the injury to his right ankle. Supervisor: l. W. Currin
## 7794 5/4/2004 09:03 am (fblackmo) employee was assisting acting crew leader in backing to dig out hole to dump asphalt. Employee turned his back to the truck that he was assisting when, acting crew leader struck him in the upper back, causing him to step
## 7795 5/4/2004 09:32 am (fblackmo) employee states while driving to pick up parts for equipment repairs, he struck a private vehicle in the rear causing the injury to his arms. Supervisor: s. J. Gupton
## 7796 5/4/2004 09:48 am (fblackmo) employee states while conducting his daily duties he, was bitten on his left hand by an insect. Supervisor: morris joseph gray
## 7797 5/4/2004 11:29 am (fblackmo) employee states while lifting empty barrel to stack for storage he, felt pain in his left side. Supervisor: chuck sharp
## 7798 5/4/2004 11:41 am (fblackmo) employee states while cutting trees on jack cowin road he, came into contact with poison ivy. Supervisor: c. M. Williams jr
## 7799 5/4/2004 11:55 am (fblackmo) employee was driving a dump truck when, she went over a bad dip in the road she felt pain in her neck and right side area. Supervisor: k. L. Anderson
## 7800 5/4/2004 12:07 pm (fblackmo) employee states while stepping off trailer onto the paved surface she, felt pain in her left foot/ ankle. Supervisor: j. Stuart bourne
## 7801 5/4/2004 12:42 pm (fblackmo) employee state he was using a backhoe to push brush from roadway into pile to be loaded onto trucks. Employee was hit by small tree as the brush was being pushed toward pile. Supervisor: w. H. Lynch
## 7802 5/4/2005 12:07 pm (fblackmo) employee states that a private vehicle was coming out of parking lot when it cut across traffic. Employee states he had to turn sharply to avoid striking the vehicle during the process he felt pain in his left wrist, elbow
## 7803 5/4/2005 12:26 pm (fblackmo) employee was trying to free canvas rod when, he slipped and fell off wheel. Supervisor: hilton wade
## 7804 5/4/2006 03:43 pm (fblackmo) employee was working the backhoe when, he turned his head to check for traffic, he felt pain in his neck. Supervisor: j. L. Brown & gary neal
## 7805 5/4/2006 08:40 am (fblackmo) employee walked into building, stepped on tile floor, slipped on wet surface causing the injury to his ankle. Supervisor: cecil l. Jones
## 7806 5/4/2006 08:54 am (fblackmo) employee was climbing up uneven surface (rip-rap) when, he felt pain in his right foot. Supervisor: makr callis
## 7807 5/4/2006 09:15 am (fblackmo) employee has been experiencing pain, swelling, and numbness in both hands for the last two years (date of diagnosis is May 2, 2006 per: kathy barefoot). Carpal tunnel syndrome. Supervisor: a. J. Sawyer
## 7808 5/4/2006 09:35 am (fblackmo) employee was working on a water truck repairing a hose. While cutting a piece of hose with a knife, he cut his left thumb. Supervisor: k. H. Johnson
## 7809 5/4/2006 09:50 am (fblackmo) employee was stepping down off grader and didn't realize that the grader blade had torn lose the last step which caused him to lose his footing, falling backwards on his left leg. Supervisor: mike walden
## 7810 5/4/2006 10:04 am (fblackmo) employee was walking away from her desk when, she slipped on a slick spot on the floor in front of the copier. As employee fell, her left leg twisted out from under her. Supervisor: c. D. Moorefield
## 7811 5/4/2006 11:17 am (fblackmo) employee was pulling on tree tops when, he felt a sharp pain in his lower back, right side, and down his his right leg. Supervisor: m. H. Thomas
## 7812 5/4/2006 11:36 am (fblackmo) employee states while working on concrete pavement he felt chronic pain under his left foot and calf area. Supervisor: reese bailey 5/8/2006 03:57 pm (fblackmo) can pay bills up to 05/04/2006 only, see memo
## 7813 5/4/2007 04:30 pm (speedin) employee skid steer grinding attachment for operating problems. Raised up hitting head on the machinery, causing a cut on top of the head. Supervisor: ken pruett
## 7814 5/4/2009 03:26 pm (blgay) employee was bushing along creek bank and slipped on mud. His feet slid toward creek and as he tried to catch himself with his left hand, his left hand and fingers were bent backwards. Supervisor: w. D. Watkins
## 7815 5/4/2009 03:35 pm (blgay) employee was removing grates to clean out drop box, when he felt something pull in his left wrist, causing it to sprain. Supervisor: dennis huffman
## 7816 5/4/2011 02:30 pm (fblackmo) employee was lifting post when he felt a twitch in his lower back area. Supervisor: neil crumpler
## 7817 5/4/2011 02:36 pm (barnes) employee was at the equipment shop helping unload parts from the back of a truck. When employee pulled a blade from the truck, his left finger popped causing it to swell. Employee reported it to the equipment shop supervisor
## 7818 5/4/2011 03:17 pm (barnes) employee bent down on knees to measure a block out on a beam, felt right knee pop. Employee injured right knee. Supervisor: alan c levens
## 7819 5/4/2011 03:47 pm (barnes) employee states that the customer who was taking a road test, waited until the last minute to stop at the stop sign on wilson way road, and when she slammed on brakes, it threw the employee forward, causing her to hurt her b
## 7820 5/4/2011 04:27 pm (barnes) employee was operating high speed drill. The drill hit metal and jerked employee's right arm causing him to hurt his right shoulder. Supervisor: tommy g. Culberson
## 7821 5/4/2011 04:59 pm (barnes) employee was climbing onto the trailer. He slipped and fell on his left leg, injuring his shin. Supervisor: tammy johnson
## 7822 5/4/2011 05:13 pm (fblackmo) employee stepped with his right foot on a wet grassy slope and slipped down the slope as his left knee buckled; hyperextension perpendicular to his body. Employee felt pain in his left knee area. Supervisor: randy k. Wise
## 7823 5/4/2011 05:27 pm (barnes) employee was removing trees and debris from roadway. Employee came into contact with poison oak/ivy. Employee had rash on arms, hands, ankles and legs. Supervisor: clyde e. Scott
## 7824 5/4/2011 10:00 am (fblackmo) employee was working under bridge to replace caps, joists, and crown strips. When he came out from under bridge his back felt stiff. Supervisor: chuck francka
## 7825 5/4/2011 10:20 am (barnes) employee was a passenger in ton truck being driven by norman perry. They were stopped for a light when they were struck from behind by a private owned vehicle. Employee injured his neck. Supervisor: gene johnson
## 7826 5/4/2011 10:34 am (fblackmo) employee was working beside highway when wind blew dust into his left eye. Supervisor: michael a. Clinard
## 7827 5/4/2011 10:46 am (fblackmo) employee was cutting trees with chainsaw when, on of the limbs cut his left knee. Supervisor: jeremy b. Creech
## 7828 5/4/2011 11:11 am (barnes) employee stated a load of gravel was in the tailgate causing it to hang open. Employee was shaking the tailgate to release the gravel. When the gravel fell out, the gate closed on his left hand. Employee's left middle finger
## 7829 5/4/2011 11:29 am (barnes) employee was operating widening machine when he was bit by an insect on his right arm, resulting in swelling. Supervisor: james m. Laviner
## 7830 5/4/2011 11:43 am (fblackmo) employee was making repairs to a security gate with hinges when the gate slipped mashing his left ring finger. Supervisor: jason d. Gibbs
## 7831 5/4/2011 11:49 am (barnes) employee was cutting trees below the road. His coworker was using a backhoe to reach down and pull trees. The backhoe bucket slipped off one of the trees causing it to fall in direction of the employee. The employee ran to g
## 7832 5/4/2011 12:00 pm (fblackmo) employee opened the main door to enter into the bridge house when a gust of wind blew the door back onto his left hand/arm. Employees left forearm and thumb was cut. Supervisor: frank granda
## 7833 5/4/2011 12:16 pm (fblackmo) employee was attempting to un-clog the want tip with a torch while reaching for a pliers when burned his left wrist area. Supervisor: fred j. King
## 7834 5/4/2011 12:29 pm (fblackmo) employee was trying to open the truck bed door with a crowbar when, it slipped striking him in the face. Supervisor: perry mitchell
## 7835 5/5/2010 08:46 am (fblackmo) employees account of the event that caused his injury is that, the tailgate lift that assist employees with loading large animals was malfunctioning when he attempted to load a dead deer into the pickup truck. Employee cla
## 7836 5/5/2010 09:31 am (fblackmo) employee states he experience ringing in both ears. Supervisor: kathy lewis
## 7837 5/5/2010 10:08 am (fblackmo) employee was delineating wetlands in a wooded area and walked into the tip of a tree branch which hit her right eye resulting in a small corneal abrasion. Supervisor: chris rivenbark
## 7838 5/5/2010 10:31 am (fblackmo) employee was driving back into the office after working at night for paving operation. Employee went to sleep while driving, ran off the road, struck tree, road sign, and fence. Employee felt pain in both shoulders and arm
## 7839 5/5/2010 10:49 am (fblackmo) employee was getting off paver when he twisted his left foot. Supervisor: brett d. Canipe
## 7840 5/5/2011 05:56 pm (fblackmo) employee was picking up boards when he felt pain in his neck and left shoulder. Supervisor: chris vause
## 7841 5/5/2011 09:22 am (barnes) employee injured left knee during practical exercise of weapon retention. Left knee became tight and had pain. Supervisor: steve watkins
## 7842 5/5/2011 10:07 am (barnes) employee stated that he was doing scat and was kneed in the right shin. Supervisor: b. Sitton
## 7843 5/5/2011 10:25 am (barnes) employee states that it had been raining the previous day and the ground was wet. As he re-entered the truck his boots were wet and he slipped off the running board of the truck. Employee injured his left knee. Supervisor:
## 7844 5/5/2011 11:24 am (barnes) employee "marks" had trailer jacked up in the air to check brakes. He let the jack down and went to adjust the brakes. He had his left foot on rear wheel, when another employee inside the truck released the brake, causing
## 7845 5/5/2011 12:38 pm (barnes) employee removing trees and debris from roadway. At some point, employee came into contact with poison ivy/oak. Employee had rash on arms, hands ankles and legs. Supervisor: clyde e. Scott
## 7846 5/6/2005 02:31 pm (fblackmo) employee was climbing out of dump truck bed when the top of the wooden rail broke causing employee to fall to the ground. Employee felt pain in his lower back area. Supervisor: retha leigh
## 7847 5/6/2005 10:40 am (fblackmo) employees right elbow began swelling around 4:00 p. M. On 04/11/2005. He states that throughout the night it continue to swell and bruise. It was thought to be a insect bite. He went to the doctor on 04/12/2005 as was told
## 7848 5/6/2005 10:59 am (fblackmo) employee and another co-worker was lifting an oak block (blocks used to lift vessels out of water) when, he felt pain in his lower back area. Supervisor: raymond paul brown 5/11/2005 03:00 pm (gwhite) authorized visit
## 7849 5/6/2005 11:47 am (fblackmo) employee was helping to install concrete pipe when, he felt pain in his back. Supervisor: not stated on 19
## 7850 5/6/2005 12:00 pm (fblackmo) employee was attempting to remove wheels from dump truck. He was unable to brake one lug loose, he was going to lower the truck back to the floor to loosen the lug. In doing so he did not realize that the jack handle was u
## 7851 5/6/2009 08:28 am (fblackmo) jack williams (co-worker) was using a weedeater with a bush blade to clean around shoulder drain. The weedeater kicked back and struck Mr. Reamey on his left leg. Supervisor: w. T. Garrett
## 7852 5/6/2009 08:39 am (fblackmo) employee was walking into work when, she fell in parking lot. Supervisor: theresa taylor
## 7853 5/6/2009 09:06 am (fblackmo) employee was going to spot weld metal in corner of frame. Wire from the welder gun went by metal and wire went through employees glove and punctured his left index finger. Supervisor: w. M. Harrell
## 7854 5/6/2009 09:21 am (fblackmo) employee was picking up trash on the road side when, he noticed that he was bleeding from a small hole on right side of abdomen area. Supervisor: a. G. Hunter
## 7855 5/6/2009 09:46 am (fblackmo) employee was sawing lumber with a circular saw when, a piece of debris went underneath his glasses and got into his left eye. Supervisor: kenneth l. Clark
## 7856 5/6/2009 09:56 am (fblackmo) employee was distributing signs in high grassy areas most of the day in several locations in wayne county. He was not aware of the tick bite until early saturday (4/18/09), he noticed redness and swelling on left side of h
## 7857 5/6/2009 10:15 am (fblackmo) employee and two inmates was cleaning msd compartment. No deck plates were in use. Employee and inmates were walking across angle iron when, employee slipped and fell on his right hip. Supervisor: marshall coleman 8/13/20
## 7858 5/6/2009 11:44 am (slee) employee was driving to work and saw another truck approaching in his lane. Employee went to the shoulder but other driver never turned back and struck sov head on. 5/20/2009 09:23 am (lvaughan) injured: l-arm, r-knee,
## 7859 5/7/2007 01:01 pm (speedin) employee was driving in the left lane on 5th st. (a two lane, one way street) in lexington when the other driver in the right lane tried to make a left turn and turned into her. The other driver hit the passenger door of Mrs
## 7860 5/7/2007 01:23 pm (speedin) employee was replacing sign post and was using hand held post hole diggers to dig hole. There was a flexible fiberglass right of way stake adjacent to hole. As employee went down with digger his left little finger scraped a
## 7861 5/7/2007 02:19 pm (speedin) employee was removing the hydraulic hose clamps to reconnect hose to fitting. While removing the clamp, Mr Haynes' knife slipped, cutting his thumb. Supervisor: willie robinson 5/7/2007 02:43 pm (speedin)
## 7862 5/7/2007 03:40 pm (speedin) employee was backfilling around dig out with shovel a white panel van came across center line and his mirror hit derrick on right upper shoulder breaking mirror off of private vehicle supervisor: kevin hazelwood
## 7863 5/7/2007 04:05 pm (speedin) employee was attempting to replace a missing top bolt on a wrong way sign, sign flipped over, striking employee on left hand, resulting in a deep laceration between thumb 7 forefinger. Supervisor: j. A. Ridge
## 7864 5/7/2007 10:57 am (fblackmo) employee claimed that he pulled a muscle and hurt his side while attempting to change a filter. Supervisor: ricky davis
## 7865 5/7/2008 07:52 am (blgay) employee was clearing brush from the roadside and got into poison oak. Supervisor: jason joyce
## 7866 5/7/2008 08:21 am (blgay) employee was getting out of vehicle and twisted left knee off of last step. Supervisor: barry taylor
## 7867 5/7/2008 08:32 am (blgay) employee was trying to climb down an embankment to drive a white top stake when she slipped, causing her to slide down the embankment and injuring left leg and side. Supervisor: franklin hodges
## 7868 5/7/2010 02:15 pm (fblackmo) employee was walking down the hallway holding a cup of tea. Tea spilled from her cup causing her to trip on the floor. Employee felt pain in her left ankle/foot. Supervisor: david foster 04/21/2011 08:27 am (proberts)
## 7869 5/7/2010 10:49 am (fblackmo) employee was pulling onto shoulder of road to pick up a tire when private own vehicle struck the state vehicle. Employee felt pain in his back. Supervisor: sarah g. Foster
## 7870 5/7/2010 11:10 am (fblackmo) employee put was putting sign in back of vehicle when he cut his right hand on the fiberglas. Supervisor: d. Bret henson
## 7871 5/7/2010 11:22 am (fblackmo) employee was struck on right index finger by a wire that was sticking out of a piece of rubber recap. Employees finger became infected. Supervisor: terry pugh
## 7872 5/7/2010 11:40 am (fblackmo) employee was tapping hole in piece of stainless steel angle. Angle was secured in vice. Tap broke causing laceration to left wrist. Supervisor: marshall coleman
## 7873 5/8/2006 02:07 pm (fblackmo) employee was walking on fender when, he slipped and fell onto the trailer striking h is left leg. Employee was loading pipe to be hauled to job site. Supervisor: r. I. Matthews
## 7874 5/8/2006 02:19 pm (fblackmo) employee was picking up concrete blocks off ground when, he felt pain in his lower back area. Supervisor: john parker
## 7875 5/8/2006 02:39 pm (fblackmo) employee was using a hand tool pick to dig out for a mud seal. The pick hit a rock, jumped from the rock hitting his boot, causing the injury to his right foot. Supervisor: jimmy hildreth
## 7876 5/8/2009 01:27 pm (blgay) employee was pushing asphalt in front of wheel spread and lost his balance. The wheel spread ran up the top of his left foot, causing a contusion. Supervisor: l. S. Blankenship
## 7877 5/8/2009 01:58 pm (blgay) employee was on a walking squad picking up trash on state road 1412, when he knees and hip began to hurt after walking about 5 miles. The next day the pain was much worse after walking 6 miles. Employee could not move left le
## 7878 5/8/2009 02:21 pm (fblackmo) employee was prying off soap dispenser in restroom with two pocket knives when, the plastic cut his both thumbs. Supervisor: k. J. Kim
## 7879 5/8/2009 11:49 am (fblackmo) employee was picking up litter on nc 35 when, his right foot got caught in small vine while stepping. Employee felt pain in the top of his right foot. Supervisor: g. W. Rose
## 7880 5/9/2007 01:20 pm (fblackmo) employee was climbing on top of fuel truck to verify fuel tank was empty when, his foot slipped on step causing injury to right knee. Supervisor: jimmy tuck
## 7881 5/9/2007 09:16 am (fblackmo) employee was flagging traffic when, car came by and slung gravel/foreign object into his left eye. Supervisor: frankie davis
## 7882 5/9/2007 09:27 am (fblackmo) employee was using a jack on the tar kettle. The handle broke causing his left shoulder to go forward and out of place. Supervisor: shelton james 6/14/2007 04:01 pm (lvaughan) dx on 4/26/07 as acute cervical strain 4
## 7883 5/9/2007 09:38 am (fblackmo) employee was conducting a road test when, customer was attempting to do a three point turn, the vehicle jump the curve. Employee felt pain in her lower back, left shoulder, and neck causing from the jerking motion. Supervi
## 7884 5/9/2007 10:03 am (fblackmo) employee was conducting a road test when, customer made a left turn into on coming traffic and was struck by another car. The air bag deployed striking employee in the face and chest area. Employee experience contusion to
## 7885 5/9/2007 10:21 am (fblackmo) employee was supervising a crew picking up dirt on the shoulder of the road operation when, he felt pain in his right foot. Supervisor: b. N. Braswell 6/20/2007 10:18 am (fblackmo) can not pay any bills "see memo da
## 7886 5/9/2008 09:40 am (fblackmo) employee and another were loading h-piles onto a trailer with a forklift. As employee was sliding beams over, two of his fingers on his left hand was smashed between the two beams. Supervisor: charles w. Garris, jr
## 7887 6 patients were fighting and when trying to separate them--felt pain in back.
## 7888 6% ppd thumb Dr Kirkland 7/5/2006 forms 26a completed 5/19/9
## 7889 6/1/2004 10:23 am (fblackmo) employee walked down the workzone moving the cones away form the centerline of the road had turned and was walking back to his truck and crew (facing traffic} when a motor home crossed the centerline into the work area str
## 7890 6/1/2005 02:53 pm (blgay) employee was subjected to loud noises for long periods of time while working for dot for 30 + years. Supervisor: greg godwin 6/1/2005 03:26 pm (blgay)
## 7891 6/1/2005 08:30 am (blgay) employee was pushing gate open. The gate is large and he had to push very hard to open it. Employee said he felt a pull in his right leg near the calf muscle. Employee worked all day but the leg continued to bother him and he
## 7892 6/1/2005 08:56 am (fblackmo) employee was riding in passenger seat of dump truck, moving from the salt spreader shed to the upper parking lot. Driver of the dump truck was attempting to slide a recently installed tank further into the bed of the truck
## 7893 6/1/2005 12:23 pm (blgay) employee was picking up ramps on trailer and felt muscle pull in lower back. Supervisor: john t. Bivins
## 7894 6/1/2006 09:23 am (fblackmo) employee felt pain in her right hand and arm. Repetitive keying. Supervisor: carol ann smith *can not pay any bills for this claim*
## 7895 6/1/2006 10:03 am (fblackmo) employee tried to unhook tarp from rear of truck. Tarp frame was hung on tailgate hinge. When released it catch his thumb between tarp frame and tailgate hinge, cutting his left thumb. Supervisor: henry kirk
## 7896 6/1/2007 02:29 pm (speedin) employee was getting out of tandem dump truck and stepped on the edge of rock and turned his ankle. Supervisor: e. W. Spivey
## 7897 6/10/2005 10:21 am (fblackmo) employee states while inspecting a rock fill operation a flying rock struck him on the upper lip. Supervisor: r. E. Shulters
## 7898 6/10/2005 10:33 am (fblackmo) employee was driving a dump truck hauling rip rap to job sight, went to step out of truck and lost his foot. Employee tried to catch himself and injured his right shoulder. Supervisor: randy ledford
## 7899 6/10/2005 10:43 am (fblackmo) employee was weed eating along the guardrail on I-40 when, he came into contact with several types of vegetation. The vapors from the vegetation got onto employees skin and caused a rash and swelling. Supervisor: k. King
## 7900 6/10/2008 08:40 am (fblackmo) employee was welding on m/v neuse. Employee was standing on the grid and slipped while moving. Employee felt pain in his left leg. Supervisor: marshall coleman
## 7901 6/10/2008 08:57 am (fblackmo) employee lost footing on a steep slope and fell and rolled into a fence striking head. The collision caused a laceration to his head. Supervisor: brian davis
## 7902 6/10/2008 09:07 am (fblackmo) employee tripped over the corner of a box that was sticking part way out from underneath a table. Employee bruised both knees. Supervisor: james budday
## 7903 6/10/2008 09:19 am (fblackmo) employee was attempting to remove a bearing from a mower using a hammer and chisel. Employee was striking the chisel with the hammer when, a chip flew into his left forearm. Supervisor: william riggs
## 7904 6/10/2008 09:29 am (fblackmo) employee was pulling on prop and pulled a muscle in chest area. Supervisor: dewhurst
## 7905 6/10/2008 09:59 am (fblackmo) employee was in closed travel lane inspecting asphalt when, she stood up, she was struck in the head (side of face) by a mirror from a pilot turck. The truck crossed the double yellow lines. Supervisor: johnny metcalfe
## 7906 6/10/2008 10:11 am (fblackmo) employee leaned on polished table surface when, he slipped striking mouth on desk breaking front tooth. Supervisor: s. H. Kinner
## 7907 6/10/2008 10:23 am (fblackmo) employee was rotating boom to the right when, his left finger was caught between the basket and steel beam. Supervisor: michael mcneese
## 7908 6/10/2008 10:35 am (fblackmo) employee went to worksite to remove a bent track guide on an excavator. The bolts were so tight that he pat a 3' pipe on his pull bar, laid down on his back, scorched his feet against the track assembly for leverage, and
## 7909 6/10/2008 10:55 am (fblackmo) employee was placing pieces of concrete into the back bucket of the backhoe and smashed right index finger between the piece of concrete and the bucket. Supervisor: greg vinson
## 7910 6/10/2008 11:07 am (fblackmo) employee was flagging traffic on nc 111/222 in wilson county for work being performed on culvert 131. Employee was wearing his safety glasses during flagging operation but had removed them to wipe dirt and sweat from his
## 7911 6/10/2008 11:19 am (fblackmo) employee was inspecting on the tyrrell county job in close proximity to woods and grassy areas. Employee did not find tick until the next morning of 05/07/2008, he felt it biting him on his right leg on the backside of hi
## 7912 6/10/2008 11:31 am (fblackmo) employee was working on guard rail when, rail hit his right leg. Supervisor: thomas singleton
## 7913 6/10/2008 12:48 pm (fblackmo) employee was stopped at a signal waiting for a green indication. A privately owned vehicle approaching from behind failed to stop, hitting sov in the rear. Employee felt pain in back and neck area. Supervisor: andy brown
## 7914 6/10/2008 12:58 pm (fblackmo) employee developed symptoms common with a tick bite. Employee sought medical treatment on 05/27/2008 (tick bite was not found). Employee often is in the field performing tasks in a wooded area. Employee has a rash on neck
## 7915 6/10/2009 09:11 am (blgay) employee was attempting to remove brush and fallen tree from roadway, when he felt a stabbing pain in his lower back and couldn't move without pain. Supervisor: thomas hall
## 7916 6/10/2009 09:39 am (fblackmo) employee was in the passenger side of vehicle riding to a project with his supervisor, a vehicle backed out in front of the dot vehicle. Employee put his left arm on the dash bracing h himself which lead to injury. Employ
## 7917 6/10/2009 09:52 am (fblackmo) employee was in the process of removing broken hydraulic fitting under truck for repair, fitting broke, and wrench slipped ricocheting off the frame. Wrench hit employee in the mouth breaking both front teeth. Supervisor:
## 7918 6/10/2009 10:11 am (fblackmo) employee was conducting inspections in slope area when, he stepped in a hole causing injury to right ankle. Supervisor: j. D. Allen
## 7919 6/10/2009 11:17 am (fblackmo) employee was climbing down ladder into the exhaust void on the m/v frisco. Employee slipped on last two steps causing injury to his right knee. Supervisor: marshall coleman
## 7920 6/11/2004 11:39 am (fblackmo) employee was using pavement breaker to break asphalt over drain hole on bridge deck when, he felt pain in his lower back. Jimmy marler was notified on 04/28/2004. Supervisor: j. L. Cheek
## 7921 6/11/2004 11:57 am (fblackmo) employee states while holding pipe over manhole he, felt pain in his back. Supervisor: randy pace
## 7922 6/11/2004 12:07 pm (fblackmo) employee states while removing a hand roller from bed of pickup truck the handle struck him on the nose. Supervisor: j. L. Rhodes
## 7923 6/11/2004 12:17 pm (fblackmo) employee states door on toilet stall fell striking employee on her ankle. Supervisor: doug elliott
## 7924 6/11/2004 12:28 pm (fblackmo) employee states while flagging traffic he stepped back to reposition himself when, he felt pain in his back. Supervisor: bubba r. Johnson
## 7925 6/11/2004 12:39 pm (fblackmo) employee states while walking from main deck he slipped and fell down a ladder causing the injury to his back. Supervisor: jerry w. Gaskill
## 7926 6/11/2004 12:49 pm (fblackmo) employee was pulling cab le on lcu when, he felt pain in his lower back. Supervisor: g. J. Vonsuskil
## 7927 6/11/2009 07:58 am (blgay) employee was using jackhammer to remove broken concrete steps for repair. Employee said when he picked up jackhammer for use he felt pain in lower to midback. Supervisor: w. R. Wall
## 7928 6/11/2009 08:45 am (fblackmo) employee states that during his concrete re-certification class he was injured while trying to lift concrete. He felt pain in his groin area. Supervisor: phillip gurganus
## 7929 6/11/2010 01:59 pm (fblackmo) employee broke out into hives and welts while at work. The cause was stated as "unknown". Supervisor: mike jefferys
## 7930 6/11/2010 02:11 pm (fblackmo) employee was spraying plant bed when he was bitten by a spider on top of his left foot. Supervisor: ted burns
## 7931 6/11/2010 02:22 pm (fblackmo) employee was gpsing a stream when stepped over a stream he tripped and stumbled forward landing on his knees and arms jarring left shoulder. Supervisor: rachelle beauregard
## 7932 6/12/2006 02:31 pm (fblackmo) employee was going to unload the boom truck when, he mounted the truck he felt pain in his neck area. Supervisor: larry d. Scruggs
## 7933 6/12/2006 02:42 pm (fblackmo) employees neck was strained during defensive tactics training. Supervisor: s. Watkins
## 7934 6/12/2006 03:11 pm (fblackmo) employee was weed eating and came into contact with poison ivy. After several weeks, the initial rash became severe and required medical attention. Supervisor: doug martin
## 7935 6/12/2006 03:23 pm (fblackmo) employee was checking stick on grade side when he, stepped off the paver and landed in a hole falling, twisting his left ankle and foot, landing on right hand. Supervisor: randy mckinney
## 7936 6/12/2007 01:17 pm (speedin) employee was working on us220-bypass cutting under brush with a chainsaw thorns struck and lodges into his left hand and fingers. Mr. Medlin stated that he removed the thorns and his left index finger began to swell. Super
## 7937 6/12/2007 02:24 pm (speedin) employee was driving a state dump truck and the truck failed to break following a lower private vehicle and rear ended the private vehicle that vehicle was moving slowly as if the driver was looking for a house address. Su
## 7938 6/12/2007 03:09 pm (fblackmo) employee was bending to check motorcycle trailer when, he struck his head on top of the trailer door. Supervisor: g. F. Butler
## 7939 6/12/2007 04:14 pm (fblackmo) employee was repositioning tailgate to keep it from getting scratched when, he felt pain in his back. Supervisor: james bell
## 7940 6/12/2007 04:28 pm (fblackmo) employee struck his right elbow on beam when, the chain from hoist and trolley rolled off the overhead beam. Supervisor: danny lewis
## 7941 6/12/2007 05:05 pm (fblackmo) employee was working on bus brakes when, he felt pain in his lower back. Supervisor: danny lewis
## 7942 6/12/2007 12:31 pm (speedin) employee was filling the hydroseeder employee struck right wrist on the bottom of woven wire fence that was a 3. 5 foot from the ground, while attempting to crank the pump. Supervisor: keith blazer
## 7943 6/12/2008 11:28 am (fblackmo) employee was making repairs to guide rail. Employee was knocked down by backhoe boom. The backhoe proceeded to back over employee. Supervisor: travis mintz
## 7944 6/12/2009 03:09 pm (fblackmo) employee was working on paint guns on pre-line truck. Went to crank compressor and stepped on un-even pavement resulting in ankle injury. Supervisor: paul marak
## 7945 6/12/2009 03:19 pm (fblackmo) employee was conducting a road test, upon returning to the office, her customer was parking the vehicle, stopped in a parking space, and step on the gas. Vehicle hit the driver license office building. Employee states tha
## 7946 6/12/2009 09:15 am (blgay) employee was unloading files from trunk of his car, when a large number of fire ants climbed onto his shoe and sock. When employee got inside his office, the ants began to bite (sting) him. Employee had an allergic reaction.
## 7947 6/13/2005 01:59 pm (slee) pov failed to stop at stop sign and hit sov on drivers side at rear door and truck bed area. Both were checked out for injuries and released same day.
## 7948 6/13/2005 02:08 pm (fblackmo) employee hit boulder buster with his right hand to loosen and unscrew the boulder. Supervisor: w. D. Watkins give bills to geri white for review before going over to corvel review
## 7949 6/13/2005 02:24 pm (fblackmo) employee was locking trailer top back in place when, the handle pinched his left hand. Supervisor: greg frye
## 7950 6/13/2005 02:50 pm (fblackmo) employee was stopped at stop sign when, he was struck in the driver side front fender left wheel area by another vehicle. Supervisor: ann lorscheider.
## 7951 6/13/2005 04:40 pm (fblackmo) employee was walking from the dmv to the secu across the street. She went out the front entrance and started out on the pavement. Employee fell at the end of the entrance to the dmv catching herself with her hands, scrapi
## 7952 6/13/2005 12:11 pm (fblackmo) employee was shoveling asphalt when, he fell in a hole causing the injury to his left ankle. Supervisor: patrick norman
## 7953 6/13/2005 12:24 pm (fblackmo) employee was climbing down ladder when, the ladder fell catching his right leg. Employee felt immediate pain in his right knee area. Supervisor: kevin d. Smith
## 7954 6/13/2005 12:35 pm (fblackmo) employee stepped out of truck into a hole causing the injury to his right ankle. Supervisor: dale loflin
## 7955 6/13/2007 08:54 am (fblackmo) employee had been grinding paint off truck when, he felt pain in his lower back. Supervisor: hosea blount
## 7956 6/13/2007 09:10 am (fblackmo) employee was conducting a survey when, branch hit him in his right eye. Supervisor: cadmus capehart 8/15/2007 08:55 am (fblackmo) there is a duplicate of event numbers(ev2007042867) but only one claim number.
## 7957 6/13/2007 09:45 am (fblackmo) employee was helping equipment shop technician torque lug nuts on new lowboy trailer, while applying pressure torque slipped off of lug nut causing employee to fall on side of trailer cutting his right cheek. Supervisor: m
## 7958 6/13/2007 09:59 am (fblackmo) employee was directing dumping of asphalt from a dump truck into the hopper of the leeboy paver. Employees left hand was resting on the hopper. The leeboy operator raised hopper and the end of malons little finger got cau
## 7959 6/14/2004 02:16 pm (fblackmo) employee states he reached for something to grab to keep from falling when, the injury occurred to his left ring finger. Supervisor: j. P. Taylor
## 7960 6/14/2004 02:27 pm (fblackmo) employee states while pulling on cart full of clothing she, felt pain in her right knee area. Supervisor: e. M. Farrow
## 7961 6/14/2004 02:36 pm (fblackmo) employee was attempting to put up loose gravel sign when, the driver caught the edge of post striking him on the head. Supervisor: ronnie minton
## 7962 6/14/2004 02:49 pm (fblackmo) employee states he was walking carrying tools when, he tripped over cat head causing the injury to multiple body parts. Supervisor: deul f. L mikeal
## 7963 6/14/2004 03:11 pm (fblackmo) employee was helping to secure a load that had fell in the middle of road when, he felt pain in his right wrist. Supervisor: d. S. Lee
## 7964 6/14/2004 03:41 pm (fblackmo) employee was filling in holes at bridge # 3 when, he came into contact with poison ivy. Supervisor: quindale bullard
## 7965 6/14/2004 03:51 pm (fblackmo) employee was lifting and pushing boxes of drivers license manuals when, he felt pain in his left shoulder. Supervisor: r. E. Vandiford
## 7966 6/14/2004 04:07 pm (fblackmo) employee states while doing firearms training he cut his right hand. Supervisor: lt. Barry cross
## 7967 6/14/2004 11:28 am (fblackmo) employee was working under a truck when, he hit his arm on a bracket causing the injury to his right forearm. Supervisor: david bowers
## 7968 6/14/2004 11:42 am (fblackmo) employee states while cutting trees he came into contact with poison ivy. Supervisor: m. B. Smith
## 7969 6/14/2004 12:11 pm (fblackmo) employee states he was bitten by a tick on his left hand. Supervisor: a. R. Gay
## 7970 6/14/2004 12:35 pm (fblackmo) employee states he found a tick on his naval area while erecting road signs. Supervisor: r. T. Moore
## 7971 6/14/2004 12:45 pm (fblackmo) employee was walking up a ditch embankment to cross when, he felt pain in his lower right leg. Supervisor: l. T. Williford 6/16/2004 10:45 am (sshort) concentra dictation notes: site of sprain/strain ankle
## 7972 6/14/2006 09:27 am (fblackmo) employee was pulling limbs out of mowing pattern, she had found a couple of ticks on her clothes. Later she found a tick on the back of her head. Supervisor: larry lovingood
## 7973 6/14/2006 09:40 am (fblackmo) employee fainted. Temp 79/50 humidity 83%. Supervisor: aj crumpler
## 7974 6/15/2004 08:10 am (fblackmo) employee states he bent down to pick up monitor from off the floor when, he felt pain in his back. Supervisor: scott hidden
## 7975 6/15/2004 08:21 am (fblackmo) employee was picking up an axe head when, he cut his left hand. Supervisor: ken presson
## 7976 6/15/2004 08:32 am (fblackmo)employee was removing boss from loader bucket, torch grease in loader pin, burning employee on left side of face. Supervisor: jimmy ammons
## 7977 6/15/2004 08:54 am (fblackmo) employee was moving file cabinet with the assistance from another employee when, he pinched his 3rd finger on left hand. Supervisor: s. J. Gupton
## 7978 6/15/2004 10:20 am (fblackmo) employee states he was diagnosed with environmental asthmatic bronchitis and herpes dendritic keratitis. Supervisor: not stated keyed information from form 18. 11/6/2006 01:38 pm (fblackmo) claim closed. Clinched
## 7979 6/15/2005 01:39 pm (blgay) employee was crossing hatteras inlet in work boat, outboard hit swell, wind caught buoy. Buoy went into water pulling attached danforth anchor into employee, causing a laceration to the right leg. Supervisor: h. F. O'neal
## 7980 6/15/2005 03:07 pm (blgay) employee was removing debris from the bridge span. A car drove past employee. The passengers in the car threw an object hitting him in the back. Supervisor: franklin s. Granda
## 7981 6/15/2005 10:23 am (blgay) employee was working in an infested tick area. Tick bite - tick was embedded on right leg at knee. Employee was using 100% deet at time of bite. Supervisor: john l. Mcdonald.
## 7982 6/15/2005 11:17 am (blgay) employee became sick while inhaling foul stench coming from air ducts. Supervisor: marlene fletcher
## 7983 6/15/2005 11:42 am (blgay) employee became sick while inhaling foul stench coming from air ducts. Employee was at her cubicle when dizziness occurred. Supervisor: jilda mcgee
## 7984 6/15/2005 12:02 pm (blgay) employee became sick while inhaling foul stench coming from air ducts. Supervisor: marlene fletcher
## 7985 6/15/2005 12:27 pm (blgay) employee felt chest pains while working. Supervisor: henry sturdivant
## 7986 6/15/2006 03:05 pm (fblackmo) employee was cutting a bundle of posts to get supplies when, the last ban was cut the first stack fell forward hitting the top of employees foot. Supervisor: jason leonard
## 7987 6/15/2006 03:16 pm (fblackmo) employees left thumb was smashed between tailgate and latch on rear fender. Supervisor: henry rich
## 7988 6/15/2006 03:29 pm (fblackmo) employee was helping make repairs to a sign post. He was standing about three feet off the ground on a buck scaffold and was using a come along when, the handle slipped and he lost his balance, falling backwards on his hea
## 7989 6/15/2006 03:40 pm (fblackmo) employee stated that the paint crew was in the process of loading 30 gallon paint barrels on the supply truck for the days painting activities. Employee was assisting another employee with straightening the barrel when, h
## 7990 6/15/2007 02:36 pm (speedin) employee was doing a road test customer started to pull out in front of car. Exam brown told her to stop when she did she put vehicle in reverse and backed into vehicle behind them. Supervisor: ginger silby
## 7991 6/15/2007 03:14 pm (speedin) employee was driving motor grader when pov hit back of motor grader causing neck strain. Supervisor: l. M. Burke
## 7992 6/15/2007 03:40 pm (speedin) employee was mounting tire on back of thermolay truck. He spent the tire on the hub to align studs with wheel when the wheel caught the stud coming to a sudden stop causing him to strain his back. Supervisor: r. E. Goins
## 7993 6/15/2010 11:05 am (fblackmo) employee was climbing up stairs when he fell forward. Employee felt pain in his right hand and elbow, lower back and shoulders, neck, and knees. Supervisor: betsy strickland
## 7994 6/15/2010 11:23 am (fblackmo) employee was sitting at his desk when a fluorescent bulb fell from fixture and struck employee on top of his head. Supervisor: leon gross
## 7995 6/15/2010 11:36 am (fblackmo) employee was removing a tarp from dump truck when the spring broke causing cut to his right hand. Supervisor: russell ramsey
## 7996 6/15/2010 11:48 am (fblackmo) employee was underneath truck during pm greasing chassis when he was bitten on his right ear by insect. Supervisor: thomas collins
## 7997 6/15/2011 02:27 pm (fblackmo) employee, found a tick on the center of his back. Supervisor: s. H. Kinner
## 7998 6/15/2011 12:28 pm (fblackmo) employee was operating a tandem dump truck on an operation to repair a low radius. While waiting to dump, employee noticed some material on the edge of the bed board. He climbed on the side of the bed and pushed material
## 7999 6/16/2006 08:15 am (fblackmo) employee was walking to the office along a sidewalk and while walking down steps, she rolled her ankle and fell. Supervisor: r. D. Tuttle
## 8000 6/16/2006 08:29 am (fblackmo) employee was maintaining the yard when, he cut into poison oak. Supervisor: barry kizziah
## 8001 6/16/2008 02:41 pm (fblackmo) employee was placing strap on tarp of dump truck when, hole on tarp broke causing him to fall backwards injuring his lower back. Supervisor: f. F. Miller
## 8002 6/16/2008 02:52 pm (fblackmo) employee was helping another employee cut a 4x8 piece of plywood when, his side slipped, he tired to catch it, and felt pain in his left shoulder. Supervisor: paul pagani
## 8003 6/16/2008 03:02 pm (fblackmo) employee was stepping out of van onto the edge of the pavement, twisting his left ankle. Supervisor: carlis smith
## 8004 6/16/2008 03:11 pm (fblackmo) employee was stepping off of curb onto pavement when, his heel got caught in a hole causing him to lose his balance and twist his right knee. Supervisor: carlis smith
## 8005 6/16/2008 03:23 pm (fblackmo) employee was weed eating when, the string picked up a rock, the rock hit the guard rail, bounced off rail striking employee on tooth. Supervisor: kenny hicks
## 8006 6/16/2008 03:54 pm (fblackmo) employee was getting gps locations when, he came into contact with poison ivy while standing in ditch. Supervisor: carlis smith
## 8007 6/16/2008 11:41 am (blgay) employee was driving home from work when he felt a sting on the left part of his lower back. When he got home, he was preparing to shower when he found that a tick had fastened itself to his lower back. Supervisor: c. R. Whit
## 8008 6/16/2008 11:51 am (blgay) employee was standing on footer pulling on suction hose along with two other people. Employee lost his footing and fell two feet to ground inside of footer, causing him to twist his left ankle. Supervisor: mark newton
## 8009 6/16/2008 12:04 pm (blgay) employee was in the process of cutting and chipping limbs from the right of way, when employee came in contact with poison oak. Employee was wearing safety glasses, gloves and pre-treatment of technu, but outbreak still occu
## 8010 6/16/2008 12:18 pm (blgay) employee was working with the division maintenance mechanic on a project for road oil facility. Employee picked up paneling that had just been cut to put it into place around the door opening. While employee was putting the
## 8011 6/16/2008 12:30 pm (blgay) employee was getting out of bed of dump truck, when he stepped on rail on the side of the truck and his foot slipped, causing him to fall to the asphalt road. Employee was taken to the doctor, where he was diagnosed with a f
## 8012 6/16/2008 12:49 pm (fblackmo) employee had returned to work from having hip surgery on 1/07/08. Employee states that she could not pull the big chair from side to side, therefore, she chose to stand up while doing her duties. She states that standing
## 8013 6/16/2010 09:00 am (fblackmo) employee was using aquatic gps aviation navigation with antenna attached to side of boat when the boat flexed. Employee injured his right elbow when he fell out the seat while trying to retrieve the antenna. Supervisor: l
## 8014 6/16/2010 09:22 am (fblackmo) employee was driving a stand up fork lift when he took his hand off the controls. The lift veered toward a wall causing employee to scrape his left arm. Supervisor: mike jefferys
## 8015 6/16/2010 10:16 am (fblackmo) employee was checking a problem with a cross line pipe when his feet got tangled in vines causing him to slip and fall. Employee felt pain in his left shoulder and arm. Supervisor: johnny ransdell
## 8016 6/17/2004 03:52 pm (fblackmo) employee states while pulling vegetation out of storm drain he, felt pain in his back. Supervisor: w. T. Teague
## 8017 6/17/2004 04:04 pm (fblackmo) employee states while cutting right of way when, he fell causing the injury to his right shoulder. Supervisor: jerry green
## 8018 6/17/2004 04:12 pm (fblackmo) employee states while picking up sign to make repairs when, debris particles fell from the sign into his right eye. Supervisor: g. W. Williams
## 8019 6/17/2004 04:23 pm (fblackmo) employee was weed eating on grounds when, he came into contact with poison ivy. Supervisor: curtis r. Barnhill
## 8020 6/17/2009 08:05 am (blgay) employee was conducting a road test for drivers license. Customer pulled over to the right and hit a drain ditch, jumped the curb, and hit the curb so hard it busted the tire. Road conditions were dry, over cast day. There w
## 8021 6/17/2009 08:18 am (blgay) employee was stopped waiting on another vehicle to turn, when the truck employee was driving was rear ending, injuring his right shoulder. Supervisor: james dietrich
## 8022 6/17/2009 08:35 am (fblackmo) employee was pulling on asphalt lute while working with asphalt. He felt pain in his groin area. Supervisor: b. N. Braswell
## 8023 6/17/2009 08:47 am (fblackmo) employee states that during rescue boat drill, cradle release handle pinned his pinky finger between cradle and strap release causing injury. Supervisor: h. C. Scarborough
## 8024 6/17/2010 03:09 pm (fblackmo) employee was trying to remove the secondary road numbers off a wood post with two hammers when, a piece of the hammer broke striking her in the chest. Supervisor: jim evans
## 8025 6/17/2010 03:37 pm (fblackmo) employee was surveying in wooded area when, he was bitten by a snake on his left forearm. Supervisor: r. L. Ketter jr
## 8026 6/18/2004 01:08 pm (fblackmo) employee states while climbing up onto truck bed he, struck his left leg. Supervisor: howard elliott
## 8027 6/18/2004 01:17 pm (fblackmo) employee was stepping off trailer when, she felt pain in right ankle. Supervisor: j. S. Roller
## 8028 6/18/2004 01:31 pm (fblackmo) employee was using air drill when, air line came off striking him on the head. Supervisor: j. D. Fuller
## 8029 6/18/2004 07:39 am (fblackmo) employee was putting a piece of metal in asphalt machine when, he dropped the metal bar on his fingers. Supervisor: d. Holton
## 8030 6/18/2004 08:26 am (fblackmo) employee was stepping off truck when, his foot slipped causing him to fall and injury his lower back. Supervisor: jerome locklear
## 8031 6/18/2004 08:43 am (fblackmo) employee states while stepping down from rubber tire excavator he, felt pain in his right ankle. Supervisor: j. Ronald lee
## 8032 6/18/2004 08:55 am (fblackmo) employee states while removing tire from tractor he came into contact with poison ivy. Supervisor: michael parsons
## 8033 6/18/2008 08:06 am (blgay) employee was pulling himself up on motor grader, when something popped in his left shoulder. Supervisor: b. T. Williams
## 8034 6/18/2008 08:18 am (blgay) employee was weed eating and pulling weeds in plant beds, when he came in contact with poison ivy. Supervisor: ted r. Burns
## 8035 6/18/2008 08:34 am (blgay) employee was trying to remove shovel from side of dump truck bed that was sticking out from bed. Shovel handle had shifted and was lodged tightly between bars. When trying to remove shovel, the handle came loose abruptly and
## 8036 6/18/2008 08:51 am (blgay) employee was servicing tandem which was on inground vehicle lift. While checking for leaks on engine, employee stepped in hole where telescoping jacks are housed, resulting in employee falling and hitting head on concrete fl
## 8037 6/18/2008 08:58 am (fblackmo) employee was tarping load on dump turck, while climbing down from the truck she felt something pull in left middle area of her back. Supervisor: dale register
## 8038 6/18/2008 09:59 am (blgay) employee was getting out of crew cam pick up in parking lot on level paved surface and right knee gave out. Supervisor: wayne king
## 8039 6/18/2009 10:15 am (blgay) employee was driving dump truck, when he was bitten on the left side of his upper back by unknown insect or spider. Employee began feeling sick and dizzy. Inmate found employee slumped over the steering wheel unresponsive. 9
## 8040 6/19/2006 12:07 pm (fblackmo) employee stated while working craig road he was pushing on the tailgate of tandem dump truck to get mud from between tailgate and bed. The mud fell out, tailgate closed on his right hand. Supervisor: bill murrell 6/30
## 8041 6/19/2006 12:30 pm (fblackmo) employee was driving west on castle hayne road and pulled into the left turn lane when, private vehicle pulled out of a crown service station striking his vehicle on passenger side door area. Employees head hit window, an
## 8042 6/19/2008 08:02 am (blgay) employee was lifting a tamp off the pickup truck, when he felt a pull in his groin area. Supervisor: kevin hazelwood
## 8043 6/19/2008 08:24 am (blgay) employee was clearing storm debris, when employee came in contact with poison oak or ivy. Supervisor: charles f. Vick
## 8044 6/19/2008 08:37 am (blgay) employee was fixing to get pipe and move it by pushing it up the bank, when he twisted his right knee. Supervisor: hugh trexler
## 8045 6/19/2008 08:51 am (blgay) employee was stepping up on rear of trailer, when his right knee popped and then knee would not stand any weight. Supervisor: richard love
## 8046 6/19/2009 08:05 am (fblackmo) employee was walking through tall grass and stepped into fire ant hill. Employee was bitten on left ankle (highly allergic). Supervisor: lee stone
## 8047 6/19/2009 09:07 am (fblackmo) employee was cutting down a small tree on a slope at the nbl nash rest area. Employee was on the downhill side of the tree kneeling on his right knee in front of the tree. After the cut was complete, he took his hand off
## 8048 6/19/2009 09:46 am (fblackmo) employee was cutting plastic on m/v hatteras when, he cut his left thumb. Supervisor: thoams bowser
## 8049 6/2/2005 02:58 pm (blgay) employee was struck in the right eye with a section of briar line, when survey crew was cutting line with bush axes for possible clearing limits. Supervisor: allen mccoy
## 8050 6/2/2010 10:55 am (fblackmo) employee was transporting pain to the deck of the mv carterette using a hand cart. The gangway was narrow sot hat only the pain had to be transported by hand. Can hit gangway and splattered into his left eye. Supervisor: t
## 8051 6/2/2011 04:27 pm (barnes) employee was removing battery cable from a truck. As he stood on a step stool pulling the cable, he stepped onto the floor backing up causing him to trip over a floor jack. Employee landed on the floor injuring his left shou
## 8052 6/2/2011 10:53 am (barnes) employee was exiting his patrol vehicle at the ashville district office when his right knee popped causing him pain. Employee states that he has pain whenever he attempts to stand and walk. Employee injured right knee. Sup
## 8053 6/2/2011 11:59 am (barnes) employee was raking dirt and gravel on a driveway and felt his back give way. Employee stated that he felt something in lower back slip. Employee pulled a muscle in his lower back. Supervisor: sarah foster
## 8054 6/2/2011 12:23 pm (barnes) employee was moving an equipment blade and his left index finger was smashed between the blade and the building. Employee injured his left index finger. Supervisor: paul hunsucker
## 8055 6/20/2005 02:27 pm (fblackmo) employee was weed-eating behind a building on the maintenance yard. She stepped on a small pile of aggregate where she was working, which hid a 1ft. Square board that had nails in it. One of the nails went through her sho
## 8056 6/20/2005 02:46 pm (fblackmo) employee was getting in truck to go back to office for quitting time. Driver of tuck thought he was in, but employees leg was still outside of the truck. Employees left leg/knee was dragged on gravel and part of the road.
## 8057 6/20/2005 11:08 am (fblackmo) employee was removing screed from paver when, he felt pain in his back. Supervisor: j. R. Cook
## 8058 6/20/2005 11:19 am (fblackmo) employees right hand was caught in door while moving signs. Supervisor: m. E. Greene
## 8059 6/20/2005 11:31 am (fblackmo) employee was using a crank to raise mover when, the handle spun around striking his left hand. Supervisor: stonewall mathis
## 8060 6/20/2005 11:41 am (fblackmo) employee was exiting van when, another employee closed his fingers in door. Supervisor: hope mclamb
## 8061 6/20/2005 12:16 pm (fblackmo) survey crew was cutting line with bush axes for possible clearing limits. Employee was struck in the eye with a section of remaining briar. Supervisor: allen mccoy
## 8062 6/20/2005 12:29 pm (fblackmo) employee was assisting the harbinger bridge yard by flagging traffic. Employee told a private motorist that she was hot and having trouble breathing. The motorist brought her to the maple maintenance yard. The rescue squa
## 8063 6/20/2005 12:40 pm (fblackmo) employee was cutting trees when, he came into contact with poison ivy. Supervisor: s. G. Dillon
## 8064 6/20/2007 04:22 pm (fblackmo) employee was traveling to job site on nc 210 when a private own vehicle crossed center line striking state vehicle in front side fender. Employee cut his head and left arm. Supervisor: r. G. Crews
## 8065 6/20/2007 04:36 pm (fblackmo) employee was using jackhammer with asphalt blade breaking up asphalt, employee was attempting to relocate position of the blade when he accidentally placed jackhammer on right steel toe shoe. The jackhammer bounced off sh
## 8066 6/20/2008 08:42 am (fblackmo) employee was sitting on a stool at harnett tractor company waiting for parts when, he passed out. Employee fell off the stool and hit his head (right hand) causing laceration. Supervisor: ricky rogers
## 8067 6/20/2008 08:54 am (fblackmo) employee was cleaning trees and brush from job site when, a tick was found on her back. Supervisor: mike ennett
## 8068 6/20/2008 10:33 am (fblackmo) employee has been operating the excavator for three weeks maneuvering the joystick controls. This morning he awoke to a numb feeling in his right hand with pain running from his pointer finger down through his right wris
## 8069 6/21/2004 08:40 am (fblackmo) repetitive motion of typing and sitting. Supervisor: not stated keyed from form 18
## 8070 6/21/2004 08:59 am (fblackmo) employee states she felt pain in her back while going up stairs. Employee told thomas hackett of the problem on 6/1/2004. At approximately 3:15 pm she ask if she could leave early but did not mention any injury about he
## 8071 6/21/2005 08:48 am (fblackmo) employee was repairing potholes when he was bitten by a spider on his lower right leg. Supervisor: tasha n. Johnson
## 8072 6/21/2007 02:02 pm (fblackmo) employee came into contact with poison ivy while removing a tree out of road. Supervisor: shelton james
## 8073 6/21/2007 10:46 am (fblackmo) employee was sitting at her desk when, she was stung by a bee on her right leg. Supervisor: judy riley
## 8074 6/21/2007 11:27 am (fblackmo) employee was bitten by a spider while sitting at her desk on left elbow. Supervisor: melanie weisbeck
## 8075 6/21/2007 12:06 pm (fblackmo) employee slipped on mud in trench on roadway shoulder on us 264 off ramp causing injury to his left arm. Supervisor: boyd tharrington
## 8076 6/22/2004 08:57 am (fblackmo) employee states he was trying to shovel his way out of snow when, he felt numbness in his left arm shoulder area. Supervisor: m. R. Cox
## 8077 6/22/2004 09:11 am (fblackmo) employee state while tightening bolts on moldboard he mashed his center finger on right hand. Supervisor: d. W. Ashe
## 8078 6/22/2005 01:07 pm (fblackmo) a female traveler went to the sundays journal box to get a paper. When she opened the box she saw a wasp nest in the left corner. The wasp scared her and the door slammed shut without getting her paper. Employee put. 50 c
## 8079 6/22/2005 01:23 pm (fblackmo) employee had stopped at restaurant/convenient mart for lunch when, he tripped and fell as he began to walk up the handicap incline at the store entrance. Supervisor: joe parker
## 8080 6/22/2005 12:55 pm (fblackmo) employee was injured by entering vehicle, his head hit the top of the door frame. Supervisor: j. Hasty
## 8081 6/22/2006 10:06 am (fblackmo) employee stepped off a rug near a door onto a wet floor. She slipped, knee buckled, she fell. Supervisor: c. S. Mcdonald
## 8082 6/22/2006 10:18 am (fblackmo) employee was driving dump truck down road when, he ran off onto the shoulder and turned truck over. Employee felt pain in his upper back, left shoulder, and ankle. Supervisor: f. I. Davis
## 8083 6/22/2006 10:31 am (fblackmo) employee was hammering in the blacksmith shop when, he struck his wrist with the hammer. Supervisor: h. E. Worley
## 8084 6/22/2006 10:41 am (fblackmo) employee was walking to truck when, he slipped on wet work area. Employee felt pain on the face above right eye, right elbow, & arm. Supervisor: r. Cadmus capehart
## 8085 6/22/2006 10:57 am (fblackmo) employee was pulling weeds and had an allergic reaction. Supervisor: steve blake
## 8086 6/22/2006 11:06 am (fblackmo) employee was on back of "tool" truck and was reaching for sign stand when, he rubbed hand down the side of the rack made of 2 x 4 splinter went under the nail on his right hand. Supervisor: dwight eudy
## 8087 6/22/2006 11:18 am (fblackmo) employee was un-packing the new paint spray when, one of the panels fell over striking him on the right leg. Supervisor: jerry bagwell
## 8088 6/22/2006 11:32 am (fblackmo) employee was helping another employee lift a tamp onto back of crewcab when, he felt pain in his left arm. Supervisor: t. L. Ingle
## 8089 6/22/2006 11:41 am (fblackmo) employee was operating a chainsaw to clear a tree out of roadway. Another individual cut a limb of the tree and it struck employee in the head causing laceration. Supervisor: charles f. Vick
## 8090 6/22/2007 03:22 pm (speedin) employee was operating tractor. He was plowing & rotovating. Supervisor: clyde sneed
## 8091 6/22/2007 03:57 pm (speedin) employee said, while he was hanging up a sign, that the sign holder fell down and cut his right hand between his thumb and finger. Supervisor: marty swain
## 8092 6/22/2007 11:39 am (speedin) employee stated, " she noticed tingling sensation and occasional numbness in her fingers at work and after work. Examiner walton reported this incident on 5/24/2007 at approx. 4:50 p. M. "examiner walton also stated that sh
## 8093 6/22/2010 02:21 pm (fblackmo) employee caught his left hand in between the tailgate and chain while shoveling asphalt causing injury to his thumb. Supervisor: chad bandy 6/22/2010 02:30 pm (fblackmo)
## 8094 6/22/2010 10:08 am (fblackmo) employee was cutting trees when he came into contact with poison ivy on multiple body parts. Supervisor: darrell dean
## 8095 6/22/2010 10:22 am (fblackmo) employee was working on interstate when he came into contact with poison ivy on multiple body parts. Supervisor: loretta welborn
## 8096 6/22/2010 10:40 am (fblackmo) employee was helping another employee hang a sign when he lost his footing. Employee fell striking his head on the pavement. Supervisor: p. L. Eaker
## 8097 6/22/2010 10:53 am (fblackmo) employee was parking motor grader in grassy area while climbing down he stepped in a hole turning his right ankle. Supervisor: tim harris
## 8098 6/22/2010 11:05 am (fblackmo) employee was cutting trees when he came into contact with poison ivy on multiple body parts. Supervisor: darrell hildebran
## 8099 6/22/2010 11:26 am (fblackmo) employee was working with chainsaw when, he came into contact with poison ivy on multiple body parts. Loretta welborn
## 8100 6/22/2010 11:36 am (fblackmo) employee injured his back while trying to install a driveway pipe. Supervisor: warren brooks
## 8101 6/22/2010 11:52 am (fblackmo) employee was raking asphalt when, he stepped back off the shoulder falling into the mouth of a pipe. Employee felt pain in his right ankle
## 8102 6/22/2010 12:03 pm (fblackmo) employee found a tick on his left inner thigh while working on state road. Supervisor: b. G. Jordan
## 8103 6/22/2010 12:17 pm (fblackmo) employee was working in ditch when foreign matter got into his left eye. Supervisor: james lambert
## 8104 6/22/2011 01:03 pm (barnes) employee was climbing off the asphalt roller. As he bent down to pick up a rake, he felt a sharp pain in his lower back. Supervisor: t. A caldwell
## 8105 6/22/2011 03:09 pm (barnes) employee was traveling with windows open approaching I-85 overpass, when he felt a sting under his right eye (bottom lid). He noticed swelling of the bottom eye lid and became concerned due to bee allergy. The doctor confir
## 8106 6/22/2011 03:38 pm (barnes) employee found two ticks on the right and left side of his lower back. Supervisor: nanette fogleman
## 8107 6/22/2011 04:42 pm (barnes) employee was preparing to lift a five gallon bucket of water for the parts washer, and felt a pop and sharp pain in his right shoulder. Supervisor: e. D quintana
## 8108 6/22/2011 10:03 am (barnes) employee was repairing a bridge rail. He reported two ticks on him on 5-18-11 and recorded it in the log book. He went to an urgent care facility on 5-31-11. On 6-1-11 he went to his family doctor, who sent him over to the
## 8109 6/22/2011 11:00 am (barnes) employee was fueling equipment on a trailer. He slipped and fell backwards resulting in him having a broken wrist. Employee injured his left wrist. Supervisor: k. H johnson
## 8110 6/22/2011 11:59 am (barnes) employee was stepping off the ladder located on the side of his dump truck. The tread of his boot got caught on the last step causing him to fall. Employee used his right arm trying to break the fall, and injured his right
## 8111 6/22/2011 12:34 pm (barnes) employee was throwing debris on back of the truck. He hit his elbow on the tailgate of the truck causing it to swell during the day. Employee injured left elbow. Supervisor: milton tapp
## 8112 6/23/2004 01:16 pm (fblackmo) employee states a truck crossed into work zone striking the dump truck. Supervisor: james e. Burleson
## 8113 6/23/2004 02:55 pm (fblackmo) employee states while putting up fence he, came into contact with poison ivy. Supervisor: bobby j. Berryhill jr
## 8114 6/23/2004 03:04 pm (fblackmo) employee was watching the contractor crew repair guardrail when, foreman backed the truck up and struck employee on right knee area. Supervisor: w. R. Hammond
## 8115 6/23/2004 03:18 pm (fblackmo) employee states while inspecting paving operation he stepped in a hole causing the injury to his right knee. Supervisor: c. R. Styles
## 8116 6/23/2004 11:43 am (fblackmo) employee states he was reaching and pulling on sign when he felt pain in his stomach area. Supervisor: d. J. Guy
## 8117 6/23/2004 12:40 pm (fblackmo) employee states he slipped on wet hill side while walking to ferry. Supervisor: s. H. Kinner
## 8118 6/23/2005 11:32 am (fblackmo) employee was at the cat walk of the thermolay removing some equipment in order to do a job. The driver, not knowing anyone was in the position started backing the tuck and bump the employee. The driver of the ruck had a sp
## 8119 6/23/2008 08:10 am (blgay) employee was climbing steep banks on 06/12/06 all day. Employee stated that left foot began to hurt that night. Came to work on 06/13/08 and stated that left foot is swollen and hurting. Supervisor: tommy g. Culberson
## 8120 6/23/2008 08:51 am (blgay) employee was working in tall grass. When he got home he found a tick on the left side of his waistline. Supervisor: michael burke
## 8121 6/23/2008 09:04 am (blgay) employee was picking up a frame and grate by hand to load into a bucket on the backhoe. Employees end slipped from his hands and caught the ends of his fingers on his right hand. Crushing his middle, ring and index fingers o
## 8122 6/23/2008 09:20 am (blgay) employee was working on an asphalt patch crew, when a tick was found behind her right ear and was removed. Also, in the same day, employee came into contact with poison ivy on her right arm. Supervisor: nanette fogleman
## 8123 6/23/2009 05:44 pm (fblackmo) employee was using lathe to make a seal driver tool when, metal shavings hit his right hand center finger. Supervisor: albert vann
## 8124 6/23/2009 10:16 am (blgay) employee was getting out of his tandem truck backwards and holding on to the grab bars. When his right foot touched the ground, his right knee "kicked back" and he felt pain in his knee. His left foot was still on the bottom
## 8125 6/23/2009 10:33 am (blgay) employee was resetting a mail box that was taken down due to ditching operations. Employees hand slipped off metal post, cut left palm on sharp piece of metal. Supervisor: j. F. Ruppard
## 8126 6/23/2009 10:46 am (blgay) employee was leaning over to put in safety pin, when he raised up caught corner of arrow board, cutting the top of his head. Supervisor: nanette fogleman
## 8127 6/23/2009 11:01 am (blgay) employee was getting out of dump truck, when he stepped out, he stepped on a piece of rip rap and twisted his right ankle. Supervisor: f. E. Roberts
## 8128 6/23/2010 02:29 pm (fblackmo) employee gout out of the squad truck to get some water from the water cooler on the back. Employee was getting water out of the cooler when the truck started rolling backwards pinning him against the vibratory roller and
## 8129 6/23/2010 02:46 pm (fblackmo) employee was dismounting from escalator when his right foot slipped causing him to twist his right knee. Supervisor: ricky ball
## 8130 6/23/2010 09:38 am (fblackmo) employee was climbing off mower when, he slipped and fell on weeds causing pain to left knee. Supervisor: harvey wyatt
## 8131 6/23/2010 09:50 am (fblackmo) employee was rigging a chain when he got bump with a track hoe bucket causing injury to his right forearm. Supervisor: brett frazier
## 8132 6/23/2010 10:07 am (fblackmo) employee was driving the bottom section of the post, the post driver was raised too high causing post to come out of the cylinder, the top of the post struck him in the head causing a laceration to his scalp area. Supervi
## 8133 6/23/2010 11:47 am (fblackmo) employee was on the yard getting ready to begin work when he put his gloves on he was bitten by insect on his left hand. Supervisor: darrell wilkins
## 8134 6/23/2011 03:18 pm (barnes) employee was trying to remove string from rear axle with leatherman with knife open. When string broke, knife cut right lower abdomen. Supervisor: michael burke
## 8135 6/23/2011 03:52 pm (barnes) employee walked into a piece of metal that was sticking out the back of the truck. Employee cut his left forearm. ( employee was originally sent to chatham primary, but they instructed him to go to chatham hospital-emergenc
## 8136 6/23/2011 04:49 pm (barnes) employee states that he was going up a hill to perform a fire truck road test and fell. Employee injured his left knee. Supervisor: phyllis young
## 8137 6/23/2011 10:23 am (barnes) employee was surveying on top of a cut section of roadway. Once he finished, he noticed that he had broken out on his arms, legs, neck, and right eye. Supervisor: w. Trent anderson
## 8138 6/23/2011 10:45 am (barnes) employee was walking down an embankment and slid on wet grass. The resulting shock from the sudden stop at the bottom of the embankment injured his back. He maintained footing without falling during the injury. Employee in
## 8139 6/23/2011 11:42 am (barnes) employee stated that he drank a couple of energy drinks right before starting at his job site. He started feeling sick at his first break. Employee complained of being light headed, dizzy, and having chest pain. Employee st
## 8140 6/23/2011 12:18 pm (barnes) employee was using a pick to remove asphalt from the truck bed, the pick hit metal bed of the truck and struck the employee on top of the head. Employee sustained laceration of scalp on top of his head. Supervisor: robert
## 8141 6/23/2011 12:37 pm (barnes) employee was going to do a pre trip inspection. As he exited his vehicle, his left thumb slipped into an uncovered hole in the side of drivers seat, pulling his thumb unnaturally (rearward). Supervisor: ann lorscheider
## 8142 6/24/2004 10:54 am (fblackmo) employee states he was kicking the tailgate on asphalt truck when, he felt pain in his right ankle. Supervisor: jimmie evans
## 8143 6/24/2004 11:04 am (fblackmo) employee was working on roller using pry bar when, tool slipped causing the injury to his left hand. Supervisor: russell ramsey
## 8144 6/24/2004 11:20 am (fblackmo) employee states while exiting truck at job site he, slipped and fell causing the injury to his left hand. Supervisor: m. W. Currie
## 8145 6/24/2005 09:43 am (fblackmo) employee was operating a state vehicle when, the vehicle was struck from behind while stopped at light. Supervisor: michael ashbrook
## 8146 6/24/2005 10:13 am (fblackmo) employee was heading to I-40 to check on a sign when he got out of the vehicle he felt something bite him on the back of the neck. Supervisor: roderick wyatt
## 8147 6/24/2005 10:24 am (fblackmo) employee was cutting line in woods when, he was bitten by a tick on his left ankle. Employee experienced skin discoloration around same ankle. Supervisor: jason peterson
## 8148 6/24/2005 10:37 am (fblackmo) employee was sitting at her desk when, she was bitten by an insect. Supervisor: m. Harris
## 8149 6/24/2005 10:49 am (fblackmo) employee was pulling old hurricane from file boxes to search for requested information. Employee stared to exit tt building when, she slipped and fell down concrete steps. Supervisor: lin reynolds
## 8150 6/24/2005 11:04 am (fblackmo) employee was cutting line for bench mark when, he came into contact with poison ivy. Supervisor: paul vorwerk
## 8151 6/24/2005 11:29 am (fblackmo) employee was using a level in the woods when, he moved to another section he slipped on the mud causing the injury to his right knee. Supervisor: chad kimes
## 8152 6/24/2005 11:51 am (fblackmo) employee was cutting matting when, he cut his left arm. Supervisor: sam wilson
## 8153 6/24/2005 12:01 pm (fblackmo) employee states he was bitten by a tick while working on bridge replacement site. Supervisor: elizabeth husk
## 8154 6/24/2005 12:34 pm (fblackmo) employee states he was bitten by a tick while delineating wetland. Supervisor: chris rivenbark
## 8155 6/24/2008 10:04 am (fblackmo) employee was keying data into the computer while answering telephone calls when, she felt pain in her neck. Supervisor: gwen spivey
## 8156 6/24/2008 10:20 am (fblackmo) employee was laying on creeper, had right foot on drive shaft and left foot on a wrench to push to break loose a hydraulic line. His hand was holding onto the equipment to keep the creeper form rolling when, he felt pain
## 8157 6/24/2008 10:33 am (fblackmo) employee stopped asphalt distributor at fuel island and exited vehicle to re-fuel. As employee stepped onto raised island, his left knee gave away resulting in his fall. Supervisor: t. A. Roberson 7/14/2008 02:43 pm (lvau
## 8158 6/24/2008 11:19 am (fblackmo) employee was walking on the sidewalk when, she slipped and caused injury to her right knee and chest area. Supervisor: joseph ishak
## 8159 6/24/2008 11:59 am (fblackmo) employee walked around truck and got to close to a cardboard bin that had a nail sticking out. Nail stuck in his right thigh/hip area. Supervisor: ricky ennis
## 8160 6/24/2009 01:59 pm (fblackmo) employee stepped down onto trailer when, he twisted his left ankle. Supervisor: jerri parker
## 8161 6/24/2009 02:09 pm (fblackmo) employee was performing scrubbing and rail post repair duties on bridge project when, he was bitten by a tick on his lower back. Supervisor: kennie covington
## 8162 6/24/2009 02:18 pm (fblackmo) employee cut finger while removing a piece of metal from the bottom of his shoe. Supervisor: richard dewhurst
## 8163 6/24/2009 06:17 pm (fblackmo) employee was on us 158 hauling abc to job site on hog quarter road in currituck county when, she felt something on her back. Employee did not see what bit her. Thinks possible tick bite. Supervisor: h. D. Wiggins
## 8164 6/24/2009 09:12 am (blgay) employee was surveying in an areae that was nearly covered in poison ivy. Employee came in contact with the poison ivy and had an allergic reaction on both arms. Supervisor: mojdeh masihpour 6/24/2009 09:17 am (blgay)
## 8165 6/24/2009 09:32 am (blgay) employee was using an aggregate spreader, when the spreader lunged forward, causing the employee to fall backwards and hit his head and back of his right shoulder. Employee became unconscious. Supervisor: j. W. Brown 7/9/200
## 8166 6/24/2011 03:31 pm (barnes) employee was working on a concrete form when a 2' x 6' brace fell across his right foot. Employee injured his right foot. Supervisor: larry scruggs
## 8167 6/24/2011 03:57 pm (fblackmo) employee was operating state own tractor when private owned vehicle to stop striking the tractor in the back. Employee felt pain in center back area and head. Supervisor: gordy eure
## 8168 6/24/2011 04:06 pm (barnes) employee was working on asphalt paving machine. He was turning the leveling arm when his hand slipped off. His left elbow hit the metal on paving machine. Employee injured his left elbow. Supervisor: james lambert
## 8169 6/24/2011 04:30 pm (fblackmo) employee took customer out for a road test upon returning, the customer swung out to wide and hit the right rear corner of a parked vehicle. Employee experienced upper back and left hip pain. Supervisor: dean almond
## 8170 6/24/2011 04:36 pm (barnes) employee stopped at stop sign in vehicle. He went to cross over road and did not see the approaching vehicle. He was hit from the left. Employee injuries consisted of left hip pain, and neck pain. Supervisor: john scism
## 8171 6/24/2011 04:46 pm (fblackmo) employee was using a sledge hammer to break concrete loose for a job when, he heard a pop in his right bicep area. Supervisor: randy williams
## 8172 6/24/2011 04:52 pm (barnes) employee had a positive skin test on 4/15/11 from work related exposure while transporting inmates from wilkes doc to dot job sites. Dates of suspected active TB case stated by the representative from wilkes county health d
## 8173 6/24/2011 05:01 pm (fblackmo) employee was trying to jump start a pickup truck when, the gear shift jumped into reverse catching his right arm and shoulder in the door. Supervisor: michael hill
## 8174 6/24/2011 05:07 pm (barnes) employee was cutting weeds around bridges. He slipped and fell on loose gravel landing on left arm and shoulder. Employee injured his left arm and shoulder. Supervisor: joseph smith
## 8175 6/24/2011 05:20 pm (barnes) employee was trying to move a barricade sign that had fallen into a ditchline. When the sign was moved to the road, one of the legs rotated down on top of employees foot. Employee had bruising on right foot. Supervisor: kev
## 8176 6/24/2011 05:20 pm (fblackmo) employee was attempting to close the tailgate on tandem dump truck when, he smashed his little finger on right hand. Supervisor: jeff cobaniss
## 8177 6/24/2011 05:33 pm (barnes) employee found tick stuck to his right side of abdomen after performing surveying duties on painter road in rutherford county. The area of the tick bite was observed by the employee and on June 9th the area became red and a
## 8178 6/24/2011 05:48 pm (barnes) employee was cutting trees and pulling brush out of the right of way. He notice a small bruise on his left upper arm, and later in the evening, the bruise was darker and swollen. Employee injured left upper arm/biceps. Su
## 8179 6/24/2011 05:52 pm (fblackmo) employee was coming out of the steering compartment and port hatch when, his left foot slipped on the ladder causing him to drop back into the hole. Employee tried to catch his weight to prevent the fall when he felt a st
## 8180 6/24/2011 06:18 pm (barnes) employee was cutting tree trunk off bank. The trunk struck roadway pavement causing a large splinter to fly 46 feet over dot chipper and striking Mr. Mccraw in the back as he was trying to move away from the piece of wood.
## 8181 6/24/2011 06:36 pm (barnes) employee was packing down asphalt and felt a sting on the right side of her stomach. Supervisor: david c. Capps
## 8182 6/25/2004 09:23 am (fblackmo) employee was attempting to straighten a tarp roller bar. The roller bar was put on jack stands, employee pressed loader bucket down on the roller bar. Roller bar shifted and rolled onto his left hand cutting off his lit
## 8183 6/25/2004 09:53 am (fblackmo) employee states while using a weedeater to cut lawn he was burned on (blistered) right arm. Supervisor: ellen goodwin
## 8184 6/25/2004 10:43 am (fblackmo) employee states while walking up to white board his hit his right foot on television stand. Supervisor: steve sheppard
## 8185 6/25/2007 03:21 pm (speedin) employee ws moving tractor from one location to another and a piece of rut from exhaust pipe lodged in his left eye. Supervisor: scott gibson
## 8186 6/25/2009 08:39 am (fblackmo) employee was getting chain binders out of the tool box on the tilt top trailer. The lid fell and hit his left hand pinkie finger. Supervisor: hilton wade
## 8187 6/25/2010 02:29 pm (fblackmo) employee was in pilot house of vessel, sitting in chair (that was on wheels), he leaned back causing chair to tip over, employees leg was pin under the chair. Employee felt pain in her left knee. Supervisor: t. W. Jennette
## 8188 6/25/2010 02:51 pm (fblackmo) employee was securing load unto flatbed while wrapping excess chain around load (pipes). Employee moved his hand causing his index finger on left hand to scrape the sharp edge of pipe. Employee cut left index finger. Supe
## 8189 6/25/2010 03:15 pm (fblackmo) employee was bitten by unknown insect on right leg. Supervisor: neil roberson 07/14/2010 05:09 pm (lvaughan)
## 8190 6/25/2010 03:26 pm (fblackmo) employee was cutting brush with a chainsaw to put in dump truck. The chainsaw kicked back pushing his right arm too far backwards. Employee felt pain in his right shoulder and neck area. Supervisor: john paul callicutt
## 8191 6/25/2010 03:47 pm (fblackmo) employee was unloading pipes from flat trailer when, he cut his left forearm on sharp edge. Supervisor: mason thompson
## 8192 6/25/2010 04:11 pm (fblackmo) employee experienced heat exhaustion while driving to asphalt plant site. Employee was transported to local hospital by ambulance. Supervisor: randy mcintyre
## 8193 6/25/2010 04:24 pm (fblackmo) employee was flagging traffic during patching job when, he started to feel extremely hot, dizzy, vision loss, and passed out. Employee experienced heat exhaustion. Supervisor: d. W. Curtis
## 8194 6/25/2010 04:37 pm (fblackmo) employee was sharpening a bush axe when, he cut index and center finger on left hand. Supervisor: greg myrick
## 8195 6/25/2010 12:01 pm (fblackmo) employee was removing trees. Employee began to remove limb, lost his balance, slipped and fell on the ground. The fall jarred all parts of his body; causing him to hurt all over. Employee did not go to the doctor at the t
## 8196 6/25/2010 12:21 pm (fblackmo) employee was on break and walked to king mini mart convenience store that is adjacent to the dmv office. Employee stepped in a hole and twisted her left ankle on her return back to office. Supervisor: andrew c heath
## 8197 6/25/2010 12:46 pm (fblackmo) employee twisted his left knee while helping unload wooden work station. Supervisor: mitt thomas gibbs
## 8198 6/26/2007 01:35 pm (fblackmo) employee was inflating a tire for a motorist. The tire ruptured. A piece of rubber cut his nose and got into his right eye. Supervisor: t. W. Kirk
## 8199 6/26/2007 01:50 pm (fblackmo) employee injured his back while trying to start a concrete saw. Supervisor: j. T. Wiggins
## 8200 6/26/2007 01:59 pm (fblackmo) employee was training field geologists to survey cross sections in the woods when, he was bitten by a tick on his abdomen area. Supervisor: kyung kim
## 8201 6/26/2007 04:07 pm (speedin) employee was slope staking. He stepped on a stick and a piece flew up and hit the left eye. Supervisor: j. A. Russell
## 8202 6/26/2007 04:24 pm (speedin) employee was helping shovel asphalt on a patch job. Employees were tossing shovel fulls of asphalt to low area as needed. Brad learned forward to get another shovel full when Mr. Austin tossed his shovel full in the direct
## 8203 6/26/2007 11:42 am (fblackmo) employee was swinging hammer when, he missed the center of a pin causing injury to his left thumb. Supervisor: alfred fred wilson
## 8204 6/26/2009 03:21 pm (fblackmo) employee was walking down wooden ramp to unlock the chain from ferry dock when, he slipped and fell on wet ramp. Employee felt pain in his left hip and knee area. Supervisor: r. N. Harden
## 8205 6/26/2009 03:26 pm (blgay) employee was stepping off back of truck and stepped onto edge of asphalt, twisting and spraining his right ankle. Employee then fell and hit his head on the ground, causing him to sprain/strain his neck. Supervisor: johnny c
## 8206 6/26/2009 03:43 pm (fblackmo) employee hit his head on metal beam while running radio cable in building. Supervisor: sterling baker
## 8207 6/27/2006 08:53 am (fblackmo) employee was cutting trees on state right of way in high grass when, he found a tick on his right leg and left wrist. Supervisor: g. L. Baker
## 8208 6/27/2006 09:06 am (fblackmo) employee was operating a chainsaw on thursday. At lunch he noticed his arm itching and realized something had bitten him. Employee stated a doctor visit was not necessary and continued working after lunch. Supervisor: j.D
## 8209 6/27/2006 09:18 am (fblackmo) employee was bushing down a slope when, the edge of the slope crumbled under his feet causing him to lose his balance. Employee began to tumble down hill hitting his shoulder and head on a rock. Supervisor: james bostic
## 8210 6/27/2006 09:29 am (fblackmo) employee was cutting mud flap holes when, he cut his right thumb. Supervisor: daylon lynch
## 8211 6/27/2007 02:29 pm (fblackmo) employee was putting trash into the dumpster. She stepped onto a pallet to push the bag through when, her right ankle got caught. Supervisor: franklin s. Granda
## 8212 6/27/2007 02:39 pm (fblackmo) employee was removing hydraulic post puller from rear of truck when, he felt pain in is left shoulder/neck area. Supervisor: todd whitaker
## 8213 6/27/2007 02:54 pm (fblackmo) employee was taking battery off shelf when, she felt pain in her lower back. Supervisor: steve taylor
## 8214 6/27/2008 01:12 pm (blgay) employee was conducting safety inspection audit in garage of a firestone location. Employee slipped on oil and fell, landing on both knees and hands. Supervisor: j. F. Hiatt
## 8215 6/27/2008 01:30 pm (blgay) employee was assisting survey party in setting slopes stakes on sr 1603 in ashe county. The work environment had not changed from all previous jobs. Employee stated he had a bad case of poison oak on monday and by tuesday it
## 8216 6/27/2008 02:08 pm (blgay) employee was pushing aggregate up the left belt of the chip spreader with a shovel because the belt had stalled. While he was pushing, the belt started suddenly and caused his left arm to fully extend with his weight on it c
## 8217 6/27/2008 02:18 pm (blgay) employee was walking in wooded and grassy areas supervising and assisting with the replacement of a pipe on nc 42 in lee county. Late in the afternoon, he found a tick on his left leg below his belt line. On friday 6/20/08,
## 8218 6/27/2008 02:29 pm (blgay) employee was unhooking chair from sled, upon standing felt pain in right side. Supervisor: lonnie mcclellan
## 8219 6/27/2008 02:43 pm (blgay) employee reported that he had been feeling dizzy and went to get out of dump truck and doesn't remember anything else. Supervisor: s. D. Gilmore
## 8220 6/27/2008 07:30 am (blgay) employee was cutting and chipping trees, when he came into contact with poison oak. Supervisor: clyde adams
## 8221 6/27/2008 07:39 am (blgay) employee was riding in spray truck, that was struck in the rear by a loaded dump truck. The employees were spraying guard rails on poplar tent road, when the dump truck attempted to pass them. A pickup in the opposing lane o
## 8222 6/27/2011 02:56 pm (fblackmo) employee was working off a hydra platform lift. Employee was securing a 13 x 13 wedge plate for another employee to cut a notch out in plate with a torch. The plate slipped and caused the torch to move and burn employees
## 8223 6/27/2011 03:15 pm (fblackmo) employee felt pain in his lower back and neck area while unloading tires at warehouse. Supervisor: ronnie sutton
## 8224 6/27/2011 11:09 am (fblackmo) employee was placing orange cones in the back of the pick to attach with safety chains when one of the cones slipped from his hands and fell against his neck and right shoulder area. Supervisor: brady fisher
## 8225 6/27/2011 11:26 am (fblackmo) employee was straightening equipment on the box truck when he tired to Sep up a 100lb propane tank to its upright position he felt a pain in his chest area but continue to work. The crew traveled to sampson county and whi
## 8226 6/27/2011 11:53 am (fblackmo) employee was returning from the ice machine at the maintenance yard when, he tripped over the lawn mower causing injury to his left knee. Supervisor: luther thompson
## 8227 6/27/2011 12:03 pm (fblackmo) employee was returning from a road test, after exiting the vehicle she slipped and fell on some leaves. Employee felt pain in her right side, hip, shoulder, and she jarred her head. Supervisor: lorrie cantu
## 8228 6/27/2011 12:29 pm (fblackmo) employee was trimming pompas grass when he cut his left knee. Supervisor: harry hayes
## 8229 6/27/2011 12:39 pm (fblackmo) employee slipped when the ground gave a way while trying to uncover a phone line. Supervisor: dwayne warner
## 8230 6/28/2004 02:13 pm (fblackmo) employee states while conducting surveys he was bitten by a tick. Supervisor: james kimzey
## 8231 6/28/2004 03:27 pm (fblackmo) employee was on back of dump truck spraying his bed down with asphalt degrease when, the degrease blew back into his eyes and mouth. Supervisor: dale loflin
## 8232 6/28/2004 03:38 pm (fblackmo) employee was stooped down between two vehicles applying decal to cargo trailer when, he felt pain in his neck area. Supervisor: ann lorscheider
## 8233 6/28/2004 12:43 pm (fblackmo) employee states while stepping over exhaust pipe he, hit his leg on the grader of the machine. Supervisor: james michael tyndall
## 8234 6/28/2004 12:57 pm (fblackmo) employee states he came into contact with poison oak while weed eating on interstate. Supervisor: thomas baldwin
## 8235 6/28/2005 08:58 am (blgay) employee was filling the asphalt roller with water. Proceeded to climb up trailer to check water level. He stepped with his right foot onto the trailer where asphalt roller was loaded. He heard a pop from the rear of his kne
## 8236 6/28/2005 09:20 am (blgay) employee was attempting to dismount from back of flatbed truck and slipped on fertilizer on the bed of the truck. She struck her left leg on the bed of the truck. Supervisor: j. D. Robinson
## 8237 6/28/2005 09:43 am (blgay) employee was watching for tim yauch backing crane out of shop. Employee went under hook cable on beam to tell tim he was to close to the door on the other side. Employee raised up to soon striking his head on the cable clamp
## 8238 6/28/2006 01:27 pm (fblackmo) employee was picking up a brake drum and handing it to another employee when, he felt pain in his lower back. Supervisor: h. B. Rash
## 8239 6/28/2006 05:08 pm (fblackmo) employee reached with his left arm to grab hand hold above door to pull himself around to look and see if any cars were coming at intersection. Employee felt pain in his lower back. Supervisor: chris taylor
## 8240 6/28/2006 11:18 am (fblackmo) employee was parking vehicle on m/v chico, walked by car, dog jumped out of back seat, came through right side rear window and bit employee on right arm. Supervisor: h. C. Scarborough
## 8241 6/28/2006 11:30 am (fblackmo) employee was raking asphalt on I-40 when, a tractor trailer struck a traffic cone sending it into the air and striking employee on the left shoulder, collarbone, and side of his face. Supervisor: greg frye
## 8242 6/28/2006 11:43 am (fblackmo) employee was cleaning out the back of the international truck in the heat. He began having chest pains, head aches, dizzy, impaired vision, so he sat down and drank something. He continued to have pain in the chest and nu
## 8243 6/28/2006 11:55 am (fblackmo) employee was mowing grass when, right front wheel on tractor fell off causing employee to hit his right side hard against the seat. Supervisor: c. I. Lucas
## 8244 6/28/2006 12:09 pm (fblackmo) employee was conducting vegetation training in a wood area when, he was bitten by a tick on right calf. Supervisor: mack c. Rivenbark
## 8245 6/28/2007 10:22 am (speedin) employee was removing a large rock from tailgate of dump truck when his finer got caught between tailgate and truckbed when the rock fell out. Supervisor: david gillette
## 8246 6/29/2005 11:58 am (fblackmo) employee was part of a full depth patching operation on I-77. Employee was removing asphalt and concrete debris from hole when, he tripped and fell over a piece of asphalt. Supervisor: joel riley
## 8247 6/29/2005 12:15 pm (fblackmo) employee was chipping trees pruning shrubs the morning of 06/21/05. That evening he found a tick had bitten his right leg, and had attached itself to him. On 69/24/05 employee had developed a low grade fever. Supervisor:
## 8248 6/29/2006 08:10 am (fblackmo) employee was running a series of pcp test lifting & dropping an 8kg. Weight when, he felt pain from his right shoulder down the arm. Supervisor: kevin h. Sebold
## 8249 6/29/2007 04:42 pm (speedin) employee was carrying counter weights for tractor his knee buckled. Supervisor: j. C. Roper
## 8250 6/29/2007 09:54 am (speedin) employee was on back of sign truck unloading signs. As he dismounted from truck be his foot slipped on truck bumper and he fell against the flashing light on back of truck bed scraping his side on the light housing. Superv
## 8251 6/29/2007 12:10 pm (speedin) employee found tick on left elbow that was embedded deeply, tick was removed by process of smothering tick with soap and using tick removal tool. On saturday, June 16, 2007 employee's elbow had not the size of a pencil era
## 8252 6/29/2007 12:55 pm (speedin) employee was repairing damaged sign in median, walked around job area, stumped toe on u-channel sticking out of ground, steel-toe of boot hung toenail on right foot, peeling toenail back. Supervisor: j. A. Ridge
## 8253 6/29/2011 09:55 am (barnes) employee was descending a ladder. At the bottom of the ladder, he stepped left into a box about 18 inches high. His right foot slipped on the ladder rung. Employee and ladder went to the right and fell into some fluorescent
## 8254 6/29/2011 10:30 am (barnes) employee was getting debris off tailgate of the dump truck. The driver pulled off causing the employee to loose his balance. To keep from falling, the employee grabbed onto the truck and the tailgate slammed shut catching
## 8255 6/29/2011 10:47 am (barnes) employee went outside to remove a black snake that was located at the entrance door of the dmv. He tried to pick up the snake and was bitten on the right and left hand. Supervisor: devin drye
## 8256 6/29/2011 11:10 am (barnes) employee was at a paving job when a yellow jacket from a near by nest stung him on the right hand and another stung him on the left leg. Supervisor: reuben blakley 6/29/2011 11:30 am (barnes)
## 8257 6/29/2011 11:32 am (barnes) employee doyle was changing the cutting edge on front backhoe bucket. Another shop employeee, loosened nut on top with air gun causing the bolt to spin and cut employee doyle's middle finger on right hand. Supervisor: cole
## 8258 6/3/2004 03:36 pm (fblackmo) employee was driving a truck on pete brittain road when, he rounded a curve a private vehicle crossed the center lane hitting the truck. Supervisor: d. L. Dean
## 8259 6/3/2004 08:40 am (fblackmo) employee was taking posts off truck when, another employee placed a sign behind her. Employee did not see sign and fell causing the injury to her middle finger on left hand. Supervisor: thomas johnson 8/13/2004 10:19
## 8260 6/3/2004 08:52 am (fblackmo) employee state he came into contact with poison ivy. Supervisor: william edward mcclendon jr
## 8261 6/3/2004 09:08 am (fblackmo) employee states while crossing over a ditch he, stepped in a hole causing the injury to his right ankle. Supervisor: k. R. Davis
## 8262 6/3/2004 09:24 am (fblackmo) employee states while clearing brush axe, axe grazed off a vine striking him below right knee. Supervisor: l. T. Williford
## 8263 6/3/2004 11:06 am (fblackmo) employee was stopped to assist a motorist with a tire change. Employee was preparing to put all his with and strength in losing the nut when, he fell on the pavement. Employee states he caught himself with his left hand c
## 8264 6/3/2008 09:36 am (blgay) employee was cutting a tree out of road and came in contact with poison ivy. Supervisor: lane cabe
## 8265 6/3/2009 02:05 pm (fblackmo) employee was putting chain on chain saw, his left hand slipped, and the teeth of the saw hit the knuckles of his left hand. Supervisor: jeremy creech
## 8266 6/3/2009 08:04 am (blgay) employee was working on top of a bank with tall rye grass on entire slope. As employee started down the path to the bottom of the slope, he slipped on some tall rye grass and slid down tot he bottom of the slope, injuring his
## 8267 6/3/2009 08:18 am (blgay) employee was working with the patch crew on the railroad tracks at us29 leveling out asphalt. The employees stated that as he was pushing down on the asphalt rake, he felt a pain in between his lower back and shoulder blades.
## 8268 6/3/2009 08:45 am (fblackmo) employee was traveling east on nc 50 when, a car pulled out in front of him causing him to hit a parked car to his right. Employee felt pain in left shoulder, both arms, and back area. Supervisor: jerry keene
## 8269 6/30/2004 08:58 am (fblackmo) employee states he was diagnosed with hallux limitus from operating a motor grader. Supervisor: j. W. Sutton 11/6/2006 01:25 pm (fblackmo) claim closed. Clinched on 02/25/2005. Do not use.
## 8270 6/30/2004 09:11 am (fblackmo) employee was operating a mechanical tamp to compact asphalt when, he began to experience pain in left arm and dizziness. Supervisor: a. G. Short
## 8271 6/30/2004 09:22 am (fblackmo) employee states while pulling brushes he came into contact with poison ivy. Supervisor: b. R. Webb
## 8272 6/30/2004 09:34 am (fblackmo) employee states while stacking signs against wall one of the stacks fell striking him above his left eye area. Supervisor: w. T. Lowery
## 8273 6/30/2004 09:43 am (fblackmo) employee was flagging traffic when, he felt overheated and began to get sick on the stomach. Supervisor: lindsey o. Ethridge
## 8274 6/30/2004 12:00 pm (slee) employee was traveling north on earnhardt road when a private vehicle traveling south crossed the centerline and collided with the dot dump truck.
## 8275 6/30/2005 01:07 pm (fblackmo) employee was removing a tree off the roadway when, he came into contact with poison ivy. Supervisor: m. H. Thomas
## 8276 6/30/2005 02:49 pm (fblackmo) employee was in the bucket truck repairing signal head. A bobtail road tractor lost control on wet pavement and slid into the front of the bucket truck. Employee was ejected form bucket truck and landed on the roadway hit
## 8277 6/30/2005 04:05 pm (fblackmo) employee was at home after work rubbing his right leg when, he found a tick on his lower part of the leg. Supervisor: r. D. Pittman
## 8278 6/30/2005 04:16 pm (fblackmo) employee was walking down cut line, tripped over fresh cutting. Employee was trying to regain his balance when, his feet became entangled in vines causing him to fall. Supervisor: clift bodenhamer
## 8279 6/30/2005 12:33 pm (fblackmo) employee was removing a tree off the roadway when, he came into contact with poison ivy. Supervisor: m. H. Thomas
## 8280 6/30/2005 12:47 pm (fblackmo) employee was removing a tree off the roadway when, he came into contact with poison ivy. Supervisor: m. H. Thomas
## 8281 6/30/2005 12:55 pm (fblackmo) employee was trying to adjust the pipe rack on the top of truck. Employee was pushing and pulling on the rack when, he felt pain in his side. Supervisor: james bell
## 8282 6/30/2009 02:14 pm (fblackmo) employee hurt lower back while bending over tire to repair a leaking hose. Supervisor: pat henry
## 8283 6/30/2009 02:29 pm (fblackmo) employee found tick on upper back. Supervisor: larry t. Williford
## 8284 6/30/2011 03:29 pm (barnes) employee was driving crash attenuator truck and a private owned vehicle hit the attenuator. Employee injured left forearm, left knee, left side, lower back, left side rib area and neck. Supervisor: t. H cameron
## 8285 6/4/2004 03:57 pm (fblackmo) employee was stepping across a piece of plywood when, he tripped and fell causing the injury to his left side of face and back area. Supervisor: w. T. Lowery jr *shaw all bills to joyce*
## 8286 6/4/2004 04:09 pm (fblackmo) employee was using a prying bar to lift board off a steel beam. The board popped loose causing the prying bar to come down and catch his right middle finger between the bar and board. Supervisor: w. T. Lowery jr
## 8287 6/4/2007 01:21 pm (speedin) employee was standing on steel plank floor beside a boom truck when truck started to move it slide one piece of the flooring out from under the employees right leg. Right leg dropped down between void in flooring and boom t
## 8288 6/4/2007 01:45 pm (speedin) employee was removing fuel filter, employee removed rear line. Then when he removed the front line, gas under pressure discharged hitting him n side of face & in his left ear. Supervisor: l. T. Garner
## 8289 6/4/2007 12:48 pm (speedin) employee was starting weedeater using pull rope. When employee pulled on the rope, he felt a sharp pain in his right elbow area. Supervisor: e. L. Hager
## 8290 6/4/2008 02:02 pm (blgay) employee was on his way back from job site and was ran into the back of his tractor by a pv (pickup). Supervisor: t. H. Swayne
## 8291 6/4/2008 02:24 pm (blgay) employee was placing a sand bag on sign stand leg while setting up lane closure on I-95, when he felt pain in his lower back. Employee continued to work 05/06/08 and didn't seek medical attention until 05/08/08. Supervisor: t
## 8292 6/4/2008 02:40 pm (blgay) employee tripped on chair in co-workers working space and fell forward into file cabinet, hitting her head, left arm, left knee and causing a head and neck injury. Supervisor: beth mckay
## 8293 6/4/2008 08:51 am (blgay) employee was working on nc24/27 west of troy. Employee was cleaning out his dump truck bed with a hand held sprayer which weighs about 30lbs (including fluids). Employee handed the sprayer to an inmate who was standing up on
## 8294 6/4/2009 02:12 pm (fblackmo) employee was doing road work when, he noticed tick on left side of neck. Supervisor: woody jarvis
## 8295 6/4/2009 02:27 pm (fblackmo) employee was pulling on starter rope of the auger when, his forearm struck a sign post on back of vehicle causing laceration to forearm. Supervisor: frankie davis
## 8296 6/4/2009 02:37 pm (fblackmo) employee was attempting to pull a sign post out of the ground while his working partner was using a pry bar to work the post out, when he felt pain in his foot. Supervisor: todd whitaker
## 8297 6/4/2009 04:15 pm (blgay) employee twisted and injured his back while remixing his concrete sample on a concrete pour. Supervisor: mark thomas
## 8298 6/4/2009 04:27 pm (blgay) employee was sitting at her computer desk and reached down under the desk to move the paper shredder to the left side. When she did, the top of the shredder tipped and hit the lower portion of left leg and landed on the top o
## 8299 6/4/2010 08:34 am (fblackmo) employee was aiding citizen with the reloading of fallen materials when, he was struck by a highway patrol causing multiple body injuries. Supervisor: david hall
## 8300 6/4/2010 08:50 am (fblackmo) employee relieved flagler during asphalt project, while standing in tall grass he was bitten by chiggers on right leg. Supervisor: t. L. Ingle
## 8301 6/4/2010 09:01 am (fblackmo) employee came into contact with poison ivy (both arms) while using bush axe to cut grass around bridge. Supervisor: c. N. Vaughn
## 8302 6/4/2010 09:17 am (fblackmo) employee was removing silt fence from project site when he was bitten by fire ants on left arm. Supervisor: trey moore
## 8303 6/4/2010 09:28 am (fblackmo) employee was picking up a drain basin when he felt pain in his lower right side of his back. Supervisor: james dawkins
## 8304 6/5/2007 01:55 pm (speedin) employee was cutting bushes around bridges came in contact with poison ivy. Super visor: david l. Moore
## 8305 6/5/2007 08:35 am (speedin) employee was cutting big limbs off of oak tree that they had already cut down so the limbs could be chipped and log could be moved on a secondary construction project when a limb kicked back and hit employee in the knee cau
## 8306 6/5/2007 09:13 am (speedin) employee was driving a rubber tire roller on sr 1969 when employee lost control of roller. Roller went into a ditch and laid over on its side. Supervisor: chip speight
## 8307 6/5/2009 07:20 am (fblackmo) employee states while standing beside truck a bug flew into his left ear. Supervisor: w. B. Crumpler
## 8308 6/6/2005 08:23 am (blgay) employee was picking up litter on sr 1355, near a housing construction project - employee stepped in a hole on the shoulder of the road while walking and turned toes up on left foot. Supervisor: tommy richardson
## 8309 6/6/2006 01:53 pm (fblackmo) employee states that while working to cut and remove brush from the right of way he came into contact with poison ivy. Supervisor: roger deal
## 8310 6/6/2006 02:19 pm (fblackmo) employee had been working with logs using the front clam bucket on the backhoe. He began traveling down the road and failed to properly position the front bucket before moving. Employee lowered the bucket, it dug into the
## 8311 6/6/2006 02:35 pm (fblackmo) employee was using a chainsaw while cutting a tree. The tree began to lean to the right as the employee was cutting and it knocked the chainsaw out of his hands. The chainsaw came down and cut into the employees lower righ
## 8312 6/6/2006 02:48 pm (fblackmo) employee was walking in the shop walkway. He hooked his foot on an air hose and fell. Employee caught himself with left hand on cement floor causing injury to wrist. Supervisor: chris castor
## 8313 6/6/2006 10:08 am (fblackmo) employee was walking in parking lot when, he turned and foot slipped on loose gravel breaking right leg. Supervisor: a. W. Childers
## 8314 6/6/2006 10:25 am (fblackmo) employee was trying to release a wedged rock lodged between tailgate when, the rock released and employees hand was pulled in pinching the tip of right finger off. Supervisor: h. S. Lee
## 8315 6/6/2006 10:38 am (fblackmo) employee states he was shoveling asphalt, and hurt his right forearm and hand. Supervisor: roger deal
## 8316 6/6/2006 10:50 am (fblackmo) employee was throwing limbs off of the roadway when, something got into his right eye. Supervisor: t. S. Bozeman
## 8317 6/6/2006 11:02 am (fblackmo) employee was traveling north on nc 138 when, he came around a blind curve, there was a school bus and cars stopped in the road. Employee applied brakes and the dump truck slide to the left and then back around to the right
## 8318 6/6/2007 02:26 pm (fblackmo) employee (in 2005) was diving on a 12 foot dive (under water bridge) and during descent he noted the onset of vertigo which lasted a few minutes and then a brief period of disorientation. Employee was seen for an evaluati
## 8319 6/6/2007 03:18 pm (fblackmo) employee was pulling on the stanchion (poles, posts) trying to un-tangle the ferry rope when, the pole/post went up in the air and came down on his big toe on right foot. Supervisor: h. C. Scarborough 9/5/2007 11:33 am (lva
## 8320 6/6/2007 03:31 pm (fblackmo) employee was attempting to make a left turn and was bumped from behind by a county of harnett truck. Employee felt pain in his lower back. Supervisor: ricky rogers
## 8321 6/6/2007 03:46 pm (fblackmo) employee was participating in o. C. Spray training when, pepper spray went into his eyes. Supervisor: jimmie masgengill
## 8322 6/6/2007 03:57 pm (fblackmo) employee was riding on back of truck when, he jumped/slid off back causing injury to his left shoulder, right leg, and elbow. Supervisor: g. W. Rose
## 8323 6/6/2007 04:07 pm (fblackmo) employee was stopped at a traffic light. Employees vehicle was struck in the rear by another vehicle causing pain to her neck. Supervisor: steve watkins
## 8324 6/6/2007 04:15 pm (fblackmo) employee was stepping down from sidewalk to do road test when, missed stepped causing injury to her right ankle/foot. Supervisor: joyce roberts
## 8325 6/6/2007 04:36 pm (fblackmo) employee states while working in the filed he was bitten by a tick on his back. Supervisor: hugh sorrell
## 8326 6/6/2007 05:18 pm (fblackmo) employee was conducting a driving test when, the customers vehicle was struck from behind. Employee felt pain in his neck and upper back. Supervisor: brenda p. Grady
## 8327 6/6/2008 09:54 am (blgay) employee was standing near a silt fence installation operation. Excavator operator swung boom around to position bucket. As a result the machine tipped forward, shifting it's weight and the bucket tooth struck employee on the
## 8328 6/6/2008 10:08 am (blgay) employee was cutting shrubbery from the right of way and loading the debris into the chipper. Poison vines were entangled in the shrubbery and employee came into contact with them. Supervisor: dale loftin
## 8329 6/6/2008 10:16 am (blgay) employee was standing behind the trash truck watching for driver to back up and dump. When the truck started dumping, something flew out and hit employees left hand. Supervisor: kevin hazelwood
## 8330 6/6/2008 10:32 am (blgay) employee was cutting a tree out of the road, when he stepped on a limb and rolled his ankle. Supervisor: r. D. Henderson
## 8331 6/6/2008 11:44 am (blgay) employee was filling guardrail spray truck and was standing on a ladder. Employee felt tension in right leg. Later in the day employee climbed down from the spray truck and his right knee made a popping sound. Supervisor: cj
## 8332 6/6/2011 10:16 am (barnes) employee was sitting on the load spreading hoist beam during lunchtime. The beam toppled over and fell on employees left heel and cut it to the bone. Employee tried to get out of the way, but was unable to do so before it ca
## 8333 6/7/2004 11:04 am (fblackmo) employee states while cutting cap under bridge the creosote burned his left and right arm. Supervisor: quindale bullard
## 8334 6/7/2006 02:29 pm (fblackmo) employee was walking through maintenance yard when he saw a ball that he thought was rubber bouncing ball, he kicked the ball only to find out that it was a bowling ball. Supervisor: d. Shane edwards
## 8335 6/7/2006 02:43 pm (fblackmo) employee was removing face shield when, he felt something in his right eye. Supervisor: l. D. Greene
## 8336 6/7/2006 10:31 am (fblackmo) employee was installing a clutch into clutch into a transmission. The clutch was difficult to put back into the transmission. Employee had to lay on his back to attempt to push the clutch in with his right leg. Employee wo
## 8337 6/7/2006 10:50 am (fblackmo) employee was attempting to flip an I-beam over two timbers, the beam slide backwards slightly trapping his finger against the flange of another beam. Supervisor: terry j. Davis
## 8338 6/7/2006 11:10 am (fblackmo) employee and crew was using the hydroseeder to clean out a pipe, the hose became separated from the hydroseeder. Employee was running to get out of the way of the hose and water when, he sprain his left foot/ankle. Supervi
## 8339 6/7/2006 12:34 pm (fblackmo) employee had been inspecting the saw-cut operation to install the snow plowable markers. The traffic control truck had installed cones in the direction of traffic. Employee was returning to his truck when he heard "stop".
## 8340 6/7/2006 12:54 pm (fblackmo) employee was cutting limbs when, limb sprung up striking him on the nose. Supervisor: mark taylor
## 8341 6/7/2007 05:14 pm (fblackmo) employee was entering toll booth when, she was stung by a bee on her left eye. Employee experienced facial numbness and sever pain in her head. Supervisor: cindy austin
## 8342 6/7/2007 08:56 am (speedin) employee was parked next to ditch. She got out of truck, pivoted around to walk toward back of truck. When employee pivoted around is when her knee twisted. Supervisor: d. R. Summers
## 8343 6/7/2007 09:32 am (speedin) employee was working along the shoulder of us 70. The roadway grass was high. The employee failed to use tick spray, two days later the employee found a tick on his foot. Supervisor: jerry parks
## 8344 6/7/2010 03:05 pm (fblackmo) employee was shoveling asphalt when, he felt pain in his lower back. Supervisor: roger carpenter
## 8345 6/7/2010 03:43 pm (fblackmo) employee was loading chipper when log kicked back striking his little finger on right hand. Supervisor: sarah g. Foster
## 8346 6/7/2010 03:57 pm (fblackmo) employee was conducting a road test when customers car was struck in the rear while making a left turn. Employee felt pain in her left shoulder and neck. Supervisor: daniel ervin
## 8347 6/8/2005 08:52 am (fblackmo) employee came in contact with poison sumac while cutting brush with an axe. Supervisor: j. E. Kaukola
## 8348 6/8/2007 01:43 pm (speedin) employee was walking down the road a the job site when something stung/bit him on his lower right leg. Supervisor: w. T. Lowery, jr.
## 8349 6/8/2007 02:05 pm (speedin) employee was shoveling grave l our of intersection, emlpoyee felt pain lower back. Supervisor: keith johnson. E
## 8350 6/8/2007 08:53 am (speedin) employee was lifting a piece of 6*6*25 lb per foot steel angle 3' + or - long, employee lifted the angle and turned to go up over the tail gate of the truck and felt a pain in his lower back, injured on 5/16/2007 worked ent
## 8351 6/8/2007 10:29 am (speedin) employee was operating a weedeater and a chainsaw at various times and cut into poison oak. Supervisor: leonard dills
## 8352 6/8/2007 11:24 am (speedin) employee was flagging traffic where chipper crew was working. Dust blew in employees eye causing a rash. Supervisor: r. A. Baker
## 8353 6/8/2009 03:42 pm (blgay) employee was driving dump truck with a crash attenuator attached to it in a slow moving operation. A tractor trailer ran into the crash attenuator causing the truck with the employee in it to spin around several times. Employ
## 8354 6/8/2010 03:24 pm (fblackmo) employee was climbing down from backhoe when he felt pain in his right knee. Supervisor: t. A. Caldwell
## 8355 6/8/2010 11:42 am (fblackmo) employee states he felt pain pain in his chest wall while in service training. Supervisor: norman blake
## 8356 6/8/2010 11:56 am (fblackmo) employee was using post driver to install a fence when he smashed his right thumb. Jeremy delapp
## 8357 6/8/2010 12:07 pm (fblackmo) employee was welding when burn occurred to his ring finger on left hand. Supervisor: m. D. Garner
## 8358 6/8/2011 01:35 pm (fblackmo) employee was walking on rip-rap to go down under a bridge overpass to inspect contract mowing and weedeating work. The rip-rap shifted under his feet causing him to bend his left knee in an unusual direction. Supervisor: j
## 8359 6/8/2011 01:48 pm (fblackmo) employee state "poison ivy exposure" to his back and chest area. Supervisor: alton thornton
## 8360 6/8/2011 05:14 pm (fblackmo) employee was brush cutting around bridges on monday when something bit him on his left lower leg. Supervisor: randy williams
## 8361 6/8/2011 05:30 pm (fblackmo) employee was operating a chainsaw clearing debris along fence line when he came into contact with poison ivy. Supervisor: david m. Carter
## 8362 6/8/2011 05:41 pm (fblackmo) employee fell down outside on steps leading up to the basement at work. Employee landed on his right knee. Supervisor: patrick simmons
## 8363 6/8/2011 10:21 am (fblackmo) employee was walking across maintenance yard when he felt something pop in his left lower leg. Supervisor: alvie e. Lee jr
## 8364 6/8/2011 10:38 am (fblackmo) employee states he does not know the cause of the accident. Employee experienced pain in center of his back. Supervisor: david mutchler
## 8365 6/8/2011 10:56 am (fblackmo) employee climbed into the truck bed backhoe trailer by stepping on the trailer tongue and then onto the truck bed to retrieve the sledge hammer located in the middle of the bed. As employee was getting out of the turck bed
## 8366 6/8/2011 11:13 am (fblackmo) employee was placing a sign in the back of a pick up truck when he felt a pop in his lower back area. Supervisor: eugene sexton
## 8367 6/8/2011 11:27 am (fblackmo) employee Mr. Creech was handing a piece of channel beam to Mr. Mcintyre. Before Mr. Mcintyre had a hold on the beam, it slipped from Mr. Creechs hands and landed on Mr. Mcintyres left little toe. Supervisor: frank granda
## 8368 6/9/2005 11:09 am (fblackmo) employee was using the pipe wrench to unscrew the drill rod. The pressure released and the rod dropped causing the attached pipe wrench to drop which, pinched his left hand ring ringer between the wrench and part of the Dr
## 8369 6/9/2008 03:28 pm (fblackmo) employee was driving pilot vehicle when, vehicle was struck by a private own vehicle. Employee felt pain in his right shoulder. Supervisor: jackie r. Fone
## 8370 6/9/2008 03:50 pm (fblackmo) employee was traveling down roadway and met an oncoming vehicle when, the mirrors struck each other glass shattered striking him on his face and neck area. Supervisor: I. H. Mccombs
## 8371 6/9/2008 04:02 pm (fblackmo) employee was pulling out of the old iga parking lot onto westbound nc 561. A flatbed dump truck traveling from northbound us 401/nc 39 onto eastbound nc 561 shot through the slip ramp and collided with employee causing a "
## 8372 6/9/2008 04:20 pm (fblackmo) employee was using hammer (u-hook) to build truck bumper when, he hit his thumb on his left hand. Supervisor: hosea blount
## 8373 6/9/2011 02:48 pm (fblackmo) employee was operating a a-boom tractor mower on the shoulder of state road 1002 when a private vehicle hit the outside duel wheel of the tractor. The tractor jerked around causing the seat to pull tightly across employees
## 8374 6/9/2011 03:00 pm (fblackmo) employee was working under dash of the vehicle (small area to work in) when he started feeling pain in is lower back area. Supervisor: wesley williams
## 8375 6/9/2011 03:11 pm (fblackmo) employee was arcing underneath marine vessel silver lake when he pulled the shield up to adjust the arc rod dust and metal flew into his left eye. Supervisor: david mutchler
## 8376 6/9/2011 03:32 pm (fblackmo) employee found tick attached on right side of torso under his arm. Employee attempted to remove the tick, but could not remove head portion of tick. Supervisor: brian keith glover
## 8377 6/9/2011 09:32 am (fblackmo) employee pulled muscle in left lower leg area during physical fitness stretching training. Supervisor: watkins, s. M.
## 8378 6/9/2011 10:23 am (fblackmo) employee was using a backhoe to scoop up material (the crew was cutting shoulder of road for future paving operation) when, the front bucket struck a manhole cover throwing employee forward; employee hit his mouth on caus
## 8379 6/9/2011 11:15 am (fblackmo) employee was unloading signs from truck when, he felt pain in his lower back area. Supervisor: leon gross
## 8380 60-70 lbs of computer parts fell on EE's wrist
## 8381 600 unit had an infected student with scabies. All the students were treated on the unit and staff was not. Nurse advised staff to go to occupational health. ()
## 8382 7/1/2004 02:24 pm (fblackmo) employee states while walking down sidewalk to conduct a road test her foot slipped causing her to fall. Supervisor: beverly lafone
## 8383 7/1/2005 07:43 am (fblackmo) employee # 1 was already in the welding shop blazing tow pieces of brass together when employee # 2 entered the shop to weld his parts. Employee # 2 told employee # 1 to watch his eyes, employee # 1 started yelling at emplo
## 8384 7/1/2008 02:19 pm (fblackmo) employees states that a two inch binder fell off shelf onto her right hand causing swelling. Supervisor: ronnie l. Higgins
## 8385 7/1/2008 02:31 pm (fblackmo) employee put out fire with fire extinguished when he came into contact with carbon monoxide. Supervisor: charles francka
## 8386 7/1/2008 02:54 pm (fblackmo) employee stepped in a hole and twisted left knee. Supervisor: don rich
## 8387 7/1/2009 02:39 pm (fblackmo) employee was working with patch crew when, he removed a tick from his left thigh area after work on 6/04/09. He reported tick finding on 6/05/09 to his supervisor. On 6/23/09 employee told supervisor that his energy level
## 8388 7/1/2011 02:06 pm (barnes) employee states she was getting out of the state vehicle. Pulled side door open, went to step out, and Miss Stepped, falling on her back and right arm. Employee injured her lower back, and right forearm. Supervisor: hoppie
## 8389 7/1/2011 02:27 pm (barnes) employee was stepping across the guardrail twisting his body and injured his knee. Employee injured right knee. Supervisor: michael roper
## 8390 7/1/2011 09:06 am (barnes) employee was spreading salt spreader with sprayer in his left hand. Emps foot slipped while holding spreader rack, causing strain to his right arm and shoulder. Supervisor: greg m. Connor
## 8391 7/1/2011 12:08 pm (barnes) employee, after returning home from work, found a tick attached on his back. Employee had been out in an rural area patching. Employee's upper right back was swollen and infected in the area where the tick was attached. Sup
## 8392 7/10/2007 03:57 pm (fblackmo) employee was scrubbing the bulkhead when, he slipped and fell on one of the boat ribs. Employee injured his left knee and elbow. Supervisor: h. C. Scarborough
## 8393 7/10/2007 04:12 pm (fblackmo) employee was picking up bush guard when, he felt pain in his left arm. Supervisor: hosea blount
## 8394 7/10/2007 05:02 pm (speedin) employee was washing hands in creek, foot slipped on rock, fell back and caught self with right hand on a rock. Supervisor: david moore
## 8395 7/10/2008 08:12 am (fblackmo) employee entered ladies restroom at 7:55 am, while entering she slipped and fell (floor was not wet) causing pain to right side of body. 911 was called and she was taken to the emergency room. Supervisor: remalia brady
## 8396 7/10/2008 08:26 am (fblackmo) employee was closing a valve on paint truck when, his left elbow hit the ladder. Supervisor: codertt mcmillian
## 8397 7/10/2010 01:02 pm (fblackmo) employee was shoveling hot asphalt when, he began to feel light headed and nauseous. Supervisor: tim raynor
## 8398 7/10/2010 01:13 pm (fblackmo) employee came into contact with poison ivy while setting slope stakes in weed area. Supervisor; j. L. Woodard
## 8399 7/10/2010 01:25 pm (fblackmo) employee was inspecting road paving operation when, he was bitten by a tick on his upper right arm just above elbow. Supervisor: dale swilegood
## 8400 7/10/2010 01:57 pm (fblackmo) employee was jumping off back of trailer when, he fell causing injury to his left wrist. Supervisor: mark fogleman
## 8401 7/10/2010 02:06 pm (fblackmo) employee was getting on back of pickup truck to load materials when, he went to get off his foot slipped off bumper causing his left foot to strike ground. Supervisor: chad dennis
## 8402 7/10/2010 02:16 pm (fblackmo) employee was working on contour mower tractor when, he turned to get off equipment his foot slipped causing him to fall on pavement. Employee felt pain in his right arm, elbow, and wrist. Supervisor: ed presnell
## 8403 7/10/2010 02:29 pm (fblackmo) employee was pulling sign post with post puller when, he got his right center finger caught between post and puller. Supervisor: johnny coleman
## 8404 7/10/2010 02:40 pm (fblackmo) employee was returning to her vehicle after vision test for driver education students. She stepped off the sidewalk onto the paved roadway when, she twisted her ankle. Supervisor: garry a. Sims
## 8405 7/10/2010 02:52 pm (fblackmo) employee was returning from a road test walking across the parking lot. Employee states that her left ankle twisted, she lost her balance, and fell causing injuries to her left ankle, shoulder, and knee. Supervisor: teres
## 8406 7/10/2010 10:17 am (fblackmo) employee was using a wrench to remove studs form wheels on a hyster forklift. Employee felt a sharp pain in his right upper forearm while knocking studs out with a hammer. Supervisor: john daniels
## 8407 7/10/2010 10:35 am (fblackmo) employee was helping other employees clear a tree from the roadway; using a bush axes when he felt pain in his shoulder. Supervisor: mike nichols
## 8408 7/10/2010 10:47 am (fblackmo) employee was lifting propane tank when, he felt pain in his back. Supervisor: robert ledbetter
## 8409 7/10/2010 10:57 am (fblackmo) employee was clearing and cutting trees for the drill machine when, he step on a nail causing injury to big toe on right foot. Supervisor: n. T. Roberson
## 8410 7/10/2010 11:07 am (fblackmo) employee hit the top of great stuff can with a nail when, foam shot up into his facial area and eyes. Supervisor: don rich
## 8411 7/10/2010 11:28 am (fblackmo) employee was lifting bags of grout when, he felt pain in his upper back between shoulder blades. Supervisor: c. N. Vaughn
## 8412 7/10/2010 11:38 am (fblackmo) employee was cleaning up grave yards in duplin county when, he found a tick on his right leg behind knee. Supervisor: dwayne warner
## 8413 7/10/2010 12:41 pm (fblackmo) employee was working with bridge crew when, cresol dripped form the cap into the water. The water splashed into employee face and onto both arms causing burns. Supervisor: guy white
## 8414 7/10/2010 12:51 pm (fblackmo) employee came into contact with poison ivy while supervising tree cutting crew. Supervisor: brian harper
## 8415 7/11/2005 09:07 am (blgay) employee was trying to lift tamp into the front bucket of a backhoe when he felt a sharp pain in his lower back. Supervisor: fred narron
## 8416 7/11/2005 09:22 am (blgay) employee was working on an athey loader, employee bent over to pick up tools. When he raised back up, he hit his head on the hydraulic motor causing laceration to head. Supervisor: scott r. Hancock
## 8417 7/11/2005 09:35 am (blgay) employee was trying to step into the gang truck with the driver side parked next to a ditch. She was pulling herself up, her right leg slipped off causing her to fall while holding onto the handle. She felt a sharp pain in h
## 8418 7/11/2006 08:43 am (fblackmo) employee was sitting at stop sign when, a private vehicle hit him in the rear causing pain to his back. Supervisor: jimmie evans
## 8419 7/11/2006 08:56 am (fblackmo) employee was working on road when, he was bitten or stung by an unknown insect on his stomach area. Supervisor: ronald woodcock
## 8420 7/11/2006 09:05 am (fblackmo) employee was working on backhoe crew on pipe maintenance on us 158. He had been performing manual labor lifting/shoveling when he felt pain in his left shoulder and back area. When he was walking back to the truck he star
## 8421 7/11/2006 09:17 am (fblackmo) employee found a tick bite on his waist area, the following day a rash formed were he was bitten. Supervisor: bruce myers
## 8422 7/11/2006 09:31 am (fblackmo) employee was bitten by a tick during fieldwork outside. Supervisor: carla dagnino
## 8423 7/11/2006 09:42 am (fblackmo) employee was lifting fuel can to refill fuel tank on air compressor when, he felt a sharp pain in lower back. Supervisor: jimmy ammons
## 8424 7/11/2006 09:52 am (fblackmo) employee was securing a backhoe to a trailer and did not realize that his right hand was between the binder chain and the backhoe tire. Supervisor: william r. Robbins, jr
## 8425 7/11/2006 11:16 am (fblackmo) employee was cutting trees and brush with chainsaw when, he was felt something (spider) bite or sting him on the back. Supervisor: s. G. Dillon
## 8426 7/11/2007 01:10 pm (fblackmo) employee was operating a power drill auguring a hole in aluminum sign. The bit became stuck and caused employee to loose control of the drill twisting his finger (4th on right hand). Supervisor: jim dilda
## 8427 7/11/2007 02:35 pm (fblackmo) employee suspects that she has carpal tunnel syndrome to the right hand but does not indicate an injury by accident. Supervisor: michelle hinton 7/11/2007 02:47 pm (fblackmo) can pay bills up to July 10, 2007 only. S
## 8428 7/11/2007 04:04 pm (speedin) employee was sitting in a tandem when something bite/stung him on his right arm. Supervisor: mike walden
## 8429 7/11/2007 04:45 pm (speedin) employee was cutting tee from roadway which was covered with kidzu and poison oak. He didn't see the poison oak until he rolled it over. Supervisor: rick gordan
## 8430 7/11/2007 10:28 am (speedin) employee was cutting tree with chainsaw to remove from roadway on tate road. He came in contact with poison ivey and later went to seek medical attention. Supervisor: f. E. Roberts
## 8431 7/11/2007 12:36 pm (fblackmo) employee cut left index finger while opening a window. Supervisor: s. H. Kinner
## 8432 7/11/2007 12:48 pm (fblackmo) employee was driving a dot truck when, he hit a ditch to avoid hitting the car in front of him (car had no brake lights on). Employee felt pain in his left arm. Supervisor: harry vann
## 8433 7/11/2007 12:58 pm (fblackmo) employee was guiding pipeline to be installed with guide rope when, he tripped and stepped on a nail causing injury to left foot. Supervisor: louis wetherington 3/10/2008 01:37 pm (sjerniga)
## 8434 7/11/2011 11:51 am (barnes) employee was removing tree limbs from right of way. He slipped on wet grass and a sharp cut limb stuck into employees left leg. Supervisor: randall howell
## 8435 7/11/2011 12:11 pm (barnes) employee was standing on top of a pipe and inserting a hose. Employee's foot became tangled with a vine or snag causing him to lose his footing and fall to the creek bed below. Employee injured his back. Supervisor: kevin
## 8436 7/11/2011 12:30 pm (barnes) employee was helping change a motor grader blade. The last bolt would not come off. While loosening the last bolt, the bolt broke causing the motor grader blade to fall and hit employee on the left wrist. Supervisor: h. G ti
## 8437 7/12/2005 08:47 am (fblackmo) employee was measuring proper location of catch basin when, he lost his balance and fell on the inside corner of cement block. Supervisor: darrick lee
## 8438 7/12/2007 01:10 pm (speedin) employee was working with a grade crew and was putting water in the water tank. The crew was working in an area where the grass was high. Employee found the tick at home that night, and pulled it off. Two nights later, the
## 8439 7/12/2007 01:29 pm (speedin) employee was cutting a stump after the trees where cut down and there was a stump that had poison oak on it so he cut it off then cut the stump. It got in his eyes. Supervisor: r. E. Motcalf
## 8440 7/12/2007 04:11 pm (speedin) employee was traveling north on us 421 in tenn. To maymead plant for a load of abc stone. Kenneth moody driver of state vehicle came around a curve and a private vehicle was in his lane. Ncdot driver went left, but still h
## 8441 7/12/2007 04:28 pm (fblackmo) employee was removing bolts in front push bumper, the bumper slipped off frame and trapped hand between frame and bumper mashing at wrist. Supervisor: charles watkins
## 8442 7/12/2007 04:45 pm (fblackmo) employee was raking stones in driveway when, he felt pain in his lower back. Supervisor: a. L. Person
## 8443 7/12/2007 09:32 am (speedin) employee was working on sr 1521(onion mountain) using a chainsaw clearing right a way, when he come into contact with poison ivy. Supervisor: brad long
## 8444 7/12/2007 11:39 am (speedin) employee was walking the project during a final acceptance review of a project. This required entering into grass shoulder areas other high grass areas to review of a project. This required entering into grass shoulder are
## 8445 7/12/2011 04:02 pm (barnes) employee states that on 6/14/2011, he was running a chain saw cutting down trees when he felt something bite him on his wrist. He states that he was wearing gloves. However, when he scratched the area on his wrist it became
## 8446 7/12/2011 05:07 pm (barnes) employee was looking for property corners in wooded area with lots of vegetation and poison oak/ivy. Later that night he became itchy and broke out into a rash. Employee had rash on his face, both arms and swelling around t
## 8447 7/12/2011 05:27 pm (barnes) employee was working on sr 1209 directing an asphalt truck that was pouring asphalt into a sled. Employee was standing behind the truck when his right eye became irritated and burning. Supervisor: kevin whittingon.
## 8448 7/13/2004 02:24 pm (fblackmo) employee states on form 19 while hand weeding flower bed she was bitten on both legs by ants. Supervisor: keith hill
## 8449 7/13/2004 02:35 pm (fblackmo) employee states on form 19 that he was using citrus product which later developed into a chemical burn on right hand. Supervisor: herb grant
## 8450 7/13/2004 02:45 pm (fblackmo) employee states on form 19 he was walking out of door when, his foot caught the lip of the door jam. Employee stumbled trying to prevent the fall when the injury occurred to his right ankle. Supervisor: m. S. Reese
## 8451 7/13/2004 02:55 pm (fblackmo) employee states on form 19 he was cutting bolts off of bridge rails when he came into contact with poison ivy. Supervisor: tim k. Southward
## 8452 7/13/2004 11:27 am (fblackmo) employee states on form 19 that " walking with tar kettle and turned to go into opposite direction and felt pain in back". Supervisor: randall jackson
## 8453 7/13/2004 11:44 am (fblackmo) employee states on form 19 moving grates, one started to fall off pile onto maintenance yard when, employee grabbed with left hand it pulled his wrist. Supervisor: w. K. Jarman
## 8454 7/13/2004 11:59 am (fblackmo) employee states on form 19, operating the steel asphalt roller the shoulder gave away causing roller to turn over. Employee hit his head on roll over bar which also caused pain in is neck. Supervisor: g. M. Taylor
## 8455 7/13/2004 12:15 pm (fblackmo) employee states on form 19 while paving on state road he several ticks on multiple body parts. Employee developed a fever on 7/3/04 and saw a doctor on 7/4/04. Rocky mountain spotted fever. Supervisor: j. H. Ensley
## 8456 7/13/2004 12:38 pm (fblackmo) employee states on form 19 he was traveling south on I-95 driving a crewcab towing a trailer with lawn mower. Employee merged off of -95 onto the grass median to attempt to cross median at an authorized vehicle crossing.
## 8457 7/13/2004 12:55 pm (fblackmo) employee states on form 19 another employee (leasor) sprayed chemicals to help control the spiders and other pests in the office when, employee started to experience burning throat, tightening chest, swollen tongue. Empl
## 8458 7/13/2005 02:47 pm (fblackmo) employee states while shoveling asphalt he, felt pain in his lower back. Supervisor: t. S. Bozeman
## 8459 7/13/2005 03:11 pm (fblackmo) employee was placing files into file cabinet when, he hit his right elbow on the open file cabinet drawer. Supervisor: joyce wilson
## 8460 7/13/2005 10:58 am (fblackmo) employee states that while operating a mowing tractor he, felt pain in his right hand while reaching to close window. Supervisor: roger carpenter
## 8461 7/13/2005 11:22 am (fblackmo) employee states he was having problems with his wrist and shoulder area and thought it might be work related. According to paperwork released to office he has been seeing a doctor for the problem since 03/18/04. Superviso
## 8462 7/13/2005 11:37 am (fblackmo) employee was crossing ditch when, he twisted his left ankle. Supervisor: donald pearson
## 8463 7/13/2005 12:00 pm (fblackmo) employee was cutting limbs on right of way with slope mower and dragging them across road and putting them near a fence. Supervisor: t. P. Finger
## 8464 7/13/2006 09:10 am (fblackmo) employee was weedeating when, grit/gravel went under safety glasses and into his left eye. Supervisor: doug martin
## 8465 7/13/2006 09:22 am (fblackmo) employee was removing nut with wrench from a collar when, he felt pain in his abdomen area. Supervisor: d. R. Alligood
## 8466 7/13/2007 08:34 am (speedin) employee was working on a patching crew that was working on I-85. Employee bent over to move the rubber bases that go on the bottom of traffic barrels. They were holding insulated tarps that were covering concrete. Mr. Ben
## 8467 7/13/2007 09:03 am (speedin) employee was drilling a nailer board, when drill bit caught causing drill to wist, and throw employee between beams, hitting his left forearm. Drill bit hanging n in steel, causing drill to spin. Supervisor: terry davis
## 8468 7/13/2010 02:13 pm (fblackmo) employee was walking around flat bed truck to get a trash bag when, his right ankle rolled over. Supervisor: p. P. Mansfield
## 8469 7/14/2004 02:14 pm (fblackmo) employee states on form 19 that the hoist was not centered over load when, the hoist block swung back striking employee on right thumb. Supervisor: j. C. Gunter
## 8470 7/14/2004 02:25 pm (fblackmo) employee states on form 19 that while working in the field he came into contact with poison ivy. Supervisor: mojdeh masihpour
## 8471 7/14/2005 11:28 am (fblackmo) employee states while placing bar light onto pallet she, felt pain in her lower back. Supervisor: ronald e. Speight
## 8472 7/14/2005 11:36 am (fblackmo) employee was picking limbs and brush loading them into dump truck when, he was bitten by chigger bugs. Supervisor: j. P. Ingram
## 8473 7/14/2005 11:47 am (fblackmo) employee states he stepped in a hole and twisted his back. Supervisor: william e. Mcclendon, jr
## 8474 7/14/2005 12:38 pm (fblackmo) employee was pulling himself up on motor grader to fuel it when, he felt pain in his back. Supervisor: robert e. Brake 8/17/2005 01:52 pm (fblackmo) can pay bills up to 8/15/05 only.
## 8475 7/14/2006 01:27 pm (fblackmo) employee is experiencing pain in right wrist due to years of working with computer. Carpal tunnel syndrome. Supervisor: richard d. Hensley
## 8476 7/14/2006 01:39 pm (fblackmo) employee was performing pipe inspection crawling to exit pipe when, he felt pain in his back. Supervisor: mark blalock
## 8477 7/14/2006 01:56 pm (fblackmo) employee was paving when, he found a tick on his right leg. Supervisor: c. W. Bridgers jr
## 8478 7/14/2006 08:28 am (fblackmo) employee was tailgating stone on a dirt road when, vehicle overturned causing a knot on right side of head & bruised right hand. Supervisor: clyde adams
## 8479 7/14/2006 08:41 am (fblackmo) employee was removing plow points with air wrench when, he cut his center finger on left hand. Supervisor: chris crump
## 8480 7/14/2006 08:56 am (fblackmo) employee was mowing maintenance yard. Outside temp was 84%. Employee started experiencing shortness of breath, excessive perspiring, and rapid heart rate. Supervisor: richard bland
## 8481 7/14/2006 09:10 am (fblackmo) employee was bent over pulling weeds when, taller grass stalk got into his left eye under safety glasses. Supervisor: derek smith
## 8482 7/14/2008 09:23 am (blgay) employee was asked to get a sign out of the back of the truck and walk back up the road and flag traffic. Employee said the sign became stuck behind something in the truck, and he couldn't get it loose. A few minutes had pas
## 8483 7/14/2008 09:39 am (blgay) employee was stepping up onto gas tank, caught foot on tarp which came loose and employee fell backward to ground and struck his head and back. Supervisor: tim scruggs
## 8484 7/14/2008 09:49 am (blgay) employee removed a tick on his left leg that was embedded. Supervisor: randy mckinney
## 8485 7/14/2008 10:09 am (blgay) employee was hauling off debris and assisting asphalt patch crew. Employee got tack on his shoe from working around asphalt. Employee stated he tried to clean the tack off his shoe by rubbing it in the dirt. When employee tr
## 8486 7/14/2008 10:21 am (blgay) employee was collecting load tickets from trucks. Employee was determining station number to put on ticket, when she saw another (maymead employee) guy pointing behind her. When she turned to look and before she could move,
## 8487 7/14/2009 01:50 pm (fblackmo) employee was connecting a shackle to the ball hook on a 15 ton crane. Employees hand was smashed between a h-pile and headache ball hooked to the crane line. Supervisor: timothy everette
## 8488 7/14/2009 02:02 pm (fblackmo) employee was attempting to reposition a sign in the back of pickup truck in an effort to keep it from blowing off during travel. Standing on the side of the vehicle and reaching over the side to loosen the appeared to be
## 8489 7/14/2009 02:17 pm (fblackmo) employee was loading rebar on a truck. A piece of rebar struck employee on left forearm causing a scratch. Supervisor: leon gross
## 8490 7/14/2009 02:27 pm (fblackmo) employee was cleaning a piece of equipment when, she came into contact with poison ivy. Supervisor: j. R. Price
## 8491 7/14/2009 02:42 pm (fblackmo) employee was walking on a construction project when, he stepped in a hole twisting left knee. Supervisor: j. D. Allen
## 8492 7/14/2009 02:55 pm (fblackmo) employee was crossing street to go in building when, she stepped in hole and tripped over curb causing injury to her right knee, wrist, and left ankle. Supervisor: eual m. Williams
## 8493 7/14/2009 03:08 pm (fblackmo) employee was driving with window down when, foreign matter got into her right eye. Supervisor: marshall holley
## 8494 7/14/2009 03:29 pm (fblackmo) employee was lifting a monitor when, he felt pain in his back. Supervisor: cecil l. Jones
## 8495 7/14/2009 05:05 pm (fblackmo) employee was working on state road 1557 clearing vegetation from around sign, he did not notice the poison ivy. On sunday 7/5/09 his left arm between the elbow and wrist began to itch. On 7/8/09 james tyler informed empl
## 8496 7/14/2009 05:21 pm (fblackmo) employee was walking out to perform a road test when, she stepped in fire ants. Employee has bites on both legs. Supervisor: dolphus marshburn 06/20/2011 08:36 am (lvaughan)
## 8497 7/14/2009 05:33 pm (fblackmo) employee was cleaning up a tree from nc 12. He was putting limbs in loader bucket when, he felt pain in his left hip. Supervisor: robert winslow
## 8498 7/14/2009 05:48 pm (fblackmo) employee was walking toward concrete testing area when, she stepped down ( about a 4" drop) off the asphalt she felt pain and heard a pop in her right knee. )
## 8499 7/14/2011 03:00 pm (fblackmo) employee was other employees push a ford truck that had broken down onto the trailer when, he felt pain in his left ankle. Supervisor: a. C. Heath
## 8500 7/14/2011 03:21 pm (fblackmo) employee was traveling on state road when he over corrected and ran off the left side of the road. The truck over turned and came to rest on the drivers side of the highway. Employee felt pain in his head, chest area, and
## 8501 7/14/2011 10:24 am (fblackmo) employee had a altercation with another employee. Employee injured his right knee. Supervisor: george basnett
## 8502 7/15/2011 03:54 pm (fblackmo) employee states possible tick bite to her right arm near elbow area. Employee advised that tick was not found. Supervisor: cadmus capehart
## 8503 7/15/2011 04:16 pm (fblackmo) employee states he hurt his back while using auger to drill holes in wetlands. Supervisor: rachelle beauregard
## 8504 7/15/2011 04:37 pm (fblackmo) employee was removing glove box screws from truck when one of the springs released hitting his left hand. Supervisor: joe gates
## 8505 7/16/2004 08:59 am (fblackmo) employee states on form 19 that he was lifting a 5 gallon walter cooler onto the back of a flatbed truck when, he felt something in his stomach area pop. Supervisor: ronald woodcock
## 8506 7/16/2004 09:18 am (fblackmo) employee was placing rip-rp installing check dams which involves bending over and lifting. Employee states on 19 that his back started hurting and he took a break. He started to work again and the pain became worse in hi
## 8507 7/16/2004 09:36 am (fblackmo) employee states on form 19 that he was picking up concrete cylinders off the ground when, he was bitten by a spider on right arm. Supervisor: m. W. Currie
## 8508 7/16/2004 09:51 am (fblackmo) employee states on form 19 that he was was exiting truck when, he closed the door on his left little finger. Supervisor: hilton wade
## 8509 7/16/2008 03:09 pm (blgay) employee was in the process of recovering previously staked right of way points. While walking in wooded area, employee was struck in the left knee by a thorn. Supervisor: richard hensley
## 8510 7/16/2008 03:21 pm (blgay) employee was pulling weeds in a plant bed along broadway street in asheville. Employee stopped to rest, laying his right arm across his abdomen. He felt a sharp pain like an insect bite or sting on his right forearm. Later I
## 8511 7/16/2008 03:30 pm (blgay) employee was making a slight cut in a pine sapling that was in a pile of debris to be chipped. The limb did not break, so he cut a few small sapling out from underneath the limb. His saw got hung, so when he pushed the sapli
## 8512 7/16/2008 03:39 pm (blgay) employee was sitting on a block of wood, when something bit his finger. Finger swelled, got numb and employee felt muscles contracting and dizziness. Supervisor: d. L. Ferguson
## 8513 7/16/2008 08:24 am (fblackmo) employee was picking up log during tree removing off of right of way when, he felt pain in his left shoulder. Supervisor: t. S. Bozeman
## 8514 7/16/2008 08:35 am (fblackmo) employee was assisting with a 12 x12 jacking cap when it rolled during a sliding motion pinching his right pinky finger. Employee quickly pulled out his ringer rolling the skin back. Employee was wearing gloves on his han
## 8515 7/16/2008 08:45 am (fblackmo) employee was installing a sign on blueberry road when he stepped on a fire ant hill which was covered with brush and grass. Employee received several ant bites on both legs. His left thigh is red and swollen. Supervisor:
## 8516 7/16/2008 08:59 am (fblackmo) employee was working in tall grass when, he found a tick bite under his left arm. Supervisor: stephen winstead
## 8517 7/16/2008 09:33 am (fblackmo) employee stepped off sidewalk onto curb to conduct a road test when, she twisted her right ankle. Supervisor: marcia smith
## 8518 7/16/2008 09:52 am (fblackmo) employee was performing removal of vegetation around guard rail and signs when, he found multiple tick bites. Supervisor: s. R. Ross
## 8519 7/16/2008 10:13 am (fblackmo) employee was operating a excavator loading storm debris. While lifting a large tree, the tree slipped from the grip of the excavator, swung around, and hit the left side of the excavator. Employee had the door open so the
## 8520 7/16/2008 10:47 am (fblackmo) employee was performing annual testing of aerial devices in division 14 when, trying to climb into the truck bed, he slipped, and fell contacting the bumper with his rib cage. Supervisor: jerry bagwell
## 8521 7/16/2009 03:21 pm (fblackmo) employee stated while trying to find an airport project file she had to move two large boxes and a loaded luggage cart in order to access the file drawer. Supervisor: richard j. Walls 8/7/2009 03:17 pm (fblackmo)
## 8522 7/16/2009 05:43 pm (fblackmo) employee strain ac joint in left shoulder while shoveling dirt rocks from parking lot. Supervisor: jimmy creech
## 8523 7/16/2009 09:26 am (fblackmo) employee was moving traffic cones in a work zone. Employee picked up cone and turned to place it when, co-worker in pick up truck back over his left foot. Supervisor: codertt mcmillan
## 8524 7/16/2009 09:40 am (fblackmo) employee has experienced hearing loss in right ear. Supervisor: don rich
## 8525 7/16/2009 09:51 am (fblackmo) employee was cutting trees on state road 1573 he was walking down to truck with pole saw in hand when, he stepped on un-known object twisting his right knee and ankle. Supervisor: ronnie woodcock
## 8526 7/17/12 resident scratched on l. Forearm-7/26/12 resident scratched r. Forearm. ()
## 8527 7/17/2006 02:33 pm (fblackmo) employee was walking along nc 66 doing a pavement condition survey. He stepped off the shoulder into the grass and turned his ankle and fell into a ditch. Supervisor: mike patton
## 8528 7/17/2008 10:43 am (blgay) employee was taking tire off rim. Employee had front side over rim. With tire bar behind both beads to get sides to outside of rim. When employee lifted up on bar, he hurt left lower back. Supervisor: d. F. Holman
## 8529 7/18/2005 02:41 pm (blgay) employee was using an air roofing nail gun installing shingles on the new tyrrell county maintenance yard office. He was in a tight area where two roof lines came together. He had just shot a nail and was lifting up on the n
## 8530 7/18/2005 09:38 am (fblackmo) employee was moving wood from stack when, he felt pain in his abdomen area. Supervisor: ken anderson
## 8531 7/18/2006 08:53 am (fblackmo) employee was getting into his vehicle when, a bee flew in and stung him on the right eye lid. Supervisor: a. R. Mcmanus
## 8532 7/18/2006 09:04 am (fblackmo) employee was removing mower draft beam from tractor with a stahl crane lifting chain. The chain slipped on pin causing the beam to twist. Employees hand was caught between the beam and ground. Supervisor: darrell j. Johns
## 8533 7/18/2006 09:16 am (fblackmo) employee was flagging traffic in the heat when, he became weak and nauseated. Supervisor: r. D. Pittman
## 8534 7/18/2006 09:25 am (fblackmo) employee was walking to trim tree when, a bee stung him on the left eye lid. Supervisor: b. L. Mcfalls
## 8535 7/18/2006 09:45 am (fblackmo) employee was pulling tailgate back when, his finger slipped and got caught between the tailgate and truck. Supervisor: sarah foster
## 8536 7/18/2006 09:55 am (fblackmo) employee was cutting right of way around culvert when, he came into contact with poison ivy on hands and arms. Supervisor: dwight eudy
## 8537 7/18/2007 02:28 pm (fblackmo) employee was using a drill when, it got hung in the steel, and twisted his right hand. Supervisor: jeremy b. Creech
## 8538 7/18/2007 02:45 pm (fblackmo) employee was assisting with loading a truck when, he felt pain in his lower left leg. Supervisor: j. S. Farrow
## 8539 7/18/2007 03:01 pm (fblackmo) employee was dismounting the distributor and lost her footing causing her to fall backwards. Her left foot was caught in the steps causing injury to her knee. Supervisor: grady raynor
## 8540 7/18/2007 03:51 pm (fblackmo) employee was using weed eater when, he came into contact with poison ivy. Supervisor: mike ennett
## 8541 7/18/2007 05:08 pm (speedin) employee was cleaning out the straw blower and slipped on some loose gravel and twisted his knee and complains of lower back pain. Supervisor: tim absher
## 8542 7/18/2008 09:13 am (blgay) employee was putting his work gloves on, when a yellow jacket stung his right hand. Supervisor: dale lofin
## 8543 7/18/2008 09:26 am (fblackmo) employee fell to stop at a stop sign, turned into on coming traffic. Employee felt pain in neck, chest, and leg. Supervisor: m. Oates
## 8544 7/18/2008 09:40 am (fblackmo) employee was walking near drill rig when, he stepped on a fire ant mound that was hidden by tall grass. Had an allergic reaction/swelling of upper and lower body. Supervisor: dean argenbright
## 8545 7/18/2008 09:49 am (fblackmo) employee was closing gate when, he was struck by lighting. Supervisor: ricky feher
## 8546 7/19/2004 09:37 am (fblackmo) employee states on form 19 that he was traveling north on nc 50 when, a private vehicle traveling south(howard road) turned into the path of his vehicle causing the accident. Employee states he experienced pain in his b
## 8547 7/19/2004 09:51 am (fblackmo) employee states on form 19 that he was driving a small dump truck(3822) when, he felt a pulling sensation in left knee when shifting gears. Employee states he was unable to push in clutch due to the pain in his left kne
## 8548 7/19/2004 10:04 am (fblackmo) employee states on form 19 that he was walking to his truck when the back-hoe came by him. The bucket hit him in the back and outrigger caught him in the leg knocking him down into hot asphalt. Employee states he experi
## 8549 7/19/2004 10:17 am (fblackmo) employee states on form 19 that she was exiting her assigned state vehicle and was stepping up on curb when, her left knee twisted. Supervisor: t. S. Collins
## 8550 7/19/2004 11:12 am (fblackmo) employee states on form 19 that he was assisting forklift operator (employed by lowe's)by sliding supports under the sheet rock. The lowe's employee got off the forklift to help. The lowe's employee asked another lowe's
## 8551 7/19/2004 11:33 am (fblackmo) employee states on form 19 that he was lifting manhole cover on back of truck when, the cover fell on his thigh area causing a big blood clot. Employee states he was treated at pamlico medical center on the same day and
## 8552 7/19/2004 11:52 am (fblackmo) employee states on form 19 that he was participating in physical training at the inspector basic school. Employee was completing the 2 mile run when, he felt pain in his left calf muscle. Supervisor: k. King
## 8553 7/19/2005 03:10 pm (blgay) employee was standing in the hot sun writing information when he passed out due to dehydration and exhaustion. Supervisor: ron graham
## 8554 7/19/2005 03:28 pm (blgay) employee was lifting a drainage chamber. Employee states his foot was between another chamber and the side of truck bed, while lifting he turned with the load, twisting left knee. Supervisor: mike ennett
## 8555 7/19/2005 12:40 pm (blgay) employee was cutting right-of-way around bridge. Ground was uneven and he reached to grab tree to get his balance. Another employee (robert plyler) came down with bushax, just at that same time, and hit employee on the right
## 8556 7/19/2006 01:51 pm (fblackmo) employee was bending & stooping while helping perform a pavement road test. Supervisor: j. E. Blackwelder
## 8557 7/19/2007 03:01 pm (speedin) employee was shoveling asphalt and felt pain in lower back. Supervisor: t. M. Smith
## 8558 7/19/2007 03:32 pm (speedin) employee was painting the roof parts warehouse when he slid off the roof and fell on the dirt. Supervisor: david moore
## 8559 7/19/2007 04:15 pm (speedin) employee was driving a state vehicle. While backing the state vehicle down an embankment grade, the vehicle got too close to the edge and the embankment gave way, causing the vehicle to slide down slope and flip twice. Su
## 8560 7/19/2007 09:56 am (speedin) employee was drilling a hole with a hammer drill in concrete footers. The drill bit caught on rebar causing the drill to stop suddenly when the employees arm got twisted. Supervisor: ricky ball
## 8561 7/19/2007 10:25 am (speedin) employee was waiting to weed eat at guardrail. While waiting he decided to step on the back side of a guardrail. In doing so he stepped on some rip rap that had been covered by brush causing the employee to fall. Superviso
## 8562 7/19/2007 11:24 am (speedin) employee was standing on the tire of vehicle, he had right finger in door when another employee shut door, closing his finger in the door. Employee was attempting to clean the windshield. Supervisor: matthew oliverson
## 8563 7/19/2010 02:14 pm (fblackmo) employee was installing silt fence on state road when, he found tick on his right calf and center of his back. Supervisor: m. E. Edwards
## 8564 7/19/2010 02:29 pm (fblackmo) employee was dismounting a broom tractor when his foot slipped causing injury to his left knee. Supervisor: david chrisawn
## 8565 7/19/2010 02:42 pm (fblackmo) employee hit her left wrist on her open desk drawer. Supervisor: daniel ervin
## 8566 7/19/2010 02:58 pm (fblackmo) employee was operating a pavement saw when, he felt a sharp pain in his right shoulder area while lifting up handles. Supervisor: kep biggs
## 8567 7/19/2010 03:09 pm (fblackmo) employee was rolling the brake rotor on a crew cab to check a noise complaint. While rolling the rotor he got his little finger on left hand caught between the otor and the caliper mounting bracket. Supervisor: c. G. Inman
## 8568 7/19/2010 03:20 pm (fblackmo) employee was dismounting truck using three point stance. Employee had stepped off onto uneven ground when she released hand holds; twisted ankle. Supervisor: b. R. Knowles
## 8569 7/19/2010 03:30 pm (fblackmo) employee finished pouring concrete in hole, he stepped out of hole that was about two inches high, and pulled the arch in his right foot. Supervisor: tommy g. Culbertson
## 8570 7/19/2010 03:42 pm (fblackmo) employee was clearing land when bush axe when, poison ivy got into both eye and arms. Supervisor: c. D. Franker
## 8571 7/19/2010 11:29 am (fblackmo) employee stated on 7/8/10 "hurt left shoulder while getting in flatbed; turned with cooler when shoulder popped". On 7/9/10 he stated "hurt shoulder after getting into flatbed and reaching around to move cooler to the fro
## 8572 7/19/2010 11:47 am (fblackmo) employee was in the process of sitting down in chair to answer phone when he felt pain in his left knee. Supervisor: w. K. Dodson
## 8573 7/19/2010 12:23 pm (fblackmo) employee was preparing his torch to repair step on truck when, he burned his left hand. Supervisor: james conner
## 8574 7/19/2010 12:51 pm (fblackmo) employee was standing on the wheel guard of the bridge looking over to check on employees who were painting the bridge when, his foot slipped causing his to fall. Employee felt pain in his right shoulder. Supervisor: stev
## 8575 7/2/2004 02:00 pm (fblackmo) employee states on form 19 that the injury of her left foot and right shoulder occurred while moving equipment from one office to another. Supervisor: david fitts and todd levey
## 8576 7/2/2004 08:20 am (fblackmo) employee states he was using a bucket truck to cut a tree when, the tree feel on bucket landing on his right thumb. The end of thumb on right hand was mashed with the skin and nail torn off. Skin graft was done to try an
## 8577 7/2/2004 10:25 am (fblackmo) employee was removing lug nut form trailer tire when, nut flew off striking employee on his right thumb. Employee cut right thumb stated on form 19. Supervisor: james d. Lewis
## 8578 7/2/2004 10:38 am (fblackmo) employee states while cutting on embankment on haul road, the bulldozer gave way due to mud. Stated on form 19 employee slid off embankment striking his head on door frame cutting left ear. Supervisor: m. L. Poe
## 8579 7/2/2004 10:55 am (fblackmo) employee was operating steel wheel roller just beyond crest of hill when roller lost traction and began to slide down the hill. Employee attempted to regain control of the roller when, roller ran off edge of pavement and
## 8580 7/2/2004 11:06 am (fblackmo) employee states on form 19 that he came into contact with poison oak while cutting growth around bridge. Employee has poison oak on head, arms, back, and legs. Supervisor: c. K. Woodby
## 8581 7/2/2004 11:15 am (fblackmo) employee states on form 19 that, he came into contact with poison ivy while cutting right of way. Employee states poison ivy on forearms, back, and abdomen area. Supervisor: bobby berryhill
## 8582 7/2/2004 11:24 am (fblackmo) employee states on form 19 that while removing tree from road way he came into contact with poison ivy on both arms. Supervisor: lin reynolds
## 8583 7/2/2004 11:41 am (fblackmo) employee states on form 19 that while working in area of some high bushes that he was bitten on both arms and chest by some type of insect. Supervisor: jerome locklear
## 8584 7/2/2004 11:54 am (fblackmo) employee states on form 19 that she was bitten by an un-know insect on her left hand and fingers. Supervisor: al grandy
## 8585 7/2/2007 01:36 pm (speedin) employees were moving an aluminum scaffold suspended from the lbeams on a metal roller hangar system under the bridge. The scaffold would get out of alignment and bind while in transit. The employee said this created stress
## 8586 7/2/2008 10:58 am (blgay) employee was checking the hour reading on the motor grader located underneath the seat. He opened the door to the grader and began to read meter, unknown to employee, door began to shut while he was reading the meter. Employe
## 8587 7/2/2008 11:12 am (blgay) employee was clearing side of dump bed on tandem truck, when she lost footing, slipped and fell to the ground. Employee landed on her tail bone and struck her left hand ring finger on an unidentified object. Supervisor: ke pr
## 8588 7/2/2009 08:40 am (blgay) employee was riding in back seat of pickup, when driver backed into the side of a bridge. Employee has neck and shoulders injury. Supervisor: herbert ramey 7/2/2009 08:45 am (blgay)
## 8589 7/2/2009 08:55 am (blgay) employee was surveying job in caldwell county at the top of a slope, when his foot slipped, causing him to fall down embankment and injury his right knee. Supervisor: bethany elmore
## 8590 7/2/2009 09:11 am (blgay) employee had tick bite on left side of chin. Supervisor: harold williams 7/9/2009 03:05 pm (blgay)
## 8591 7/20/2005 02:37 pm (blgay) employee was dismounting from dump truck utilizing three points. Both feet were firmly on the ground. Employees foot then rolled over and he heard a rip. Employee had already dismounted and mounted the tuck a few times at th
## 8592 7/20/2005 02:58 pm (blgay) employee was putting traffic control signs into sign rack on crewcab truck. Employees hand was resting on corner of truckbed just as 3rd employee was closing tailgate. Little finger on left hand was closed into tailgate. Supe
## 8593 7/20/2005 03:25 pm (blgay) employee was driving when his truck was hit in the right rear by a private vehicle the truck went to the right and employee jerked to avoid hitting another vehicle. Supervisor: roger furr
## 8594 7/20/2005 03:42 pm (blgay) employee was cutting grass with a weed eater and a piece of rock pebble or something hit him in the jaw. Supervisor: eddie gurganious
## 8595 7/20/2006 04:01 pm (bhenders) pov stopped abruptly in front of sov. Employee failed to stop in time to avoid hitting pov from behind. Employee was given a citation for failure to reduce speed to avoid an accident.
## 8596 7/20/2007 10:09 am (speedin) employee was loading roller on trailer and the roller slipped off trailer ramp and pinned employee against the sweeper. Supervisor: walter burton
## 8597 7/20/2007 10:32 am (speedin) employee was waking backwards trying to avoid backhoe. While walking backwards, the employee fell into the ditch. Supervisor: david gross, tsi 7/20/2007 10:34 am (speedin)
## 8598 7/20/2009 01:05 pm (blgay) employee was assisting another employee in loading asphalt roller on trailer. As roller came up and onto the tilt trailer. Employee was trying to place pin in trailer, when another employee allowed the roller to pinch his le
## 8599 7/20/2009 01:16 pm (blgay) employee was clearing right of way along sr1103. Employee noticed blade in bush axe was loose and decided to tighten the bolts. Employee was holding a wrench on the bolt and bush axe with his left hand. Meanwhile, employee w
## 8600 7/20/2009 01:27 pm (blgay) employee was clearing right of way along nc109 north near intersection sr1134. Employee was utilizing chain saw and bush axe while removing vegetation. Crew completed their daily assignment and reported back to the yard. Emp
## 8601 7/20/2009 01:36 pm (blgay) employee was mounting machine. Machine operator accelerated and then decelerate, causing employee to go forward across walking platform of machine, striking objects on machine that are not used. Employee hit his right knee a
## 8602 7/20/2009 01:46 pm (blgay) employee had parked dump truck and trailer along sr1791 at the work site in orange county. Employee proceeded to unchain the steel wheel roller from the trailer and as he was reaching around to remove the chains, he felt a s
## 8603 7/20/2009 02:21 pm (blgay) employee and his crew were working on a drainage box here on the yard. They had to mix concrete to pour around the drop inlet. Employee was helping move the concrete mixer, when he hurt his back. Supervisor: henry worley
## 8604 7/20/2009 02:35 pm (blgay) employee was unhooking arrow board from pickup. Arrow board rolled forward catching left hand, pinning it against bumper. Supervisor: d. M. Pressley
## 8605 7/20/2009 12:11 pm (blgay) employee was working with asphalt crew on I-73/74 patching pavement joints. Employee had been raking and shoveling asphalt and he stated his left wrist started aching after lunch. Employee also stated his left wrist had cont
## 8606 7/20/2009 12:36 pm (blgay) employee hurt right arm while leveling asphalt in dug out hole with asphalt loop. Employee over worked right arm and strained it bad. Supervisor: h. S. Lee
## 8607 7/20/2009 12:57 pm (blgay) employee hit his head on the emergency flashers of the state pickup truck. Strobe lights are mounted on the rear of the truck on each side. Employee was stepping up on the truck to unload a deer at the landfill. Supervisor:
## 8608 7/20/2010 04:18 pm (fblackmo) employee was using chainsaw to cut trees when, tree fell striking him on his right leg (below knee). Supervisor: j. D. Fowler
## 8609 7/20/2010 04:31 pm (fblackmo) employee was cleaning shop when trash particles got into his left eye. Supervisor: russell ramsey
## 8610 7/21/2004 02:44 pm (fblackmo) employee states on form 19 that he was weed-eating around bridge when, he came into contact with poison oak on his left arm, left side of face, chest, and left leg. Supervisor: j. L. Cornell
## 8611 7/21/2004 02:54 pm (fblackmo) employee states on form 19 that he was opening a signal light cabinet when, he twisted the wrong way he felt pain in his back. Supervisor: greg godwin
## 8612 7/21/2004 03:04 pm (fblackmo) employee states on form 19 that he was carrying a nuclear gauge to the back steps door because parking spaces was full in front. Employee states he went to lift the gauge and bring into the building he heard a pop and mu
## 8613 7/21/2004 03:48 pm (fblackmo) employee states on form 19 that he was manually hooking up sled to transport to next work area. The bed of swb truck was in raised position and employee was in process of connecting chains so that sled could be raised of
## 8614 7/21/2004 04:29 pm (fblackmo) employee states on form 19 that while stepping down from truck he twisted his left ankle. Supervisor: jack rollins
## 8615 7/21/2004 11:11 am (fblackmo) employee states on form 19 that while operating mower with window open he, came into contact with poison ivy. Employee states he was breaking out with poison oak on his left arm and upper body. Supervisor: robby taylor
## 8616 7/21/2004 12:15 pm (fblackmo) employee states on form 19 that while connecting shore power he, felt pain in his lower back and stomach area. Supervisor: t. L. Gray
## 8617 7/21/2005 08:34 am (fblackmo) employee pinched his right hand under feed on drill while lowering the auger to the ground. Supervisor: kevin b. Miller
## 8618 7/21/2005 08:50 am (fblackmo) employee was exiting a dump truck on the lower maintenance yard to unhook a roller trailer when, he slipped and landed hard on his left leg. Employee states that he heard a loud popping noise and his knee gave out from un
## 8619 7/21/2008 08:33 am (blgay) employee was parking state truck at job site. Truck was on a slight incline due to parking on resurfacing job shoulders. Employee opened drivers side door to exit, while exiting vehicle he reached across to passenger seat fo
## 8620 7/21/2011 08:16 am (fblackmo) employee was operating state own vehicle, while sitting in traffic the vehicle was struck from the rear by another vehicle. Employee felt pain in his back. Supervisor: michael d. Robertson
## 8621 7/21/2011 08:28 am (fblackmo) employee was exiting a dump truck when her foot slipped and she pulled her right arm. Supervisor: ben mcfalls
## 8622 7/21/2011 08:42 am (fblackmo) employee was lowering exhaust off of generator of the carolina dredge with a chain hoist. Employee set it upright on floor to take chain off and lowered it side ways by hand when, he felt pain in his upper back area. Supe
## 8623 7/21/2011 08:59 am (fblackmo) employee was walking through the room 109 office and stubbed her right fifth toe on a computer printer left on the floor by an it technician. Employee worked her entire shift after she injured her toe but was out June 21,
## 8624 7/21/2011 09:13 am (fblackmo) employee was loading traffic cones one by one when, he felt pain in his lower back. Supervisor: doug williams
## 8625 7/21/2011 09:27 am (fblackmo) employee was moving tree out of the road that had poison ivy on it. Employee experienced skin irritation to both arms. Supervisor: ronnie dilbeck
## 8626 7/21/2011 09:41 am (fblackmo) employee was working on maintenance yard moving some bales of hay in front of the salt bin when, he felt a sharp pain in his lower abdomen area. Supervisor: nanette fogleman
## 8627 7/21/2011 09:54 am (fblackmo) employee was working under a pickup wearing his safety glasses installing a aim system. After lunch he noticed is right eye was irritated. After work that day his eye got worse causing him to seek medical attention. Super
## 8628 7/21/2011 10:08 am (fblackmo) employee was removing broken air condition fan belt from vehicle when he cut his center finger on right hand. Supervisor: odell whitney
## 8629 7/21/2011 10:27 am (fblackmo) employee was loading limbs into back of dump truck when he came into contact with poison ivy on both arms, abdomen area, and chest. Supervisor: shelton james
## 8630 7/21/2011 10:48 am (fblackmo) employee noticed machinist nick clark trying o remove chisel that was stuck in a tire. Mike perkins retrieved a punch and hammer form dennis bryan tool box and began hitting punch to drive the chisel out. A piece of metal
## 8631 7/21/2011 11:00 am (fblackmo) employee was surveying along side of highway when he found a tick attached to his abdomen area below belly button. Supervisor: ben upshaw
## 8632 7/21/2011 11:59 am (fblackmo) employee was moving shrubbery from one place to another when he turn wrong and heard a pop in his lower back area. Supervisor: david c. Capps
## 8633 7/21/2011 12:18 pm (fblackmo) employee was giving a road test. The customer backed up to let another car back out of parking space and hit another car that was also backing up. Employee felt pain in her lower back and had a headache. Supervisor: hoppi
## 8634 7/21/2011 12:32 pm (fblackmo) employee was traveling west on zion church road when a private vehicle pulled from a side road sand hit the right side of the truck. Supervisor: phillip eaker
## 8635 7/21/2011 12:46 pm (fblackmo) employee was clearing around bridge with trimmer when he came into contact with poison ivy on both arms. Supervisor: r. A. Baker
## 8636 7/22/2004 08:14 am (fblackmo) employee states on form 19 that while operating chip spreader machine a insect stung him on his right arm. Supervisor: k. D. Register
## 8637 7/22/2004 08:28 am (fblackmo) employee states on form 19 that he was standing on a 24'' rcp in a box culvert measuring pipes and inspecting grout. Employee slipped on on top of pipe dropping down approximately 2'' landing on loose concrete chips twi
## 8638 7/22/2005 01:30 pm (fblackmo) employee was weed eating when, he came into contact with poison ivy. Supervisor: a. L. Smith
## 8639 7/22/2005 01:43 pm (fblackmo) employee states while removing plug from pump to see if system was air bound, some of the liquid got into his eyes. Supervisor: j. L. King jr
## 8640 7/22/2005 02:00 pm (fblackmo) employee was cooking lunch for boat crew, while removing meat from grill the wind blew lid down causing a cut to his right hand. Supervisor: robert e. Hill
## 8641 7/22/2005 02:08 pm (fblackmo) employee was sitting in pickup truck when, he was bitten by insect on right hand. Supervisor: mark stroud
## 8642 7/22/2005 02:43 pm (fblackmo) employee was backing out of a parking space using her left hand to operate the steering wheel. Employee felt a sharp pain radiating up her left arm and wrist. She continued to work the remainder of the day and report the
## 8643 7/22/2005 02:54 pm (fblackmo) employee was loading cones into back of pickup truck when, he felt pain in his right knee. Supervisor: leonard dills 10/26/2005 10:57 am (fblackmo) do not pay any more bills under this claim. *see joyce wilson. See
## 8644 7/22/2005 03:15 pm (fblackmo) employee was walking down steps, stepped onto sidewalk, left toe snagged on rug, fell forward, landed on left hand, which twisted at wrist, scrapped both knees and right hand. Supervisor: terry dillard
## 8645 7/22/2005 03:46 pm (fblackmo) employee was removing jack stand from underneath broom tractor. Employee tried to close it when, he lost control of the top part. Top of jack fell hitting his index finger on right hand. Supervisor: e. D. Quintana
## 8646 7/22/2005 03:58 pm (fblackmo) employee was conducting p. T. Training when, he felt pain in his right ankle. Supervisor: jeff hovis
## 8647 7/22/2005 04:16 pm (fblackmo) employee states he has a tick bite on his leg and navel. Supervisor: eddie bunn
## 8648 7/22/2005 09:08 am (fblackmo) employee was picking up a bundle of survey stakes when, he felt pain in his chest area. Supervisor: mike jefferys 8/12/2005 01:18 pm (fblackmo) medical charges incurred up to 07/21/05, will be covered only.
## 8649 7/22/2005 09:35 am (fblackmo) employee was bitten by ticks while working on state road. Supervisor: g. J. Liverman
## 8650 7/22/2005 09:45 am (fblackmo) employee was cutting brush using a bush cutter with blade when, he cut his right hand. Supervisor: t. G. Culberson
## 8651 7/22/2005 09:56 am (fblackmo) employee was flagging traffic when, he was stung by insect on his left elbow. Supervisor: william nall
## 8652 7/22/2005 10:06 am (fblackmo) employee was replacing a sing assembly that had been damaged when, he felt pain in his upper shoulder and neck area. Supervisor: charles m. Jackson jr
## 8653 7/22/2008 01:19 pm (blgay) employee entered the backhoe, sat in the seat, buckled seat belt, and placed his left hand near the door hinge area to brace himself as he shut the door. Since the backhoe was sitting on an incline, as he pulled the door, it
## 8654 7/22/2008 01:30 pm (blgay) employee was removing a dead animal from the roadway and throwing over the side of the truck. As employee was throwing the animal over the truck bed, a piece of debris flew into his left eye. Supervisor: nanette fogleman
## 8655 7/22/2008 03:36 pm (fblackmo) employee was stopped in work zone on us 13, 0. 5 miles south of nc 461. While sitting in traffic a private own vehicle failed to stop and struck another private vehicle in the rear. The second vehicle struck employees vehi
## 8656 7/22/2008 04:13 pm (fblackmo) employee was supervising work being performed at worksite by a vendor. The worksite is a secured site and requires state employee to be present. Employee was closing gate when, her left index finger got caught. Supervisor
## 8657 7/22/2008 04:52 pm (fblackmo) employee was in the process of setting stakes for right of way when, he stepped into a hole that was hidden by vegetation causing him to fall and injury his left ankle. Supervisor: t. L. Baker
## 8658 7/22/2009 03:25 pm (fblackmo) employee went to close door on truck when, he hit his left elbow. Supervisor: j. Ross
## 8659 7/22/2009 04:05 pm (fblackmo) employee was flagging traffic on secondary highway when, he came into contact with poison ivy on his arms. Supervisor: jerry kenne
## 8660 7/22/2009 04:23 pm (fblackmo) employee states sts right ear determined to be work related. Right ear hearing loss. Supervisor: travis mintz
## 8661 7/22/2009 09:34 am (fblackmo) employee was walking in grass on curb area when, she stepped down she tripped and fell on her hands, knees, and right side of face. Supervisor: faith stuart 02/11/2010 09:33 am (proberts)
## 8662 7/22/2009 10:15 am (fblackmo) employee was walking around front of private vehicle that had struck the attenuator to check on driver when, the driver move car forward, striking employee, and causing injury to left leg. Supervisor: jamie dukworth
## 8663 7/22/2009 11:07 am (fblackmo) employee was cleaning out loader that she was operating, when she was bitten on the right side of her back. Supervisor: t. S. Bozeman
## 8664 7/22/2010 10:22 am (fblackmo) employee experienced hearing impairment in both ears due to long term exposure to needle guns, welding machines, a and grinding. Supervisor: marshall coleman
## 8665 7/22/2010 11:18 am (fblackmo) employee went to clean off hopper while climbing the side of truck( in the rain) his foot slipped off the tire causing injury to leg. Employee states he also experienced pain in his back and neck area. Supervisor: michael
## 8666 7/22/2010 11:32 am (fblackmo) employee was opening front door when, he tripped on entry mat by the door. Employee felt pain on top of his left foot. Supervisor: bo mcmillian
## 8667 7/22/2010 11:42 am (fblackmo) employee was exiting truck when he missed second step. Employee fell landing on his back. Employee states he twisted knee while trying to avoid the fall. Supervisor: madine barnes
## 8668 7/23/2007 03:05 pm (fblackmo) employee tripped over a box that was on the office floor near the entrance of her office door causing her to fall and hit her upper arm and elbow on a bookcase. Supervisor: w. R. Hammond
## 8669 7/23/2007 12:27 pm (fblackmo) employee was working on cabover truck and was attempting to get out of truck when, he slipped falling to the pavement. Employee felt pain in his left shoulder, elbow, and ribs. Supervisor: jesse hansley 11/3/2009 11:33
## 8670 7/23/2007 12:42 pm (fblackmo) employee was racking asphalt when, he felt pain in his abdomen/ stomach area. Supervisor: james m. Hux
## 8671 7/23/2007 12:56 pm (fblackmo) employee was using a machete to clear survey line when, he felt pain in his upper back near right shoulder. Supervisor: j. R. Williams
## 8672 7/23/2008 04:16 pm (blgay) employee was helping lift the plate compactor on the back of the crew cab when employee felt a pain in his lower back. Supervisor: kevin hazelwood
## 8673 7/23/2008 04:22 pm (blgay) employee was raking down the asphalt the backhoe operator had dumped. As the operator was turning, the back bucket swung over the patch and hit employee in the top of the head as he was bent down raking. Supervisor: t. L. Ing
## 8674 7/23/2008 04:31 pm (blgay) employee was cutting plan sheet of paper. Employee was cutting across paper with a utility knife and cut his left ring finger. Supervisor: paul white
## 8675 7/23/2008 06:05 pm (fblackmo) employee was checking crossline pipes when, he was bitten by a tick on his left hip area. Ticks was also found on clothing. Supervisor: jerri parker
## 8676 7/23/2008 06:15 pm (fblackmo) employee was loading preformed thermo plastic marking (50 pounds each pack) when, he felt pain in his back. Employee did not use hand truck equipment that was available for him or ask for help from a co-worker. Supervisor
## 8677 7/23/2008 09:07 am (fblackmo) employee was cross median concrete barrier rail to do a job maintenance assessment when, he bumped his right knee. Supervisor: w. T. Bass
## 8678 7/23/2009 01:03 pm (fblackmo) employee was planting in median when he was bitten by insect on his left center finger. Supervisor: mark corner
## 8679 7/23/2009 01:17 pm (blgay) employee was crossing creek and slipped on rock, causing him to hyper-extend left knee. Supervisor: d. L. Ferguson
## 8680 7/23/2009 01:18 pm (fblackmo) employee states during the field investigation for b-4506 muddy water splashed in her face and left eye while exiting ditch. Supervisor: paul atkinson
## 8681 7/23/2009 05:20 pm (fblackmo) employee was working on state road 1322 (murrayville road) and I-40 slope when employee was struck by shovel handle, hitting right hand thumb. Supervisor: ronnie woodcock
## 8682 7/23/2009 11:10 am (fblackmo) employee was weed eating around road way signs when, he came into contact with poison ivy on left arm and face. Supervisor: artis smith
## 8683 7/23/2009 11:22 am (fblackmo) employee indicates while bending down to un-hook net barrier the vessel came into contact with cluster of pilings. Employee was knocked into telescope causing pain to his right side and back area. Supervisor: t. L. Gray
## 8684 7/23/2009 12:58 pm (blgay) employee was removing surplus property from rowan county imap hut and placing it on pallets. The employee stepped on a wooden stake that was protruding from the ground, causing him to turn his ankle and fall to the ground, r
## 8685 7/24/2007 01:52 pm (speedin) employee was loading and unloading fence posts onto bed of truck for approximately 3 hours and began felling sharp pain in his lower right side of back. He then took his lunch break. The pain persisted throughout the night
## 8686 7/24/2007 02:20 pm (speedin) employee was working on equipment and using a wrench. The wrench slipped causing him to fall backward and he hit his head on the truck. Supervisor: j. Doyle lytle
## 8687 7/24/2007 02:37 pm (speedin) employee was walking through the shop, he tripped over the uneven concrete floor & injured his right foot. Supervisor: david burchette
## 8688 7/24/2007 03:15 pm (speedin) employee was bushing a bridge with a weedeater and got into poison oak. Supervisor: herbert ramsey 8/3/2007 11:46 am (fblackmo) do not use this claim. Duplication.
## 8689 7/24/2008 02:18 pm (blgay) employee was building concrete forms for catch basins and turned and walked into runner on salt spreader that was hanging behind employee, causing a cut to head. Supervisor: robert davis
## 8690 7/25/2006 02:16 pm (fblackmo) employee was conducting a road test when, driver pulled into parking lot to stop but hit the gas instead running into the office building. On form 19 no injuries was stated. Supervisor: joseph jefferson
## 8691 7/25/2006 03:07 pm (fblackmo) employee was traveling south on state road 1002 traphill road. A private vehicle crossed center lane hitting state pickup causing it to veer left crossing roadway and hitting a parked car before stopping. Employee felt pa
## 8692 7/25/2006 03:20 pm (fblackmo) employee pulled hard on grease gun hose or battery box when, he felt pain in left shoulder area. Supervisor: robert cannady
## 8693 7/25/2006 08:15 am (fblackmo) employee was performing a road test when, customer backed into parked car in parking lot. Employee felt pain in back. Supervisor: d. R. Marshburn
## 8694 7/25/2006 08:28 am (fblackmo) employee had been walking up and down a very steep slope all day when, he felt burning in left heel and ankle area. Supervisor: a. Scott bailey
## 8695 7/25/2006 08:40 am (fblackmo) employee was stepping across a freshly graded ditch line when, he stumbled, tried to catch himself causing injury to right arm, palm down, and elbow locked. Supervisor: jimmy f. Walls 8/1/2006 09:24 am (sshort)
## 8696 7/25/2006 09:02 am (fblackmo) employee was jacking up a wheel tractor with bottle jack. He was laying on the ground under tractor, jack was placed under tractor frame and was sitting on top of a block of wood. While jacking, the block of wood split ca
## 8697 7/25/2006 09:13 am (fblackmo) employee was in traffic shack near boat ramp, stepped out of door of shack, and fell down steps twisting right ankle. Supervisor: h. C. Scarborough
## 8698 7/25/2006 09:29 am (fblackmo) employee was struck by ncdot dump truck as she was attempting to turn around in shoulder machine. Supervisor: r. J. Hollifield
## 8699 7/25/2006 09:40 am (fblackmo) employee was driving issued patrol vehicle making a left turn when, he was struck in the rear by private vehicle. Employee felt pain in his neck and back. Supervisor: b. K. Bozard
## 8700 7/25/2006 09:56 am (fblackmo) employee was weedeating when, he came into contact with poison oak on both arms. Supervisor: stephen dillon
## 8701 7/25/2006 10:10 am (fblackmo) employee strained his neck while changing a tire on a motor grader. Supervisor: jeff whitney
## 8702 7/25/2006 10:20 am (fblackmo) employee was lifting a concrete saw when, he felt a burning and stiffness in his back. Supervisor: charles f. Vick
## 8703 7/25/2006 10:47 am (fblackmo) employee was moving signs in the overhead bins in sign inventory room when, he felt soreness across the shoulder blade. On 7/14/2006 employee came to front office and stated he was leaving to go to the doctor because he w
## 8704 7/25/2006 10:55 am (fblackmo) employee was putting on rear brake drum on dump truck when, the drum drooped and he tried to catch the drum to keep from mashing or cutting fingers. Employee felt pain in abdominal area. Supervisor: daylon lynch
## 8705 7/25/2007 05:08 pm (speedin) employee was driving to worksite, when he said a deer came off the bank causing him to leave the roadway. The vehicle then went down a bank landing on its top in a creek. Supervisor: terry w. Call
## 8706 7/25/2007 05:40 pm (fblackmo) employee was conducting a road test when she went to get into the vehicle (pickup truck) she, felt pain in her left leg. Supervisor: lorie cantu 9/11/2007 08:46 am (lvaughan) accepted pull to graoin muscle
## 8707 7/25/2007 10:56 am (speedin) employee was getting debri into a pile. A limb under pressure shot out and hit the bottom glass on the trackhoe. The glass shattered and hit Mr. Scott on his elbows and forearms. Supervisor: j. M. Delapp
## 8708 7/25/2007 11:46 am (speedin) employee was conducting a road test, the driver failed to start the engine. He then placed the vehicle in drive. The vehicle was on a hill. When the operator removed his foot from the brake the car began to roll back. The
## 8709 7/25/2008 02:34 pm (fblackmo) employee was cutting trees at the wild flower bed when, he went to step over previously cut limbs he felt a sharp pain in his lower left side of his back. Supervisor: brian glover
## 8710 7/25/2008 02:42 pm (fblackmo) employee was trying to push the arm bar on the hook of the amz machine and smashed his right thumb. Supervisor: carlis smith
## 8711 7/25/2008 09:49 am (blgay) employee developed a slight pain in left big toe a day after using a pair of hip-waders. The waders were previously flooded in a less than sanitary creek (abbotts creek). Waders were still wet when used on June 18th and empl
## 8712 7/25/2008 12:15 pm (fblackmo) employee twisted his left knee while dismounting form a skid steer loader. Supervisor: tim raynor
## 8713 7/25/2008 12:24 pm (fblackmo) employee was helping install a door hinge spring on chevy truck. The other employee was prying spring into place when, bar slipped and struck Mr. Floyd's safety glasses. The bar hit him in his left eye. Supervisor: wesle
## 8714 7/26/2004 02:35 pm (fblackmo) employee states on form 19 that while he was driving a pick-up, as he was making a right turn a private vehicle was attempting to pass on the right shoulder of the road and struck the right front of employees vehicle. Emp
## 8715 7/26/2004 02:53 pm (fblackmo) employee states on form 19 that while watching truck in other lane not paying attention to how close the grader had gotten to her. The blade hit the back of her legs and flipped her over then ran over her foot. Supervis
## 8716 7/26/2004 03:10 pm (fblackmo) employee states on form 19 that he was lifting a tool box to go onto the back of truck when, he felt pain in his lower back. Supervisor: leroy farrish
## 8717 7/26/2004 03:32 pm (fblackmo) employee states on form 19 that he was clearing out the back of dump truck when, he was stung above left eye. Supervisor: jesse mercer
## 8718 7/26/2004 03:46 pm (fblackmo) employee states on form 19 that while spraying dump truck with asphalt release we was climbing down the side when, his foot slipped off the tire. Employee states all of his weight transferred to his hands which pulled hi
## 8719 7/26/2004 04:04 pm (fblackmo) employee states on form 19 while repairing bulkhead employee was handling 4x8x18 board that was being lifted out of a 3 ft excavation, by a small excavator. Pressure was applied to center of board by the thumb of the exc
## 8720 7/26/2005 02:18 pm (fblackmo) employee was struck in the face by briar while cutting line for survey. Supervisor: richard d. Hensley
## 8721 7/26/2005 02:32 pm (fblackmo) employee was working in a pipe laying operation performing manual labor in the sun when, he became very hot, weak, shaking, vomiting, and leg cramps. Supervisor: t. F. Bray
## 8722 7/26/2005 02:42 pm (fblackmo) employee was carrying a piece of 3" angle iron, to put on truck when, he felt pain in his groin area. Supervisor: david moore
## 8723 7/26/2005 02:54 pm (fblackmo) employee was spraying herbicide when, he stepped on a rock turning his right ankle causing him to fall on pavement. Supervisor: t. L. Absher
## 8724 7/26/2005 03:04 pm (fblackmo) employee was moving a large desk by himself when, he felt pain in his knee. Supervisor: chris peoples
## 8725 7/26/2005 12:29 pm (fblackmo) employee was helping install a cross pipe when, the end of the pipe came apart hitting him in the chest. Supervisor: j. R. Ashe
## 8726 7/26/2005 12:41 pm (fblackmo) employee was getting ready to spray crs-2 when, the lever on pump blew out causing, spray to hit his face, neck, and both arms. Supervisor: c. I. Lucas
## 8727 7/27/2004 08:07 am (fblackmo) employee states on form 19 that while doing drills with all five fire hoses and man over board training his right shoulder started hurting and made a loud pop. Supervisor: cliff swindell
## 8728 7/27/2004 08:23 am (fblackmo) employee states on form 19 that he lifted a five gallon bucket of paint and felt a pop in his left shoulder. Supervisor: thomas foster bowser
## 8729 7/27/2004 09:08 am (fblackmo) employee states on form 19 that while standing at the gate at the yard, she stepped off the curb and twisted left ankle. Supervisor: a. S. Bailey
## 8730 7/27/2004 09:19 am (fblackmo) employee states on form 19 that while patching roadway a bumble bee flew up her pants leg stinging her several times on the left thigh. Supervisor: larry w. Sehorn
## 8731 7/27/2004 09:31 am (fblackmo) employee states on form 19 that he was lifting a battery when, he felt a burning sensation in his upper abdomen area. Supervisor: ellen goodwin
## 8732 7/27/2004 09:40 am (fblackmo) employee states on form 19 that she turned her chair around to stand up she, hit her right knee cap on the edge of her desk. Supervisor: mg. Jarman
## 8733 7/27/2007 10:03 am (fblackmo) employee was inside pipe drilling it together when, shavings from the pipe got into his right eye. Supervisor: harold lanier
## 8734 7/27/2007 11:56 am (fblackmo) employee was using the patcher when, the emulsion line came loose at the handle and hot material sprayed from the machine, when he went to turn it off the material burned the side of his face. Supervisor: carlis smith
## 8735 7/28/2004 01:11 pm (fblackmo) employee states he was cutting down a tree when, a small block of wood pulled pulled back by the chain saw struck him in the groin area. Supervisor: loretta welborn
## 8736 7/28/2004 01:24 pm (fblackmo) employee states on form 19 that he was cutting trees on embankment when, walking down bank he lost his footing causing him to fall and injure his right ankle. Supervisor: loretta welborn *show all bills to joyce* 11/6
## 8737 7/28/2004 01:37 pm (fblackmo) employee state on form 19 that while cutting right of way pulling brushes he felt something crawling on his stomach. Employee states he was bitten by a spider on his stomach. Supervisor: b. J. Berryhill jr
## 8738 7/28/2004 02:01 pm (fblackmo) employee states on form 19 that he was in the woods when, he found a tick on his stomach. Supervisor: bryant turner
## 8739 7/28/2004 02:55 pm (slee) employee was driving southbound on us 17 when a car coming from mt. Pisgah road came across the northbound lane of us 17. The driver of the vehicle did not stop the vehicle, and he tried to avoid hitting the vehicle but was
## 8740 7/28/2004 08:21 am (fblackmo) employee states on form 19 that he was clearing wooded area with chainsaw in order to gain access to drilling site. The area was heavily overgrown with vines that prevented the tree from falling immediately. A rotten li
## 8741 7/28/2004 08:37 am (fblackmo) employee states on form 19 that he pulled a muscle in the right side of neck while picking up tractor trailer tire recap tossing it into the back of tandem truck. Supervisor: w. D. Lane
## 8742 7/28/2004 09:26 am (fblackmo) employee states on form 19 that while going down nc 107 south on broom tractor the brakes failed causing the tractor to flip on side. Employee states he experienced bruises and scratches on multiple body parts. Supervis
## 8743 7/28/2004 09:42 am (fblackmo) employee states on form 19 that while removing rack from old trailer one of the bolts in the frame was removed causing the frame to fall. The frame struck employee on his left shoulder. Supervisor: donald king
## 8744 7/28/2004 10:03 am (fblackmo) employee states on form 19 that he found a tick on his right leg on 07/02/04. On 07/07/04 he had excessive swelling and redness on leg. Supervisor: r. D. Mcintyre
## 8745 7/28/2004 10:21 am (fblackmo) employee states on form 19 that he was getting out of dump truck when, he missed the bottom step causing the injury to his right ankle. Supervisor: shelton james
## 8746 7/28/2004 10:31 am (fblackmo) employee states on form 19 that he was working on road maintenance job when, he found a tick on his right ankle at the end of the work day. He went to his doctor a week later because he was sick(rash, ear infection, and
## 8747 7/28/2008 08:19 am (slee) employee made a left turn coming from sr 1475 onto us 501 north. His load shifted and road tractor and tanker rolled over onto right side.
## 8748 7/29/2005 08:49 am (fblackmo) employee was weedeating when he crossed over a guardrail and tripped causing the injury to his right inner thigh area. Supervisor: alfred smith
## 8749 7/29/2005 09:18 am (fblackmo) employee states while working with survey crew he was bitten on his right foot by insect. Supervisor: d. T. Howell
## 8750 7/29/2005 09:31 am (fblackmo) employee was weedeating when, he came into contact with poison ivy on arms, back, and neck. Supervisor: kenny hicks
## 8751 7/29/2005 09:40 am (fblackmo) employee was in the process of getting mowing sign racks off contour mower when, he slipped on wet grass, grabbed fender of mower twisting lower back. Supervisor: bob ingram
## 8752 7/29/2005 09:49 am (fblackmo) employee had taken a chain across a ditch to the contour mower when, he found a tick on his right forearm. Supervisor: bob ingram
## 8753 7/29/2005 09:59 am (fblackmo) employee was entering bathroom when, she slipped on wet floor. No wet signs was posted. Employee felt pain in her left knee and right shin. Supervisor: jane brantley
## 8754 7/29/2005 10:11 am (fblackmo) employee was turning a part in the big lathe when, his shirt got caught in the machine. The machine pulled his body towards the part putting rug burn on his arm. Another employee was close by and turned off the machine. S
## 8755 7/29/2008 02:08 pm (fblackmo) employee was going up a set of steps from the driveway to the ferry office. He slipped hitting his head on the handrail, cutting his right ear. Supervisor: b. J. Todd
## 8756 7/29/2008 03:24 pm (blgay) employee was standing on back of truck, when cones driver gassed truck employee fell off back of truck onto highway, injury his back, right elbow and right hip. Supervisor: herbert ramey
## 8757 7/29/2008 03:34 pm (blgay) employee was walking on the shoulder of the road beside the dump truck while the crew was sledding. Employee stepped into a hole and twisted his right ankle, causing him to fall to the ground. Supervisor: dale loflin
## 8758 7/29/2008 03:42 pm (blgay) employee was raking pine straw on an unpaved road, he picked up an armload of straw and placed it on the backslope of the roadway. Employee wiped his face on the sleeve of his shirt and shortly thereafter noticed redness on
## 8759 7/29/2008 03:59 pm (blgay) employee was conducting road test and when customer went to do the 3 pt turn, while backing up, floored gas and hit the curb of the street and went completely up and over curb. Supervisor: lorrie sineath
## 8760 7/29/2008 04:07 pm (blgay) employee was conducting a road test, when customer was performing a 3 pt turn on hampton church road, she pressed the gas petal instead of brake. Customer hit the concrete wall surrounding griffin tires. Supervisor: gloria k
## 8761 7/29/2008 11:39 am (fblackmo) employee was conducting the weekly median inspection, two (2) of our employees were inspecting guard rail on interstate 95 nbl in harnett county (mm 70. 7) Mr. Quinn exited his vehicle to examine the median gardrail. As a
## 8762 7/29/2008 12:21 pm (fblackmo) employee was securing cones on the trailer with the rope that is used to tie them off. As he pulled the rope tight, it slipped off the stack of cones striking himself in the right eye. Supervisor: jason holmes
## 8763 7/29/2009 08:46 am (blgay) employee was trying to pickup and slide a 10" I-beam by hand and felt pain in his back. Supervisor: r. A. Wyatt
## 8764 7/29/2009 09:59 am (blgay) employee was helping move a fence. Employee cut his left hand over a metal fence post. Supervisor: clyde scott
## 8765 7/29/2009 10:35 am (blgay) employee was in ditch getting ready to lay pipe, when he felt a sting on his elbow and saw a spider on his arm. Spider bit employee on right elbow. Supervisor: h. S. Lee
## 8766 7/29/2009 11:07 am (blgay) employee was mowing on the right of way and a piece of razor wire got caught in the mower. While employee was trying to remove the wire, he was cut on the left calf and on the right hand. Supervisor: danny dees
## 8767 7/29/2010 03:11 pm (fblackmo) employee (anthony)was walking back to his truck while another employee ken hughes was backing up a pickup truck to pick up the flagman (robert kinney). Ken hughes had backed up approximately 15 ft when he felt a bump; saw
## 8768 7/29/2010 03:24 pm (fblackmo) employee was tightening chain binder on trailer and packer roller while pulling on handle. While pulling on handle he felt sharp pain in his lower back and left leg. Employee could not stand straight up for several minute
## 8769 7/29/2010 03:35 pm (fblackmo) employee and crew were installing a driveway pipe on state road. Pipe was repositioned with backhoe using pipe hook. Employee lean forward to check if pipe was properly seated; he signaled for pipe to be lowered. Employee
## 8770 7/29/2010 03:51 pm (fblackmo) employee was mowing right of way with longarm when a piece of wire entangled the blade. Employee went to pull the wire when he felt pain in his right shoulder. Supervisor: mike walden
## 8771 7/29/2010 04:14 pm (fblackmo) employee was getting out of equipment to check to see how deep ditch was when he hit his right elbow on the steps. Supervisor: john springer
## 8772 7/29/2010 04:53 pm (fblackmo) employee had crawled up on the tracks of dozer to install fuel hose into tank. While dismounting he lost his footing and fell to the ground causing injury to his right thumb. Note: accident happened on 6/25/2010. Employee
## 8773 7/29/2010 12:02 pm (fblackmo) employee was working on the main deck of the m/v hunt preparing the surface for ut. Employee to sit on bucket in order to prepare the surface and when he did, he felt pain in his lower back. Supervisor: marshall coleman
## 8774 7/29/2010 12:23 pm (fblackmo) employee was welding when his glove got hot and burned the top of left hand through glove. Supervisor: jeff robertson
## 8775 7/29/2010 12:35 pm (fblackmo) employee was adjusting jacks for screen on paving machine when, he bent over he felt pain in his lower back. Supervisor: mike vann
## 8776 7/29/2010 12:45 pm (fblackmo) employee was in and out of his truck marking trees for debris removal contracts when, he found a tick on his left leg below knee. Supervisor: britt mccurry
## 8777 7/29/2011 02:57 pm (fblackmo) employee was climbing back onto tractor when his foot slipped on second step causing the injury to his lower back. Supervisor: cm. M. Conner
## 8778 7/29/2011 03:29 pm (fblackmo) employee stepped into a hole while reaching for a diesel hammer. Employee cut his lower right leg. Supervisor: danny moss
## 8779 7/29/2011 03:43 pm (fblackmo) employee was unloading equipment when he came into contact with poison ivy. Supervisor: alton thornton
## 8780 7/29/2011 03:56 pm (fblackmo) employee was removing timbers from under bridge when he scraped his right arm on a nail. Supervisor: chuck francka
## 8781 7/29/2011 04:13 pm (fblackmo) employee was installing tension spring on lawn mower deck with vise grip pliers. Pliers slipped off causing employee to fall back on belt guard and a old truck battery. Supervisor: mike mizelle
## 8782 7/29/2011 09:48 am (fblackmo) employee was using a chainsaw to trim tree limbs from a bucket truck. The employee was wearing a face shield however, something got into his right eye. Supervisor: craig sizemore
## 8783 7/29/2011 10:06 am (fblackmo) employee was in the process of removing an 18' wooden joist from under bridge using a 3 ton-come-a-long when the lag bolt pulled loose from the joist causing employee to fly backwards landing on old headwall and falling a
## 8784 7/29/2011 10:32 am (fblackmo) employee was working the contract weedeating on us 259 near reedy fork parkway. He was helping drag and remove some weeds from the right of way when he came into contact with poison ivy. Employee was wearing gloves but d
## 8785 7/29/2011 10:42 am (fblackmo) employee was cutting brush and could not see end of culvert due to vegetation on ground. As he stepped, he fell causing his right foot to get caught up in brush. Employee felt pain in his right knee. Supervisor: shane edw
## 8786 7/29/2011 10:57 am (fblackmo) employee was picking up trash on shoulder of road when he became light headed and dizzy from the heat. Supervisor: jessie knight
## 8787 7/29/2011 12:04 pm (fblackmo) employee was trimming wax myrtle near neuse river bridge in new bern when his left leg was struck by polaris utv. Supervisor: scott crocker
## 8788 7/3/2008 01:41 pm (blgay) employee was cutting underbrush with chain saw, when he lost his footing and fell backwards. The chain saw struck the top of his hand cutting three fingers, middle, ring and index on right hand. Supervisor: k. E. Pruett
## 8789 7/30/2008 01:09 pm (blgay) employee had pulled low-boy into the travel lane on I-85 southbound when a private vehicle struck the low-boy on the left rear of the trailer. The low-boy was loaded with a trackhoe and was traveling about 30 mph at the time
## 8790 7/30/2008 01:34 pm (blgay) employee was cleaning a shovel when he grabbed his chest and fell backwards. Another employee standing behind him caught him and laid him down so he wouldn't hit the ground. Ems was called and employee taken to hospital with
## 8791 7/30/2008 01:44 pm (blgay) employee was staking proposed right-of-way monuments on bridge job b-4207. Some points were being set in wooded areas. Employee later discovered two ticks that had attached. Later during the next week, he began feeling ill a
## 8792 7/30/2008 09:44 am (fblackmo) employee was standing on platform at rear of asphalt kettle getting ready to spray crs-two on pavement. The kettle was hitched to crew cab. Driver of the crew cab ran into a hole adjacent to the pavement, causing kettle t
## 8793 7/30/2008 10:52 am (fblackmo) employee was lifting steel rails for the syncrolift and while lifting the third rail, he felt pain in his lower back. Supervisor: john daniels 8/4/2009 10:15 am (lvaughan)
## 8794 7/30/2008 11:09 am (fblackmo) employee was removing crown strip from cap on bridge 111 in duplin county. Employee was on pontoon with another employee when, the weight of the crown strip caused the pontoon to sift and they both lost their footing. Emp
## 8795 7/30/2008 11:22 am (fblackmo) employee was picking up dead animals when, he was bitten by a tick. Supervisor: david holton
## 8796 7/30/2009 02:17 pm (fblackmo) employee was pulling joist from nails. Joist fell and fingers were pinned between joist and pry bar. Supervisor: darwin powell
## 8797 7/30/2009 02:29 pm (fblackmo) employee was removing damage signal equipment when, one fell striking employee on the head. Supervisor: jason davidson
## 8798 7/30/2009 02:39 pm (fblackmo) employee received a tick bite while working in a wooded area. Supervisor: chuck mcdonald
## 8799 7/30/2009 03:04 pm (fblackmo) employee was working with cement when, he had an allergic reaction. Supervisor: kenneth l. Clark
## 8800 7/30/2009 03:16 pm (fblackmo) employee was climbing down a step ladder when, she missed a step causing injury to her left hand while working on computer. Supervisor: wayne whorton
## 8801 7/30/2009 10:58 am (blgay) employee was trying to close the tailgate on a tandem dump truck by the latch bar, his left middle finger was between the truck and bed. Supervisor: david capps
## 8802 7/30/2009 11:35 am (fblackmo) employee was walking up slope when, he felt pain in his lower back. Supervisor: danny davis
## 8803 7/30/2009 11:51 am (fblackmo) employee was lifting hand held post driver when, he felt pain in his left shoulder. Supervisor: roderick wyatt
## 8804 7/30/2009 12:18 pm (fblackmo) employee was assisting another employee change batteries for boat when, he felt pain in his right shoulder and neck area. Supervisor: s. H. Kinner
## 8805 7/30/2009 12:31 pm (fblackmo) employee was conducting road test when, driver hit bumper post in front of the building. Employee felt pain in her head. Supervisor: hank bowie
## 8806 7/30/2009 12:44 pm (fblackmo) employee was bitten by a tick while standing in tall grass replacing pipe. Supervisor: michael taylor
## 8807 7/30/2010 02:02 pm (fblackmo) employee passed out while operating backhoe when, he ran into another dot vehicle. Employee experienced heat exhaustion. Supervisor: michael e. Lemons
## 8808 7/30/2010 03:34 pm (fblackmo) employee experienced heat exhaustion after doing field work in extreme heat conditions. Employee experienced numbness in his body after returning to office. Supervisor: leon gross
## 8809 7/30/2010 03:48 pm (fblackmo) employee was replacing rest area sign when, he cut his index finger on right hand. Supervisor: r. Tadlock
## 8810 7/30/2010 08:38 am (fblackmo) employee was assisting in hanging weight on front of tractor when, it slipped and fell on his left hand and center finger. Supervisor: doug johnson
## 8811 7/30/2010 09:40 am (fblackmo) employee was removing jack from bed of pickup truck when, he felt pain in lower back. Supervisor: michael clinard
## 8812 7/30/2010 10:53 am (fblackmo) employee was working with crew removing trees and brush when, he came into contact with poison ivy. Employee has rash on both arms. Supervisor: thomas e. Gammons
## 8813 7/30/2010 11:05 am (fblackmo) employee was sharpen bush axe when, he cut his right index finger. Supervisor: m. T. Beane
## 8814 7/30/2010 11:15 am (fblackmo) employee went to refrigerator to retrieve item while turing, employee trip over trash can in the doorway. Employees head struck sheet rock wall(leaving indentation) causing her to fall to the floor and injure her knee and
## 8815 7/31/2004 11:15 am (fblackmo) employee states on form 19 that he was having chest pains. Supervisor: donald j. Baldwin
## 8816 7/31/2004 11:25 am (fblackmo) employee states on form 19 that she was putting in pipes on nc 87 south when, she came into contact with poison ivy on multiple body parts. Supervisor: thomas baldwin
## 8817 7/31/2004 11:39 am (fblackmo) employee states on form 19 that while walking to her car she, stepped on broken pavement which caused the injure to her right ankle. Supervisor: jilda mcgee
## 8818 7/31/2004 12:07 pm (fblackmo) employee states on form 19 that he was lifting a 6 x 6 angle piece of steel when, it slipped striking him on his right hand index finger. Supervisor: phillip parker
## 8819 7/31/2004 12:17 pm (fblackmo) employee states on form 19 that while driving a nail into plywood he, missed nail striking his left thumb with hammer. Supervisor: r. F. Minton
## 8820 7/31/2004 12:31 pm (fblackmo) employee states on form 19 that he found a tick on his left leg. Supervisor: jimmie evans
## 8821 7/31/2006 02:18 pm (fblackmo) employee found a tick bite on left hip while working in wetland. Supervisor: mack c. Rivenbark
## 8822 7/31/2006 02:27 pm (fblackmo) employee was lifting a concrete saw when, he felt a burning, and stiffness in his back. Supervisor: charles f. Vick 8/4/2006 12:19 pm (fblackmo) *do not use this claim, it is a duplication".
## 8823 7/31/2006 02:35 pm (fblackmo) employee bent over to pick up one end of 20" pipe when, he heard his back pop. Supervisor: darrell dean
## 8824 7/31/2006 02:43 pm (fblackmo) employee slipped down stairs while walking down steps causing the injury to her upper back area. Supervisor: pamela alexander
## 8825 7/31/2006 11:10 am (fblackmo) employee was doing a conventional density test at I-540 project(55lb). Voltmeter was blown by a gust of wind. Employee went to grab the voltmeter to prevent it from falling causing the injury to his left shoulder. Supervi
## 8826 7/31/2006 11:23 am (fblackmo) employee was loading limbs in chipper when, limb hit him in the chin. Supervisor: sam wilson
## 8827 7/31/2006 11:54 am (fblackmo) employee was moving chairs from hallway back into cubicle after carpet cleaning. Alicia simmons
## 8828 7/31/2006 12:28 pm (fblackmo) employee dragged an approximate 8-9" lifting chain when, she felt pain in her lower back. Supervisor: joe yiu kwong ng
## 8829 7/31/2006 12:46 pm (fblackmo) employee was pulling hydraulic hose off of a spool, mounted on a rack, and the hose became stuck. When employee pulled harder the hose became free causing employee to fall backwards, while trying to catch herself she felt
## 8830 7/31/2007 01:38 pm (fblackmo) employee was walking up steps to office when, she tripped and began to fall causing the injury to her right foot/toe. Supervisor: gordon coshin
## 8831 7/31/2007 03:02 pm (fblackmo) employee was working with drill when, debris got into his left eye. Supervisor: russell ramsey
## 8832 7/31/2007 03:23 pm (fblackmo) employee was cutting metal from stacked u channel sign posts when, post fell and landed on his left foot. Supervisor: todd whitaker
## 8833 7/31/2007 03:44 pm (fblackmo) employee was unloading lumber from truck to work site under bridge. He was carrying a 4 x 8 x 6 piece of lumber down the stairs when, lumber started to fall, he tired to catch it, and his finger got caught between lumber
## 8834 7/31/2007 04:23 pm (fblackmo) employee states years of operating pontoon bridge has damaged hearing. Supervisor: albert strickland
## 8835 7/31/2007 04:47 pm (fblackmo) employee was helping put tarp on truck when, strap sprung upwards striking him in the right eye. Supervisor: d. M. Honeycutt
## 8836 7/31/2007 04:55 pm (speedin) employee was pressure washing the back of the thermo-lay, some debris from the truck was blown back into the right eye causing a burning feeling. Employee did not have on safety glasses because the steam from the pressure
## 8837 7/31/2007 04:59 pm (fblackmo) employee found a tick imbedded on 6-28-07 on his upper thigh, he called his physician and went to the doctor on monday 7/2/017. Supervisor: r. W. Berry
## 8838 7/31/2007 11:24 am (fblackmo) employee was driving dot truck when, he was struck from behind by a private own vehicle causing injury to his neck area. Supervisor: buddy dixon
## 8839 7/31/2007 11:37 am (fblackmo) employee was attempting to sit in chair when, chair fell from under her causing her to fall. Employee felt pain in her back, hip, leg, hand, and head. Supervisor: dolphus r. Marshburn 02/23/2010 05:51 pm (lvaughan)
## 8840 7/31/2009 03:42 pm (blgay) employee stated that on 07/08/09, he was running the excavator and because of the bounce in the equipment, his right leg rolled over and pinched his right testicle. Employee was hurting a little and told his supervisor j. L.
## 8841 7/31/2009 09:52 am (blgay) employee was raking asphalt to smooth patch on pleasant ridge road and started having very sharp pains in his left shoulder and neck. Supervisor: kevin hazelwood
## 8842 7/5/2005 02:38 pm (fblackmo) employee was walking down a steep slick water soaked bank which gave way and he begin to slide with the ax. The ax hit his right wrist causing a cut. Supervisor: d. Brat henson
## 8843 7/5/2005 02:54 pm (fblackmo) employee was helping remove drift from around pipe when he came into contact with poison ivy. Supervisor: j. Ronald lee
## 8844 7/5/2005 09:33 am (fblackmo) employee was driving drill rig down slope of powerline right of way when, the back end of the rig slid pulling front end with it. Supervisor: neil roberson
## 8845 7/5/2005 10:54 am (fblackmo) employee was cleaning out a pipe with shovel when, the shovel slipped and his hand went into the end of the pipe. Employee cut his left hand behind the thumb requiring 9 stitches. Supervisor: wendell chastain
## 8846 7/5/2005 11:06 am (fblackmo) employee was bitten by a tick on his stomach area, top of belly below left lung. Supervisor: barry t. Coble
## 8847 7/5/2005 11:16 am (fblackmo) employee was helping repair joist on bridge #366 when, he came into contact with poison ivy. Supervisor: j. P. Callicutt
## 8848 7/5/2006 02:41 pm (fblackmo) employee was rearranging contents of a filing cabinet. He stated he had the bottom drawer pulled out and the cabinet tilted forward. Employee hurt his hand when trying to catch the cabinet and drawer. Supervisor: j. L. Linds
## 8849 7/5/2006 03:01 pm (fblackmo) employee stepped on the bed of rollback, slipped on chain, fell on back landing on edge of bed. Employee was loading a wrecked vehicle. Employee did not seek medical treatment until 6/27/06. Employee worked 6/23/06. Pain be
## 8850 7/5/2006 08:49 am (fblackmo) employee entered building on street level (p-2) and upon approaching elevator stepped in puddle of water and fell onto right knee. Supervisor: helen dickens
## 8851 7/5/2006 09:11 am (fblackmo) employee was sweeping road with push broom when, the handle broke and the jagged edge punctured his left eyebrow. Supervisor: l. W. Lyall
## 8852 7/5/2006 09:22 am (fblackmo) employee was measuring house for advanced acquisition. Yard was overgrown and cluttered with debris. Employee stepped over debris and onto a piece of interior molding with a nail protruding. Nail pierced shoe and left foot
## 8853 7/5/2006 09:39 am (fblackmo) employee was driving state pick up truck. He was trying to make a left turn when, a private vehicle passed improperly striking employees left bumper. Supervisor: r. Allen waddell
## 8854 7/5/2006 09:53 am (fblackmo) employee was putting on tailgate on dump trucks. The bed on the truck was sprung out causing tailgate not to fit properly causing employee to pull and push hard on tailgate, causing pain in lower back and left leg. Supervi
## 8855 7/5/2006 10:02 am (fblackmo) employee dropped a 4 x 4 x 16 post on uneven ground beside work area. Post fell on pivot point, came up and h it employee under chin causing cut and broken jaw. Supervisor: r. N. Harden 9/22/2006 03:43 pm (sshort)
## 8856 7/5/2006 10:14 am (fblackmo) employee was inspecting water lines when, she found ticks on right thigh and buttocks area. Supervisor: w. R. Marsh
## 8857 7/5/2006 10:24 am (fblackmo) employee was greasing backhoe in a twisted position when, he felt pain in back. Supervisor: j. W. Church
## 8858 7/5/2006 11:15 am (fblackmo) employee was running a chain saw to cut up a tree that had fallen when, the chain of the saw wedged into the tree log, rolled, and smashed his right hand into another log and injuring the same. Supervisor: j. M. Campbell
## 8859 7/5/2006 11:28 am (fblackmo) employee reported a crawling tick bite on 6/8/06 on right thigh after performing field survey work. On 6/26/06 employee complained of body aches and rash on left thigh. Supervisor: keith wagoner
## 8860 7/5/2006 11:43 am (fblackmo) employee was operating a boom mower when, vines became entangled in mowing deck. Employee removed vines and came into contact with poisonous plants. Supervisor: g. M. Tapp
## 8861 7/5/2007 09:17 am (fblackmo) employee was stepping out of trailer when, he slipped on some pine straw in the trailer twisting his left knee. Supervisor: bryant adams
## 8862 7/5/2007 09:30 am (fblackmo) employee was weed eating near stop sign on nc 241 when, a piece of metal flew up and struck him in the abdomen area. Supervisor: jerri parker
## 8863 7/5/2007 09:42 am (fblackmo) employee was working on us 70 bypass when, he was bitten by a tick on his neck. Supervisor: kevin g. Bowen
## 8864 7/5/2007 09:57 am (fblackmo) employee was riding elevator # 1 to 3rd floor when, the elevator came to a abrupt stop causing pain to her neck, shoulders, and lower back areas. Supervisor: david h. Bowden
## 8865 7/5/2007 10:22 am (fblackmo) employee was fixing a road sign and stepped off the back of the sign truck onto a flat metal drink can and twisted his right knee. Supervisor: rod wyatt
## 8866 7/5/2007 10:32 am (fblackmo) employee was performing survey duties in a wooded area when he was bitten by a tick on his upper right thigh. Supervisor: raymond pittman
## 8867 7/5/2007 10:57 am (fblackmo) employee was mounting a grader tire on rim using a coats hit tire machine. When the bead of the tire jumped over the rim, the backside of the tire pinched his left hand under the control valve cutting the top of his left h
## 8868 7/5/2007 11:26 am (fblackmo) employee was moving his tool box to a different location when, it rolled back onto his left ankle. Supervisor: r. A. Norris
## 8869 7/5/2007 11:43 am (fblackmo) employee was creating a template for parking stripes when, a splinter became logged into his right center finger. Supervisor: thomas bowser
## 8870 7/5/2007 12:45 pm (speedin) employee was running a trackhoe laying pipe, he turned his head to check for power lines and pulled his neck. Supervisor: joseph brown
## 8871 7/5/2011 02:46 pm (barnes) employee was dusting her office and stood in a chair to dust the top of the file cabinets. The chair broke and she fell to the floor. Employee injured her right foot. Supervisor: lee ainsworth
## 8872 7/6/2004 09:08 am (fblackmo) employee states on form 19 that over the years of running equipment with out proper hearing protection that, he has lost hearing. Supervisor: j. D. Shelton
## 8873 7/6/2004 09:21 am (fblackmo) employee states on form 19 that he was preparing to run a density when, he lost his footing causing him to fall and injure his lower back. Supervisor: e. A. Burwell
## 8874 7/6/2004 09:33 am (fblackmo) employee states on form 19 that he was exiting machine, lost footing and fell on pavement causing the injury to his left shoulder. Supervisor: b. R. Knowles
## 8875 7/6/2004 09:45 am (fblackmo) employee states on form 19 that he was riding in crew cab returning to the office when, his left eye became irritated. His left eye had became swollen when he reached the office. Supervisor: r. E. Brake
## 8876 7/6/2004 10:32 am (fblackmo) employee states on form 19 he was removing fuel filter form ford f150 truck and during the process the, fuel ran from filter into his right ear. Supervisor: e. D. Adcock
## 8877 7/6/2004 11:06 am (fblackmo) employee states on form 19 that when she went over to talk to the mechanic she was not paying attention and tripped over the forks of a forklift that had been lift 1' off the floor. Employee states she struck them mid way
## 8878 7/6/2005 11:27 am (fblackmo) employee was picking up storm drain out of hole with another employee when, he felt pain in his lower back. Supervisor: fatina beaver
## 8879 7/6/2009 04:16 pm (blgay) employee was staking right of way on jake reese court and noticed a tick. Supervisor: david robertson
## 8880 7/6/2009 09:38 am (blgay) employee was attempting to stop a vehicle with his blue lights and siren on, when another vehicle turned left in front of him hitting his vehicle and causing him to have neck and back injuries. Supervisor: gary ramsey
## 8881 7/6/2009 10:09 am (blgay) employee has made two statements of how the injury occurred. First employee was climbing into dump truck, when he felt or heard his left knee pop and felt pain in the same left knee. Second statement, while entering dump truck
## 8882 7/6/2009 10:23 am (blgay) employee was welding on a trailer and started chipping the slag, when a large piece went down the top of his work boot, causing a burn on the upper part of his left ankle/heel. Supervisor: m. Keith hutchison 7/6/2009 10:32
## 8883 7/7/2005 03:12 pm (blgay) employee was cutting and removing a tree, that had fallen in the roadway and come in-contact with poison ivy. Supervisor: w. H. Adkins
## 8884 7/7/2005 03:26 pm (blgay) employee was cutting and removing a tree, that had fallen in the roadway and come in-contact with poison ivy. Supervisor: w. H. Adkins
## 8885 7/7/2005 03:48 pm (fblackmo) employee was driving s. On s. Main street kannapolis, was stopped for traffic turing left, was struck by vehicle 2 in the rear. Employee was transported to northwest medical by ambulance. Employee suffered back and neck pa
## 8886 7/7/2005 03:50 pm (blgay) employee was pulling asphalt with shovel and on the inside of right elbow felt a burning pain while pulling asphalt. Supervisor: don macon
## 8887 7/7/2005 08:49 am (fblackmo) employee was cutting limbs on highway right of way when, he came into contact with poison ivy. Supervisor: a. G. Short
## 8888 7/7/2008 12:05 pm (fblackmo) employee was driving when, he fell asleep and hit road sign. Employee woke up, over corrected the vehicle, and over turned into a ditch. Employee felt pain in left shoulder and had several contusion. Supervisor: archie sm
## 8889 7/7/2009 03:20 pm (blgay) employee was conducting a road test. On the road test route, the customer made a wrong turn and ran into a wooden fence, causing employee to have back and toe pain. Supervisor: teresa parker
## 8890 7/7/2009 03:37 pm (blgay) employee was walking on the shoulder of new salem road and stepped into a hole, causing his left knee to twist. Supervisor: terry pugh
## 8891 7/7/2011 02:59 pm (fblackmo) employee was replacing brake drums on a c7500 chevrolet dump truck. Installing the new drum the employee attempted to tap the drum on to the hub with a 8 lb sledge hammer. The handle of the hammer caught on equipment fende
## 8892 7/7/2011 10:25 am (fblackmo) employee is not sure exactly where it happened or what he was doing when it happened. Employee pulled muscle in right upper arm. Supervisor: timothy a. Everette
## 8893 7/7/2011 10:37 am (fblackmo) employee was pulling dirt off the back of flatbed truck when he felt pain in his left shoulder and arm. Supervisor: robbie smith
## 8894 7/7/2011 11:32 am (fblackmo) employee was deburing a part in the lathe using a file. Employees shirt got caught in the part. Employee felt pain in his left hand. Supervisor: alfred wilson
## 8895 7/7/2011 12:09 pm (fblackmo) employee was lifting steel when he raised his arm he heard a pop in his right shoulder. Supervisor: guy white
## 8896 7/7/2011 12:23 pm (fblackmo) employee had gotten out of truck and reached back to get a charger when he felt a sharp pain in the center area of his back. Supervisor: doug williams
## 8897 7/7/2011 12:34 pm (fblackmo) employee was installing a sign posts (working alone), having to hold the post with one arm and operate a hydraulic post driver with the other caused him to have soreness in his right shoulder area. Supervisor: todd whitake
## 8898 7/7/2011 12:52 pm (fblackmo) employee was walking from shop to get the backhoe that was in the rear of the shop when wind blew foreign matter into his right eye. Supervisor: robert cannady
## 8899 7/8/2004 11:21 am (fblackmo) employee states on form 19 that she was walking up stairs when, she stripped and fell on left leg. Supervisor: dan domico
## 8900 7/8/2004 12:37 pm (fblackmo) employee states on form 19 that while working at work zone site a private vehicle came through work zone swerved to Miss Cones when, car mirror hit employee. Employee states he was knocked back onto car hood which caused
## 8901 7/8/2005 02:58 pm (blgay) employee was moving a three drawer file cabinet from old work station to new work station and injured his back. Supervisor: betty yancey
## 8902 7/8/2005 08:23 am (fblackmo) employees were patching potholes with hot asphalt when, the driver of the crew cab back crew cab into another asphalt truck. Supervisor: d. O. Cooper
## 8903 7/8/2005 08:41 am (fblackmo) employee was cutting right of way when, he slipped and fell in a pile of poison ivy. Supervisor: mark c. Smith 07/26/2005 02:02 pm (kbarefoo)
## 8904 7/8/2005 09:01 am (blgay) employee was moving a wooden pallet to mow. Employee was stung 3 times by yellow jackets. 2 stings to upper right arm and 1 sting to lower left arm. Supervisor: b. J. Todd
## 8905 7/8/2008 09:47 am (fblackmo) employee was picking up limbs and branches when, he came into contact with poison ivy, both hands and arms. Supervisor: r. W. Blalock
## 8906 7/8/2008 09:59 am (fblackmo) employee was stung by unknown insect on his forehead while pickingup a sign. Supervisor: larry t. Williford
## 8907 7/8/2009 02:21 pm (fblackmo) employee was in the engine room of the m/v helping russell lift a deck plate when, he felt pain in his lower back area. Supervisor: thomas bowser
## 8908 7/8/2010 02:33 pm (fblackmo) employee was using lawn mower when, he trip over the machine, and fell face down into the mower. Employee lost his front and two bottom teeth. Supervisor: richard roberts
## 8909 7/8/2010 11:53 am (fblackmo) employee was flagging traffic when a private concrete truck passed by and blew the air lines. The cap on the air lines fly off and hit the employee on the left side of his head. Supervisor: johnny price
## 8910 7/8/2010 12:13 pm (fblackmo) employee was cutting brush when, he tripped on a log, fell landing on his machete, and cause cut to his left index finger. Supervisor: chuck mcdonald
## 8911 7/9/2007 04:16 pm (speedin) employee was standing by the back entrance of the traffic management incident control building, when imap 125 truck drove up and blew his air horn. Supervisor: heath holland 7/9/2007 04:26 pm (speedin) 8/21/2007 09:
## 8912 7/9/2009 01:38 pm (blgay) employee was sitting in the drivers seat of vehicle when a private vehicle struck his mirror and a piece of glass from the mirror, got into his left eye. Supervisor: mike gibson
## 8913 7/9/2009 01:56 pm (blgay) employee was manually pulling on a t-post (fence post). Post broke causing employee to fall backward down a slope, causing a ligament sprain to left shoulder. Supervisor: b. R. Putnam
## 8914 7/9/2009 04:06 pm (blgay) employee was getting off back of utility truck. Employee stated that the sun was in his eyes when he stepped onto bumper his foot slipped, causing him to fall. His right knee hit bumper of truck and then employee fell onto as
## 8915 7/9/2010 02:29 pm (fblackmo) employee was taking trash bags out to truck when, one fell and employee stepped on it causing injury to his left ankle. Supervisor: l. C. Dedmon
## 8916 7/9/2010 03:17 pm (fblackmo) employee bent down to pick up hard hat when his hand came into contact with hot muffler on generator; cause burn to right hand. Supervisor: pamela carriker
## 8917 7/9/2010 03:43 pm (fblackmo) employee was helping three other employees layout stop bar with nylon cords. A car ran over and picked up the nylon cord causing the cord to partially wrap around his feet. Employee was pulled into the roadway striking his
## 8918 7/9/2010 04:15 pm (fblackmo) employee was helping crew with patch work when, he started feeling dizzy, sick, and passed out. Employee was transported to the hospital by ambulance were he was treated for heat exhaustion. Supervisor: j. M. Delapp
## 8919 7/9/2010 04:25 pm (fblackmo) employee was working on cleaning a metal step stool with wire wheel attached to hand held grinder when, a piece of metal flew into his left eye (employee was wearing safety glasses). Supervisor: mike broome
## 8920 7/9/2010 04:38 pm (fblackmo) employee was moving a grease barrel form pick up truck when, he felt pain in his groin area and lower back. Supervisor: keith rhyne
## 8921 7/9/2010 04:47 pm (fblackmo) employee broke an already partial broken windshield at salvage yard while trying to identify the vin number. Glass from the windshield got into his left eye. Supervisor: michael weaks
## 8922 707 sprayed in l eye of EE while in the treatment room.
## 8923 8 hours of computer work/off and on continuiously ()
## 8924 8/1/2005 02:20 pm (fblackmo) employee states while typing and conducting bridge inspections over a long period of time he, experienced pain in his left hand and wrist. Supervisor: mark wade
## 8925 8/1/2005 03:09 pm (fblackmo) employee was working at the computer in his office when, he was bitten by a spider. Supervisor: randy mckinney
## 8926 8/1/2005 03:24 pm (fblackmo) employee was hit in face while dis-connecting six inch pump hose. Supervisor: john kearney
## 8927 8/1/2005 03:35 pm (fblackmo) employee was removing a fuel tank lid to gain access to fuel pump when, he felt pain in his right shoulder
## 8928 8/1/2005 11:02 am (fblackmo) employee was pulling out of parking lot when, another vehicle hit her in the rear. Employee felt pain in her head and neck area. Supervisor: m. G. Jarman
## 8929 8/1/2005 12:50 pm (fblackmo) employee was traveling on highway when, traffic stop suddenly causing a private vehicle to hit him in the rear. Whip lash. Supervisor: donald p. Smith jr
## 8930 8/1/2007 09:28 am (fblackmo) employee tripped over rock stockpile causing injury to right knee. Supervisor: glenn crews
## 8931 8/1/2007 09:52 am (fblackmo) employee was working at nc welcome center on I-85 with backhoe crew digging a ditch for roadside environmental. When he went to the rest room, he started to feel dizzy and fainted. Employee was taken to hospital for evalua
## 8932 8/1/2008 02:13 pm (fblackmo) employee was pulling dead animal off roadway when, he felt pain in his lower back & leg. Supervisor: danny baker
## 8933 8/1/2008 02:22 pm (fblackmo) employee was unloading a tamp from the patch trailer using the winch built onto the patch trailer, as the tamp was being lowered employees right hand slipped off the handle. The handle spun over and hit employee on the rig
## 8934 8/1/2008 11:25 am (fblackmo) employee was driving agency vehicle when vehicle was struck on passenger side door by a private owned vehicle that ran a stop sign. Employee felt pain in his left shoulder, elbow, and upper back. Supervisor: beth horner
## 8935 8/1/2008 11:40 am (fblackmo) employee was walking in parking lot during break when, she tripped on a rock causing injury to her left ankle. Supervisor: marsha edgar
## 8936 8/1/2008 12:21 pm (fblackmo) employee pulled on the shoulder of road to pick up litter bags when, private own vehicle struck his vehicle in the rear. Employee felt pain in his neck and back. Supervisor: shannon baylor
## 8937 8/1/2008 12:32 pm (fblackmo) employee was helping another mechanic lift a marine battery when, he felt a sharp pain in his lower back. Supervisor: adron g. Wade
## 8938 8/1/2008 12:43 pm (fblackmo) employee was lifting pipe off truck when, he felt pain in his left shoulder. Supervisor: thomas singleton
## 8939 8/10/2004 10:42 am (slee) employee was stopped at new hope road stop light when driver of pov came up from the rear at a high rate of speed to stop and rammed sov in the rear. Driver of private vehicle possibly drinking.
## 8940 8/10/2005 09:44 am (fblackmo) employee was on a ladder painting the outside of building when, ladder slipped causing him to fall. Employee fell sideways approximately 8 feet landing on his right foot and side. Supervisor: ben williams
## 8941 8/10/2006 02:27 pm (fblackmo) tailgate on dump truck was stuck closed. Employee was pulling on the tailgate trying to open it. The tailgate came open catching his thumb on his right hand between the chain and the tailgate. Supervisor: william edward m
## 8942 8/10/2006 02:38 pm (fblackmo) employee was cleaning the gas pig cooker. The cooker was ignited with the lid open and then closed to heat grill. Employee lifted the grill lid flames shot out causing burns to face, head, and arms. Supervisor: roderick w
## 8943 8/10/2006 02:49 pm (fblackmo) employee was weedeating when, he came into contact with poison ivy. Supervisor: doug martin
## 8944 8/10/2006 02:58 pm (fblackmo) employee was clearing trees and brush from right of way when, he was exposed to poison oak. Supervisor: s. B. Freeman
## 8945 8/10/2006 03:08 pm (fblackmo) employee was helping in the loading of the injection truck which was backed up to the dock area. Employee was attempting to step off of dock onto a rock that was being used as a make shift step. Employee stepped on the ro
## 8946 8/10/2007 12:06 pm (speedin) employee had to mount trailer with right foot in order to make repairs to roller which was on the trailer. Employee's right foot pivoted and he felt a sharp burning sensation in the ball of his right foot. Supervisor: scot
## 8947 8/10/2009 12:03 pm (blgay) employee was walking down steps in the auditorium, missed step and fell down on his right hand. Supervisor: p. L. Eaker
## 8948 8/11/2005 03:18 pm (fblackmo) employee was cutting and removing a tree for site distance from roadway signs when, he came into contact with poison ivy. Supervisor: v. G. Scales
## 8949 8/11/2005 10:05 am (blgay) employee was walking up a slight incline to pick up backsight when he felt his left knee crack twice. Supervisor: george hart
## 8950 8/11/2005 10:27 am (blgay) employee broke out in a rash in the evening of 7-21-05 after relieving himself in the woods earlier in the day. Employee was off the next day and when he returned to work on 7-25-05 he informed secretary that he had poison I
## 8951 8/11/2005 10:45 am (blgay) employee was working on county home road digging out asphalt. Employee felt something crawling on his back and slapped at same time. Employee felt a burning sensation and removed his shirt. Employee found a mark where he had
## 8952 8/11/2005 11:13 am (fblackmo) employee was flagging traffic while crew was cutting tree full of bees. Truck with tree passed by employee, bees stung him on his face, nose, back, chest, hands, and arms. Supervisor: tal ingle 02/16/2006 09:03 am (kbar
## 8953 8/11/2005 12:39 pm (fblackmo) employee was dumping debris from tandem truck when, he slipped on mud causing the injury to his left knee. Supervisor: jerry hildreth
## 8954 8/11/2006 09:07 am (fblackmo) employee was loading density equipment into truck when, he felt pain in his back. Supervisor: c. D. Kirkman
## 8955 8/11/2006 09:18 am (fblackmo) employee was loading pipe band for construction project on back of truck bed when, his foot slipped striking right knee on tailgate. Supervisor: alan e. Brown
## 8956 8/11/2006 09:29 am (fblackmo) employee was shoveling dirt and grass into the back of truck when, he felt pain in his lower back area. Supervisor: charles f. Vick
## 8957 8/11/2006 09:39 am (fblackmo) employee was working in excessive heat repairing potholes with hot mix asphalt when, she experience heat exhaustion symptoms. Supervisor: w. M. Key
## 8958 8/11/2006 09:53 am (fblackmo) employee was removing a 23 lb. Sign rack from a rental mower when, he felt a pull on his lower right side of his back. Supervisor: t. L. Pugh
## 8959 8/11/2008 07:59 am (blgay) employee was walking in the east bound lane when a truck caught a power line. The cable broke and after hitting several pieces of equipment, struck the employee just below the left knee. Supervisor: norman w. Graham
## 8960 8/11/2008 08:14 am (blgay) employee was walking down slope to inspect pipe and stepped into a hole with his left foot, causing him to lose his balance and fall down. Supervisor: tim powers
## 8961 8/11/2009 10:14 am (fblackmo) employee was placing a plastic orange traffic control barrel on its base when, he felt pain in his right knee. Supervisor: w. R. Marsh
## 8962 8/11/2009 10:33 am (fblackmo) employee was mowing wildflower beds when, he felt a sting to his chest. Supervisor: harry hayes
## 8963 8/11/2009 11:02 am (fblackmo) employee found a tick on his upper right hip while taking a shower. Supervisor: b. W. Harper
## 8964 8/11/2010 12:13 pm (fblackmo) employee was moving valves into engine room when, he felt pain in his lower back. Supervisor: marshall coleman
## 8965 8/11/2010 12:25 pm (fblackmo) employee was reaching for door handle when another co-worker(entering) pushed open the door onto his left hand. Supervisor: richard dewhurst
## 8966 8/12/2004 02:14 pm (fblackmo) employee states on form 19 that he was lifting a 40-50 lb bag of (dural) cement when, he felt pain in his upper back area. Supervisor: ronald e. Joyce
## 8967 8/12/2004 03:07 pm (fblackmo) employee states on form 19 that he was taking in mooring line when, his right foot slipped under bumper aboard vessel. Supervisor: ken morris 06/24/2005 11:28 am (kbarefoo)
## 8968 8/12/2004 03:21 pm (fblackmo) employee states on form 19 he was operating mowing tractor when the front wheel fell in the ditch and became stuck. Employee exited the tractor and proceeded to walk around left side of machine when, he slipped and grabb
## 8969 8/12/2005 02:40 pm (fblackmo) employee states he was bitten on his left knee by a spider while driving dump truck. Supervisor: wendell chastain
## 8970 8/12/2005 08:31 am (fblackmo) employee was throwing bags of trash into dump truck when, she felt pain in her right shoulder and back. Supervisor: m. D. Presnell
## 8971 8/12/2005 09:56 am (fblackmo) employee was spraying spider spray "hot shot" around her desk area. Employee took her shoes off to climb up on the desk to use the spray to prevent the spray from falling back into her eyes. A few days later her eyes were
## 8972 8/12/2005 10:47 am (fblackmo) employee was working on motor vehicle changing a valve when, the wrench slipped causing him to hit his arm on the deck. Supervisor: john robert butler
## 8973 8/12/2005 12:47 pm (fblackmo) employee got into his dump truck and proceeded to leave the complex. Employee reached the area near the division office when, he felt a sharp stinging pain on his lower back. Supervisor: chip garris
## 8974 8/12/2008 02:33 pm (fblackmo) employee was shoveling asphalt during a pavement operation when, he felt pain in his lower back. Supervisor: darrell wilkins
## 8975 8/12/2009 02:04 pm (blgay) employee was chipping welding and hot slag popped into his right eye. Supervisor: tommy culberson
## 8976 8/12/2009 02:16 pm (blgay) employee was tightened up wheel lugs with a torque air gun. The unit slipped and moved sideways toward the center of the hub, which pinched his middle finger on his left hand between air gun and hub. Supervisor: james brooks
## 8977 8/12/2009 02:57 pm (blgay) employee had delivered concrete samples to the m&t lab in asheville and left them outside, due to the lab being closed at lunch. While driving back to the project, a gnat flew into employees right eye. While removing the gna
## 8978 8/12/2009 10:18 am (blgay) employee was trying to enter passenger side of truck. Employee slipped because of muddy conditions and struck left knee on step. Supervisor: c. R. Mcconnell
## 8979 8/12/2009 10:29 am (fblackmo) employee states hearing loss in both ears due to years of operating and being around heavy equipment. Supervisor: c. W. Wethington jr
## 8980 8/12/2009 10:40 am (fblackmo) employee was washing out the bed of his tandum dump truck. The hose is located over by the salt spreader area, employee had to walk through this location to cut the hose off. Employee turned to his left to pull the water
## 8981 8/12/2009 11:05 am (blgay) employee was cleaning out pipe with shovel, when he came in contact with yellow jackets nest. Bee stung employee on right eyelid, causing eye to swell shut. Supervisor: troy dairymple 8/12/2009 11:12 am (blgay)
## 8982 8/12/2010 03:04 pm (lbarnes) employee was a passenger in a dump truck that was traveling down the road when a jeep crossed the center yellow line and hit us almost head on. Employee felt pain in the neck. Supervisor: ronald grier
## 8983 8/12/2010 03:59 pm (lbarnes) employee was working on hydra platform when employee began feeling sick, light headed and pale. Employee stated that he blacked out. Supervisor: chad dennis
## 8984 8/12/2010 09:02 am (lbarnes) employee met truck on narrow road and met on yellow line and both trucks hit mirrors. Employee injured left ear. Supervisor: lee ainsworth
## 8985 8/12/2010 12:40 pm (lbarnes) employee was performing surveying tasks when he disturbed a bees nest and was then stung multiple times. Employee received insect stings to right arm, left arm, abdomen, and chest. Supervisor: s. H. Killough 8/18/2010 06:27
## 8986 8/13/13 was assisting with arrest. Defender pulled away when putting on handcuffs. Officer felt pull in neck area. On 8/21/13 felt sharp pain in right shoulder/neck and arm lifting boxes of paper and again when getting in/out vehicle at offenders reside
## 8987 8/13/2004 02:25 pm (fblackmo) employee states on form 19 that a hydraulic line had burst and was spraying hot hydraulic fluid. In order to avoid the fluid, employee jumped out of the way causing the injury to his lower back. Supervisor: o. D. Sparks j
## 8988 8/13/2004 02:35 pm (fblackmo) employee states on form 19 that while surveying in a wooded area he, found a tick on his upper part of left leg. Supervisor: trey dickerson
## 8989 8/13/2004 02:54 pm (bhenders) private vehicle struck state vehicle at front of state vehicle on drivers side. Employee feels private vehicle ran red light; however, no witnesses. Therefore, no charges were filed on either driver.
## 8990 8/13/2004 03:48 pm (fblackmo) employee states on form 19 that he was opening a box with a leatherman knife, the knife slipped cutting his hand between the index and center fingers on left hand. Supervisor: gerald messer
## 8991 8/13/2004 04:08 pm (fblackmo) employee states on form 19 that while cutting and trimming brushes he came into contact with poison ivy. Supervisor: jeff teague
## 8992 8/13/2004 08:30 am (fblackmo) employee states on form 19 that he was hand loading rolls of wire on trailer when, he stepped in opening between boards causing ankle to strike frame of trailer. Supervisor: roy pittman
## 8993 8/13/2004 08:52 am (fblackmo) employee states on form 19 that he was cutting a metal plate using metal torch. The metal got hot causing it to pop when, a piece of the metal fly into his right eye. Supervisor: b. F. Kizziah
## 8994 8/13/2004 09:24 am (fblackmo) employee states on form 19 that he was chopping brush on right of way in preparation for slope stakes in survey party. Employee placed the bush axe into the embankment as he started to climb the slope. The axe shifted c
## 8995 8/13/2004 10:25 am (fblackmo) employee states on form 19 that while removing tongue hinge pin with hammer his center finger on left hand was caught between the pin and hammer. Supervisor: danny parker
## 8996 8/13/2004 10:38 am (fblackmo) employee states on form 19 that while working on roadway a private vehicle passed by causing debris to go into his left eye. Supervisor: michael biedell
## 8997 8/13/2004 10:56 am (fblackmo) employee states on form 19 that while using a bush axe to cut top out of tree, the top of the tree struck him in the mouth. Employee states his lip is brushed and left upper tooth was chipped. Supervisor: t. J. Davis
## 8998 8/13/2004 11:18 am (fblackmo) employee states on form 19 that he was on his knees on cement floor trying to pull out a starter when, he felt pain in his left knee. Supervisor: danny r. Parker
## 8999 8/13/2007 02:37 pm (speedin) employee was moving grass and weeds to get a measurement of a pipe on sr1464, and came in contact with poison oak. Supervisor: w. S. Gallman
## 9000 8/13/2007 03:18 pm (speedin) employee was slope staking right angles and had allergic reaction poisonous plant. Supervisor: j. A. Russell
## 9001 8/13/2007 04:28 pm (speedin) employee was using equipment. He exited the equipment and stepped on a rock which caused him to fall onto his left knee. Supervisor: wallace pulliam
## 9002 8/13/2007 04:51 pm (speedin) employee was digging out and felt a sting on his left ankle. Supervisor: dannie tomberlin
## 9003 8/13/2008 08:46 am (fblackmo) employee(s) was helping clean up debris during a boom operation when, one of the limbs fell striking him on the right side of his head, and left hand. Supervisor: carlis smith
## 9004 8/13/2008 09:05 am (fblackmo) employee was cutting and handling joist with crysot on it with a chain saw. Dust and debris from the joist came in contact with employees skin. Supervisor: albert strickland
## 9005 8/13/2008 11:17 am (fblackmo) employee was assigned to the msd tank on m/v to remove rust on 7/15 /08 and 7/16/08. After work on 7/16/08 he, went to urgent care due to chest pain. He was diagnosed with pericarditis. On 7/20/08 he went to wake med bec
## 9006 8/13/2009 04:02 pm (fblackmo) employee(two) was cleaning out a driveway pipe when he noticed a copperhead snake. He pulled the snake out of the pipe to kill it when, employee (hester) stopped him. Employee(hester) stated " he would move the snake out
## 9007 8/13/2009 09:00 am (fblackmo) employee was inside a jlg unit painting stripes on m/v hatteras. Employee went to move joystick and jammed right thumb on controls. Supervisor: thomas bowser
## 9008 8/13/2009 09:14 am (fblackmo) employee was putting on fan belt when, his right index finger got got between the idler pulley and belt tension. Supervisor: chester e. Gartin
## 9009 8/13/2009 09:28 am (fblackmo) employee (rex willie) was operating a vibratory roller when he got to close to the edge of the stone and became scared. Employee (greg holland) asked him to get off and he would roll the edge. Rex then began to jump off t
## 9010 8/13/2009 09:47 am (fblackmo) employee stepped on broken pallet while looking in the back of truck. Employee felt pain in his left ankle. Supervisor: w. T. Mckenzie
## 9011 8/13/2010 02:22 pm (lbarnes) employee was working with patch crew on mt. Carmel church road, when he felt slight pain in shoulder, elbow and wrist. It became more intense when he was raking and shoveling asphalt and picking up sign stands. Employee has p
## 9012 8/13/2010 08:22 am (lbarnes) employee was installing a portable traffic counter in alleghany county and was stung by a bee. This employee has allergic reactions to bee/wasp stings and carries an epinephrine injection with him for this type of incident. E
## 9013 8/13/2010 11:25 am (lbarnes) employee was filling distributor tank truck with tack and tack got on his right arm and burned his arm. Supervisor: j. C. Mundy
## 9014 8/14/2007 04:49 pm (fblackmo) employee was working on the dredge carolina in the gantry as he was leaning forward with a chipper in his left hand facing gantry foreign material flew into right eye. Supervisor: thomas f. Bowser
## 9015 8/14/2007 05:02 pm (fblackmo) employee was cleaning out driveway pipe with long handle shovel when, he felt pain in his lower back. Supervisor: g. L. Baker
## 9016 8/14/2007 05:11 pm (fblackmo) employee bumped his arm up against hot hose causing a burn to left forearm. Supervisor: pat henry
## 9017 8/14/2008 01:52 pm (blgay) employee was climbing down from truck when he twisted his right ankle. Supervisor: w. R. Mcgaha
## 9018 8/14/2008 02:09 pm (blgay) employee was inspecting concrete pavement operation on highway construction project r-2248d. When he attempted to cross a stringline located approx. 12" above the ground, he tripped on it and fell forward. Employee used his
## 9019 8/14/2008 09:58 am (blgay) employee was opening a main water valve to asheville hp office. During the opening process, right hand slipped on valve and was pinched and pinky finger was cut. Supervisor: jeff drayer
## 9020 8/14/2009 04:07 pm (fblackmo) employee was lifting large battery when, he felt pain in his right wrist. Supervisor: steve h. Taylor
## 9021 8/15/2006 01:06 pm (fblackmo) employee was checking out his motorgrader prior to starting work when, he stepped off the grader onto the ground he stepped into a hole causing the injury to his left ankle. Supervisor: c. Smith
## 9022 8/15/2006 01:16 pm (fblackmo) employee was chipping brush from storm damage when, he came into contact with poison oak. Supervisor: r. E. Metcalf
## 9023 8/15/2006 01:25 pm (fblackmo) employee was removing riles from the cabinet drawer and was putting them on the pushcart when, she heard a loud pop and felt pain in her left shoulder area. Supervisor: joyce wilson
## 9024 8/15/2006 01:42 pm (fblackmo) employee was driving a tractor with his right elbow rubbing on the gas tank & roll over protector structure due to confined space where the left arm quadrant point lift controls are located. Employee has scratches and bru
## 9025 8/15/2006 01:54 pm (fblackmo) employee was sharpening knife, and cut two fingers, nicking the third on his left hand. Supervisor: terry l. Gray
## 9026 8/15/2006 02:04 pm (fblackmo) employee chad smith wrapped his arms around employee gibbs and squeezed him. Employee gibbs indicated that he felt something move in his ribs when Mr. Smith squeezed him. Employee returned to work on monday still stating t
## 9027 8/15/2006 02:41 pm (fblackmo) employee was operating a weed eater when, she came into contact with poison ivy. Supervisor: g. M. Tapp
## 9028 8/15/2006 02:52 pm (fblackmo) employee was lifting a filter sock lodged in drainage box to alleviate potential flooding when, he felt pain in his back. Supervisor: c. D. Kirkman
## 9029 8/15/2007 09:13 am (fblackmo) employee was conducting pre truck inspection when, he was bitten on left elbow. Supervisor: travis mintz
## 9030 8/15/2007 09:32 am (fblackmo) employee was bending out when he felt dizzy. Vertigo. Supervisor: w. M. Stone
## 9031 8/15/2007 09:52 am (fblackmo) employee came into contact with poison ivy while working on state road. Supervisor: allen waddell
## 9032 8/15/2008 09:34 am (blgay) employee was moving and lifting 15" pipe in ditch, when he felt something pull in his right shoulder. Supervisor: kevin hazelwood
## 9033 8/15/2008 09:44 am (blgay) employee was clearing phone lines from traffic head and was standing in the painted island. Private vehicle came from side street to make a left turn and hit employee from behind, causing torn ligaments in left leg, injury t
## 9034 8/16/2005 09:39 am (fblackmo) on thursday, June 23, 2005 employee left work early due to a sore back. Employee told his supervisor, darrell wilkins, that he did not think it was work related. Employee has not worked since 06/23/05. Employee states tha
## 9035 8/16/2005 09:56 am (fblackmo) employee was helping to replace s stop sign that had been removed due to widening project. As the post was being hammered into the ground, the post broke and the sign came down hitting him on the left side of the head. Su
## 9036 8/16/2005 11:10 am (fblackmo) employee was clearing line of bushes and briar down the base line. Employee states some of the briar and bushes was growing through an old fence that was crossing the line. Employee could not cut them, so he used his han
## 9037 8/16/2005 11:24 am (fblackmo) employee was unloading pcs and monitors and placing them in a portable storage bin. The entrance door to the bin is narrow and requires lifting feet upward to enter. While carrying a monitor to the storage bin employees l
## 9038 8/16/2006 02:44 pm (fblackmo) employee was installing silt fencing on new construction project. Grader was pulling a ditch for the silt fence when, the grader stop working, losing all controls and rolled toward employee. Operator yelled for employee t
## 9039 8/16/2006 03:13 pm (fblackmo) employee was operating belt loader when, trash got into his left eye. Supervisor: w. D. Lane
## 9040 8/16/2006 03:23 pm (fblackmo) employee was clearing trees off state road when, he came into contact with poison ivy on multiple body parts. Supervisor: r. D. Holland
## 9041 8/16/2006 03:40 pm (fblackmo) employee was stacking straw from trailer to flatbed truck when, one of the bales hit him on the back part of his leg causing the front part of his leg to hit tailgate. Supervisor: richard l. Icard
## 9042 8/16/2007 02:36 pm (speedin) employee was crossing interstate and while crossing median he used the concrete barrier to push off with his leg and a sharp pain went to ankle and lower leg. Supervisor: roger hamilton
## 9043 8/17/2005 01:57 pm (fblackmo) employee was removing brush from roadway when, he came into contact with poison ivy. Supervisor: m. H. Thomas
## 9044 8/17/2005 02:23 pm (fblackmo) employee was taking freight off of a cart when, he slipped and fell over a ladder due to moisture from the cart. Employee felt pain in his shoulder, lower leg, and hip area. Supervisor: w. M. Stone
## 9045 8/17/2005 03:38 pm (fblackmo) employee went into the woods to address the call of nature. While in the woods, employee was stung on right eye lid by unknown insect. Supervisor: h. A. Moore and w. T. Garrett
## 9046 8/17/2005 03:54 pm (fblackmo) employee was attempting to relocate storage shelf in storage room when, he picked up shelves he felt pain in his back area. Supervisor: ron graham
## 9047 8/17/2005 04:06 pm (fblackmo) employee was placing a high water sign up on the shoulder when, he stepped into a fire ant mound. Employee was unaware of the mound due to the lack of light and high grass during the night operation. Supervisor: j. R. Bell,
## 9048 8/17/2005 04:19 pm (fblackmo) employee was clearing limits when, he was stung by a bee on his left arm. Supervisor: john mcdonald
## 9049 8/17/2010 02:12 pm (fblackmo) employee was attempting to move tongue of tar kettle around when he felt something pull in his lower back. Supervisor: g. N. Allen
## 9050 8/17/2010 02:22 pm (fblackmo) employee was pulling a mowing tractor out of the ditch when, the chain slipped causing the truck to rock causing his head to strike the window. Supervisor: richard harden
## 9051 8/17/2010 02:36 pm (fblackmo) employee was operating the belts on the rock spreader on state road. A hose busted and fluids go on the driver (Mr. Brewington). Mr. Brewington hit brakes while crossing over rail road tracks. Employee chavis states he in
## 9052 8/17/2010 04:29 pm (fblackmo) employee was digging around an open pipe when, she stepped backwards (ground dipped sideways) twisting her left foot/ankle. Supervisor: jonnie barefoot 09/24/2010 02:14 pm (lvaughan)
## 9053 8/17/2010 04:56 pm (fblackmo) employee was driving pins out of brake spider with a punch and hammer. Employee missed punch and hit his left wrist with the hammer. Supervisor: albert vann
## 9054 8/17/2011 11:10 am (fblackmo) employee was traveling from state road 1616 (sanders road) to state road 1133 (southarde road) on motor grader. Employee was on state road 1127 (south skennah) when a private owned vehicle came around curve left of center
## 9055 8/18/2004 02:36 pm (fblackmo) employee was preparing to install a concrete right of way monument when, an insect bit her on the left forearm. Supervisor: eddie cagle
## 9056 8/18/2004 02:56 pm (fblackmo) employee states on form 19 that she was using a weed eater (handle bar type) when, her right shoulder popped out of joint. Supervisor: keith hill
## 9057 8/18/2004 04:35 pm (fblackmo) employee states he was turning in a driveway when, a private vehicle hit him in the back fender. Supervisor: jimmie evans
## 9058 8/18/2004 04:56 pm (fblackmo) employee was replacing ball joints on a ford f-150. He was using his right hand to push on a 1/2 ' ratchet to loosen the brake caliper bolts and felt pain in the base of his right hand. He reported the incident to his s
## 9059 8/18/2004 09:54 am (fblackmo) employee was driving a backhoe on I-240 when, it was struck from behind by a private vehicle. Employee felt pain in his lower back area. Supervisor: b. R. Weeb
## 9060 8/18/2004 10:21 am (fblackmo) employee states on form 19 that while cutting vegetation he, came into contact with poison ivy on multiple body parts. Supervisor: kyle albright
## 9061 8/18/2004 10:57 am (fblackmo) employee was removing chairs from maintenance building while cleaning when, he felt pain in his back area. Supervisor: david livingston
## 9062 8/18/2005 08:22 am (fblackmo) employee states while cutting limbs at property corner he was stung by swarming bees coming from inside the ground. Supervisor: g. A. Burton
## 9063 8/18/2005 08:33 am (fblackmo) employee was removing a tree from road when, he came into contact with poison ivy. Supervisor: a. S. Bailey
## 9064 8/18/2005 08:45 am (fblackmo) employee was stacking easement in a tick infest area when, he found a tick on his head. Supervisor: john mcdonald
## 9065 8/18/2005 09:25 am (fblackmo) employee was completing a vin verification on a 1990 dodge, when he was bitten by a spider on his left elbow. Supervisor: sa hall
## 9066 8/18/2005 09:55 am (fblackmo) another employee (frankie, bill, ronnie, and gary) observed that employee was stumbling, falling, dizzy, and incoherent. Employee had used potato rake and was walking in ditch that had been cleared. Employee was hot and went
## 9067 8/18/2005 10:07 am (fblackmo) employee was helping to lift a 5 gallon water cooler from pick-up when, he felt pressure in his rectal area. Supervisor: walt crumpler
## 9068 8/18/2005 11:03 am (fblackmo) employee was installing one way arrow signs on us 29 when, he heard a pop and numbness in his right hand and fingers. Supervisor: johnny coleman
## 9069 8/18/2006 02:06 pm (fblackmo) employee was flagging traffic for a widening project. Employee became dehydrated, dizzy, hot, and sick on his stomach. Heat exhaustion. Supervisor: doug williams
## 9070 8/18/2006 02:16 pm (fblackmo) employee was putting a strip of filter cloth around pipe band. Injury occurred when employee was standing on 16 foot ladder and employee was attempting to come down the ladder when, the ladder base slid causing him to fa
## 9071 8/18/2006 02:29 pm (fblackmo) employee was using a jackhammer to bust concrete when, dust blew into his eyes. Supervisor: rodney matthews
## 9072 8/18/2006 02:41 pm (fblackmo) employee was lifting, pulling, and pushing steel plates on shear machine. Supervisor: hosea blount
## 9073 8/18/2006 02:51 pm (fblackmo) employee was sitting at her desk answering switchboard. Employee felt a stinging on her right outer thigh. The area started to swell and turn dark. Supervisor: wendi johnson
## 9074 8/18/2006 03:02 pm (fblackmo) employee placed the rig keys under the seat of equipment when, he turned around the branches from a holly tree poked him in his right eye. Supervisor: dean argenbright
## 9075 8/18/2006 03:12 pm (fblackmo) employee was cutting trees from right of way when, he came into contact with poison oak. Supervisor: joe cogdell
## 9076 8/18/2006 09:24 am (fblackmo) employee was lifting a chain guard from the back of a pickup truck when, he felt pain in his lower back area. Supervisor: jerry w. Brown
## 9077 8/18/2006 09:35 am (fblackmo) employee states that he was dumping a load of dirt. The dirt got hung in the tailgate. He proceeded to loosen the load with a shovel. While chopping down on the dirt he, felt a sharp pain in his left shoulder. Employee r
## 9078 8/18/2006 09:49 am (fblackmo) employee was assisting the equipment shop in the repair of the tarp arm on the right side of tandem dump truck. Employee pulled on the arm, it shifted, and pinched his finger between the top of the bed rail and the tarp a
## 9079 8/18/2006 10:15 am (fblackmo) employee experience heat exhaustion which caused his sickle cell disease to flare up, high blood pressure, and resulting in him passing out. Supervisor: kent boyer
## 9080 8/18/2009 04:07 pm (blgay) employee was picking up signs along us 19e. While returning to vehicle, employee stepped on a rock or something similar, causing his left knee to pop. Supervisor: lonnie mcclellan
## 9081 8/18/2009 04:38 pm (fblackmo) employee was working on a crew patching potholes with asphalt. The crew had finished patching and had stopped for lunch when, employee became light headed and passed out. Supervisor: r. L. Taylor
## 9082 8/18/2009 05:54 pm (fblackmo) employee was flagging on state road 1001 for a crew removing trees when he collapsed due to heat exhaustion. Employee fell down and hit the ground and became incoherent. Supervisor: rodney l. Tanner 10/13/2009 05:05 pm (
## 9083 8/18/2009 12:13 pm (fblackmo) employee was using bush ax when, he slipped on slope causing injury to his lower back. Supervisor: neil roberson 8/29/2009 12:07 pm (lvaughan)
## 9084 8/18/2010 01:50 pm (ldbarnes) employee was lifting the top of the ice maker off to move it into the building. While sliding the top off, water started running out of the ice tray onto his arm. The next thing he knew, he had lost his grip on the side.
## 9085 8/18/2010 03:06 pm (ldbarnes) employee was walking through a wooded area. While he was performing a field survey, he tripped on a root. He caught himself with his left hand suffering a puncture wound. Employee received puncture wound to left hand. Su
## 9086 8/18/2010 04:36 pm (ldbarnes) employee was mowing and weedeating on the maintenance yard when he came in contact with poison ivy. Employee has poison ivy on both hands, arms, neck and head. Supervisor: darrell hildebran 8/18/2010 04:57 pm (ldbarnes
## 9087 8/18/2010 10:43 am (fblackmo) employee was stepping into the back of a pickup truck to clean it out when, he felt his back pop. Supervisor: david pleasants
## 9088 8/18/2010 10:58 am (fblackmo) employee was walking beside the road, the shoulder was low, and he stepped wrong and pulled a muscle in his lower back. Supervisor: mark dark
## 9089 8/18/2010 11:12 am (fblackmo) employee was responding to a dead animal call on state road. Employee was attempting to move the dead dog when, dog bit him on his right upper arm. Supervisor: ricky blalock
## 9090 8/18/2010 11:32 am (ldbarnes) employee was attempting to identify a stolen chevrolet 3500 dually truck. He was going back and forth under the truck to sand and scrape on locations. After finishing the identification process, I noticed some pain in my
## 9091 8/18/2010 12:08 pm (fblackmo) employee (john merritt) was working with another employee doing field surveys. Employee was walking down slope with a large amount of debris when, his foot went into a hole causing injury to his left knee. Supervisor: chr
## 9092 8/18/2010 12:30 pm (fblackmo) employee was cleaning out ditch when, he was bitten on lower left leg by a snake. Supervisor: allen russell
## 9093 8/19/2004 09:14 am (slee) employee attempted to stop behind stopped vehicle but began to skid, so he tried to pass on the left but lost control and hit the ditch ad flipped over.
## 9094 8/19/2005 02:21 pm (blgay) employee came out of supply room. Tripped over pole saw. Lost balance and fell against corner of table hitting left rib cage and arm. Supervisor: r. E. Goins
## 9095 8/19/2005 11:13 am (blgay) employee was removing the bracket off center shaft the spring had tension on it because it was stuck and spring came loose and caused the shaft to turn and vice grips turned and cut palm on right hand. Supervisor: ronald pea
## 9096 8/19/2005 11:28 am (blgay) employee twisted left ankle while walking up a slope. Supervisor: k. T. Cross
## 9097 8/19/2005 11:52 am (blgay) employee was unloading pipe with the assistance of an inmate. The inmate dropped his end causing the pipe to bounce. The pipe struck and cut employee on both wrists. Supervisor: b. R. Webb
## 9098 8/19/2008 02:33 pm (fblackmo) employee was stepping out of truck when, she felt pain in her left foot. Supervisor: karen askew
## 9099 8/19/2008 02:48 pm (fblackmo) employee was operating a tractor mower on nc 72 w. The tractor was struck by a west bound commercial vehicle. Employee was ejected from tractor mower, landed in ditch, and struck by back wheels of the commercial vehicle t
## 9100 8/19/2008 03:04 pm (fblackmo) employee was exiting vehicle when, he was bitten by a dog on his right thigh. Supervisor: s. H. Kinner
## 9101 8/19/2008 03:26 pm (fblackmo) employee was operating excavator. As he was pulling on the throttle, he felt a pain in his back. Supervisor: c. W. Garris
## 9102 8/19/2008 03:34 pm (fblackmo) employee was returning shaft inspection device to trailer and touched hot surface of generator muffler. Supervisor: hesham el boulaki
## 9103 8/19/2008 03:46 pm (fblackmo) employee was picking up one end of road concrete pipe at bell end to turn pipe so he could roll pipe out of the way so he could proceed to dig on driveway. He was installing pipe when he lifted up the end of pipe and felt
## 9104 8/19/2008 04:10 pm (blgay) employee was pushing his walk behind thermo-plastic cart off roadway, while placing a stop bar. When employee pulled it back on to the roadway, he strained his back. Supervisor: arnold cabe
## 9105 8/19/2008 04:18 pm (blgay) employee was operating dozer on backslopes of sr 1105. Employee began feeling pain in lower back. Employee continued to work. Crew moved to sr 2629, where employee continued to operate dozer. Pain became unbearable when empl
## 9106 8/19/2009 10:20 am (blgay) employee was placing stones in silk basin on maggie robinson road, when he felt a pain go through his stomach. Supervisor: mike walden 03/09/2011 03:40 pm (jwilson) 03/14/2011 12:48 pm (jwilson) 03/14/2011 12:5
## 9107 8/2/2005 02:55 pm (fblackmo) employee was on emergency callback due to storm that had blown trees into road. Employee was removing limbs when, he was bitten by some type of insect on his hands. Supervisor: s. G. Foster
## 9108 8/2/2005 03:06 pm (fblackmo) employee was tightening a bolt on mower when, the tool slipped causing the injury to his left hand. Supervisor: r. A. Ellington
## 9109 8/2/2005 03:45 pm (fblackmo) employee was attempting to step onto left gate from right side when, his foot slipped causing him to fall forward striking left leg on gate. Supervisor: j. W. Daniel jr
## 9110 8/2/2005 04:10 pm (fblackmo) employee was removing valve cap from tire. His right hand struck rim cutting right hand finger. Supervisor: r. R. Fulghum
## 9111 8/2/2006 01:15 pm (fblackmo) employee was walking from the employee parking area toward the maintenance yard gate when, he twisted his right ankle. Employee was arriving at work at the time of incident. Supervisor: g. J. Liverman
## 9112 8/2/2006 12:24 pm (fblackmo) employee states, while directing traffic for a ditching job on highway 56 near katesville pallet mill, a vehicle traveling east at a high rate of speed failed to yield for the flagman. The vehicle hit the stop/slow paddle
## 9113 8/2/2006 12:37 pm (fblackmo) employee was weed eating when, he came into contact with poison oak/ivy on both arms. Supervisor: d. Martin
## 9114 8/2/2006 12:59 pm (fblackmo) employee was cleaning rocks off a dump truck when, he was bitten by an unknown insect. Supervisor: d. Gross
## 9115 8/2/2007 03:26 pm (speedin) employee was floating in a patch and felt a pain in his lower left back. At another jobsite a couple of hours later he bent over to pick up a rake and he felt the pain again. This time the pain went down his left leg. He wa
## 9116 8/2/2007 04:28 pm (speedin) employee was shaking sandblasting hose to try to free up blasting agent when the hose blew off the sandblaster. The blasting agent then blew out of sandblaster and damaged employee's hands, with his left hand injured the mo
## 9117 8/2/2007 08:50 am (speedin) employee was pulling an 8' steel post off of a rack. He felt a sharp pain in his right elbow and the pain went up his arm. Supervisor: j. P. Bivins
## 9118 8/2/2007 09:23 am (speedin) employee was bushing (cutting) vegetation around a bridge with a weed-eater and got poison oak on his left arm. Supervisor: herbert ramey
## 9119 8/2/2007 11:04 am (fblackmo) employee indicated that he injured his back while performing concrete testing during the aci certification class. He claims that on the final day of the class he strained his lower back and hip area resulting in pains from
## 9120 8/20/2007 02:13 pm (fblackmo) employee was working in the asphalt crew raking asphalt in the a. M. Hours. As he was taking a break in the truck, he felt a pain in his shoulder when he reached for a drink. He then felt he could continue and got on the ro
## 9121 8/20/2007 02:38 pm (fblackmo) employee was leaning over mail basket when, she felt pain in her lower back. Supervisor: wilma dale ellis
## 9122 8/20/2007 03:26 pm (fblackmo) employee was exiting the side of the building when, his right knee gave way causing him to fall off the steps landing on his right side in the grass. Employee felt pain in his right knee, thigh, hip, buttocks, arm, wrist,
## 9123 8/20/2007 03:38 pm (fblackmo) employee was operating motorgrader on shoulder operation. Employee felt a bug bite on his left elbow. Employee thought it was a mosquito. In a few days, area swelled and became extremely sore. Supervisor: g. S. Harris
## 9124 8/20/2007 04:06 pm (fblackmo) employee was cutting up timber waste with chain saw in trash pile. Employee finished his task turned to walk away, stumbled and lost his balance causing him to step forward without looking where he was stepping and steppe
## 9125 8/20/2007 04:19 pm (fblackmo) employee was working on state road when, he was bitten by a bug on his ankle, back, and legs. Supervisor: shelton james
## 9126 8/20/2007 04:30 pm (fblackmo) employee was picking up loaded stake bag (rebar, stakes, sledge hammer, spikes, etc... ) on a down hill slope when, he felt pain in his chest. Supervisor: k. T. Presson
## 9127 8/20/2007 12:34 pm (fblackmo) employee was installing a stop sign at 5:00 pm in a grassy area when, he found several ticks on his upper back and lower neck area. Supervisor: charles reaves
## 9128 8/20/2009 04:50 pm (fblackmo) employee was attempting to remove a roadway sign from the bed of a pickup truck. Employee felt something pull in the upper part of his back and left shoulder. Supervisor: archie c. Coghill
## 9129 8/20/2009 05:02 pm (fblackmo) employee was working with bridge crew using jack hammer to break apart concrete slabs for removal. The concrete broke apart suddenly causing the area to deteriorate. Employee slipped and fell, jack hammer struck him on th
## 9130 8/20/2009 05:20 pm (fblackmo) employee was getting into truck when, he noticed insect bite to left wrist. Supervisor: ashley pilkington
## 9131 8/20/2009 12:33 pm (blgay) employee was working on jobsite with another co-worker. Employee started feeling sick and passed out. Supervisor: larry greene 4/23/2010 06:41 pm (sshort)
## 9132 8/20/2009 12:42 pm (blgay) employee was standing in creek and mud, possibly twisted right ankle. Supervisor: m. R. Ward
## 9133 8/20/2010 02:26 pm (fblackmo) employee was assisting in lifting filter cloth. Employee tripped over filter cloth as another employee lifted it. Employee fell and injured left palm. Supervisor: h. D. Wiggins
## 9134 8/20/2010 02:37 pm (fblackmo) employee was shoveling asphalt when he felt a pop to the center part of his back. Supervisor: horance j. Rivenbark
## 9135 8/20/2010 02:55 pm (fblackmo) employee was exiting commercial motor vehicle which had exposed exhaust pipe near passenger door. Employee accidentally touched her arm on the hot pipe. Employee burn left forearm. Supervisor: terry fuller
## 9136 8/20/2010 11:16 am (fblackmo) employee stated he was trying to separate barrels on lane closing trailer when his left wrist popped. Employee felt pain in left arm and wrist. Supervisor: glenn hunter
## 9137 8/20/2010 11:31 am (fblackmo) employee reported that he was laying block on monday and could not move tuesday and went to the emergency room. The emergency room physician diagnosed him with having a back strain and a hernia. Employee felt pain in his
## 9138 8/20/2010 11:54 am (fblackmo) employee was helping with construction of multiple aluminum pipe structure when, he became over heated. Employee experienced heat exhaustion. Supervisor: lou wetherington
## 9139 8/20/2010 12:20 pm (fblackmo) employee was moving spray buckets of paint when he injured his lower back. Supervisor: thomas bowser
## 9140 8/21/2009 02:51 pm (blgay) employee was in the process of lifting 8-inch hollow stem augers off the drill rig and replacing with new ones, when he felt a burning and stinging sensation in his abdomen area, navel area. Supervisor: w. D. Frye
## 9141 8/22/2006 10:02 am (fblackmo) employee returned to maintenance yard after hauling material from job site when, he stopped to check for foreign objects on truck canvas. He climbed up on rear wheels of dump truck and as he began to dismount he slipped a
## 9142 8/22/2006 10:17 am (fblackmo) employee was in a trench helping another employee place a 20' section of 30' hdpe pipe in place that was being lowered into trench by trackhoe. Employee twisted his body to place pipe and felt pain in his right knee area.
## 9143 8/22/2006 10:36 am (fblackmo) employee was dismounting a tractor tire so that he could work on the tractor frame. The lifting device he was using and tire shifted position causing part of the device to stick him in his eye. Supervisor: w. E. Evans
## 9144 8/22/2006 10:46 am (fblackmo) employee was grinding a piece of rusty pipe when, the grinder grabbed it and pulled the employees right hand into the sharp edge of the pipe causing a laceration on his right hand between his thumb and index finger. Super
## 9145 8/22/2006 11:11 am (fblackmo) employee was loading and unloading sandbags when, she felt pain in her lower back area. Supervisor: roger pulcheon
## 9146 8/22/2006 11:30 am (fblackmo) employee was weed eating when he, disturbed a nest of yellow jackets causing the stings to his upper left thigh area. Employee is allergic to bee stings. Supervisor: r. E. Joyce
## 9147 8/22/2006 11:46 am (fblackmo) employee was attempting to release strap from pole trailer when, 30ft. Pile dropped from position and trapped his wrist between pile and strap. Supervisor: ken anderson
## 9148 8/22/2006 11:56 am (fblackmo) employee was operating the front end loader when, he felt pain in his groin area. Supervisor: richard bland
## 9149 8/22/2007 01:33 pm (fblackmo) employee was bitten by a tick while working on state road. Supervisor: m. R. Moore
## 9150 8/22/2007 01:41 pm (fblackmo) employee was operating a piece of equipment in extreme heat when, he started suffering from stomach cramps. Supervisor: w. R. Friddle
## 9151 8/22/2007 01:49 pm (fblackmo) employee was waiting for dump truck to pass when, debris got into his left eye. Supervisor: alvin w. Ball
## 9152 8/22/2007 02:01 pm (fblackmo) employee was installing a clutch fan on dump truck when, he felt a burning sensation in back, and then felt muscles tightening up. Supervisor: j. E. Stepp
## 9153 8/22/2007 02:12 pm (fblackmo) employee was taking an old sign off of a post when, a bee stung him on left eye. Supervisor: roger l. Arrowood
## 9154 8/22/2007 02:20 pm (fblackmo) employee was shoveling asphalt and pulling sled when, he felt pain in groin area. Supervisor: t. W. Edwards
## 9155 8/22/2007 02:27 pm (fblackmo) employee was walking on shoulder of road when, he stepped in a hole causing injury to his right ankle. Supervisor: aaron earwood
## 9156 8/22/2007 02:41 pm (fblackmo) employee was using a point bar to remove a board from the bulkhead of a bridge when, the point bar slipped and cut his right hand. Supervisor: robbie beach
## 9157 8/22/2007 02:52 pm (fblackmo) employee reported that while on the stockyard she got out of her dump truck to conduct a inspection when, she pulled herself up back into the truck she, hit her head on the buck board causing her chin to hit her chest and
## 9158 8/22/2007 03:04 pm (fblackmo) employee was attempting to remove metal fence post from in front of the guard rail so that he could continue spraying the rail when, post feel unexpectedly causing employee to fall backwards. Employee attempted to catch h
## 9159 8/22/2007 03:42 pm (fblackmo) employee was installing pga signs when, he found two ticks on his neck and left leg. Supervisor: w. R. Wall
## 9160 8/22/2007 03:51 pm (fblackmo) employee was assisting another employee moving metal grates. While lifting grate, grate slipped causing employees finger to be mashed between grates. Supervisor: k. R. Davis
## 9161 8/22/2007 04:01 pm (fblackmo) employee was walking around a dump truck to open the trucks tailgate when, he blacked out and could not feel his legs. Supervisor: david hall
## 9162 8/22/2008 08:55 am (fblackmo) employee was unloading a large wooden roll box. Employee was removing rubber grader blades from the box when, he felt pain in his lower back. Supervisor: jeff proctor
## 9163 8/22/2008 09:08 am (fblackmo) employee was inspecting pipe on state road when, he slipped and struck his right knee. Supervisor: donald wells
## 9164 8/22/2008 09:32 am (fblackmo) employee was working under asphalt distributor removing a defective air valve when, foreign object got into his right eye. Employee was wearing his safety glasses with the factory side shields in place. Supervisor: t. L. Je
## 9165 8/23, 8/24, 8/26 & 8/27 received 27 tick bites 7 of which were attached
## 9166 8/23/2006 09:47 am (fblackmo) employee was flagging traffic when, he became sick on his stomach, very hot. Heat exhaustion. Supervisor: doug williams
## 9167 8/23/2006 09:57 am (fblackmo) employee was operating a widening machine placing b-25 asphalt into a trench along the side of the roadway when, he became dehydrated, hot, dizzy, and sick to the stomach. Heat exhaustion. Supervisor: doug williams
## 9168 8/23/2006 10:34 am (fblackmo) employee was traveling in ncdot truck on project, contractors dump truck was hauling material and crossed into the path of employees truck. Employees truck struck the right side of the dump truck. Employee experienced pai
## 9169 8/23/2006 11:06 am (fblackmo) after midmorning break employee was found to be non-responsive sitting in breakroom. He is an insulin dependent diabetic, 911 was called. Ems treated employee and he signed a waiver form. Supervisor: kerry t. Cross
## 9170 8/24/2004 01:21 pm (fblackmo) employee was walking on uneven terrain when she tripped and fell. Supervisor: e. J. Bunn
## 9171 8/24/2004 01:45 pm (fblackmo) employee was removing a tree form the right of way when, he came into contact with poison ivy. Supervisor: w. E. Mcclendon jr
## 9172 8/24/2004 01:54 pm (fblackmo) employee was shoveling abc stone when, he felt pain in his chest area. Supervisor: dale loflin
## 9173 8/24/2004 02:25 pm (fblackmo) employee was unloading pipe at job site when, a jagged pieced of metal at end of pipe cut his right forearm. Supervisor: r. Leigh
## 9174 8/24/2004 02:44 pm (fblackmo) employee was cutting down poison ivy vines when, he came into contact with poison ivy. Supervisor: g. Todd cole
## 9175 8/24/2004 04:09 pm (fblackmo) employee states while cutting trees he came into contact with poison ivy. Supervisor: r. A. Nowell
## 9176 8/24/2004 08:46 am (fblackmo) employee was states on form 19 that while conducting a cdl road test customer vehicle was struck in the rear by a private vehicle. No police report was field. Employee experienced pain in his head and neck. Supervisor:
## 9177 8/24/2004 09:05 am (fblackmo) employee was cleaning out driveway pipe with pipe washing machine when, he pulled out hose he felt a sting in right hand through glove. Supervisor: j. D. Keene
## 9178 8/24/2004 09:21 am (fblackmo) employee was operating a backhoe when, he was stung by a yellow jacket on his right temple. Employee states he experienced pain and swelling. Supervisor: s. W. Nance
## 9179 8/24/2004 09:46 am (fblackmo) employee was traveling east on us 264 driving a tandem dump truck owned by ncdot when, it was struck in the rear by a private vehicle. Supervisor: fred l. Wiggins
## 9180 8/24/2004 10:08 am (fblackmo) employee was in the process of pouring hot para plastic into a tar can when, the tar blew out splashing back into employees face. Supervisor: tim k. Southard
## 9181 8/24/2004 10:19 am (fblackmo) employee had climbed into the back of dump truck to remove cones for a lane closure when, he jumped down into bed of truck he turned his ankle and broke it in two places. Supervisor: mark c. Smith
## 9182 8/24/2004 11:05 am (fblackmo) employee was washing piece of equipment when he stepped down with wet shoes his foot slipped causing the injury to his left shoulder and left arm. Supervisor: d. C. Capps
## 9183 8/24/2005 02:46 pm (fblackmo) employee was participating in a bat survey, he was removing a bat from the mistnet when, his hand got to close to the bats mouth causing the bite.
## 9184 8/24/2005 03:02 pm (fblackmo) employee was cutting a tree from bucket truck when, he came into contact with poison ivy. Supervisor: r. E. Austin
## 9185 8/24/2005 09:14 am (fblackmo) employee was putting chain around pipe to be installed by backhoe when, backhoe bucket began to move striking him on the head, knocking him to the ground. Supervisor: m. H. Thomas
## 9186 8/24/2005 09:27 am (fblackmo) employee was assisting sign erector with the installing of road closure/detour signs (48 x 48") when, gradually he starting felling soreness and irritation in right wrist. Employee states the pain became more intense as
## 9187 8/24/2005 09:51 am (fblackmo) employee slipped and fell on steep terrain while advancing borings for project, causing the injury to his left ankle. Supervisor: m. H. Hager
## 9188 8/24/2005 10:04 am (fblackmo) employee states he was assisting a operator of an athey loader who was trying to remove a large piece of concrete that was wedged between the belt side walls under the cab. Employee felt pain in his back area. Supervisor:
## 9189 8/24/2010 03:55 pm (barnes) employee left the job site and went to puppy creek fire department. He then called an ambulance on himself and reported he felt dehydrated. He was then transported to cape fear valley hospital. Supervisor: danny g. Dees, I
## 9190 8/25/2005 08:20 am (fblackmo) employee began to feel dizzy while shoveling and raking hot asphalt in excessive heat. Supervisor: w. R. Robbins
## 9191 8/25/2005 08:41 am (fblackmo) employee was bushing and trimming around bridges and came into contact with poisonous plants. Supervisor: c. Gerald woodley
## 9192 8/25/2006 10:02 am (fblackmo) employee was assisting in unloading signs from delivery turck when, he felt pain in his back. Supervisor: j. A. Ridge
## 9193 8/25/2006 10:33 am (fblackmo) employee stated injury is due to repetitive use of computer keyboard at work. Carpal tunnel syndrome in both hands. Supervisor: brenda p. Grady
## 9194 8/25/2008 05:19 pm (fblackmo) employee was walking outside (taking items to vehicle) when, she stepped in a hole causing injury to right ankle. Supervisor: ben a. Riggs
## 9195 8/25/2008 05:31 pm (fblackmo) employee was in engine room and felt weak, dizzy, and physically drained. Dehydration. Supervisor: h. C. Scarborough
## 9196 8/25/2008 05:41 pm (fblackmo) employee was stepping off curb when, she twisted her left ankle. Supervisor: dolphus marshburn
## 9197 8/25/2008 05:49 pm (fblackmo) employee was on the loading dock when, he went to step on the thermo truck parked near the loading dock he, missed the truck, and fell between the truck and dock. Employee struck his head on rubber bumper mounted on the d
## 9198 8/25/2008 06:16 pm (fblackmo) employee was walking down hallway from vendor room to return to registration area. She was walking through the lobby of the hotel. She stepped from the carpeted area to the marbilish area. She slipped and fell, injuring h
## 9199 8/25/2008 08:59 am (blgay) employee was cutting trees on west old phipps road in pinnacle and poison oak was in the trees he was cutting. Also, he workers in several other locations where poison oak was present. Employee was working on nc 8 at wess ha
## 9200 8/25/2008 09:15 am (blgay) employee was working on f-350 pickup truck that was up on jack stands. One of the jack stands broke, causing the truck to fall on employee. Employee has multiple contusions to shoulders, chest rib areas. Supervisor: richard
## 9201 8/25/2010 01:27 pm (barnes) employee "jonathan" was standing on the ground sweeping out the grader. When he finished, he turned to walk away and felt something pull in his lower back. Employee hurt his back. He had a sprain in lumbar region. Supervis
## 9202 8/25/2010 02:51 pm (barnes) employee was beginning to count yellow skips in the road. While sitting in passenger seat, he heard a boom and felt something. Then the back windows shattered. A knot was on the back of his head and he had soreness in his b
## 9203 8/25/2010 04:03 pm (barnes) employee was raking asphalt. While raking, he noticed that he had gotten too hot and sat down in the truck to cool off. He then noticed a soreness or numbness in his right arm, neck and face. Employee injury to right arm, n
## 9204 8/26/2004 02:04 pm (fblackmo) employee was getting out of bucket truck, slipped on step causing the injury to his lower back. Supervisor: jerry w. Porter
## 9205 8/26/2004 02:15 pm (fblackmo) employee was walking around truck to motion car around roadway when, he slipped on a piece of plastic causing the injury to his left ankle. Supervisor: patrick norman
## 9206 8/26/2004 02:28 pm (fblackmo) employee states that she was giving a road test in a straight truck. Employee was slammed around in the cab which lead to the injury of her upper and lower back. Supervisor: dwight langley
## 9207 8/26/2004 03:21 pm (fblackmo) employee states that the client hit the gas pedal instead of brakes, hitting the curb hard on the side of the road. Employee experienced pain in his neck and left shoulder area. Supervisor: vickey fields
## 9208 8/26/2004 03:42 pm (fblackmo) employee was on entrance steps of school bus when, he slipped causing him to twist his right foot and ankle. Supervisor: scott rivers
## 9209 8/26/2004 04:00 pm (fblackmo) employee was walking on a mount of dirt and slipped causing him to twist back and fall to one knee. Supervisor: a. O. Epley
## 9210 8/26/2004 04:15 pm (fblackmo) employee is experiencing pain and numbness in right arm, shoulder, hand, and fingers. Supervisor: steven hulsey
## 9211 8/26/2005 08:53 am (fblackmo) employee was returning to office at the end of the day when, a vehicle pulled out in front of him, he swerved to avoid hitting him and hit the bridge rail. The truck turned over on its top causing the injury to his arms a
## 9212 8/26/2005 09:05 am (fblackmo) employee was conducting road maintenance work when, he found a tick on his back and left shoulder. Supervisor: j. R. Ashe
## 9213 8/26/2005 09:14 am (fblackmo) employee was operating a bull dozer when, he was stung by a yellow jacket. Supervisor: timothy w. Anderson
## 9214 8/26/2005 09:29 am (fblackmo) employee was walking up to an inmate to give instructions. The inmate was weedeating at the time and turned around when employee approached him. The inmate accidentally struck employee on his right ankle with the weedeart
## 9215 8/26/2008 12:35 pm (fblackmo) employee was moving into position to install boom lift cylinder when, he struck his head on frame of old arrow board bracket which is no longer in use. Supervisor: d. C. Sherrod
## 9216 8/26/2009 04:53 pm (fblackmo) employee was hauling asphalt from wooten plant when, the dump truck struck a driveway pipe lane causing truck to over turn. Employee felt pain in his back and shoulder area. Supervisor: frank carpenter
## 9217 8/26/2009 11:04 am (blgay) employee was fixing a pothole and a private owned vehicle ran over his right foot, causing back pain, crushing right foot injury and right ankle sprain. Supervisor: william friddle
## 9218 8/26/2009 11:40 am (blgay) employee was stopped at a red light. A truck traveling south bound ran the red light. The private vehicle struck another private vehicle in front of state truck, then truck slid into employees state vehicle. Supervisor: mere
## 9219 8/26/2009 12:28 pm (blgay) employee was operating an astron mower, when the front tire developed a large knot. Employee tried to get mower back to the shop, but the right front tire disintegrate, causing mower to bump hard. Employee continued to drive
## 9220 8/26/2010 02:36 pm (fblackmo) employee was conducting a road test when, driver ran into a parked car in parking lot. Employee felt pain in her lower back. Supervisor: dean almond
## 9221 8/26/2010 02:51 pm (fblackmo) employee cut his right hand while reaching through window to retrieve a vehicle part. Supervisor: tom collins
## 9222 8/26/2010 03:03 pm (fblackmo) employee was was lifting man hole cover when, it slipped and fell onto his left foot. Supervisor: thomas bowser
## 9223 8/26/2010 03:13 pm (fblackmo) employee states he was lifting lumber to place it on the back of a truck when, the lumber slipped out his his hands causing his left shoulder to pop. Supervisor: bradley burton
## 9224 8/26/2010 04:20 pm (fblackmo) employee was raking and using shoveling dirt for crossline when, he became over heated. Heat exhaustion. Supervisor: david pleasant
## 9225 8/27/2008 01:32 pm (blgay) employee was diagnosed with pot room asthma on September 27, 2007 by Dr. Jill ohar. Dr. Ohar also confirmed employees diagnosis of asbestosis. Employee initially brought these claims against alcoa. Alcoa contends that employ
## 9226 8/27/2008 02:49 pm (fblackmo) employee was in back of tandem dump truck cleaning dirt off of tarp roller, felt sting of insect in scrotum/groin area. Supervisor: r. G. Crews
## 9227 8/27/2008 03:50 pm (blgay) employee was on road test, traveling south on 16, when driver was making left into office parking lot and turned into oncoming traffic. Supervisor: theodore gray
## 9228 8/27/2008 04:07 pm (blgay) employee was working outside and got into red bugs and thought they were irritating the back of his left leg area, but when he felt closer he noticed a tick. Employee pulled tick off on 8/14/08 thursday and by monday 8/18/08
## 9229 8/27/2008 08:23 am (fblackmo) employee was standing on a hydra platform lift. Another employee was passing down materials from the bridge deck. Employee on bridge deck stated he struck a plate with his foot causing another plate to fall and strike Mr.
## 9230 8/28/2008 02:51 pm (bhenders) employee was sweeping loose gravel off the road and pov failed to reduce speed and struck sweeper in the rear.
## 9231 8/29/2006 02:31 pm (fblackmo) employee was cutting grass on embankment when, the mower lost traction causing it to slip. Employee put his arm out to shield himself causing the injury to his wrist. Supervisor: alfred wilson
## 9232 8/29/2006 02:56 pm (fblackmo) employee tripped and struck both knees and his ribcage on a rail road track while walking off project site. Supervisor: david hering
## 9233 8/29/2006 03:14 pm (fblackmo) employee was working in extreme heat when, he became dehydrated and suffered from heat exhaustion. Supervisor: h. A. Sorrell
## 9234 8/29/2006 03:30 pm (fblackmo) employee was getting out of tractor when, his foot slipped causing him to fall. Supervisor: charles r. Whitfield
## 9235 8/29/2006 03:52 pm (fblackmo) employee was cleaning up around the office removing dead stems with prunes when, he cut index finger on left hand. Supervisor: douglas h. Johnson
## 9236 8/29/2006 04:02 pm (fblackmo) employee was cutting a joist for a bridge when, sawdust and silica flew in his right eye. Supervisor: d. R. Alligood
## 9237 8/3/2006 03:01 pm (fblackmo) employee was working the concrete for catch basin boxes when, concrete seeped into the top of the boots causing burns to both ankles. Supervisor: mike gibson
## 9238 8/3/2006 03:10 pm (fblackmo) employee was sitting at his desk. He turned to his left to use the telephone located behind him. As he turned, his left knee struck the inside corner of the desk. Supervisor: d. R. Mcneal
## 9239 8/3/2006 03:20 pm (fblackmo) employee was using a chain binder to tighten down equipment when, it snapped back and hit employee in right upper cheek area close to his right eye. Supervisor: greg mccracken
## 9240 8/3/2006 03:30 pm (fblackmo) employee turned dump truck over while dumping on uneven ground, causing injury to his left knee. Supervisor: j. S. Frady
## 9241 8/3/2009 11:15 am (blgay) employee was putting out signs at work site. Employee dropped truck keys; reached down through sign rack to pick them up; thought racks were going to fall on him, so employee reached up to grab racks and hurt his left ring fi
## 9242 8/30/2005 08:49 am (fblackmo) employee was helping roll a joint of 4-foot concrete pipe over a chain hook. While in a squatted position, she felt a sharp pain in her left side. Supervisor: carlis smith
## 9243 8/30/2005 09:26 am (fblackmo) employee was getting off loader when, he missed the last step and fell on his back in the roadway. Supervisor: mark turlington
## 9244 8/30/2005 09:43 am (fblackmo) employee states while cutting bushes around bridges he came into contact with poison ivy. Supervisor: david l. Moore
## 9245 8/30/2005 10:04 am (fblackmo) another employee accidentally threw a shovel full of hot asphalt on micheals left hand. Supervisor: dennis guy
## 9246 8/30/2005 10:19 am (fblackmo) employee was assisting moving 55 gallon drums when, his left middle finger was pinched between drum and front end loader bucket. Supervisor: k. R. Davis
## 9247 8/30/2006 08:54 am (fblackmo) employee was operating a shoulder mower. He was cutting the sight distance back slopes. Before he started to back up he turned his head to the left to visually verify that he had the clearance to back between a power pole
## 9248 8/30/2006 09:11 am (fblackmo) employee picked up and carried a empty 30 gallon drum over his head while helping paint crew fill up centerline paint machine when, he felt pain in his lower back. Supervisor: greg godwin
## 9249 8/30/2006 09:40 am (fblackmo) employee was attempting to step onto equipment trailer with water hose to fill the roller with water. Employees pants cuff became stuck on his boot causing him to drag his left leg along side of the trailer. This resulted
## 9250 8/30/2006 09:57 am (fblackmo) employee was traveling to perform relief duties in wilson when, he hit a slick spot on the highway, ending up in the median striking cable to separate the lanes of travel. Supervisor: d. R. Marshburn
## 9251 8/31/2004 01:57 pm (slee) vehicle #1 was traveling east on nc 268 across us 601. Vehicle # 3 was traveling south on us 601 and failed to stop at a red light. Vehicle #3 collided into the front left side of vehicle #1.
## 9252 8/31/2004 02:05 pm (fblackmo) employee was unloading metal pipe on shoulder of road off o low boy trailer. He stepped up on bed of trailer holding onto gooseneck, grass was wet causing his foot to slip. Employee fell striking his leg on the edge of tr
## 9253 8/31/2004 02:17 pm (fblackmo) employee states while reaching for a bale of twine his left knee gave out. Supervisor: jason willis
## 9254 8/31/2004 02:28 pm (fblackmo) employee was cleaning truck bed of grain straw when, he slipped on wet straw falling backwards striking his left arm on a winch handle. Supervisor: d. M. Honeycutt
## 9255 8/31/2004 02:52 pm (fblackmo) employee was in the process of opening hood on vibratory roller when, he placed his right hand on the latch he was stung by unknown insect. Supervisor: charles f. Vick
## 9256 8/31/2004 08:39 am (fblackmo) employee states that while walking around the corner in office she, struck her left wrist on the corner of the table. Supervisor: don ferrier
## 9257 8/31/2004 08:59 am (fblackmo) employee fell out of dump truck while trying to let down the tail gate. Employee injured both arms, back, and side. Supervisor: iris h. Mccombs
## 9258 8/31/2004 09:17 am (fblackmo) employee states part of the spray equipment mounted on the truck had broken off and needed to be lifted to move the vehicle to the shop. A whence (hoist) was used to lift the equipment. Lifting the part shifted causing th
## 9259 8/31/2004 09:57 am (fblackmo) employee had completed the nuclear gauge paving project when, he placed the gauge in the bed of truck he felt pain in his back and right leg. Supervisor: supervisor: travis s. Williamson
## 9260 8/31/2004 10:10 am (fblackmo) employee stated that he was standing in an awkward position using a rake. Employee felt pain in his lower back while pulling the rack toward himself. Supervisor: j. F. Sloop
## 9261 8/31/2004 10:58 am (fblackmo) employee twisted knee as he climbed into a dump truck. Supervisor: j. D. Wilson
## 9262 8/31/2004 11:19 am (fblackmo) employee states he had an allergic reaction to poison ivy. Both arms and hands are swollen and blistered. Supervisor: iris h. Mccombs
## 9263 8/31/2004 11:29 am (fblackmo) employee was moving hurricane debris when, he came into contact with poison ivy on multiple body parts. Supervisor: iris h. Mccombs
## 9264 8/31/2004 11:39 am (fblackmo) employee states while moving hurricane debris on stanley road he, slipped in a ditch causing the injury to his right arm. Supervisor: iris h. Mccombs
## 9265 8/31/2004 11:50 am (fblackmo) employee states while cutting trees debris flew into his right eye. Supervisor: l. T. Williford
## 9266 8/31/2004 12:51 pm (fblackmo) employee was assisting another employee put up route signs when, one sign fell cutting employee on his right wrist. Supervisor: j. A. Ridge
## 9267 8/31/2005 01:39 pm (fblackmo) employee was using a chainsaw to trim limbs in the bed of a tandem dump truck so that the tarp could be closed. While cutting upward on a small branch the saw kicked down and struck the inside of the employees left ankle.
## 9268 8/31/2005 01:49 pm (fblackmo) employee had been raking asphalt and felt lower back muscles begin to tighten up. Employee continued to work until he felt it necessary to see a doctor on 08/19/2005. Supervisor: h. Southerland
## 9269 8/31/2005 01:59 pm (fblackmo) employee was cleaning debris off traffic islands on madison blvd. With shovel and broom when, he got to hot. Supervisor: barry matherly
## 9270 8/31/2005 02:21 pm (fblackmo) employee was working in the field when, she was bitten by a tick on right hand side of head. Supervisor:
## 9271 8/31/2005 02:37 pm (fblackmo) employee was pulling a plastic tarp onto the shoulder of roadway when, a metal reflector bracket on the guardrail scrapped his left leg. Supervisor: r. J. Monroe
## 9272 8/31/2005 02:49 pm (fblackmo) employee was lifting catch basin grate when, his right ring finger got caught between the two grates. Supervisor: c. N. Edwards
## 9273 8/31/2005 04:25 pm (fblackmo) employee was driving across railroad tracks on state road 1229 in currituck co. To start bst operation on the other side of road when, rail arm from rr crossing came down on top of employee striking him on the left foot.
## 9274 8/31/2005 08:12 am (slee) employee and crew were installing signs on nc 150 in guilford co. Operator was attempting to return crane back to resting position on truck, when something malfunctioned and crane began swinging in opposite direction, gettin
## 9275 8/31/2010 12:17 pm (barnes) employee was inspecting a paving operation on us 226 and had been looking at at drive that needed attention. He was walking down a slight incline when he felt a sharp pain behind his left knee and heard a loud pop. His left
## 9276 8/4/2004 09:05 am (fblackmo) employee states on form 19 that he was nailing a spike with hammer when, the hammer slide off nail striking his left thumb. Supervisor: b. F. Kizziah
## 9277 8/4/2004 09:18 am (fblackmo) employee states on form 19 the she was getting out of her car to enter building at door b6 when, she slipped and fell due to west mowed grass. Employee states she experienced pain in her left and right knee. Supervisor: j
## 9278 8/4/2004 09:33 am (fblackmo) employee states he was going down sloop to take pictures for inspection when, he slipped and fell due to wet grass and vegetation. Employee states he experienced pain in his left knee. Supervisor: mark wade
## 9279 8/4/2004 09:49 am (fblackmo) employee states on form 19 that while working on truck he, closed his right center finger in door. Supervisor: keith hooper
## 9280 8/4/2005 08:51 am (blgay) employee cut left outside finger while locking mower in upright position. Supervisor: d. A. Ashe
## 9281 8/4/2005 09:18 am (blgay) employee was doing cut back on trees and bush at guard rail and, while crossing fell into a hole. Hand and wrist hit guard rail. Left hand and wrist had a small knot and was swollen on thursday, 7-28-05 when incident was repo
## 9282 8/4/2005 09:41 am (blgay) employee was directing traffic to move over to right lane due to an auto accident. Employee held up his left arm for traffic to stop. Suv came by him and the mirror struck employees left arm and hand. Suv didn't stop. Supervi
## 9283 8/4/2008 09:24 am (blgay) employee was loading straw onto truck and the wind blew straw into employees right eye. Supervisor: m. Anthony reel
## 9284 8/4/2008 12:24 pm (blgay) employee was cutting/clearing right-of-way on us74. Employee was using a chainsaw to cut a tree. The tree twisted and fell back on employees right leg. Employee then slid down slope and lodged in fallen tree limbs. Supervisor
## 9285 8/4/2008 12:36 pm (blgay) employee was cutting unwanted growth out of plant bed on I-85. Employee stirred up yellow jacket nest and was stung several times on arms and legs. Employee is allergic to bee stings. Supervisor: trey moore
## 9286 8/4/2008 12:49 pm (blgay) employee was at division 14 office maintaining grounds, when a large limb (going through the wood chipper) twisted and hit employee in the head. Supervisor: doug johnson
## 9287 8/4/2009 11:03 am (blgay) employee was trying to secure the tailgate of dump truck. The employee was standing between the embankment and the truck. The bank of soil collapsed onto the employee, which in turn knocked him into the truck, causing contusi
## 9288 8/4/2009 11:26 am (blgay) employee was walking up a bank and lost his footing, causing him to fall. Employee has back sprain, concussion, right knee strain and contusion, left and right ankle strain. Supervisor: clyde scott
## 9289 8/4/2009 11:42 am (blgay) employee was weed eating along us 220 bypass and a piece of debris flew into his left eye. Supervisor: jimmy maness
## 9290 8/4/2009 11:56 am (blgay) employee was flagging traffic on dysartsville road on 07/15/2009. While stepping back off of the edge of pavement to allow traffic to move past his position, employee stepped backward off of the edge of pavement and stepped I
## 9291 8/4/2011 02:09 pm (fblackmo) employee was trimming trees when he was bitten by a spider on back of his neck. Supervisor: jeffrey ryder
## 9292 8/4/2011 02:17 pm (fblackmo) employee was standing on steering arm on the side of the engine. He was trying to reach over to the rear of the engine when, he bumped his right side groin areaon the air compressor. He felt a sharp pain in right side of g
## 9293 8/4/2011 02:37 pm (fblackmo) employee was cutting and trimming tree branches with a bush axe to clear the sight distance to notify people that they are approaching a stop sign. While trimming, stepped on a hole in the ground which happened to be a yel
## 9294 8/4/2011 10:09 am (fblackmo) employee stated that he went to get in a truck after his lunch break. He felt a stinging in the back of his left leg from the knee down to his heel area. He had calf pain and was not able to put pressure on his leg to walk
## 9295 8/4/2011 10:42 am (fblackmo) employee was assisting with cutting down trees on state road when the tree truck swung around striking him on his left ankle. Supervisor: b. N. Braswell
## 9296 8/4/2011 11:09 am (fblackmo) employee states that while shoveling asphalt he over strained his lower back area. Supervisor: john m. Ellis
## 9297 8/5/2005 01:38 pm (fblackmo) employee started to feel light headed and nauseous while standing outside. Employee got water from vehicle and then decided to sit in vehicle but, fainted before getting to vehicle. Employee regain consciousness several m
## 9298 8/5/2005 08:46 am (fblackmo) employee cut left wrist and bruised left arm when, she stuck her hand n a drink machine to try to remove a soda that did not fall. Supervisor: richard howard 8/12/2005 01:22 pm (fblackmo) do not pay any bills(not appr
## 9299 8/5/2005 09:06 am (fblackmo) employee was cutting tree. Employee was moving out of the way of the falling tree when, he twisted his right ankle. Supervisor: ben williams
## 9300 8/5/2005 09:22 am (fblackmo) employee was dismounting truck when, he missed the bottom step causing him to fall onto pavement. Employee felt pain in his left knee and back. Supervisor: michael e. Brady
## 9301 8/5/2005 09:52 am (blgay) employee was getting off the back of the truck and stepped down onto the tongue of trailer and felt burning in his left leg. Supervisor: t. R. Burns
## 9302 8/5/2005 10:49 am (blgay) employee was running to truck stepped in to uneven terrain and twisted left ankle. Supervisor: t. R. Burns
## 9303 8/5/2005 11:07 am (blgay) employee was getting into the crew cab after flagging operation. Employee felt a sharp pain in his back. After taking off his safety vest, he saw a large red ant. Supervisor: william thompson
## 9304 8/5/2005 12:03 pm (blgay) employee was pulling on sign post in the ground and strained arm. Supervisor: bob moore
## 9305 8/5/2005 12:18 pm (blgay) employee was weed eating along bridge guard rail on harmony church road. Employee saw something flying around his head and swatted at it with his hand, at that time employee felt pain on the back of his neck. Supervisor: b. J.
## 9306 8/5/2008 02:56 pm (fblackmo) employee was installing signs on state road and got overheated and light headed. Employees right eye began to hurt. He worked the next day and reported the incident to kathy barefoot. Kathy told employee to have it checked
## 9307 8/5/2008 03:10 pm (fblackmo) employee was installing a sign on state road when, he got over heated and felt his lips /mouth swelling. After work he went to va hospital in fayetteville. Employee stated his diagnosis was bells palsy (no doctors note). O
## 9308 8/5/2009 02:23 pm (fblackmo) employee was exiting boom mower when, he noticed he was bitten on lower right leg by un-known insect. Supervisor: darrell wilkins
## 9309 8/5/2009 02:36 pm (fblackmo) employee was cutting limbs when, one of the limbs struck him on the forehead. Supervisor: jonnie b. Barefoot
## 9310 8/5/2009 02:45 pm (fblackmo) employee was walking through bushes in the woods when he was stung by a wasp on his upper lip. Supervisor: c. Shawn melane
## 9311 8/5/2009 02:57 pm (fblackmo) employee was bitten by a spider on his left forearm while surveying in the woods. Supervisor: chuck mcdonald
## 9312 8/5/2009 12:19 pm (fblackmo) employee was operating a backhoe. Employee turned his body to step down from the backhoe seat; expecting the seat to turn with him. The seat was locked into position causing him to twist muscles in his back that resulted in
## 9313 8/5/2009 12:43 pm (fblackmo) employee was installing a traffic counter to a road sign. Employee trying to cross ditch when he stepped in a hole and twisted his left knee. Supervisor: ken houck
## 9314 8/5/2009 12:59 pm (fblackmo) employee found tick on his upper right chest. He removed the tick and taped it to a piece of paper. Employee later noticed the area was red and swollen. Supervisor: a. G. Hunter
## 9315 8/6/2004 02:22 pm (fblackmo) employee was watching a sand-blasting pot as a co-worker was sand-blasting, the sandblast hose was not working properly. Employee turned off the air manifold and discharged the air from the pot, the hose broke off from th
## 9316 8/6/2004 02:38 pm (fblackmo) employee states on form 19 that he was operating a backhoe (boom & bucket) when, it came down striking his left foot. Employee states the teeth on the bucket was stuck in his left foot. Supervisor: clyde winstead 9/17/2
## 9317 8/6/2004 02:50 pm (fblackmo) employee states on form 19 that he was walking on concrete footing when, he slipped on the edge causing the injury to his right ankle. Supervisor: kevin smith
## 9318 8/6/2004 03:03 pm (fblackmo) employee states on form 19 that he was changing the blade locking cylinder on j. D. Grader. Employee had to be in a somewhat twisted position in order to take lines loose. Employee states he heard a popping noise in his up
## 9319 8/6/2004 03:17 pm (fblackmo) employee states on form 19 that he was sawing a wooden post for a mailbox when, a piece of wood struck his glasses causing them to break. Supervisor: r. L. Taylor
## 9320 8/6/2004 12:52 pm (fblackmo) employee states on form 19 that he was building forms when, he felt a sharp pain in his back from picking up lumber. Supervisor: kevin d. Smith
## 9321 8/6/2007 04:15 pm (speedin) employee was pulling brush off the bed of a dump truck. Supervisor: ronnie king
## 9322 8/6/2007 04:28 pm (speedin) employee was flagging traffic and he stated that his left hand started hurting after an hour or so. He doesn't remember hitting it on anything, it just hurts periodically. Supervisor: r. D. Mcintyre
## 9323 8/6/2008 02:44 pm (blgay) employee was weasling out a pipe and the hose had been in the pipe about 10 minutes, when all of a sudden the hose shot out of the pipe, it was out of control and hit employee in the head, jaw, shoulder and right arm. Supervi
## 9324 8/6/2008 08:03 am (blgay) employee was operating a water truck when the electric shut off valve became stuck in the open position. Employee tried to shut the valve with his index finger, when the valve closed and caught his finger in the valve up to t
## 9325 8/6/2008 08:24 am (blgay) employee was clearing the work area around a drill rig, when employee slipped on a fallen wet tree branch, twisting his right knee. Supervisor: w. D. Frye
## 9326 8/6/2008 08:37 am (blgay) employee was sawing off a tree limb, when his hand slipped from handle onto blade, resulting in a deep cut to left index finger. Supervisor: j. A. Lanning
## 9327 8/6/2008 08:39 am (fblackmo) employee was removing a pump from equipment # 1 227-0033-2850. He was standing over the pump, lifted up on the pump, and hurt his back. Supervisor: h. E. Ballance
## 9328 8/6/2008 08:57 am (fblackmo) employee was loading tree limbs on dot truck when, he came into contact with poison ivy (both arms). Supervisor: rodney tanner
## 9329 8/6/2008 10:13 am (fblackmo) employee hit his head on a ventilation box while standing up causing pain to his neck. Employee was wearing his hardhat. Supervisor: marshall coleman
## 9330 8/6/2008 11:52 am (fblackmo) employee was bitten by a tick while performing field surveys. ( not stated where tick was found). Supervisor: elizabeth husk
## 9331 8/6/2008 12:28 pm (fblackmo) employee was opening a cardboard box with his pocket knife, the blade slipped, and cut his right index finger. Supervisor: james van riddick
## 9332 8/6/2008 12:38 pm (fblackmo) employee lifted a 2x4 section of square tube (help of inmate) when, he felt pain in his left elbow. Supervisor: marshall coleman
## 9333 8/6/2009 04:20 pm (blgay) employee was working with crew to clear vegetation from right-of-way. Employee was in and out of wooded areas along sr1567 in order to bring vegetative debris to the chipper. Once employee arrived home, he removed his shoes a
## 9334 8/6/2009 08:07 am (blgay) employee was lifting the ladder off the ground where it was set up, so another employee could level the ground under it. Employee had only lifted it up approximately 6" when he felt a sharp pain in the middle and right side o
## 9335 8/6/2009 09:37 am (fblackmo) employee was cutting bushes when, he was stung by a bee on his left wrist. Supervisor: brian k. Glover
## 9336 8/6/2009 09:59 am (fblackmo) employee was cutting metal with hack saw when, he cut his left thumb. Supervisor: mark turlington
## 9337 8/7/2007 01:28 pm (speedin) employee was unloading rip-rap from a dump truck bed, josh went by the truck without notifying anyone. He was hit in the head by a falling rock, cutting a gash in the top of his head. Supervisor: g. L. Ruppe
## 9338 8/7/2007 01:45 pm (speedin) employee was assisting with removal of a timber at bridge 83044. When in the water under bridge hooking up a cabel to get some large timbers out of the water, he stepped on an unseen timber nailer that had fallen off of t
## 9339 8/7/2007 02:14 pm (speedin) employee was getting out of an single-axle dump truck, he felt like he was going to fall out so he decided to jump and he pulled something in his leg. Supervisor: joseph brown
## 9340 8/7/2007 02:44 pm (speedin) employee was attempting to pull vines out from underneath contour mower deck. Some debris went in his eyes resulting in irritation/abrasion to left eye. Supervisor: meta b. Cooper, tsi
## 9341 8/7/2007 03:01 pm (speedin) employee was working on project b-4622, hunting property corners, employee was cutting to a base line and bush axe slipped into a hole and then employees foot slipped into hole slicing into the bottom of the boot and then I
## 9342 8/7/2007 03:51 pm (fblackmo) state vehicle was traveling north on nc 210 during a heavy rain storm. As the state vehicle travel around a curve he began to cross the centerline encroaching into the westbound lane according to the witness. The operator o
## 9343 8/7/2007 10:19 am (fblackmo) employee was driving on us 70 picking up trash along the road with inmates when, a car hit him in the rear. Employee felt pain in his back, stomach, and legs. Supervisor: clifton mills
## 9344 8/7/2007 10:30 am (fblackmo) employee was conducting a road test, the quick stop maneuver was being performed when, examiner suffered a neck injury. Supervisor: brenda burney
## 9345 8/7/2007 10:43 am (fblackmo) employee was pulling the forward deck hatch on vessel when, he felt a rip in his stomach area near navel. Supervisor: terry gray
## 9346 8/7/2009 11:48 am (blgay) employee was racking asphalt, when he felt pain in his back. Supervisor: j. R. Dunlap
## 9347 8/7/2009 12:27 pm (blgay) employee was taking traffic cones off back of truck, when he heard and felt a pop in his lower back. Supervisor: ron pharr
## 9348 8/7/2009 12:54 pm (blgay) employee was driving I-40 east bound, when he saw a ladder in the roadway. Employee pulled over and got out his boat hook to remove the ladder out of the road. When employee hooked the ladder, it pulled his left shoulder. Sup
## 9349 8/8/2005 02:28 pm (blgay) employee was to assist in removing a down tree on sr 1365 dover road. In assisting clearing the tree, employee entered into some poison ivy that was around the tree. Supervisor: david j. Shepard
## 9350 8/8/2005 02:55 pm (blgay) employee was exposed to poison ivy while cutting bushes around bridge # 25 in hertford county. Supervisor: ronald j. Terry
## 9351 8/8/2007 04:09 pm (speedin) employee was working on a grade project. She was unloading drain pipe & driving a sheep foot roller. She felt a pop or a pull and then continued working on the roller. Supervisor: walter burton
## 9352 8/8/2007 04:40 pm (speedin) employee was lifting on air hammer out of a hole when he felt a pain in his lower back. Supervisor: j. M. Laviner,
## 9353 8/8/2008 03:08 pm (fblackmo) employee was carrying, laying, and rolling out excelsior matting in 4' (20 lbs) and 8' (35-40 lbs. ) lengths in a ditch bottom that had heavy clay/mud making walking very difficult. This job was repeated over a two day perio
## 9354 8/8/2008 03:28 pm (fblackmo) employee was going down stairs when, she lost her footing causing her to slip and fall on her buttocks. Employee hit her lower back on several steps. Supervisor: robbie quinn
## 9355 8/8/2008 03:37 pm (fblackmo) employee opened a tool box in an abandoned building and was stung on the nose by an unidentified insect. Supervisor: ronnie faulkner
## 9356 8/9/2004 02:31 pm (fblackmo) employee states on form 19 that he was trying to remove debris from roadway when, he felt pain in his back. Supervisor: matt taylor
## 9357 8/9/2004 02:47 pm (fblackmo) employee states on form 19 that while working on shoulder of road he, was bitten on his neck by an insect. Supervisor: marcus jones
## 9358 8/9/2004 03:12 pm (fblackmo) employee states on form 19 that travis cross was removing harden thermoplastic from cooked opening when, the wooden stick he was using broke striking employee in the mouth. Supervisor: roger pulcheon
## 9359 8/9/2004 03:47 pm (fblackmo) employee states on form 19 while trimming vegetation from around warning sign he, came into contact with poison ivy on his arms and face. Supervisor: j. M. Teague
## 9360 8/9/2004 04:12 pm (fblackmo) employee states on form 19 that walking from mobile unit to building she, fell over a stump causing the injury to her right arm, hip, and leg. Supervisor: kent frazer
## 9361 8/9/2006 01:45 pm (fblackmo) employee was feeding a piece of wood into the wood chipper. It threw large chips back into the feed area where he was standing. A large piece of wood debris struck his right forearm causing a gash. Supervisor: r. I. Matthews
## 9362 8/9/2006 01:58 pm (fblackmo) employee was cutting right-a-way with chain saw when, he got over heated causing a headache, nose bleed, and blurred vision. Supervisor: e. R. Buchanan
## 9363 8/9/2006 02:10 pm (fblackmo) employee was stepping out of boom truck when he lost his footing and slipped off of the truck causing a gash to the back of his head and fracture to his left arm. Supervisor: ronald j. Terry
## 9364 8/9/2006 09:19 am (fblackmo) employee was drilling a hole in metal pipe and the drill bit hung up causing the drill to spin around injuring his right thumb. Supervisor: barry f. Kizziah
## 9365 8/9/2006 09:33 am (fblackmo) employee was sitting a stop light when, he was rear ended by a white chrysler mini van. Employee complained of a headache and neck pain. Supervisor: greg johnson
## 9366 8/9/2006 09:45 am (fblackmo) employee was walking through doorway when, he foot slipped on strip that holds the carpet down at the doorway. Employee felt pain in her right foot/ankle. Supervisor: kerry b. Proctor
## 9367 8/9/2006 09:58 am (fblackmo) employee slipped on loose sand while exiting vehicle and twisted right knee. Supervisor: c. H. Piner
## 9368 8/9/2006 10:11 am (fblackmo) employee was trying to pull open the hook on a truck and could not get it to open. He twisted to get more leverage and pulled a muscle in his groin area. Supervisor: k. R. Davis
## 9369 8/9/2006 10:33 am (fblackmo) employee was surveying and was unaware he was standing on an ant hill after he realized the ants was crawling up his legs and biting him. Supervisor: phillip r. Johnson
## 9370 8/9/2006 11:20 am (fblackmo) employee stated he was walking to the truck when, he got something in his left eye. Supervisor: eric a. Schenz
## 9371 8/9/2006 11:39 am (fblackmo) employee was taking measurements on a cross over pipe when, he came into contact with poison ivy. Supervisor: david m. Walden
## 9372 8/9/2006 11:53 am (fblackmo) employee was performing routine yard maintenance utilizing weed eating equipment. During the operation, his right shoulder became sore. Supervisor: joe yiu kwong ng
## 9373 8/9/2006 12:11 pm (fblackmo) employee states his right leg became entangled in brush causing him to trip. Supervisor: james jeffreys
## 9374 8/9/2007 01:49 pm (speedin) employee was on a ladder. While on the ladder he was repairing a sign assembly of 6 signs, the ladder supports bent inward and the ladder collapsed. The employee fell injuring his left upper arm and he got some cuts on his
## 9375 8/9/2007 02:06 pm (speedin) employee was conducting an erosion control inspection on bridge #99. He was walking down steep bank toward the creek and the portion of the bank broke off, causing him to fall backwards about 6 ft into 6 in. Of muddy water,
## 9376 8/9/2007 02:37 pm (speedin) employee and a private vehicle were both traveling south on I-77 when private vehicle cut across travel lane directly in front of employee's vehicle, employee swerved to the right to avoid a collision, lost control, and ran
## 9377 8/9/2007 03:06 pm (speedin) employee had climbed a 5 ft. High fence. On the other side he stepped into a hole that was covered with grass and he twisted his left ankle. Supervisor: w. Lee hicks
## 9378 8/9/2007 03:31 pm (speedin) employee had to remove a tree from the road. Although the employee used all protective equipment he still came in contact with the poison ivy oils. Supervisor: d. Shane edwards
## 9379 8/9/2007 03:55 pm (speedin) employee was attempting to get up on the asphalt box tractor while it was in motion and his foot slipped. The back left rear tire of the tractor then rolled over the employee's leg and foot, injuring his right big toe. Supe
## 9380 8/9/2007 10:21 am (speedin) employee was using a spare sign truck and he was getting down from the bed of the truck and he placed his right foot on the bumper. His foot slipped and his left leg came down against the bumper injuring left shin. Supervisor:
## 9381 8/9/2007 10:46 am (speedin) employee was moving brush from roadway for the long arm mower when he scratched his face with his glove, and came in contact with poison oak. Supervisor: w. S. Gallman
## 9382 8/9/2007 11:11 am (speedin) employee was attempting to cut a tree in ditch line. Trackhoe operator attempted to remove debris from the ditch, a tree limb dislodged and hit the employee's left ankle. Supervisor: r. L. Adcock
## 9383 8/9/2007 11:56 am (speedin) employee was weedeating and came in contact with poison oak. Supervisor: kevin hazelwood
## 9384 9/1/2004 03:31 pm (fblackmo) employee states while conducting a road test customer failed to stop at intersection and collided with another vehicle. Supervisor: linda moose *show all bills to joyce*
## 9385 9/1/2004 08:25 am (fblackmo) employee was standing on bridge holding a rope attached to a wooden beam. The rope pulled out of his hand into the water along with beam. The rope twisted causing the injury to employees right index finger. Supervisor: k.
## 9386 9/1/2004 08:43 am (fblackmo) employee states excavator was removing logs from creek when, a tree top fell striking him on his right leg. Supervisor: larry brown
## 9387 9/1/2004 08:56 am (fblackmo) employee was traveling north on I-85 in cat m318 when, a tractor trailer struck the m318 in the rear causing injury to back. Supervisor: brian marely
## 9388 9/1/2004 09:08 am (fblackmo) employee was putting up fence on secondary construction project when, he came into contact with poison ivy. Supervisor: r. L. Warlick, jr
## 9389 9/1/2004 09:27 am (fblackmo) employee was walking back to his office after turning off lights on state vehicle when, he stepped in a hole that was hidden by high grass. Employee states he experienced pain in his left ankle. Supervisor: m. L. Fogleman
## 9390 9/1/2006 11:56 am (fblackmo) employee was coming out of motor grader when, he slipped on bent step. Employee tried to catch himself causing the injury to his left shoulder. Supervisor: terry shaw
## 9391 9/1/2006 12:11 pm (fblackmo) employee was climbing off the back of sign truck when, he stepped onto uneven pavement that was covered with grass twisting his left ankle. Supervisor: andy helms
## 9392 9/1/2006 12:22 pm (fblackmo) employee was training at front counter with another employee when, he was switching placed he tripped and fell striking his head on door. Supervisor: donna creech
## 9393 9/1/2006 12:42 pm (fblackmo) employee was walking beside dump truck while another employee was rolling a metal pipe off truck, as he approached the tailgate, the pipe hit him in the forehead. Supervisor: jerry hildreth
## 9394 9/1/2009 02:31 pm (fblackmo) employee states she injured her lower back while weed eating during morning hours. Supervisor was informed on 08/17/2009 at 3:20 p. M. Supervisor: ashley pilkington
## 9395 9/1/2009 03:12 pm (fblackmo) employee was operating state vehicle when, it was struck by another private vehicle on the right rear corner. Employee felt pain in his back. Supervisor: r. E. Flaherty
## 9396 9/1/2009 03:25 pm (fblackmo) employee fell into un-covered man hole. Multiple injuries. Supervisor: tony spence
## 9397 9/1/2009 04:39 pm (fblackmo) employee climbing out of vehicle when, he step on rocks causing injury to his right foot. Supervisor: ben ander riggs
## 9398 9/1/2009 05:35 pm (fblackmo) employee was burning trash when, aerosol can exploded causing burns to his forehead. Supervisor: joey brickhouse
## 9399 9/10/2008 11:00 am (fblackmo) employee was traveling on eastern blvd near gillespie street stopped at intersection when, state vehicle was rear ended by a private vehicle. Employee felt pain in neck, head, and right lower leg (calf area). Supervisor:
## 9400 9/10/2008 11:14 am (fblackmo) employee was putting out cones on us 64. A tractor trailer went by and a small rock came from one of the tires and went into his left ear. Supervisor: curtis hudson
## 9401 9/10/2010 02:27 pm (barnes) employee was traveling north on 19-32 north at exit 23 in a construction zone. He observed two worker crossing in the grassy median ahead and he immediately reduced his speed. One worker jumped over the guard rail to cross
## 9402 9/10/2010 03:02 pm (barnes) employee was marking bolt locations on project site (steep mountain slope). Once employee finished marking the bolts and was making his way off the mountain, he slipped and fell twisting his left knee. Employee injured his
## 9403 9/10/2010 03:31 pm (barnes) employee was performing assessments in mitchell county when a tick became lodged in his left wrist underneath his watch band. Employee has since been diagnosed with lymes disease. Employee injured left wrist. Supervisor: d
## 9404 9/10/2010 03:48 pm (barnes) employee injured his back while attempting to change a flat tire on a state issued and owned vehicle. The back injury happened when attempting to remove a lug nut off of the tire rim with the tools provided with the state v
## 9405 9/11/2008 06:13 pm (fblackmo) employee was putting out warnings signs when he was bitten by a tick on his right leg. Supervisor: ira harris
## 9406 9/11/2009 08:28 am (fblackmo) employee was cracking tamp engine when engine started. Throttle was partially open and tamp jumped sideway twisting and jerking employee around causing injury to his lower back. Supervisor: g. N. Allen
## 9407 9/11/2009 08:42 am (fblackmo) employee was working with asphalt when fly bit him on his neck. Supervisor: e. W. Wooten 10/13/2009 05:06 pm (sjerniga) 1 lwd per d. Leonard
## 9408 9/11/2009 08:54 am (fblackmo) employee was walking to small dump truck. He stepped in a hole next to a catch basin. The hole was knee deep. He experienced pain in his left knee and upper leg. Supervisor: j. M. Hux
## 9409 9/12/2008 01:07 pm (blgay) employee was taking a water break while surveying old winston road in surry county. Mr. Smith traveling through the work zone in a reckless manner, stopped and spat in employees face. Mr. Smith cursed employee and threatened
## 9410 9/12/2008 02:11 pm (blgay) employee was stepping off lowboy. Right foot hung on cleat on tractor, causing all weight to go on left leg. Supervisor: tim scruggs
## 9411 9/12/2008 02:19 pm (blgay) employee was attempting to install a tailgate that had fallen off of trailer. The tailgate slid cutting the employees left hand. Supervisor: doug johnson
## 9412 9/12/2008 02:30 pm (blgay) employee was training in weapons retention and impact weapons, which involved physical contact with fellow employees on mat. Employee stated that right shoulder felt sore but did not report any certain time injury occurred.
## 9413 9/12/2008 02:41 pm (blgay) employee find tick attached to left leg, while building a road. Supervisor: henry worley
## 9414 9/12/2008 02:47 pm (blgay) employee was flagging traffic. Later in the evening, he found a tick embedded on back, left upper shoulder. Supervisor: james biggs
## 9415 9/12/2008 12:18 pm (blgay) employee was attempting to relieve pressure from another employee trapped under a vehicle, after a jack stand fell. Employee along with several others were lifting front bumper, while a jack was being placed under truck to f
## 9416 9/12/2008 12:30 pm (blgay) employee was cutting tree, when it snapped, came back, and hit employee in right arm above wrist. Supervisor: j. C. Mundy
## 9417 9/13/2005 03:34 pm (fblackmo) employee was assisting division of land quality, roadside environment, and division personnel with an audit of the b-4230 project when, he tripped and fell causing the injury to his wrist. Supervisor: john a. Finnell
## 9418 9/13/2005 03:45 pm (fblackmo) employee was cutting right of way around bridge when, he came into contact with poison ivy on both arms and upper body. Supervisor: a. L. Smith
## 9419 9/13/2005 03:55 pm (fblackmo) employee was working on air condition when, he fell over a plant causing the injury to his left arm and leg. Supervisor: robert e. Hill
## 9420 9/13/2005 04:06 pm (fblackmo) employee was taking plywood off truck when, the wind blew the plywood causing it to twist his right wrist. Supervisor: w. T. Lowery jr
## 9421 9/13/2005 04:14 pm (fblackmo) employee was removing trees from right of way with chainsaw when, he came into contact with poison ivy on both arms. Supervisor: eddie burleson
## 9422 9/13/2005 04:24 pm (fblackmo) employee was removing trees from right of way with chainsaw when, he came into contact with poison ivy on both arms. Supervisor: eddie burleson
## 9423 9/13/2005 04:34 pm (fblackmo) employee was unloading fence posts from truck when, he jammed his left thumb. Supervisor: edwin austin
## 9424 9/13/2005 04:45 pm (fblackmo) employee was removing broken roller support arm form retracing tarp on dump truck when, the spring release tension causing metal tarp roller to spin striking employees hand, and forearm. Supervisor: j. E. Stepp
## 9425 9/13/2005 04:56 pm (fblackmo) employee was pulling fuel hose when, he walked backwards off the end ramp into the river. The nozzle on the fuel hose struck him in the back of the head. Supervisor: s. H. Kinner 09/26/2005 08:53 am (kbarefoo)
## 9426 9/13/2005 06:07 pm (fblackmo) employee was attempting to Miss A pedestrian who stepped in lane of traffic and avoid hitting traffic in oncoming lane when, he ran into a ditch and jack knife trailer hauling roller.
## 9427 9/13/2005 09:44 am (fblackmo) employee was stepping down off tractor when, he missed last step causing him to fall an injure his left knee. Supervisor: bubba r. Johnson
## 9428 9/13/2010 11:40 am (barnes) employee was administering road test. Upon returning to dmv parking lot, the customer was attempting to pull into a parking space. He was doing fine. However, once he started into the space, he suddenly accelerated and did
## 9429 9/14/2004 02:45 pm (fblackmo) employee states she was fixing a sign on state road 1746 in beaufort county when, she felt pain in her right shoulder. Supervisor: jim evans
## 9430 9/14/2004 03:02 pm (fblackmo) employee was unloading fertilizer in back of truck when, he slipped and hurt his right knee. Supervisor: r. E. Warren
## 9431 9/14/2004 03:12 pm (fblackmo) employee was moving a 55 gal drum of oil when, he cut his left hand on the dolly. Supervisor: alan medlin
## 9432 9/14/2004 11:11 am (fblackmo) employee was conducting a road test with a customer. The customer failed to yield to a pedestrian on a bicycle and hit the person. The impact caused the employees head to be snapped back and to the side. Supervisor: joan
## 9433 9/14/2004 12:03 pm (fblackmo) employee was stepping of paver trailer when, he felt pain in his left ankle. Supervisor: m. E. Anders
## 9434 9/14/2004 12:35 pm (fblackmo) employee was retrieving his safety glasses from cubby hole in crew cab truck when, an inmate shut the door on his right hand causing the injury to his ring finger. Supervisor: t. S. Bozeman
## 9435 9/14/2004 12:46 pm (fblackmo) employee states while reviewing a new project with state contract personnel he, struck his right knee on a guardrail post while crossing over median. Supervisor: john olinger
## 9436 9/14/2005 09:32 am (fblackmo) employee was removing a storm drain lid when, he felt pain in his lower back area. Supervisor: wayne herring
## 9437 9/14/2005 09:45 am (fblackmo) employee was stepping up on patch roller when, his left foot slipped causing the injury to his leg & chest area. Supervisor: john n. Trivette
## 9438 9/14/2005 10:58 am (fblackmo) employee states he has chronic tendonitis. Carpal tunnel syndrome in right elbow. Supervisor: d. R. Henderson
## 9439 9/14/2005 11:15 am (fblackmo) employee struck his right knee on the bottom of cab. Supervisor: gary r. Cooper
## 9440 9/15/2009 02:31 pm (blgay) employee was working on sr1300 shoveling cold patch, when he felt a bite or burn on his left side. Employee grabbed at his shirt and pulled it up. Employee had two insect bites located on his left side from belt up to his un
## 9441 9/15/2009 12:31 pm (fblackmo) employee was measuring the length of an existing pipe. Employee stepped across a ditch and tripped. Employee felt pain in his left leg and lower back. Supervisor: g. J. Liverman
## 9442 9/16/2004 11:08 am (fblackmo) employee states while helping another employee (charles smith) change a tire he, felt pain in his neck and left shoulder area. Supervisor: jimmy creech
## 9443 9/16/2004 11:25 am (fblackmo) employee states on 19 that while exiting vehicle to look at a job in hamlet n. C. He felt pain in his right knee. Supervisor: bobby thrower
## 9444 9/16/2004 11:42 am (fblackmo) employee states while cutting board on table the saw kicked the board back striking him in his stomach area. Supervisor: dennis wilson baker
## 9445 9/16/2004 11:54 am (fblackmo) employee was working with landscape department removing tree limbs that had broken during a storm when, he was stung on his lip by a hornet. Supervisor: f. T. Killian
## 9446 9/16/2008 09:34 am (blgay) employee was climbing out of his dump truck when he felt pain in the lower left side of his back, causing him to fall to the ground on his hands and knees. Supervisor: j. R. Riley
## 9447 9/16/2009 03:31 pm (blgay) employee was closing door on the long arm, when he mashed right thumb in door. Supervisor: darrell dean
## 9448 9/16/2009 10:52 am (fblackmo) employee claims hearing loss in both ears. Supervisor: mark turlington
## 9449 9/16/2009 11:19 am (blgay) employee was cutting vegetation and came in contact with poison oak. Employee developed a skin rash on his right arm and hand. Supervisor: roger holland
## 9450 9/17/2004 08:37 am (fblackmo) employee was flagging traffic when a private vehicle got to close to employee striking him on his right shoulder. The side mirror of the vehicle struck employee on his arm. Supervisor: jimmy shelton
## 9451 9/17/2004 08:55 am (fblackmo) employee and inmate was pulling up debris form around a trap board when, the inmate pushed the board striking employee on his finger. Supervisor: bubba r. Johnson
## 9452 9/17/2004 09:09 am (fblackmo) employee was stung by a bee on his left lower arm while looking for keys. Supervisor: steve clayton
## 9453 9/17/2004 09:21 am (fblackmo) employee states he was bitten by a tick while working on bridge. Supervisor: kevin d. Smith
## 9454 9/17/2007 02:21 pm (mdsloan) employee was traveling through a work zone. Traffic was at a stand still when Mr. Scott was struck in the rear by another vehicle. Mr Scott was taken to baptist hospital. Mr Scott's injuries include whiplash. Supervisor
## 9455 9/17/2007 04:12 pm (mdsloan) employee was climbing down from the back of a motor grader, employee came backwards using 3-pnt hand hold. Hand slipped and he caught his weight by his left arm to prevent falling. As a result he has severe pain from his
## 9456 9/18/2006 02:29 pm (fblackmo) employee was hooking up the roller to swb dump truck when, he felt pain in his back. Supervisor: shelton james
## 9457 9/18/2006 02:38 pm (fblackmo) employee was putting things in back of dump truck and climbed out of back of truck jumping down off tailgate. At this time, he felt pain n in his lower left leg. Supervisor: b. N. Braswell
## 9458 9/18/2006 02:48 pm (fblackmo) employee was cleaning off catch basin when, a nail went into side of his right boot. Employee passed out after accident. Supervisor: joe justice
## 9459 9/18/2006 03:47 pm (fblackmo) employees (2) were tacking straw when, the hand hose on the distributor busted. The asphalt shot onto employees face causing burns. Supervisor: william nall
## 9460 9/18/2006 03:58 pm (fblackmo) employee was clearing some brush from around right of way. He pulled a vine down out of a tree that came into contact with his skin. By 8:00 p. M. That evening he felt itchy all over and by 6:00 a. M. The next morning he ha
## 9461 9/18/2006 04:11 pm (fblackmo) employee was engaged in surveying work when, he was stung by an insect on left hand. Supervisor: m. Masihpour
## 9462 9/18/2006 11:16 am (fblackmo) employee states on form 19 that she was involved in a hit and run causing injury to her neck. Supervisor: charles e. Irvin
## 9463 9/18/2006 11:29 am (fblackmo) employee stepped from behind truck where water cooler was located and into a open travel lane when, he was struck in the upper right arm by private vehicle side mirror. Supervisor: m. R. Williams
## 9464 9/18/2006 11:42 am (fblackmo) employee was walking down slope when, he slipped and fell causing injury to his right hip & forearm. Supervisor: tim cassada
## 9465 9/18/2006 11:53 am (fblackmo) employee was climbing out of motor grader. His right leg was on second step when, step shifted. Employee felt pain in his right leg & knee. Supervisor: a. R. Gay
## 9466 9/18/2008 08:33 am (blgay) employee was clearing right of way on carden drive and sometime during the day he came in contact with poison oak. Employee started breaking out in a rash and applied technu. Over the weekend the rash got worse and employee
## 9467 9/18/2008 09:39 am (fblackmo) employee went to stand up after safety meeting when, he felt pain in his right knee (knee popped). His knee started swelling and could not hold his weight through out the day. Supervisor: mike hamm
## 9468 9/18/2008 10:02 am (fblackmo) employee was trying to lift chain hoist when, he felt pain in his right shoulder. Supervisor: s. Kinner
## 9469 9/18/2008 10:12 am (fblackmo) employee climbed into the full bed of a pickup truck, removed a chainsaw from the toolbox, closed the lid, placed the saw on top of the toolbox, jumped down off the pickup from the side, and felt sharp pain in his back w
## 9470 9/18/2008 10:24 am (fblackmo) employee was cutting trees from roadway when, he came into contact with poison ivy. Supervisor: danny baker
## 9471 9/18/2008 11:11 am (fblackmo) employee was cutting trees on highway when, he came into contact with poison ivy. Supervisor: danny baker
## 9472 9/18/2008 11:20 am (fblackmo) employee was cutting up a old water hose to throw in the trash when, he became distracted and cut his center finger on left hand. Supervisor: jamie lee
## 9473 9/19/2005 02:45 pm (fblackmo) employee was conducting a road test when, driver attempting to park hit the gas, causing the vehicle to cross a concrete barrier hitting a light pole. Employee felt pain in her neck. Supervisor: josephine lewis
## 9474 9/19/2005 02:58 pm (fblackmo) employee was conducting a road test when, drivers vehicle was hit in the rear by a private vehicle. Employee felt pain in his right shoulder, upper arm, and back. Supervisor: clyde millman
## 9475 9/19/2006 08:30 am (fblackmo) employee was cutting trees and chipping brush when, he came into contact with poison ivy on arms and legs. Supervisor: l. B. Dedmon
## 9476 9/19/2006 08:42 am (fblackmo) employee was exiting dump truck utilizing 3 point dismount. His left foot was planted on the ground when, his right hand slipped from the adjacent grab handle. His body twisted to the right causing injury to his left knee
## 9477 9/19/2006 09:00 am (fblackmo) employee experienced numbness and tingling in right arm, hand, and shoulder. Supervisor: stephanie benarao
## 9478 9/19/2006 09:11 am (fblackmo) employee was reaching for tools when, a small metal box fell striking him on his right hand. Supervisor: tim ashe
## 9479 9/19/2006 09:26 am (fblackmo) employee was doing physical training (push ups) when, she felt pain in left wrist. Supervisor: king & rivenbark
## 9480 9/19/2006 09:39 am (fblackmo) employee was pulling the tailgate out when, he smashed right center finger between the tailgate and chain. Supervisor: t. L. Pugh
## 9481 9/19/2006 09:55 am (fblackmo) employee was moving a box of project files into vehicle when, she twisted left leg. Supervisor: darrell jernigan
## 9482 9/19/2008 12:07 pm (blgay) employee was cutting back limbs of tree for an area to place water pump. When he went to swing the bush axe, a vine grabbed the blade making it roll out of his hand and the bush axe came down. Then bush axe hit him in the ri
## 9483 9/19/2008 12:20 pm (blgay) employee was driving to work site when he hit a vehicle in front of him, causing the steering wheel airbag to deploy. The airbag bruised and scratched both arms. Supervisor: c. R. Styles
## 9484 9/2/2009 09:54 am (fblackmo) employee was washing her hands when, she slipped on floor striking right knee and her left hand struck the edge of the metal trash can. Supervisor: beck s. White
## 9485 9/20/2005 08:05 am (fblackmo) employee was placing rip rap at the inlet of a pipe for the bridge maintenance unit using the hydraulic excavator on wednesday 08/10/2005. Once employee completed task with the excavator, he began placing the class I rip
## 9486 9/20/2005 08:22 am (fblackmo) employee was working on us17 using pipe washing equipment hose. Employee was setting up signs for traffic control, putting down traffic cones. He stated that pulling on the hose of the pipe cleaner and constant moving the
## 9487 9/20/2005 08:35 am (fblackmo) employee was cutting dead tree on right of way when, one tree he was cutting broke into two parts. One of the tree parts hit him on the left knee cap area. Supervisor: r. S. Deal
## 9488 9/20/2005 08:47 am (fblackmo) employee was cutting grass and bushes out of right of way on nc 32 in gates county when, he came into contact with poison ivy on multiple body parts. Supervisor: james v. Riddick
## 9489 9/20/2005 09:36 am (fblackmo) employee was cutting bushes on right of way when, he was bitten by a bee on the top of his head, shoulder, and back. Supervisor: ronald e. Joyce
## 9490 9/20/2006 09:31 am (slee) driver had to hit the ditch to avoid a head on collision. Opposing driver did not stop.
## 9491 9/20/2006 09:41 am (fblackmo) employee was sharpening bush axe without proper ppe. Foreign body in right eye. Supervisor: d. R. Summers
## 9492 9/20/2006 09:52 am (fblackmo) employee with help was moving a walkboard from one position to another from between I-beams when, he stated he pulled something in side. Supervisor: ken anderson
## 9493 9/20/2006 10:04 am (fblackmo) employee was clear right of way when, he came into contact with poison ivy. Supervisor: ronald lee
## 9494 9/20/2006 10:54 am (fblackmo) employee states while typing her left thumb started aching. Supervisor: eula m. Williams
## 9495 9/20/2007 01:35 pm (mdsloan) employees howard sorrells and dale stephens were lifting a 120 lb. Barrel of used oil to empty into used oil tank, when getting ahold of base to tile over when base came loose causing it to slip and when Mr. Sorrells tried
## 9496 9/20/2007 02:19 pm (fblackmo) employee was helping remove silt fence post when, his right center finger was pinched. Supervisor: b. N. Braswell
## 9497 9/20/2007 02:59 pm (mdsloan) employee was working with the crew replacing timber piles and caps on a bridge (#94) when employee came into contac at some point with poison ivey. The end of the bridge was only 3 feet off the ground causing employees to
## 9498 9/20/2007 04:55 pm (fblackmo) employee was exposed to waste material while reset discharged pump breakers. Supervisor: mark piner
## 9499 9/20/2007 12:11 pm (fblackmo) employee was strapping down tools used on atheny loader with a bungee cord. Employee lost his grip on cord causing it to fly up and strike him on his left eye. Supervisor: p. L. Hunsucker jr
## 9500 9/21/2004 08:24 am (fblackmo) employee was a passenger in a tandem dump truck when it was struck by a private vehicle. Employee experience pain in left elbow area. Supervisor: r. L. Faulkner
## 9501 9/21/2004 08:48 am (fblackmo) employee was hauling asphalt from the stokesdale plant when, stepping out of truck he stepped on un-level pavement causing the injury to his back. Supervisor: s. G. Dillon
## 9502 9/21/2004 09:01 am (fblackmo) employee states he was putting money in coke machine when, he blacked out falling backwards causing the injury to his head and right elbow. Supervisor: l. C. Bass
## 9503 9/21/2004 10:08 am (fblackmo) employee states while walking he, stepped in a hole causing the injury to his left knee. Supervisor: brian davis
## 9504 9/21/2004 10:26 am (fblackmo) employee states while moving 4 foot chrome stands she, felt pain in her left arm. Supervisor: alice hall
## 9505 9/21/2004 10:39 am (fblackmo) employee states while stepping out of truck he, twisted his right knee. Supervisor: carl e. Scales
## 9506 9/21/2004 11:04 am (fblackmo) employee states while blowing off deck debris flew into his right eye. Supervisor: thomas foster bowser
## 9507 9/21/2004 11:24 am (fblackmo) employee was walking down concrete slope protection at bridge 510 in mecklenburg county when, he accelerated near bottom of slope, his foot impacted hard on sidewalk when trying to slow down. Supervisor: mark s. Wade
## 9508 9/21/2004 12:11 pm (fblackmo) employee was moving a refrigerator in the maintenance yard when, she stepped wrong causing the injury to her right ankle. Supervisor: p. S. Rickard
## 9509 9/21/2005 04:07 pm (blgay) employee was climbing down the ladder on the hydra platform truck when he reached the bottom step to step on the platform his left foot slipped and he hit his rib cage on the right side. Supervisor: terry davis
## 9510 9/21/2005 04:26 pm (blgay) employee was removing straw from back of truck, employees foot slid on the tongue of mulch blower and hyper extended left knee. Supervisor: a. J. Mintz
## 9511 9/21/2005 04:34 pm (fblackmo) employee stated that he was operating a chain saw cutting back vegetation on a high embankment when, he started down the embankment and slipped and fell on his back on a stump. Supervisor: michael t. Beane 4/19/2007 03:5
## 9512 9/21/2005 04:39 pm (blgay) employee hit left foot on pallet outside print shop in hallway. Supervisor: donna brandis
## 9513 9/21/2005 04:52 pm (fblackmo) employee was cutting bushes in highly vegetate area with a bush axe. The bush axe became tangled in some large vines causing the bush axe to bounce back hitting the employee in the head. Supervisor: r. S. Ramsey
## 9514 9/21/2005 04:54 pm (blgay) employee was working with a crew putting a top on a building when he was trying to remove a brace with a hammer when he missed the board and struck himself. Supervisor: alton h. Thorton
## 9515 9/21/2007 08:09 am (fblackmo) employee was operating a grader hit a rock and jarred his right shoulder. Supervisor: v. C. Staley
## 9516 9/21/2007 08:21 am (fblackmo) employee was installing new radio antenna on top of motor grader and tilted head back to look up causing injury to his neck. Supervisor: james conner
## 9517 9/21/2007 08:32 am (fblackmo) employee was driving crew cab when it was hit in the back by a private vehicle while attempting to turn into a adjacent driveway. Employee felt pain in his neck, shoulder, and back. Supervisor: w. T. Mckenzie
## 9518 9/21/2007 08:44 am (fblackmo) employee was having some trouble with his contact. He removed his contact from his right eye and put it back in due to some irritation. Employee removed and replaced his contact on two different occasions. Employees eye b
## 9519 9/21/2007 08:55 am (fblackmo) employee was descending down a slope carrying his surveying instruments and tripod when, he slipped and fell down. Employee hit the ground sitting on his left foot while his right leg was extended down the slope. Later in
## 9520 9/21/2007 09:07 am (fblackmo) employee was removing creosote at bridge when, saw dust and debris came into contact with his arms causing them to become irritated. Supervisor: timothy everette
## 9521 9/21/2007 10:14 am (fblackmo) employee had been working in asphalt in high degree weather. Employee and crew came inside the dot shed to cool off and refuel their equipment. Employee went into the restroom and began to experience numbness in his right
## 9522 9/21/2007 11:06 am (fblackmo) employee was raking asphalt during a paving operation when, he felt pain in his lower back. Supervisor: joel david holton
## 9523 9/21/2007 11:55 am (fblackmo) employee was stepping down from a roller trailer and twisted his right ankle. Supervisor: clifton mills
## 9524 9/21/2007 12:10 pm (fblackmo) employee was working in the bow thruster room of the m/v thomas baum laying deck plates. Employee slipped on deck framing beam and fell forty five degrees before grabbing a pipe to stop his fall. When he released his grip
## 9525 9/21/2007 12:27 pm (fblackmo) employee had finished shoveling mix behind leeboy and turned to check traffic before stepping in the lane. Employee took a few steps back at the same time leeboy was backing up, leeboy hit him on the right arm and hand. S
## 9526 9/21/2007 12:41 pm (fblackmo) employee was assisting sign erector install signs in concrete islands at the intersection of nc 56 and 96 in granville county. After the work day was complete the employee went home. Employee awoke on saturday August 25 h
## 9527 9/21/2009 09:51 am (blgay) employee was loading some debris for the equipment shop. When employee stepped off the tommy lift onto the pavement; as he did he stepped in a hole, causing him to sprain his right ankle. Supervisor: t. L. Ingle
## 9528 9/21/2009 10:02 am (blgay) employee was standing in work zone next to open travel lane inspecting utility encroachment work, when a tractor trailer came by and blew up dust/debris from roadway, some of which entered employees left eye. Supervisor: kev
## 9529 9/22/2005 08:11 am (blgay) employee was trying to move state office furniture when his left hand was mashed/jammed between the desk and the dolly cart. Supervisor: andy tabor
## 9530 9/22/2005 08:12 am (fblackmo) employee was using a jigsaw to cut some aluminum sheet metal when, the saw got hung up causing it to jump out of the kerf. Employee cut his left thumb. Supervisor: albert strickland
## 9531 9/22/2005 08:49 am (fblackmo) employee was operating a weedeater along interstate when, his feet became entangled in grass causing him to twist right knee. Supervisor: wallace pulliam
## 9532 9/22/2005 08:59 am (fblackmo) employee was helping another employee lift a plate tamp out of a hole when, he felt pain in his lower back. Supervisor: dennis huffman
## 9533 9/22/2005 11:13 am (fblackmo) employee crossed the ditch and started to climb up the backslope of the ditch to cut bushes around a sign when, he felt a pull in lower right leg. Supervisor: c. E. Thompson
## 9534 9/22/2006 01:15 pm (fblackmo) employee was loading acetylene tank on truck when felt a sharp pain in his right shoulder. Supervisor: w. T. Lowery jr
## 9535 9/22/2006 01:44 pm (fblackmo) employee was on traffic services yard moving old pallet when, he felt pain in lower back & left shoulder. Supervisor: w. R. Wall
## 9536 9/22/2006 02:32 pm (fblackmo) employee was loading pipe on truck when, he his finger was caught between the tailgate. Supervisor: jermey delapp
## 9537 9/22/2006 02:42 pm (fblackmo) employee was walking around truck to close latch when, he stepped in a ditch and caused the injury to his right ankle. Supervisor: g. R. Mcginnis
## 9538 9/22/2006 09:33 am (fblackmo) employee was lifting a box of cancelled license plates when, he pulled something in his left arm/ bicep. Supervisor: d. F. Dunnagan
## 9539 9/22/2006 09:47 am (fblackmo) employee was building a fence when, something got into his left eye. Supervisor: greg mccraken
## 9540 9/22/2006 09:56 am (fblackmo) employee was climbing out of salt spreader after removing parts. He was trying to get over the side of spreader to get back on ladder causing injury to back. Supervisor: j. E. Stepp
## 9541 9/22/2006 10:05 am (fblackmo) employee was installing pipe culverts on a grade job and was moving pipe by hand when, he pulled a muscle in his lower back. Supervisor: marc pollard
## 9542 9/22/2006 10:24 am (fblackmo) employee was driving and pulling rods while performing nuclear density testing when, he felt pain in his back. Supervisor: r. E. Shultes
## 9543 9/22/2006 10:37 am (fblackmo) employee was passing grease gun between loader and belt frame when, he cut his finger. Supervisor: robert cannady
## 9544 9/22/2006 10:45 am (fblackmo) employee was performing a flagging operation when, he was bitten by a spider on back. Supervisor: w. R. Wall
## 9545 9/22/2006 12:14 pm (fblackmo) employee was attempting to dismount from the mulch blower when, he missed last step and fell causing injury to his right wrist. Supervisor: j. W. Hardy
## 9546 9/22/2008 08:19 am (blgay) employee was attempting to start a diesel powered water pump by pulling on a manual starting chord. The pump was positioned in an awkward angle and had to pull the chord with his left shoulder at that hindering angle. When e
## 9547 9/22/2008 08:29 am (blgay) employee noticed a spider on his shoulder and he wiped it off with his right hand and it bit him. Supervisor: leon sayles
## 9548 9/22/2008 08:38 am (blgay) employee was cutting trees and shrubs from the right of way along nc 42, when poison ivy came into contact with both arms. Supervisor: jimmy maness
## 9549 9/22/2008 08:47 am (blgay) employee was stepping off of backhoe that had been loaded onto a trailer. Employees hand slipped and he fell to pavement, landing on his left elbow. Supervisor: nanette fogleman
## 9550 9/22/2009 12:16 pm (blgay) employee was getting out of truck and his foot slipped. Employee grabbed hand bars and felt a sting in his back. Supervisor: t. E. Johnson
## 9551 9/23/2008 02:12 pm (fblackmo) employee was driving state vehicle from construction project to home when, he failed to reduce speed, and rear ended private vehicle. Employee experience in increase in blood pressure and had minor cuts. Employee was usin
## 9552 9/23/2008 02:29 pm (fblackmo) employee was ringing out mop when, he felt pain in his lower back area. Supervisor: t. L. Gray
## 9553 9/23/2008 03:01 pm (fblackmo) employee was cutting trees with bush ax when, he was bitten by chigger bugs. Supervisor: mark conner
## 9554 9/23/2008 03:16 pm (fblackmo) employee was clearing trees and bush from right of way when, he was bitten by a spider on his right arm. Supervisor: mike ennett
## 9555 9/23/2008 03:27 pm (fblackmo) employee was holding bent sign post for backhoe to grab with back jaw bucket as backhoe grabbed the bent post, it twist hitting employee in head and arm. Employee was knocked to ground. Supervisor: r. W. Shoemaker
## 9556 9/23/2008 04:14 pm (fblackmo) employee was conducting road test when, vehicle was struck by another vehicle in the rear. No injury was stated on 19. Supervisor: marcia l. Smith
## 9557 9/23/2009 09:30 am (fblackmo) employee was placing and moving mower blades into his truck when, he felt pain in his back. Supervisor: brian harper
## 9558 9/23/2009 09:50 am (fblackmo) employee grabbed large 8 ft broom core from back of the parts truck, he slid it forward when, it fell on his left foot. Supervisor: wesley powell
## 9559 9/23/2009 10:11 am (fblackmo) employee was out unloading equipment when, he was bitten on his chest by a tick. Supervisor: chuck francka
## 9560 9/24/2007 03:26 pm (fblackmo) employee was putting in joist when crowbar jammed. Employee used his back to lift joist to get the crow bar out. Supervisor: w. Herman futrell
## 9561 9/24/2007 03:38 pm (fblackmo) employee was cleaning grass off of mowing deck when, he stepped off of the mower onto shoulder of the road he, stepped on a rock and twisted his right ankle. Supervisor: carlis smith
## 9562 9/24/2007 04:11 pm (fblackmo) employee was issued a can of battery terminal protector/cleaner (dot#155-0100995). While discussing repairs to the equipment with another employee, the employee holding the can placed his hand on top of cap. The can explo
## 9563 9/24/2007 11:53 am (fblackmo) employee was tightening a bolt on the long arm tractor while standing on the front tire, the wrench slipped. The employee lost his balance and fell off the tractor hitting the mowing deck cutting right ear and hitting his
## 9564 9/24/2007 12:06 pm (fblackmo) employee was getting straw from roadside environmental while attempting to pull a bale from the middle of a stack that was wedged against the top of the trailer, one of the bales fell hitting him causing him to fall out o
## 9565 9/24/2007 12:18 pm (fblackmo) employee was climbing down from motor grader and placed foot wrong causing him to fall backwards to the ground. Employee felt pain in his lower back right side, hip, and leg. Supervisor: r. W. Feher
## 9566 9/24/2007 12:43 pm (fblackmo) employee was conducting a road test when customer became involved in a motor vehicle accident. Customer name was esmeralda gellizeau. Customer made left turn to quickly, hitting a traffic sign. Employee had no physical in
## 9567 9/24/2008 07:50 am (blgay) employee was filling water cooler with ice and water. Employee lifted cooler to put it onto the truck and strained his back. Supervisor: tim wright
## 9568 9/24/2008 10:49 am (fblackmo) employee was flagging traffic when, his was struck on right side(hip). Smithson was backing truck when, he struck employee. Supervisor: shelton james
## 9569 9/25/2007 08:18 am (mdsloan) employee was driving stakes with stake driver when stake driver slipped off of the stake that he was driving and hit employee on top of the head. Supervisor: scott allen
## 9570 9/25/2007 09:35 am (mdsloan) employee was throwing scrap wood out of hole onto an embankment when he twisted around and injured his back. Supervisor: tim southard
## 9571 9/25/2007 12:24 pm (fblackmo) employee was walking on shoulder of road when he stepped in a hole and heard his left knee pop. Supervisor: rek mckenzie
## 9572 9/25/2007 12:39 pm (fblackmo) employee was getting on the tractor at the planting project site when, he was stung on his right elbow. Supervisor: g. M. Dawson
## 9573 9/25/2008 02:11 pm (fblackmo) employee was sitting on backhoe when, he passed out. Employee fell out of window of backhoe, another employee caught him breaking his fall. Employee passed out two more times, 911 was called, and transported to nash gener
## 9574 9/25/2008 02:23 pm (fblackmo) employee unlocked parking gate when, he rub his left eye. Left eye began to burn, turn red, and became swollen. Supervisor: s. Kinner
## 9575 9/25/2008 05:03 pm (fblackmo) employee was operating chainsaw to cut tree that had fell across state road when, he came into contact with poison ivy. Supervisor: robbie smith
## 9576 9/25/2009 02:58 pm (fblackmo) employee was driving a dot state truck when, private vehicle ran stop sign and hit the state truck. Employee felt pain in his neck, shoulder, back, and arm. Employee is also experiencing headaches. Supervisor: mark conner
## 9577 9/25/2009 03:37 pm (fblackmo) employee was conducting a road test when, customer ran into a ditch. Employee felt pain in her lower back area. Supervisor: tracy hawkins 07/19/2011 02:17 pm (lvaughan)
## 9578 9/25/2009 03:49 pm (fblackmo) employee was walking on m/v hunt, he turned to look and bumped into an engine exhaust pipe hitting his face. Supervisor: richard dewhurst
## 9579 9/25/2009 04:01 pm (fblackmo) employee was out on nc 87 forming around a catch basin to pour concrete and did not realize he had stepped into a fire ant bed. Employee experience bites to his right and left lower legs and feet. Supervisor: t. R. Corliss
## 9580 9/25/2009 04:17 pm (fblackmo) employee was clearing brush when he came into contact with poison ivy. Employees right eye and arm became itchy. Supervisor: thomas moorefiled
## 9581 9/25/2009 09:21 am (fblackmo) employee was helping to assemble aluminum box culvert when, foreign object got into his left eye. Supervisor: a. M. Godwin
## 9582 9/26/2005 02:12 pm (fblackmo) employee was weed eating around guardrail when, the weed eater twisted around causing the injury to his left hand. Supervisor: r. A. Ellington
## 9583 9/26/2005 02:24 pm (fblackmo) employee states the pain in his right hand and left hand is from repetitive use of operating machinery. Supervisor: j. W. Martin
## 9584 9/26/2005 09:49 am (fblackmo) employee was placing a pump onto the back of pickup truck when, he felt pain in his lower back. Supervisor: dalton r. Alligood jr
## 9585 9/26/2005 11:06 am (fblackmo) employee states while conducting a firedrill, she was lifted off her feet due to excessive pressure of the fire hose. Employee felt pain on her arm, back, hand, knee, and back. Supervisor: h. C. Scarborough
## 9586 9/26/2005 11:16 am (fblackmo) employee states she felt pain and numbness in both hands and wrist while keying. Supervisor: shandee ruffin perry
## 9587 9/26/2005 11:16 am (slee) shoulder of the road broke off causing the truck to roll over.
## 9588 9/26/2005 12:12 pm (fblackmo) employee was getting rakes out of a truck and laying them on the ground with prongs. He stepped back up on the turck and onto the wet grass. Employee slipped and lost his footing causing the injury to his right hand. Supe
## 9589 9/26/2006 03:01 pm (fblackmo) employee was lifting a sign off tractor when, he felt pain in his back. Supervisor: t. L. Pugh
## 9590 9/26/2008 01:46 pm (blgay) employee was cutting trees off the right of way on sr 1348, probart street. Employee was cutting a forked poplar tree. He cut the first fork, then as he was cutting the second fork, it broke back on him and struck his legs.
## 9591 9/26/2008 08:59 am (blgay) employee was cutting trees and chipping brush on interstate 40, when he contracted poison ivy on hands, arms, legs, torso and back. Supervisor: darrell hildebran
## 9592 9/26/2008 09:08 am (blgay) employee was cutting trees and chipping brush on interstate 40 and contracted poison ivy on arms, hands, legs, torso, and back. Supervisor: darrell hildebran
## 9593 9/27/2005 08:40 am (fblackmo) employee was shoving a log through the wood chipper and left hand was on the top of log. The feeding wheels caught the log, it shot the end up causing employees left hand to become caught between the log and top of chippe
## 9594 9/27/2005 08:51 am (fblackmo) employee was walking back into building after conducting road test when, she was bitten by a insect on her lower back area. Supervisor: d. M. Bufkin
## 9595 9/27/2006 02:43 pm (fblackmo) employee was chasing after air compressure going across yard when, he felt pain in his right knee. Supervisor: joe smith
## 9596 9/27/2006 02:58 pm (fblackmo) employee stepped out of crew cab into the ditchline onto a rock turing her left ankle. Supervisor: robert hollifield
## 9597 9/27/2006 03:10 pm (fblackmo) employee was stepping off back of truck when, he slipped causing injury to his left leg, knee, and lower back. Supervisor: jerri parker
## 9598 9/27/2006 03:31 pm (fblackmo) employee was running along shoulder of road in rain storm when, he stepped in a hole causing injury to right ankle. Supervisor: keith raulston
## 9599 9/28/2004 02:04 pm (bhenders) employee had just been loaded as he drove away from the plant. He drifted to his right causing the stud on right front tire to hit steel beam. Wheel caused steering wheel to spin and broke employees hand. Also caused d
## 9600 9/28/2004 02:34 pm (bhenders) employee was traveling north on sr 1565 when a dump truck crossed the centerline and struck vehicle. The side mirror was broken and flew into the window of the vehicle lodging glass in teh employee's left eye and face.
## 9601 9/28/2004 02:35 pm (fblackmo) employee was operating the stone spreader machine when, he was stung by a bee on his right arm. Supervisor: j. H. Ensley
## 9602 9/28/2004 02:45 pm (fblackmo) employee states he was picking up a bucket of bolts when, he felt pain in his stomach area. Supervisor: w. D. Watkins
## 9603 9/28/2004 02:53 pm (fblackmo) employee was cutting lines with survey party when, he came into contact with poison ivy. Supervisor: brady fisher
## 9604 9/28/2004 03:37 pm (fblackmo) employee was working on asphalt patch patching potholes on I-85 when, he bent over to pick up a hand tool his nose started to bleed. The bleeding could not be stopped on the work site and he was taken to the er. Superviso
## 9605 9/28/2004 03:51 pm (fblackmo) employee was retrieving traffic control cones when, he felt pain in his lower back and left hip area. Supervisor: r. J. Monroe
## 9606 9/28/2004 04:18 pm (fblackmo) employee was out on job site and was driving a white top stake into the ground when, he hit his right index finger with a sledge hammer. Supervisor: franklin hodges
## 9607 9/28/2004 10:38 am (fblackmo) employee states that while conducting a road test the driver backed into curb. Employee felt pain in his neck and upper back area. Supervisor: marcia leah smith
## 9608 9/28/2004 10:56 am (fblackmo) employee was boarding vessel when, he slipped and fell approximately four feet to the steel deck. Employee experienced pain in his back and hip area. Supervisor: s. H. Kinner
## 9609 9/28/2004 11:11 am (fblackmo) employee found a tick stuck on his right side hip when, he got home from work. Supervisor: todd whitaker
## 9610 9/28/2004 11:22 am (fblackmo) employee was removing glass from door when, glass fell apart causing the injury to his left forearm. Supervisor: e. M. Presnell
## 9611 9/28/2004 11:33 am (fblackmo) employee was on loading dock when, he was stung by a yellow jacket on his left hand ring finger. Supervisor: w. W. Childress
## 9612 9/28/2004 12:46 pm (fblackmo) employee was bending down picking up his hard hat when, he hit his head on the bottom of a sign causing a laceration to the top of his head. Supervisor: jimmie semmoms
## 9613 9/28/2005 12:38 pm (fblackmo) employee was tapping flat cardboard boxes when, he cut his left thumb on the cutting edge of tape dispenser. Supervisor: danny carlton
## 9614 9/28/2006 09:09 am (fblackmo) employee had been cutting trees when, he was bitten by a spider on calf on left leg. Supervisor: carlis smith
## 9615 9/28/2006 09:22 am (fblackmo) employees foot slipped off of step when getting out of tandem dump turck causing injury to left knee. Supervisor: terry shaw
## 9616 9/28/2006 09:34 am (fblackmo) employee states foreign matter blew in his right eye from the fan on front end loader. Supervisor: gerald brabble
## 9617 9/28/2006 09:44 am (fblackmo) employee pulled to the side of road to let car pass as employee was looking back, grader hit dip in road causing the seat to come down hard and cause pain to his back. Supervisor: t. W. Davenport
## 9618 9/28/2006 10:52 am (fblackmo) employee was rotating and organizing batteries when, he twisted his back. Supervisor: james roper
## 9619 9/28/2006 11:03 am (fblackmo) employee went to step over a fence when, the left heel of his foot caught the top of the silt fence causing pain to his knee. Supervisor: larry koontz
## 9620 9/28/2007 01:46 pm (mdsloan) employee was measuring area for seeding quantities and contractor dusted employee with agricultural lime. This action affected employees chest, lungs and eyes. Supervisor: b. V. Smith 8/8/2008 02:49 pm (blgay)
## 9621 9/28/2007 02:15 pm (mdsloan) employee was stepping into the dump truck and felt a pain in his lower right side of his back. Supervisor: t l pugh.
## 9622 9/28/2007 09:24 am (mdsloan) employee was coming to work when he stepped on a rock in the parking lot. When he stepped on the rock he twisted his ankle lost his balance and fell. Employee tried to break his fall by using his hands causing a bad scr
## 9623 9/28/2007 10:21 am (mdsloan) employee was restraining a suspect during an arrest. The suspect was resisting arrest at the time of the restraint and jerked away from the officer extending the officers thumb backwards. Supervisor: m. M. Courtney.
## 9624 9/28/2007 11:20 am (mdsloan) employee was operating an asphalt roller the morning of the incident and around 11:30a employee stepped off of the asphalt roller when he noticed a pain in his lower back. As the day progressed and he continued to work on
## 9625 9/28/2009 07:58 am (blgay) employee was responding to an emergency call, tree was obstructing roadway and needed to be removed on sr 1134. Crew removed the tree from the roadway and noticed four more trees along the right of way. While Mr. Simmons was
## 9626 9/28/2009 08:19 am (blgay) employee was cutting straps on bundle of pipe. When strap was cut, pipe rolled and hit pipe saw, pipe saw then hit employees left leg cutting it. Supervisor: james mike gibson
## 9627 9/28/2009 08:28 am (blgay) employee was cutting a tree. The backhoe operator put a little pressure on the tree. The tree was dead and started to fall before employee could get out of the way, limb hit hard hat and back of neck. Supervisor: sarah foste
## 9628 9/28/2009 08:38 am (blgay) employee was driving short wheeled based dump truck on soft shoulder and truck overturned, causing muscle strain and contusion on right side. Supervisor: harry williams
## 9629 9/28/2009 08:49 am (blgay) employee was working under a truck replacing a clutch. The air hose blew off and the air hose struck him in the right eye. Supervisor: jeff whitley
## 9630 9/28/2009 08:57 am (blgay) employee was lifting up the gate on our mowing trailer and felt pain in his lower back as he was lifting up the gate. Supervisor: thomas gammons
## 9631 9/28/2009 10:12 am (blgay) employee was struck by limb from falling tree, pinning employee to ground, fracturing lower left leg. Supervisor: reid rich
## 9632 9/28/2009 12:47 pm (blgay) employee was getting signs out of the back of a cc. A metal sign had gotten lodged in a roll up sign frame. When employee pulled the roll up sign out, the metal sign fell out of the frame hitting employee on the top of his r
## 9633 9/28/2010 04:28 pm (fblackmo) employee was bending over to pick up a small to medium gift bag when, she felt pain in her lower back. Supervisor: j. H. Pate
## 9634 9/28/2010 04:43 pm (fblackmo) employee was on break walking around building when, she fell forward striking her head and face on bumper of a vehicle. Supervisor: sadie carter
## 9635 9/28/2010 05:08 pm (barnes) employee felt a pop in his ankle when he was walking around a radius of a road to measure the line a contractor had painted. Employee hurt his right ankle. Supervisor: d. L ferguson
## 9636 9/29/2004 03:16 pm (fblackmo) employee was removing a tree from the road, when a rock hit him in the eye. Supervisor: ken anderson
## 9637 9/29/2004 03:27 pm (fblackmo) employee was working during emergency situation when, he came into contact with poison ivy. Supervisor: j. F. Sloop
## 9638 9/29/2004 07:48 am (fblackmo) employee was checking a silt bag when, the bag busted washing employee down hill onto some rocks hurting his buttocks area. Supervisor: william lowery jr
## 9639 9/29/2004 09:36 am (fblackmo) employee was cutting metal strap on a bundle of pipe. Employee struck the strap with a bush axe, he felt a sharp pain in his right shoulder. Supervisor: b. R. Webb
## 9640 9/29/2004 09:47 am (fblackmo) employee was chipping brush from debris caused by hurricane frances when, he came into contact with poison ivy. Supervisor: terry davis
## 9641 9/29/2004 10:48 am (fblackmo) employee states while washing a truck with tc201 truck and car wash, the soap caused chemical burns to both hands and fingers. Supervisor: russell ramsey
## 9642 9/29/2005 09:03 am (fblackmo) employee was returning from southport operations en-route to manns harbor when, she was struck in the rear by a private vehicle. Employee felt pain in her neck. Supervisor: jesse vinson
## 9643 9/29/2005 09:16 am (fblackmo) employee was driving a state dot pick up truck when, he was struck in the rear by a private vehicle. Employee felt pain in his neck and upper back area. Supervisor: derek smith
## 9644 9/29/2005 09:30 am (fblackmo) employee was working in the weld shop center punching on pad eyes when, debris blew into his left eye. A fan was rotating behind him which caused the debris to fly. Supervisor: kevin lamar cooke
## 9645 9/29/2005 09:42 am (fblackmo) employee was cutting tree limbs with chainsaw when, limb fell striking him on his shoulder/neck area. Supervisor: howard elliott
## 9646 9/29/2006 10:46 am (fblackmo) employee was getting into the truck when, his foot slipped on the running board causing door to hit right foot in the area of the shin. Supervisor: a. S. Bailey
## 9647 9/29/2006 10:55 am (fblackmo) employee came into contact with poison ivy while removing wax myrtle bushes and loading them on flatbed truck. Supervisor: r. J. Brown
## 9648 9/29/2009 07:03 am (blgay) employee was bending down picking up piece of plywood and twisted the wrong way, hurting his back. Supervisor: chad dennis
## 9649 9/29/2010 02:28 pm (barnes) employee (kourtney) was in the passenger seat of an international flatbed truck, and finlen was driving. Finlen just got his cdl learners permit and wasn't really familiar with the gears in this struck. They were traveling
## 9650 9/29/2010 03:21 pm (fblackmo) employee was in the warehouse getting traffic cones when, he pushed a pallet of signs out of his way he felt pain in his lower back. Supervisor: jonnie barefoot
## 9651 9/29/2010 03:44 pm (fblackmo) employee was stepping out of elevator when she slipped and fell because, the platform stop un-evenly with the floor. Employee injured her right leg, knee, and foot. Supervisor: maude creech
## 9652 9/29/2010 04:16 pm (fblackmo) employee was pulling a wheel barrow across reinforcing steel when the wheels got stuck. While pulling on the wheel barrow he slipped causing him to fall and cut his right wrist. Supervisor: mark blalock
## 9653 9/29/2010 04:34 pm (fblackmo) employee was working with asphalt crew shoveling asphalt when he got over heated. Heat exhaustion. Supervisor: roger carpenter
## 9654 9/29/2010 04:36 pm (barnes) employee found a tick attached inside his belly button. Employee had tick bite in belly button. Supervisor: nanette fogleman
## 9655 9/29/2010 04:56 pm (barnes) employee was walking around truck to assist in removing straps from straw truck. He inadvertently stepped into a hole in the ground that had become grown over with turf and he did not see the hole. When the employee stepped
## 9656 9/29/2010 05:36 pm (barnes) employee was loading straw at davie county maintenance yard when he felt a pinch above his left ankle. The next morning he had water blisters and red spots of about 4" diameter. He asked to go to the doctor at 3:10 p. M on 9
## 9657 9/29/2010 05:59 pm (barnes) employee was carrying a drip pan to place under the spray bar of an asphalt distributor. He was carrying the back of the pan and a co-worker was carrying the other end. As he backed around the bar, he tripped and fell backw
## 9658 9/29/2010 08:25 am (fblackmo) employee was driving distributor truck on highway when, he went off the shoulder of the road and overturned. Employee felt pain in his lower back and right side of his face. Supervisor: w. B. Crumpler
## 9659 9/29/2010 08:44 am (fblackmo) employee was debarring parts using the belt sander. The belt grabbed the part and his finger into the belt causing amputation of right center finger tip. Supervisor: alfred wilson
## 9660 9/29/2010 08:46 am (barnes) employee was assisting another employee cutting a tree in the right -of-way. The tree started falling away from him, but a 4 inch tree limb broke off falling towards him. The employee put up his arms trying to protect himse
## 9661 9/29/2010 09:03 am (fblackmo) employee was dumping a load of rip rap with dump truck when one of the rocks got caught between the tailgate and body of the vehicle. Employee reached in to release the rock when the tailgate slammed shut on his hands. Su
## 9662 9/29/2010 09:20 am (fblackmo) employee was stepping out of truck when, he felt pain in his back. Supervisor: mark turlington
## 9663 9/29/2010 09:21 am (barnes) employee and crew was opening a ditch line along sr1118(nelson store rd. ). Prior to the backhoe arriving, the employee along with the crew were shoveling and leveling the ditch line between two driveway pipes. While shovel
## 9664 9/29/2010 09:31 am (fblackmo) employee was hauling sign post to scrap metal yard; post became lodged in tailgate while dumping. Employee loosed the post causing it to fall striking him on his right leg. Supervisor: ricky blalock
## 9665 9/29/2010 09:51 am (fblackmo) employee was helping tie down a excavator on low boy when, he threw the chain over the bucket he felt pain in his upper arm/shoulder area. Supervisor: ben nelms
## 9666 9/29/2010 10:30 am (barnes) employee was shoveling asphalt off road (cleaning up spill on amos road). As he turned around toward a co-worker, he was accidently hit with a hand tool that the co-worker was handling. Employee was cut on his chin. He go
## 9667 9/29/2010 10:37 am (fblackmo) employee was removing damaged guardrail from post when another employee (l. Hewett) removed a bolt from the end of the guardrail causing it to spring out and strike employee on his lower left leg. Supervisor: w. T. Mintz
## 9668 9/29/2010 10:53 am (barnes) employee was removing cones out of the bed of his imap truck, and the cones were stuck together. When he pulled the cones, they suddenly came a loose causing him to hit his left elbow on the hand rail that is attached to th
## 9669 9/29/2010 11:05 am (fblackmo) employee was cleaning out an outfall of reinforced concrete pipe when, wave pushed him into the concrete pipe causing injury to his right wrist. Supervisor: guy white
## 9670 9/29/2010 11:25 am (barnes) employee was working asphalt. He was pushing up the edge where the edge of pavement and the shoulder meet. As he was putting pressure on the rake, it broke. The employee's body weight carried him over the asphalt. He caught
## 9671 9/29/2010 11:47 am (fblackmo) employee was crossing the ditch on a temporary bridge when, he stepped on an exposed nail on one of the boards. Employee punctured left foot. Supervisor: mike vann
## 9672 9/29/2010 11:48 am (barnes) employee was raising the hood on the squad truck to do a pre-trip inspection and cut his hand on the hood. Employee cut his left hand. Supervisor: lee ainsworth
## 9673 9/29/2010 12:03 pm (fblackmo) employee was working on bridge when he was bitten by a spider on his left wrist. Supervisor: jeremy b. Creech
## 9674 9/29/2010 12:12 pm (barnes) employee stated that he was pulling on a large pull bar to free bolts from a light bracket. The pull bar came free, causing the employee to fall backwards. He heard a pop sound in his left knee area. Employee hurt his left
## 9675 9/29/2010 12:12 pm (fblackmo) employee went to remove shingles from roadway. Employee kicked the singles causing puncture to his left foot. Supervisor: karen fussell
## 9676 9/29/2010 12:29 pm (fblackmo) employee was under bridge structure removing timber components when he was bitten by a spider on his right leg. Supervisor: mike rogers
## 9677 9/29/2010 12:53 pm (fblackmo) employee was entering the excavator by using the three points of contact method which is the normal procedure. Safe operating procedures 10-5; while pulling himself up he felt pain in his lower back. Supervisor: m. W. Ennet
## 9678 9/3/2008 09:35 am (fblackmo) employee was working at her computer when she glanced something crawling on her blouse. Seeing it was a spider she then swatted to get it off her blouse but, instead the spider fell into her blouse. She was unable to find t
## 9679 9/3/2008 09:57 am (fblackmo) employee was installing park benches at nash rest area when, he bumped his left forearm. He had been using power and hand tools to make the holes for the anchor bolts used to hold them down. Supervisor: robert d. Simpson
## 9680 9/3/2008 10:51 am (fblackmo) employee was walking around the dump truck when he slipped on uneven ground and twisted his right ankle. Supervisor: ernest pitt
## 9681 9/3/2008 11:23 am (fblackmo) employee felt pain in his right shoulder during weapon retention training exercise. Supervisor: robert e. Flaherty
## 9682 9/3/2009 02:16 pm (blgay) employee climbed a bank and cut a tree. The tree fell across his left leg above the knee. Supervisor: kep biggs
## 9683 9/3/2009 02:30 pm (blgay) employee was climbing into 3/4 ton truck, when her right foot slipped and her lower leg hit the metal frame of the truck. Supervisor: keith hill
## 9684 9/3/2009 02:39 pm (blgay) employee was on top of the rock pile picking out rocks for erosion control project. Employee lost footing and slipped backwards, hitting head, shoulders and neck area. Supervisor: jamie robinson
## 9685 9/3/2009 02:50 pm (blgay) employee was cutting a fallen tree out of the road and needed a pitch fork. Another employee climbed upon the c/c and threw the pitch fork off the side. The pitch fork bounced and hit employee in the left leg. Supervisor: wen
## 9686 9/3/2009 03:03 pm (blgay) employee was setting a pipe. After the pipe was laid, an employee removed the pipe hook from the pipe, and was holding it as employee walked away from pipe. The other employee slipped and the pipe hook came out of his hand an
## 9687 9/3/2009 03:12 pm (blgay) employee was cutting a tree about 10" - 12" at stump and 20-25' tall. When tree came off of stump it fell to the ground, then fell on top of employee, as he was running to get out of way, hitting him in back of head. Supervis
## 9688 9/3/2009 03:22 pm (blgay) employee was working on the project site, observing the subcontractor's operation. The subcontractor was backing his vehicle and hit employee causing him to fall, injuring left forearm, sprain right thumb, sprain left wrist.
## 9689 9/3/2009 08:40 am (fblackmo) employee strain his left shoulder and upper back while helping another employee remove a sign. Supervisor: rod wyatt
## 9690 9/3/2009 08:57 am (fblackmo) employee was cutting trees and bushes on state road when, he was bitten by un-known insect on his left arm. Supervisor: r. J. Woodcock
## 9691 9/3/2010 01:04 pm (barnes) employee "ed" was cutting a tree on sr 1367-b (globe road). A vine attached to an adjacent tree caused a branch to break and hit ed on the neck. Employee injured his neck. Supervisor: j. C. Mundy
## 9692 9/30/2005 09:58 am (blgay) employee was picking up barbed wire and foot got tangled up in wire causing him to fall and wire wrapped around leg, cutting lower right leg. Supervisor: jerry keene
## 9693 9/30/2008 03:02 pm (blgay) employee was dumping dirt into widening machine, reached down and hung ring finger and small finger of right hand on rod over dump control panel. Supervisor: william mayes
## 9694 9/30/2009 01:45 pm (blgay) employee was helping back a piece of equipment when he fell into a gap on the trailer, causing his body to twist. Employees right leg stayed straight as he came down on his right side on his right hand, wrist and knee, which
## 9695 9/30/2010 02:21 pm (barnes) employee was installing a tailgate lip (apron) on the back of the dump truck along with another employee. While putting aprons on the truck, employee felt a pain in his right side. Employee injured his right side. Supervis
## 9696 9/30/2010 08:21 am (barnes) employee was sitting in a dump truck eating lunch. An unknown insect stung him on the right index finger, causing severe pain and swelling. Employee hurt right index finger. Supervisor: charles f. Vick, cme
## 9697 9/30/2010 08:29 am (fblackmo) employee was operating tandem dump truck, and was attempting to back into a farm path at beginning of operation to wait for remaining personnel and equipment to arrive. Employee backed into pathway part way, then pulled f
## 9698 9/30/2010 08:46 am (barnes) employee was checking the amount of paint in machine. He had been suffering with a headache that morning and claims that the heat just got to him. The employee stepped down off truck, grabbed his head, then kneeled down pla
## 9699 9/30/2010 09:09 am (fblackmo) employee was conducting a road test. The driver accidentally hit the gas in the parking lot and struck the side of the dmv building. Employee felt pain in her neck area. Supervisor: dean almond
## 9700 9/30/2010 09:26 am (fblackmo) employee was riding in passenger seat when truck hit a hole causing his neck to snap back and forth. Supervisor: kennie covington
## 9701 9/30/2010 09:38 am (barnes) employee was riding inside the work zone with the contractor from one end of the project site to the other end. Contractor driver made a quick move with the vehicle and the employee was thrown from inside of the bed rail to
## 9702 9/30/2010 09:38 am (fblackmo) employee was making concrete cylinders to test curb and gutter. Employee cut finger on cylinder mold while performing test. His finger became infected to a point that medical attention was needed. Supervisor: jeff allen
## 9703 9/30/2010 12:59 pm (barnes) employee had dump truck bed tail gate raised. He and another employee were pulling and tugging on debris that was hung in the bed of the truck. Once debris came loose, the employee felt a pop and a pull in his lower back, n
## 9704 9/4/2007 02:26 pm (fblackmo) employee was turning left from olive chapel road to kelly road in apex when she was struck by a school bus. Employee felt pain in her right hand, left shoulder, and back. Supervisor: scott walston
## 9705 9/4/2007 03:21 pm (fblackmo) employee was training another employee to run belts on rock spreader when, dump truck hit power lines. Employee jumped off spreader causing injury to right knee. Supervisor: mike vann
## 9706 9/4/2007 03:32 pm (fblackmo) employee (david barnes) pulled up to assist other employee (harold tomlin) in hooking up a light for night operation when, david struck harold on left ankle with passenger front tire. Supervisor: jamie robinson
## 9707 9/4/2008 02:07 pm (blgay) employee was stopped to take a break, he got out of his truck and walked around to the front of the truck when his feet got tangled in some tree limbs that were on the ground and caused him to fall into the bumper of the truc
## 9708 9/4/2008 02:19 pm (blgay) employee was lifting and placing rip-rap (stone) under bridge. Employee strained his left shoulder, left arm, and neck. Supervisor: herb ramey
## 9709 9/4/2008 08:54 am (blgay) employee was weed eating on us 29 southbound near the intersection of john street. Employees were on the outside shoulder with two wheels on the road due to limited space. Employee was using his truck to shield inmates. Emplo
## 9710 9/4/2009 09:04 am (fblackmo) employee went to get oil pads out of engine room when, he slipped on deck due to oil spill. Employee felt pain in his left arm. Supervisor: e. H. Piner
## 9711 9/4/2009 09:18 am (fblackmo) employee was at training firing range when, she felt faint and passed out. Supervisor: keith e. King
## 9712 9/4/2009 11:44 am (blgay) employee was on the yard looking for his keys and walked around the truck. The hatch was open on rick little's truck and employee ran into it. Employee didn't expect it to be open and he walked right into flap and hit the lef
## 9713 9/4/2009 12:07 pm (blgay) employee was walking from the modular unit to the main building located at the district office. Employee twisted her left ankle, lost her balance and fell landing on left hand and right knee, causing her to scrap her right kn
## 9714 9/5/2007 02:13 pm (fblackmo) employee was removing transmission from vehicle when, his finger was caught between the wrench and the flex plate. Supervisor: ronnie chilton
## 9715 9/5/2007 03:09 pm (fblackmo) employee was racking asphalt when, he got too hot and passed out. Supervisor: michael lemons
## 9716 9/5/2007 03:22 pm (fblackmo) employee was walking with mechanic from garage to office, stepped on broken sidewalk, and twisted left ankle. Supervisor: a. E. Caldwell
## 9717 9/5/2007 03:33 pm (fblackmo) employee was moving gear oil barrel when, gun fell off pump and struck his left small toe. Supervisor: robert cannady
## 9718 9/5/2007 03:42 pm (fblackmo) employee was sharpening bush axe. Axe turned and blade cut through glove causing injury to right center finger. Supervisor: eddie gurganious
## 9719 9/5/2007 03:49 pm (fblackmo) employee experienced heat exhaustion while walking beside paving machine. Supervisor: ronnie smith
## 9720 9/5/2007 09:29 am (fblackmo) employee was reorganizing the items in back of a pickup truck. He picked up two metal sign racks at the same time, one in each hand, and felt pain in his left shoulder blade area. Supervisor: p. S. Rickard
## 9721 9/5/2007 09:39 am (fblackmo) employee was walking out the back door when, she fell off the stoop causing injuries to her hands, wrist, left leg, & back. Supervisor: lorie cantu
## 9722 9/5/2007 09:55 am (fblackmo) employee was stung by a wasp on left arm while waiting for dirt to be loaded. Supervisor: t. S. Bozeman
## 9723 9/5/2007 10:05 am (fblackmo) employee stepped out of dump truck onto side step when, his foot slid causing him to fall to the ground. Employee felt pain to back & left wrist. Supervisor: willie mayes
## 9724 9/5/2007 10:15 am (fblackmo) employee was using gas powered weedeater to clear brush and debris from around bridge, slopes, and approaches. Object from another weedeater being operated by another employee hit Mr. Smith in the left temple area. Superviso
## 9725 9/5/2007 10:26 am (fblackmo) employee was cleaning out holes with shovel when, he felt pain in his lower back. Supervisor: ted burns 3/13/2008 12:34 pm (sjerniga)
## 9726 9/5/2007 10:34 am (fblackmo) employee was caught between two 30 gallon latex paint drums when, he felt pain in abdomen area. Supervisor: ira harris
## 9727 9/5/2007 11:28 am (fblackmo) employee was climbing off the side of the dump truck when, he stepped off his left knee popped causing pain. Supervisor: joe cogdell
## 9728 9/5/2007 11:36 am (fblackmo) employee came into contact with poison ivy while clearing right of way. Supervisor: ricky ball
## 9729 9/5/2007 11:48 am (fblackmo) employee was moving scaffolding under bridge when the walkboard shifted in the hangers. He was pulling up on one end of walkboard with a rope when, he felt pain in his groin area. Supervisor: r. F. Minton
## 9730 9/5/2007 12:02 pm (fblackmo) employee was helping clean up roadside debris and noticed shortly after doing so he began itching on his arms and spread to other areas. Supervisor: jerry hildreth
## 9731 9/5/2007 12:14 pm (fblackmo) employee was operating chainsaw to cut down small trees when, a piece of debris came back and hit him in the right eye. Supervisor: l. N. Long
## 9732 9/5/2007 12:22 pm (fblackmo) employee states grader operator asked him to check and see where the hydraulic oil was coming from and to see if the hose was tight when, the fluid got into his right eye. Supervisor: jim ashe
## 9733 9/5/2007 12:31 pm (fblackmo) employee was slope stacking a project and after he had stomped the high weeds down in the location where he was stomping he lost his footing causing injury to groin area. Supervisor: phil manley
## 9734 9/5/2007 12:49 pm (fblackmo) employee hurt his lower back while pulling on a chain binder. Supervisor: greg mccracken
## 9735 9/5/2007 12:58 pm (fblackmo) employee removed face shield from grinding metal to whip sweat from forehead when, metal got into his right eye. Supervisor: leroy farrish
## 9736 9/5/2008 01:49 pm (blgay) employee was working on sr 1527 when belt on grader broke. Crew started picking up litter along the roadway until shop fixed the grader. Employee was instructed to ride with Mr. Caudill back to grader. Mr. Caudill started mov
## 9737 9/5/2008 11:59 am (fblackmo) employee made a u-turn in front of oncoming dump truck. Employee felt pain in his left elbow and had knot on head. Supervisor: tony wyatt 5/11/2009 04:19 pm (sjerniga)
## 9738 9/5/2008 12:17 pm (fblackmo) employee was working on I-40 at nc 210 flyover operating ventrac tractor hauling mulch when, he got a headache, felt disoriented, and just didn't feel well. Supervisor: harry hayes
## 9739 9/6/2005 03:27 pm (fblackmo) employee was picking up trash and struck a twig into his right thumb. Supervisor: d. R. Summers
## 9740 9/6/2005 08:44 am (blgay) employee was removing a spindle using a chisel to separate. Drive chisel on side, struck other side with hammer, causing chisel to fly out, bouncing back and struck employee in the mouth breaking tooth. Supervisor: w. J. Kride
## 9741 9/6/2005 09:05 am (blgay) employee was grinding some burrs off of a shaft to install a new clutch assembly and a metal sliver blew up under safety goggles lodging in the employees right eye. Supervisor: t. L. Jernigan
## 9742 9/6/2005 09:39 am (blgay) employee was unloading crates off of tractor trailer. While holding crate to keep it from moving to get forklift under, finger got caught between crate and forklift. Supervisor: chris taylor
## 9743 9/6/2005 09:44 am (fblackmo) employee states while cutting a tree, the tree slipped from the stump and landed on his right foot. Supervisor: craig staley
## 9744 9/6/2005 09:56 am (fblackmo) employee was trying to lift a sign rack over the side of the crew cab truck when, he felt pain in his right shoulder. Supervisor: david l. Lane
## 9745 9/6/2005 10:08 am (fblackmo) employee was standing in roadway while trucks was going by when, foreign matter flew into his right eye. Supervisor: j. P. Ingram
## 9746 9/6/2005 10:17 am (blgay) employee was lifting a wheel barrel loaded with dirt into a ton dump truck when it flipped on its side. The leg of the wheel barrel hit employee in the center of chest below ribs. Supervisor: david prestwood
## 9747 9/6/2005 10:54 am (fblackmo) employee was installing installation in a fuel room when, particles form the installation got into his eyes. Supervisor: joe lee
## 9748 9/6/2005 11:22 am (blgay) employee was working with inmates on I85 picking up trash, when inmate noticed an accident taking place on the roadway in front of them. Employee jumped from state vehicle and proceeded to help the victim move away from the b
## 9749 9/6/2005 11:23 am (fblackmo) employee was loading a 48' plastic pipe into bed of truck when, she felt pain in her neck, right arm & shoulder, hand and fingers. Supervisor: john l. Mcdonald
## 9750 9/6/2005 11:38 am (fblackmo) employee found two ticks on himself while flagging traffic. Supervisor: l. W. Lyall
## 9751 9/6/2007 09:26 am (fblackmo) employee came into contact with poison ivy while cleaning up various site location. Supervisor: joe ross
## 9752 9/7/2004 08:32 am (fblackmo) employee was working in drainage ditch with shovel when, he slipped and turned causing the injury to his right ankle. Supervisor: s. R. Ross
## 9753 9/7/2004 08:43 am (fblackmo) employee states he dropped a saw horse on his right foot. Supervisor: ronald canady
## 9754 9/7/2004 09:00 am (fblackmo) employee was operating valve on thermo-lay patch truck when, his right forearm brushed against the metal step for the hydraulic tank. Employee has a laceration on his right forearm. Supervisor: s. R. Ross
## 9755 9/7/2004 09:11 am (fblackmo) employee states he was moving brush after cutting with an axe when, he went to grab the axe handle he caught the lower end of the blade causing the injury to his index finger on left hand. Supervisor: ken presson
## 9756 9/7/2004 09:57 am (fblackmo) employee was stung by several bees while using a bush hog to cut grass. Supervisor: fred narron
## 9757 9/7/2004 10:32 am (fblackmo) employee was putting water in cooler and dropped the lid. He leaned over to pick up the lid and struck his head on the corner of the bracket holding the condenser. Supervisor: p. E. Williamson
## 9758 9/7/2004 11:09 am (fblackmo) employee was washing out culvert with fire hose. Employees feet became stuck in the mud. Employee was freeing his feet from mud when, he felt pain in his lower back. Supervisor: t. M. Smith
## 9759 9/7/2004 11:26 am (fblackmo) employee was removing bolts from bridge deck, when, he inhaled fumes from the creosote wood, irritating his lungs. Supervisor: ken anderson
## 9760 9/7/2006 02:54 pm (fblackmo) employee was attempting to climb onto the dump truck to assist removing tailgate pin. Employee placed right foot onto rear axle hub and grabbed cat walk bar with both hands. As employee lifted his left leg he felt a pop fr
## 9761 9/7/2006 03:44 pm (fblackmo) employee was cleaning out a hole on I-77 when, he felt a pain in his back. He was using a pick to do the work and was trying to smooth the patch down with a shovel when, a very sharp pain hit him in his lower back. Supervi
## 9762 9/7/2006 03:53 pm (fblackmo) employee was cutting trees and brush from recent storm when, he got poison oak on both arms. Employee is allergic to poison oak. Supervisor: don smith
## 9763 9/7/2006 04:04 pm (fblackmo) employee was operating belts on rock spreader, spreader hit a roller on the other side of the road causing employee to get knocked from one side to the other. Employee felt pain in his back area. Supervisor: jennie weather
## 9764 9/7/2007 02:18 pm (fblackmo) not a state employee. Mr. Pritchard's right foot and leg became stuck under moving tractor tire while mowing grass. Tractor was stuck and tilting over when, he climbed off and was injured. His right leg below the knee was a
## 9765 9/7/2010 03:55 pm (barnes) employee was shoveling asphalt out of the hopper of a leeboy paver. The operator pulled the paver forward onto the employee's foot. Employee injured left foot. Supervisor: r. G. Presley
## 9766 9/7/2010 04:57 pm (barnes) employee was weed eating around bridge and dodged a hole and fell backwards catching his fall with his right arm. Employee injured his right arm and shoulder. Supervisor: randy ramsey
## 9767 9/7/2010 11:32 am (barnes) employee was swinging a sledge hammer. The hammer head slipped off and hit the beam of the bridge. It caught and pinched the employee's finger between the beam and the handle. Employee injured his right index finger. Superv
## 9768 9/7/2010 12:20 pm (barnes) employee opened the door of the truck and climbed up on the step to reach inside to get something out. While standing on the step and holding on to the outside rail of the truck, he begin to get out. His feet slipped off the
## 9769 9/8/2006 06:12 pm (fblackmo) employee slipped on wet top stair step and fell causing injury to right hip or butt. Employee was on his way to mailroom to get some office supplies. Supervisor: chris hendrix
## 9770 9/8/2006 08:28 am (fblackmo) employee states while holding a rod with a the rod catcher the guide fell down the tower and hit his right hand. Supervisor: dean argenbright
## 9771 9/8/2006 08:37 am (fblackmo) employee was riding to next work assignment when, he felt pain on his right side. Employee noticed there was a tick embedded and went to immediate care in wilson for removal. Supervisor: eric boyette
## 9772 9/8/2006 08:51 am (fblackmo) employee was coming to work to start his paper work for his project when, he was getting out of the truck he felt pain in his right lower back hip area. Supervisor: jimmy deal
## 9773 9/8/2006 09:07 am (fblackmo) employee was helping landscape employees remove a nut from a piece of equipment. Employee had heated the nut before beginning to loosen with a rachet. While employee was turning rachet he felt a pull in his lower back. Sup
## 9774 9/8/2006 09:46 am (fblackmo) employee was fixing driveways and drop off, he was shoveling rocks after dumping it in a small pile on the shoulder of the road. A private vehicle came through the work area and struck employee with mirror on right hand. S
## 9775 9/8/2006 09:59 am (fblackmo) employee was tightening plug with combination wrench over his head when, the wrench slipped off hitting him on the forehead. Supervisor: mike hamm
## 9776 9/8/2008 10:21 am (blgay) employee was driving steel post on 7/22/08 using a manual post driver, when he hit a rock with post and post stopped, bruising his right hand. It formed into a knot in hand causing pain and tenderness. Employee went to doctor
## 9777 9/8/2008 10:32 am (blgay) employee was running tractor broom sweeping roads to be paved. Employee said he got a blister on right toe next to little toe, from working pedal. Supervisor: jennie weaterman
## 9778 9/8/2008 10:42 am (blgay) employee was working normally and discovered a tick attached to his right leg. Tick was removed and saved, employee developed a spot at bite site 08/26/08. Supervisor: leonard dills
## 9779 9/8/2008 10:50 am (blgay) employee was walking and slipped down and fell down stairs, as he lost footing while standing in a bus conducting a commercial drivers test. Supervisor: darrly pike
## 9780 9/8/2009 08:43 am (blgay) employee had come to the office on saturday to check on work that had been left on his desk. Employee exited out the back door of office, tripped on the first step and grabbed hand rail. The hand rail gave way, employee fell
## 9781 9/8/2009 08:58 am (blgay) employee was clearing wood from the bushes when something bit him on his left forearm. Supervisor: a. C. Cochran
## 9782 9/8/2009 09:07 am (blgay) employee was getting out of loader to assist mechanic. When employee made her final step down to the ground, she simultaneously released hand rails, and unknown to her, a rock was under her foot, her right ankle twisted. Empl
## 9783 9/8/2010 02:33 pm (barnes) employee was working at a site where a contractor was blasting. The shot went higher than planned. The employee had to evacuate the area he was in. He stepped over the guardrail and hit his right leg on the guardrail post cau
## 9784 9/8/2010 03:10 pm (barnes) employee was cleaning up day lily beds at mars hill. Around 11:30 am employee complained to supervisor that her belly and side was hurting. They thought that it May have been the heat. However, employee had several ant bites
## 9785 9/8/2010 03:12 pm (fblackmo) employee was unhooking a chain from a tree which had poison ivy vines. Dermatitis to both arms. Supervisor: clyde e. Scott
## 9786 9/8/2010 03:25 pm (fblackmo) employee was using a manual pole driver to set up gravel signs when, he pulled on the pole the third time it struck him on the left side of his head. Supervisor: gene johnson
## 9787 9/8/2010 03:37 pm (fblackmo) employee was hanging flag when something hit his left eye. Supervisor: lorrie sineath
## 9788 9/8/2010 03:54 pm (fblackmo) employee fell on steps while moving a chair. Employee felt pain in his right foot. Supervisor: clint stanley
## 9789 9/8/2010 04:02 pm (barnes) employee was flagging on the shoulder of old cox road. After the employee got home, he found several ticks on his stomach that were attached. Employee injured stomach. Supervisor: jessie knight
## 9790 9/8/2010 04:28 pm (fblackmo) employee was running the jack hammer when a piece of concrete flew up striking him on the lip. Supervisor: randy williams
## 9791 9/8/2010 04:33 pm (barnes) employee stuck a piece of welding wire into his right index finger. While using a wire welder, employee tried to break off wire. Employee injured and punctured a wound inside right index finger. Supervisor: t. H hackett
## 9792 9/8/2010 04:38 pm (fblackmo) employee was operating front end loader while backing down from stock pile steering machine with left hand. The machine jerked causing employee to fell pain in his left shoulder. Supervisor: neil crumpler
## 9793 9/8/2010 08:32 am (barnes) employee found tick imbedded on his right shin. Employee removed the tick and 2 days later he had a red rash around the wound. Employee injured right front leg; shin. Supervisor: b. R. Putnam
## 9794 9/8/2010 09:17 am (barnes) employee was working on old fort salt bin and was cutting a creosote post with a chain saw. He inhaled dust and smoke. Employee injured head, face and abdomen. Supervisor: b. W jackson
## 9795 9/8/2010 10:33 am (barnes) employee was trying to loosen a bolt when the wrench slipped causing hand/finger to be cut on the edge of the retainer clip. Employee injured right hand and finger. Supervisor: mike duncan
## 9796 9/8/2010 11:22 am (fblackmo) employee was cleaning lumber shed; restocking lumber when he felt pain in his left shoulder. Supervisor m. Tommy gibbs
## 9797 9/8/2010 12:07 pm (fblackmo) employee was picking up traffic cones when he was bitten by a spider on his right index finger. Supervisor: raymond k. Whitley
## 9798 9/8/2010 12:21 pm (fblackmo) employee was standing on the side of road when tractor trailer pass by and blew debris into his left eye. Supervisor: jack rollins
## 9799 9/8/2010 12:32 pm (fblackmo) employee was inspecting highway signs delivered by the sign fabricator and not yet removed from the low boy trailer, as he was preparing to get off of the low boy trailer, he stumbled and jumped down to avoid falling, inju
## 9800 9/8/2010 12:43 pm (fblackmo) employee was pruning limbs on trees. Employee pulling a limb toward chipper when, he felt pain in his right shoulder and neck area. Supervisor: brian k. Glover
## 9801 9/8/2010 12:55 pm (barnes) employee was unloading a truck and picked up a reel of wire off the truck onto the loading dock. He felt a sharp pain in his back while lifting. Employee injured lower right back. Supervisor: dave davis
## 9802 9/9/2004 10:11 am (fblackmo) employee was standing by to help crew install a pipe when, an unknown insect stung/bit her on upper left arm. Supervisor: jerry hildreth
## 9803 9/9/2004 10:46 am (fblackmo) employee was unloading water pumps when, he slipped and fell causing the injury to his lower back. Supervisor: larry lovingood 2/15/2005 09:36 am (mpark) elavil
## 9804 9/9/2005 09:30 am (fblackmo) employee was walking down steps when, she slipped and fell causing the injury to her face, lip, tooth, left shoulder & hand, and right knee. Supervisor: k. C. Batchelor
## 9805 9/9/2005 09:46 am (fblackmo) employee was climbing hill to take cable crane when, he lost his footing causing him to fall and injure his forehead. Supervisor: barry kizziah
## 9806 9/9/2005 09:58 am (fblackmo) employee was sitting under tree eating lunch. Felt a bug crawling on neck, swiped it off. Employee didn't notice any reaction at the time, but later that night she noticed places breaking out on her neck, chest, and stomac
## 9807 9/9/2009 01:38 pm (blgay) employee was setting up signs for the work zone, when a piece of metal from the sign lodged in his left 4th finger on left hand. Supervisor: scott gibson
## 9808 9/9/2009 02:28 pm (fblackmo) employee was getting into the passenger side of the lube truck and misjudged the door opening. He struck his right shoulder against the door. He had surgery on same shoulder several weeks ago and is still under physicians
## 9809 9/9/2009 12:11 pm (fblackmo) employee was working when he, noticed his upper lip was swollen. Supervisor: thomas bowser
## 9810 9/9/2009 12:31 pm (fblackmo) employee was picking up saw horses to move them out of the way when, he felt pain in his lower back area, numbness in right foot, and pain in right leg. Supervisor: p. P. Mansfield
## 9811 9/9/2009 12:46 pm (fblackmo) employee was holding the handle of a metal pick axe as it was struck by a metal sledge hammer. A silver piece of metal from the axe came off and punctured his left forearm. Supervisor: timothy sawyer
## 9812 9/9/2010 08:16 am (barnes) employee was removing steel bracing between beams. The plywood he was using between the beams moved causing him to fall hitting his elbow on the edge of the beam. Employee injured his elbow. Supervisor: mark s. Smith
## 9813 9/9/2010 09:18 am (fblackmo) employee was operating a roller placing chipseal on highway when foreign matter got into his left eye. Supervisor: ald thornton, jr
## 9814 9/9/2010 09:31 am (fblackmo) employee was placing construction fencing in the cab of dump truck when, he punctured his right index finger. Supervisor: cameron murphy
## 9815 9/9/2010 10:17 am (fblackmo) employee was walking across the floor of the m/v ft. Fisher when, he fell through the floor into the bilge injuring his right wrist. Supervisor: richard dewhurst
## 9816 9/9/2010 10:33 am (fblackmo) employee was walking across low boy trailer when he stepped on a loose board used to load equipment. The end of the board raised up striking him on the right side of his stomach/rib area. Supervisor: wendell chastain
## 9817 9/9/2010 10:44 am (fblackmo) employee was loading straw bales when, he heard his left bicep pop. Employee is on restrictions. He did not Miss Any days off work. Supervisor: randy mcintyre
## 9818 9/9/2010 10:55 am (fblackmo) employee was operating belts on chip spreader when, he was struck by mirror on a tandem dump truck. The mirror hit employee on his left arm. Supervisor: carl scales
## 9819 ? Insect bite to upper lt-leg sitting at desk on ward 403 talking to co-worker at 11:45 am felt sharp burning type pain on lt-upper leg.
## 9820 ??? Pain in right arm around elbow, pipetting ????
## 9821 @firing range waiting to shoot, employee was sitting down with another employee and began to tremble and her eyes rolled back and she was not responsive to her name being called for few minutes, but did come around before ems arrived ()
## 9822 A 10 lb can fell from shel and struck EE in the lt hand
## 9823 A 2x4 that was resting a top of cabinet that was being moved by the EE fell and struck EE on the head; cut on top of his head
## 9824 A arm came worse nad hit a staff in the nose.
## 9825 A banana was in floor and she slipped and fell on it. Right foot.
## 9826 A bed of fire ants was found under the employees desk, inside her power strip. ()
## 9827 A bed support rail fell on employee causing a laceration to his left shin. ()
## 9828 A bee stung EE on lt hand
## 9829 A bike ran into her on her way to teach her afternoon honors class and she was taken to the local hospital to be checked out. ()
## 9830 A bike was propped against the wall, EE was dust mopping and it fell on leg
## 9831 A bird flew in the side doof of office; went to open door to let it out stepped on the wet rug that was in front of the door and rug slide and lost balance and fell ()
## 9832 A bite on the left forearm(? Insect)
## 9833 A blind client dropped to the floor and pulled EE'arm down w/ her causing neck and arm pain.
## 9834 A board 2x8x16' fell onto employee's foot
## 9835 A book fell on finger got infected.
## 9836 A book was holding window open-EE went to close window and it fell down on left hand little finger
## 9837 A book was thrown and hit her chest below her breast and hit her index and middle finger on left hand
## 9838 A bottle of cleaning solution fell off the shelf and cap came off and solution splashed into rt eye.
## 9839 A bottle of cleaning solution fell off the shelf and solution splashed into EE rt eye
## 9840 A box fell on me and hit me in the head and back
## 9841 A box of playslips on the counter started to fall and I grabbed for them catching the box between my middle finger and ring finger causing the finger to be pushed down. ()
## 9842 A box was falling off pallet and EE reached to stop it from falling and jammed her finger. Right hand ring finger
## 9843 A brush fell and hit EE in her right eye
## 9844 A bucket fell on EE's left pinky finger
## 9845 A buring stinging sensation occured inhis rt forearm near the elbow while using the chain saw and dragging tree limbs from the tree
## 9846 A cable from computer got caught on another line which caused computer to roll off moving cart, tried to catch computer, fell on head.
## 9847 A can of aerosal fell off the paper towel rack andhit EE on left foot.
## 9848 A car hit the golf cart I was driving on the passenger side. (no medical attention required) ()
## 9849 A car pulled across the walkway at the red light. As the employee started to cross the street in front of the car, it moved and struck the side of her left leg right at knee level ()
## 9850 A car pulled out from parking lot and hit her head on
## 9851 A car pulled out in front of EE unavoidably, he hit the car. The other driver was charged. EE has no known injury just sore.
## 9852 A car went thru a stop sign & struck the lt side of vehicle neck/shoulder pain. ..
## 9853 A cargo strap was being hung and pulled loose. Cutbeside left eye
## 9854 A cart loaded w/paper car caught, when cart passedbetween doors - when doors were pulled away cart began to move. Pulled muscle in top lt leg.
## 9855 A case of paper fell from the floor of truck, scraping down front of EE rt leg, landing on top of foot
## 9856 A cat bit EE on the upper right arm
## 9857 A cat ran into the receiving area and sgt allen attemped to remove him. The cat scratched her right wrist, right index finger and right middle finger. ()
## 9858 A cat scratched her on the rt arm when she tried to place it outside the window.
## 9859 A cement ash tray was in the walkpath at hauser hall entrance, while exiting the building EE fell over the ase tray.
## 9860 A chair broke and EE fell to the ground suffering a contusion on rt hand.
## 9861 A chair fell over and EE tried to catch it. Soreness in back
## 9862 A chemical that EE was using splashed onto his right/left arm.... Reaction
## 9863 A child became angry and combative and hit EE's mouth with thier head.
## 9864 A child was running & pushed EE in back causing ees head to whip backwards injuring neck and arm pain.
## 9865 A chip from one of the machines cut EE on the finger.
## 9866 A client accidentally bumped the staff's toe with his sneaker, causing her left toe to become injured. ()
## 9867 A client accidentally hit EE in the eye. EE seen at eastern eye associates, May return back to work on 8/7/09. ()
## 9868 A client accidentally stepped on back of her left heel causing sprain to left foot.
## 9869 A client attacked the EE, EE seen by urgent care and did not return back to work
## 9870 A client attacked the staff, injuring his thumb. EE currently out of work pending appt on 12/22/09.
## 9871 A client became upset w/his peer became aggressive and EE started to intervene and client head butted EE in the mouth causin loose teeth.
## 9872 A client grabbed the employee's thumb and twisted it in the opposite direction ()
## 9873 A client hit EE forcefully with hand under EE's rgt. Shoulder blade
## 9874 A client kicked EE in the stomach and struck another staff member in the neck after the client stood up from using the toilet.
## 9875 A client picked up a chair and threw it at EE, EE went to the er due to a r upper arm and l thumb injury. EE diagnosed with a contusion to her l thumb ()
## 9876 A client pulled on the staffs arms and pushed her against a wall. EE seen in er on 6/25/09, taken out of work for 7 days.
## 9877 A client was aggitated, throwing obects-picked up awicker basket filled with soap and hit EE on rightshoulder causing a contusion
## 9878 A client was lifting & pulling at sterile bandageson her wrist. EE noticed a string of bandages in client's teeth when client bit EE's right hand.
## 9879 A client was running and justin was running behind him and fell, got up and fell again. ()
## 9880 A client was swaying back and forward lost their balance and EE caught client and took client back to their room. Injured back.
## 9881 A client went into the bathroom, the EE went to check on him, client grabbed her right hand, squeezing hard, EE pulled hand away, hit doorframe
## 9882 A clients foot got caught in her support belt and while she tried to get it out she moved akwardly causing her hip to hurt.
## 9883 A clients sling strap was hanging on the floor. Eetripped & fell on the floor. EE injured l knee.
## 9884 A clip board was sticking out of a book case and cut through the employee's pants and into his leg as he walked by. ()
## 9885 A clotheshouse buggy being pushed by an inmate hitee's rt foot below ankle she was in the sergeant's office in the process of closing the file drawer
## 9886 A co-worked accidentally placed the leg of a chair on the top of Ms. French's foot and then sat down ()
## 9887 A co-worker dropped some grits on the floor, wendystepped in the grits, slipped & fell.
## 9888 A co-worker dropped the rabies control slide on the slide board I was holding as we were exchanging slides to read and I thought I felt a speck of something hit my upper lip. ()
## 9889 A co-worker fell unconscious & EE administered cpr(mouth-to-mouth) in work area. Possible exposure to body fluids.
## 9890 A co-worker grabbed EE's left hand and twisted it to get supply room key
## 9891 A co-worker had tripped and sat on the floor, emplyee stopped to asst co-worker off the floor, co-worker pulled on employee causing her to strain back,
## 9892 A code 4 was called in kitchen and she fell onto the floor due to it being wet. Injured left knee. ()
## 9893 A code was called in the parking lot and I ran to assist when it was over my knee was hurting and swelling
## 9894 A computer cart was being pulled down the ramp in front of blair hall, when cart took a turn & hit EE on rt lower leg causing deep gash--stitches req
## 9895 A container of frozen food fell out of freezer and struck EE on rt little toe
## 9896 A cook let a large pan of hot gravy slip off cart, hit floor and spattered on EE.
## 9897 A corner flap of cardboard box grazed EE rt eye leaving a red area happened while EE was putting away stock in freezer.
## 9898 A cow batted him in the chest. ..
## 9899 A cow kicked EE in the right arm
## 9900 A crack in the sidewalk caused employee to lose her balance and fall. ()
## 9901 A crew of four or five employees were working beside one another weedeating some debris around substructure. Debris got into EE's eye.
## 9902 A cup of hot coffee spilled on EE's lap and legs
## 9903 A cup of oatmeal that the EE was carrying spilled on her wrist...... Left
## 9904 A cup of urine was thrown out of inmate trap door hitting my right hand, right forearm and splashed on my abdomen areas.
## 9905 A customer was handing EE a can of gasoline when the can slipped causing some of the gasoline to splash in EE face
## 9906 A desk was pulled out from wall blocking access. EE pushed desk back against wall. Felt ()
## 9907 A disease caused EE to have a mitral valve replacement.
## 9908 A dishrack pinned the EE's wrist against a wall... Right wrist
## 9909 A dog bit EE on left ankle while the EE was conducting curfew checks
## 9910 A dog bit her left ring finger. Rx urgent care re ferred her to raleigh hand center for additional treatment since it was such a deep bite.
## 9911 A dog came up and bit my rt hand while deliving firewood
## 9912 A donation of books had been made to the department. Employee was moving books from car to a cart to take them into the office. Employee tripped over a curb-marker in parking lot. Skinned right knee, smacked right cheekbone on asphalt, bruised/swelling ()
## 9913 A door hit EE's left shoulder as she was exiting
## 9914 A door opened and hit employee's right foot-great toe has sharp pains when walking-has had a previousurgery to that area
## 9915 A door rammer was being used by trooper to gain entry into a residence. When the door opened EE struck back of hand on the side door jam-(see notes)
## 9916 A dropped on his foot.
## 9917 A dumpster lid fell on EE's head. **clmt has ongoing trmt for chronic condition- Dr Relating to inj- statutes has expired for ttd bene
## 9918 A fall on wet, slippery surface on ramp at back ofplace of work, injured right knee.
## 9919 A fellow counselor was moving a vehicle when she accidently ran over jade's toes and both feet. ()
## 9920 A female client was being restrained & ees hand became trapped between wall & clients head. Clientbit the EE's hand. Human bite rt hand.
## 9921 A fight broke out between two students and EE was breaing up the fight when the students started to fall to the ground and over a chair. Back/neck.
## 9922 A fight broke out in area supervised. Table was pushed by an inmate table hit in leg. Caused a bruise. Rt leg, upper rear of leg
## 9923 A fight occurred in the classroom between 2 students. Mr. Willingham attempted to stop the fight and either fell or was pushed over a desk. ()
## 9924 A fire broke out adjacent to where EE was supv a work crew. While assisting fire department EE overcome by smoke. No injury noted.
## 9925 A fire broke out on a lot adjacent to where EE wassupervising work crew. While assisting the fire dept EE was overcome by smoke
## 9926 A fire occured after a solven in his work area that became disconnected. Allowing the solvent to splash & cause fire. Burn to face & hands.
## 9927 A folding chair fell on top of EE's lt foot.
## 9928 A folding table landed on top of EE's left foot. ()
## 9929 A foreign object blew into his left eyey while supervising outside recreation segregated inmates
## 9930 A forklift struck a bundle of train rails causing one rail to fall onto Mr. Butler's foot which pinned his foot and caused pain.
## 9931 A gas canister was placed in front of housekeeping closet. While moving the canister ( pulling) she hurt her back lower back. ()
## 9932 A gate fell and struck EE shoulder.
## 9933 A glass bottle shattered and slit EE's rt index finger
## 9934 A glassware dropped when she was washing it and it broke in the sink and cut her finger on rt hand
## 9935 A grain of sand blew into EE's right eye while riding an atv on the beach. EE suffered corneal abrasion.
## 9936 A group of center mgr took a hiking trip as part of team building event. It was towards the end of the day when I tripped over a stump and twisted my knee. I got up and continued walking when I fell 2 more times because of weakness in my leg. ()
## 9937 A horse bit EE on face while working on its foot. Face/nose
## 9938 A hot solution sprayed into EE's right eye
## 9939 A hot/tired horse kicked her, striking the inside of her lt leg & knee. She returned to the camp on 7/24/08, was rechecked on 8/1/08 by MD.
## 9940 A inmate started fighting with another officer and I tried to help and he started hitting me.
## 9941 A juvenile refused to go to his room for a time out. Student was approached with soft hands approach and the juvenile lost control and started fighting staff. The employee was injured when his elbow hit the inside of the room door. ()
## 9942 A juvenile struck EE during an escape which caused her to strike the door frame of his room.
## 9943 A juvenile was out of control while to trying to get juvenile into room, with the help of local law enforcement, juvenile was refusing to go into room
## 9944 A lady dropped her key and it went under a drink machine in the markets shoppes. Ronnie moved he drink amchine and got the key and moved it back. When he did he felt a strain but didnt think much of it. But, know his shoulder is bothering him. ()
## 9945 A large amount of water hit EE in the back starteling her, EE jumped around to her right and pulled her left shoulder.
## 9946 A large body was on a stretcher was being turned to examine for injuries, the body slipped off and the stretcher struck employee of the foot.
## 9947 A large box fell from shelf twisted back in the process of trying to catch box
## 9948 A large cat clawed his leg
## 9949 A large file cabinet fell over on another employee. I was first to respond and lifted the file cabinet, re-injuring my rib ()
## 9950 A large heavy partition from bookcases fell on EE knocking her down onto the floor.
## 9951 A large tree fell on top of EE's veh causing severe head and neck trama.
## 9952 A large truck headed towards him and forced him off the road
## 9953 A lesion appeared on EE right lower cheek down to neck area, due to outbreak of MRSA EE was sent to hosp.
## 9954 A live shark was transported to a holding tank the weight of the animal shiffed causing the stretcher to become unbalanced and injuring lt shoulder
## 9955 A locust jabbed EE's middle left finger
## 9956 A loose chair back caused EE to lose her balance causing a back injury
## 9957 A major part of employee's job is research and writing. This involves much repetitive movement involving typing on a computer
## 9958 A male quest at the hotel where I was staying brushed my shoulder asked me if I wanted to make something out of it then he punched me in the face
## 9959 A male subject approached this officer as I was exiting residence and turned attention to such. I stepped off fron stoop and foot fell into a ditch off concrete walkway and injured ankle and fell to ground. ()
## 9960 A member of the public pulled open bottom drawer as EE was walking by and hit EE on left foot.
## 9961 A metal door closed on officer campbell's hand cutting his finger. ()
## 9962 A minivan ran a stop sign and EE collided with minivan.
## 9963 A moth flew into EE's right ear while she was walking into building
## 9964 A non employee entered lobby stating they are positive for TB ()
## 9965 A none employee walked into lobby and stated there were TB positive ()
## 9966 A packaging cord was in front of the library door & employee's feet became entangled in the cord causing fall, striking left hip against cement.
## 9967 A painting that EE was handling fell and crushed his left ring finger
## 9968 A pair of scissors fell and hit EE in the right eye
## 9969 A part of door was loose-EE tried to put it back so door could be closed-finger got slammed in doorwhile trying to fix it
## 9970 A passenger vehicle failed to yeild the right-of- way and trungin into the path of trooper battle's patrol vehicle, resulting in a traffic accident.
## 9971 A patien was on top of the tv in the dayroom, when EE redirected to come down patient attempted to crawl in the ceiling & was helped down by staff. EE's right forearm was scratched in the process. ()
## 9972 A patiend slammed door to his room while employee was standing in the doorway hitting employee in both elbows. Patient also flipped a bed and hit employee in the right leg. ()
## 9973 A patient approached EE swinging and hit him on the left side of face. When EE was defending himself, he injured his neck and back.
## 9974 A patient became combative when they were asked togo to eto for 5 min and the patient pounched EE in the face.
## 9975 A patient became enraged, EE tried to help calm ptand got hurt. Left pinky finger jammed and right arm scratched.
## 9976 A patient became violent. She jerked her leg lose while staff was restraining her and kicked EE beside right eye.
## 9977 A patient bit nurse on the rt upper arm after running into the nurse's station.
## 9978 A patient broke glass.... EE was cut on left middlefinger trying to take the glass from patient... Pulled muscle in chest during struggle
## 9979 A patient bumped into EE causing her to twist her lower back
## 9980 A patient continuosly lowered self to floor tryingto be self injurious so staff repeatedly picked pt. Up pulling EE's lower back.
## 9981 A patient grabbed EE by the neck pushing him over a table in the dayroom
## 9982 A patient grabbed EE's arm and yanked her forward... Felt pain in right shoulder and back
## 9983 A patient jumped on EE's back while she was assisting in placing another patient in a therapeutic hold.
## 9984 A patient needing help to be changed a co-worker and I went to help him we try to lift him but he was too heavy hurt back
## 9985 A patient passed EE basketball, EE jumped up and felt left knee pop ()
## 9986 A patient pushed EE on left shoulder while trying to get out of a door... Causing pain in his left shoulder
## 9987 A patient slammed bedroom door and the doorknob hit employee in the right rib cage. ()
## 9988 A patient stumbled backwards causing EE to fall and injure knee
## 9989 A patient swung and hit EE's right hand and his hand hit an iron bed. ..
## 9990 A patient threw a trash can and hit EE on the right ankle
## 9991 A patient tried to hit me in the face, I blocked the punch w/ my r. Forearm & as I did she grabbed my r. Wrist and twisted it
## 9992 A patient tried to kick EE between the legs and eeblocked w/lt hand and injured lt index finger.
## 9993 A patient walked up to employee and slapped her on both upper arms leaving both arms red. ()
## 9994 A patient was unsteady and went forward- EE caughtpatient and they both went backwards.
## 9995 A peice of angle iron was accidentally jerked fromthe back of the trucka nd it landed on EE's foot.
## 9996 A piece of flying glass struck face above rt eye after explosion.
## 9997 A piece of glass got stuck in left thumb.
## 9998 A piece of jagged metal cut fingers on his right hand
## 9999 A piece of meatl slipped out of EE's hand and cut his hand.
## 10000 A piece of metal debris bounce off another piece of metal and went behind facesheild and hit the eye while using a 4 in grinder to clean up a weld. ()
## 10001 A piece of metal from a door fell into his eye.... And scratched the underside of his eyelid
## 10002 A piece of office equipment was pulled off a file cabinet and fell on EE's left foot.
## 10003 A piece of rust that was dislodged from the grill that he was moving, flew into his left eye
## 10004 A piece of staging cllapsed and fell on top of EE left foot object weighed 250lbs.
## 10005 A piece of stalk stuck in my left index finger
## 10006 A piece of wood chip flew in employee left eye
## 10007 A piece of wood hit incadescent light fixture and casing cracked and broke off falling and cut EE on upper left cheek.
## 10008 A piece of wood plank protruding off shelf in hallway, while walking by her hand struck it and cut hand.
## 10009 A pipe broke sending alot of force against EE's right shoulder.... Backside rt shoulder
## 10010 A plate of steel fell on fingers while loading it
## 10011 A plywood sheet fell on top of goat, trapping her all other goats were standing on top of plywood EE strained wrist lifting board off of goat
## 10012 A pole separated from its base and fell on EE's right foot.
## 10013 A portable air conditioner unit tipped over and struck EE on her right heel
## 10014 A portion of tree kicked up and and into cab pinnig EE leg to the machine
## 10015 A post operative cat bite EE on rt hand while attempting to place in a cat carrier for transport
## 10016 A pt charged and attacked this EE. EE placed pt on transport board, while transporting pt to pr EE was at foot of transport board pt's weight shifted while EE was carrying pt causing back to begin hurting. ()
## 10017 A pt got up fm their chair, gait was unsteady, began to fall, EE tried to cushion fall, pt grabbed EE pulling EE forward straining back ()
## 10018 A pt grabbed another pt's radio and hit EE in the head ()
## 10019 A pt had left the trunk of their car open. It was about to rain so EE went outside to close trunk & thumb was caught. Smashed left thumb.
## 10020 A pt had their feet on tv cabinet to keep staff fm opening the cabinet, staff got tv cabinet door open, then pt slammed door on to EE's head
## 10021 A pt had wrapped a pillowcase around their neck, EE was trying to get pillowcase loose when she felt a pull/pop in upper chest area ()
## 10022 A pt next to EE began to fall, EE grabbed chair and pt, assisting pt to floor, fell a pull in right chest area and back ()
## 10023 A pt spilled juice in floor, EE did not see it, fell in floor landing on right knee
## 10024 A pt was choking, EE & co-worker assisted pt to standing position ()
## 10025 A pt was trying to attack another worker, EE got between pt & c0-worker, pt scratched EE on face, & also fell. Face/hip/knee.
## 10026 A puddle of water was on the floor in the restroom stall. Employee slipped fell and twisted her right ankle. ()
## 10027 A rat twisted after receiving a microinjection with catheter for microinkection and recording twining around its body, so EE wanted to calm the rats and took catheter from its body by hand, then the rat bite EE finger ()
## 10028 A resident became aggressive and scratched EE on inner l wrist and knuckles of r hand and arm
## 10029 A resident became upset and aggressive, scratchingee's lower right arm/hand and left wrist/arm/hand
## 10030 A resident became upset and grabbed her right arm causing unspecified injury ()
## 10031 A resident fell out of bed, EE and another dt madea lift from the floor to bed. EE felt a pull in her back.
## 10032 A resident grabbed and pulled EE's left hand/wrist
## 10033 A resident had a wet floor sign and ws going to use it as a weapon when EE tried to take the sign, the resident scratched EE on the face, neck and chest area. ()
## 10034 A resident hit EE's hand with helmet
## 10035 A resident in ot living areashave conjuntivitis, EE performimg her duties was in contact with htem
## 10036 A resident refused to get up and go back to cottage so staff had to restrain student, during restarin staff fell on back causing pain in lower back.
## 10037 A resident stood up from work table and threw a chair and while trying to restrain resident in picresident turned and charged @ EE.
## 10038 A resident was being agressive and hitting his head. He thre himself onto ground. EE tried ot stop this and twisted her back.
## 10039 A resident was falling to ground, EE attempted to break fall and fell to ground with resident. Injured right arm and shoulder.
## 10040 A resident was striking out and caught EE's thumb and bending backwards.
## 10041 A riot broke out in d gym. Mr White responded and assisted in breaking up several fights. Mr. White reports that afterwards he had to take a pain pill due to pain in back, neck, and arm. ()
## 10042 A rock hit EE in the right eye
## 10043 A rubber mat was rolled up on the sidewalk in front of the door. Didn't see it and tripped. ()
## 10044 A rust from underneath case fell in employee eye
## 10045 A seal broke and herbicide chemical got onto EE's lower back.
## 10046 A section of bearing press was lodged and as it became dislodge it fell striking the EE's rt hand
## 10047 A server slipped while being installed. ()
## 10048 A severe tunderstorm producing a lot of rain water onto wind sheild causing him to loss control and side off road
## 10049 A sheet pan was accidently dropped on her foot by another EE
## 10050 A shelf fell and hit EE on the back.
## 10051 A shelf fell on EE's left great toe... Broken
## 10052 A shelf fell striking EE in the mouth
## 10053 A shelf holding various stores items came loose fron the wall after a microscope which appareantly had been supporting it was removed. An empty... ..
## 10054 A shell from fire arm hit leg ()
## 10055 A small flask with a minute residue of aqueous hydrogen peroxide exploded while worker was removing the solvent.
## 10056 A small insect looked like a sweatbee flew in the inside corner of right eye under lower eye lid and stung eye. ()
## 10057 A small piece of metal dropped into EE's left eye
## 10058 A small table fell on the employee ()
## 10059 A small vile containing highly concentrated sulfuric and nitric acid slipped from EE's hands while she was helping students
## 10060 A spastic nerve in EE's back caused her to loose balance and fall on the pavement; EE was in severe pain and was unable to get up; also scraped hand
## 10061 A spider bit EE on his right index finger while he was searching a car
## 10062 A spider bit him on his left arm
## 10063 A spider dropped down from the ceiling on to the left side of my face. It injured me when I slapped him off ()
## 10064 A spill of bacterial cultures occured producing a potential aerosol, inhalation of the bacteria can cause disease
## 10065 A splash from the chlamydia control bottle in eyesand face.
## 10066 A spotlight came out of overhead locker and struc k EE in the face
## 10067 A staff member attacked me with a patient chart cart ()
## 10068 A staff picked up a chair to move it and she didn't see Ms. Dail coming so the chair struck Ms. Dail on the left front shin ()
## 10069 A storm came up and the wind became so strong, it knocked the window out of tower which struck EE inforehead.
## 10070 A stressful situation between employee and crew leader. Fingers, legs.
## 10071 A stretcher with a patient on it fell on EE's leg & foot. Fractures of rt ankle & foot & abrasions to lt ankle.
## 10072 A student and EE were screwing the top of picnic table with a hand drill, the drill slipped from the screw and hit left pointing finger. ()
## 10073 A student became agressive when Ms. Harvey-fonvil walked past her. The student ran up behind Ms. Fonvil, jumped on her back and pulled some of her hair out. ()
## 10074 A student became idspuruptive and staff had to restrain the student to protect himself.
## 10075 A student became upset & hit EE on the neck
## 10076 A student bit him on the rt hand/forearm due to his behavior problem. Tried to calm student down.
## 10077 A student broke a table and then used the base of the table to break the window in the staff office causing Ms. Sutton to get cut on the right side of her face. ()
## 10078 A student esculated to violence throwing a desk. Hitting teacher on the ankle and lower leg causingbruising and sprained ankle while desk landed EE
## 10079 A student jumped EE from behind. While struggling with the student his back and shoulder were twisted
## 10080 A student kicked open his room door and came out of his room with weapons. The employee and another staff member put the student back in his room. The student threw a brick and hit the employee in the right hand/thumb
## 10081 A student on wheelchair when he started fall down and the wheelchair hit her on her rt foot.
## 10082 A student placed palm of his hand on forehead and pushed head back, quickly. Student said he was jesus and she was healed. Injured neck.
## 10083 A student put a hydraulic ram behind the EE. EE did not know the ram was there and tripped over itcaused chipped bone in rt elbow
## 10084 A student rammed into EE, while walking down hall, knocking EE down flat on buttocks
## 10085 A student ran up and grabbed EE about her shoulders to hug her (almost like swinging on EE)
## 10086 A student rushed up to staff's desk as to attack. The table was shoved into employee's stomach while7 months pregnant.
## 10087 A student slammed a metal door on EE's left hand
## 10088 A student swung at Mr. Hinzman and punched him in the head. When Mr. Hinzman tried to restrain the student, he twisted and sprained his left knee. ()
## 10089 A student trie dto exit the door; employee was goign to door at the same time and the door struckfront part of leg. Holding student aggrivated back
## 10090 A student under EE's supervision had chicken pox aand before it was knwn the EE had caught chicken pox.
## 10091 A student wanted to bring a doll to class and I was trying to coach her into putting it back in her locker -she closed the door on my hand
## 10092 A student was angry and had become unsafe and jennifer with the assistant of two employees were escorting student with a two person limited control walk to an exclusionary time out and student bit jennifer twice on the right wrist. ()
## 10093 A student was attacking the employee and grabbed her in the chest with force. ()
## 10094 A student was kickuing a stack of chairs and his shoe came off and employee turned to avoid being hiwith the shoe and twisted her back.
## 10095 A student was leaving dining hall and nad tripped and EE tried to keep student from getting hurt end up falling and student fell on EE.
## 10096 A student was moving a chair from one side of the table across the table and dropped it on grace's shoulder/back. She was sitting at the table. ()
## 10097 A student was out of contrl. A group of employees trying to put a hold on him. During the hold his arm went across his face nad he bit hm on the arm.
## 10098 A student was out-of-control & assaulted staff. Staff injured lt big toe in the process of puttingstudent down on the floor.
## 10099 A student was trying to get to another student to fight. In running to block her, the employee's foot cracked or stepped on it wrong. Employee did not trip or bump into anything. ()
## 10100 A student was upset and hit EE on the lt arm.
## 10101 A student who was late for class was not looking at where he was going and ran directly into EE & was tremendous impact-EE had multiple contusions
## 10102 A student's head banged into EE's chin during practice
## 10103 A studnet became physically assaultive towards EE.
## 10104 A surgical table hit a wall, but the EE's finger was between the table & wall.
## 10105 A suspect attempted to run over EE with a car, was struck in the legs
## 10106 A suspect for robberies ran from officers, officerfell down a hill before apprehending suspect injuring both legs and left hand
## 10107 A suspect struck officer stott's right arm between his wrist and elbow with a motorcycle helmet.
## 10108 A swimmer had gotten to close to a rock groin located next to the protected swimming area and got caught on the rocks cut foot on rocks
## 10109 A table top fell on EE foot. Placing the table topon the dolly & the top slipped off the dolly & fell on top of EE foot.
## 10110 A tank had rolled on a inmates foot and EE grabbed hold of the tank to prevent any injury to the inmate and in the process he strained his rt arm
## 10111 A technician was working on a sorter & EE was going around the technician and tripped over a tubof mail. Fell on left knee
## 10112 A tore mat in work area caused EE to fall. Strain low back and neck.
## 10113 A trailer fell on EE's foot and broke his big toe... Left foot
## 10114 A trainee went into respiratory arrest and EE began mouth to mouth, initally with out a barrier. The trainee vomited and some went into EE's mouth.
## 10115 A trash can fell on EE's great toe... Left foot
## 10116 A tree branch, debris hit Dr. Cleary in the right eye while he was waling through high marsh on cms property.
## 10117 A tree fell on EE head causing a compressed vertebrae
## 10118 A tree fell on I-85 (brought down some poison vines with it). Employee had to walk trhough the vines to get to the tree; vines was also on the tree that employee had to cut. Employee developed a rash from the poison vines on face, both arms, l hand, r leg
## 10119 A truck pulled out in front of employee causing her to hit the pick up truck.
## 10120 A truck struck the dot truck on the driver's side knocking the driver into EE and pinning EE betweenpassenger door
## 10121 A tyson employee pushed a cart of chicken over our ncda employee's foot. ()
## 10122 A van merged into employees lane and struck side of car on passenger side beside the fender. Employees vehicle was knocked into the inner oncoming lane. ()
## 10123 A vehicle backed into the van in which EE was riding-low back pain
## 10124 A vehicle coming down interstate 40 crossed over 3lanes and lost control and ran into the van besid e where I was standing. I was thrown apprx 5ft.
## 10125 A vehicle had gont out of control, crossed the center line and was stationary in both lanes of road. EE rounded curve and couldn'tavoid collision
## 10126 A vehicle lost control and collided with EE's vehicle forcing EE vehicle into another patrol car
## 10127 A vehicle ran a stop sign and collided with EE's vehicle causing injury to lower back, both knees, right hand, cut to left hand
## 10128 A vehicle ran into back of truck occupied. Back pain
## 10129 A vehicle stopped in front of him & EE slowed down to stop as well. As he did so, the vehicle following him struck him from the rear, causing whiplash. Cervical strain.
## 10130 A wasp bit employee on back. ()
## 10131 A wide load truck passing EE's vehicle hit the employee's vehicle with a red flag, smashing his window.
## 10132 A wild bob cat bit EE.
## 10133 A wood splinter fell from head into eye ()
## 10134 A wooden splinter wedged under fingernail while moving a wooden pallet... Left hand
## 10135 A wooden tinki was being unloaded. Tinki collapsedand injured EE. Cuts and scratches to left jaw, cheek and lip
## 10136 A worker moving a filing cabinet caused a larger filing cabinet to fall forward striking EE in the head, shoulders, back..
## 10137 A wrench fell on EE's head
## 10138 A yellow jacket flew on chest then went on his arm. Employee slapped and killed the yellow jacket on his arm and it stung him on his right arm. ()
## 10139 A/c cover fell on EE's rt arm
## 10140 A/c unit was off-box fans used for cooling-dust blown around room no ventilation-respitory infection
## 10141 Aaron was driving a kobot on dan allen drive turning into hodges parking lot. Aaron did not see the blue car sitting at stop sign hitting the car made aaron's knee hit the dash board and he bruised his left knee. ()
## 10142 Aaron was driving a truck when debris flew in the window and got in his left eye. Didn't realize it was a problem until he woke up this morning and his eye hurt. Medac said there is a foreign body in his eye. ()
## 10143 Aas/6 - pt's bedroom ()
## 10144 About 3-4 months ago, EE began to have pain and discomfort in both thumbs and wrists. Spends 5-6 hours a day typing.
## 10145 About 4:50 p. M. On 2/3/08, while running the watchman tour, employee fell on the carpet.
## 10146 About a month ago after finishing crdt, right fingers started swelling and goin numb in right arm, with sharp pains in elbow. Don't know for sure how
## 10147 About to sit in chair and it slipped out from under his right wrist and took blunt of the blow on floor
## 10148 Above had to use the restroom. Upon leaving the restroom, area was dark & above tripped over a ladder.
## 10149 Abrasions to cornea of rt eye
## 10150 Abrasions to the face area - traveling to avoid a deer - another deer hit side passager side of employee's vehicle.
## 10151 Absconder ran from so, he pursued across a field, tripped & fell on lt shoulder while running acrossfield.
## 10152 Absconder's saliva landed on employee's face, transporting abscounder to jail, abscounder began coughing and mucus landed on righ arm jacket
## 10153 Accessing biological samples, reached to pick up scalpel that was lying on its side and cut my r index finger while picking it up. ()
## 10154 Accident date is undetermined - employee developed a chronic cough after working with old files. ()
## 10155 Accident from staple stuck in middle finger
## 10156 Accident occurred in state owned vehicle - EE driving from an inspectin was rear ended by another driver.
## 10157 Accident stuck right hand with needle she had usedto give tetanus shot in an inmate
## 10158 Accident while using welding equipment ()
## 10159 Accidental ax cut to left foot. Great toe was involved & bones in foot fractured.
## 10160 Accidental needle stick in right pinkie after collecting blood from a research animal. ()
## 10161 Accidentally a reaction ignited itself and I was burned by a flash of flame. Part of her cheek that was not covered by safety glasses was burned and some of hair scorched. ()
## 10162 Accidentally dropped the computer on my rt foot while trying to get it out from a shelf under the desk to open up the case to put the cd drives on
## 10163 Accidentally hit her lever on bottle of bleach water solution and sprayed in her eyes.
## 10164 Accidentally hit right hand on desk while inter- viewing a student
## 10165 Accidentally missed the last 3 steps.
## 10166 Accidentally sprayed w/mace while assisting other staff w/use of force
## 10167 Accidentally stepped on small rock that had been used to prop open a door. EE fell forward, hittingknee on a brick wall.
## 10168 Accidentially closed finger in door while completing security check of inmate bathroom ()
## 10169 Accidentially spilled bleach in rt eye when a resident knocked a container over.
## 10170 Accidentlly discharged waepon into the ground causing ears to ring ()
## 10171 Accidently closed vandoor on lt thumb had to open door to remove thumb
## 10172 Accidently hit in nose as she participated in diversity simulation progra,.
## 10173 Accidently hit in nose by a student.
## 10174 Accidently lacerated right thumb on lock mechanism - scraped. ()
## 10175 Accidently pulled cart full of produce over my right foot.
## 10176 Accidently put hands in blood on chair in sgts office
## 10177 Accidently shut hand in bleachers.
## 10178 Accidently stabbed left thumb while opening a cardboard box with an exacto knife.
## 10179 Accidently stuck himself in the left index finger after removing needle from the inmate. ()
## 10180 Accompanied inmate to hospital in ambulance. Ems sprayed substance on I/m that flew into banks eyescaused swollen eye lids & face & pain.
## 10181 According to EE he stated in a conversation on 11/7/2003 to other EE's he hurt hit back lifting boxes at the duplicating plant.
## 10182 According to EE, she was approaching the office and tripped over curb
## 10183 According to employee's supervisor employee fell out of chair. Employee's supervisor stated that the chair broke in half due to screws being missing out of the chair. ()
## 10184 According to employee, while driving on reade street, headed north, a car headed west ran a red light and hit the front driver's side. ()
## 10185 According to individual, "tripped on cable in classroom". Body part injured "left foot". Individualstated the cause was "unsecured cable connection
## 10186 According to julie medlin (wca), during a use of force on an inmate, the inmate charged into officer hale causing his left shoulder to slam into the door and his leg was caught between other staff and the inmate.
## 10187 According to officer boykin he was in process of the 10:00am count and after checking the library proceeded to class and struck walking rail.
## 10188 According to staff, while on post upon opening up her can of soup that had been warm exploded causing it to splatter around her neck, skin, hands, face
## 10189 According to supervisor, employee assisted others with moving a rolling cabinet of equipment up a ramp into the back of a vehicle when the wheel of the cabinet caught on the lip of the vehicle floor. Employee wrenched his right shoulder as he stabilized (
## 10190 According to the form 19, it states to see Dr. Meyers, Dr. Rosen & claimant's letters attached however, no notes are attached. Injury-arm/hand
## 10191 According to the high clerk (william baggs); EE was returning to work from lunch; upon entering the courthouse EE tripped on/over something smashing her face either on the floor or the door breaking her nose. EE went to the er, and rtw that day ()
## 10192 According to the supervisor, the employee tripped over a mat (while carrying a back sack) while entering the automotive building ()
## 10193 According to voice mail lt for supervisor pulled or torn a tendon or figament in my lt wrist probably a result of injury last year
## 10194 Accumulation from daily activities. Assisted re-dir-ect client emp and co-worker on either side of client-client lifted feet off of floor
## 10195 Ace tabular liberal tear occurred during rehearsal period and was aggravated by physical nature of job which included kicking, jumping, stage combat and lifting heavy things. ()
## 10196 Acid
## 10197 Acid on the floor where someone had used to hose down a rabbit cage 5'4" & 115 lbs..
## 10198 Acid washing pool line, appropriate respirator did not filter fumes at end of wash
## 10199 Acl right knee construction 15% and 20% ppd= 17. 5%no longer employed with nccu. Employed elsewhere surg 12/17/07, represented by atty michael mackay
## 10200 Acquired embedded tick resulting in flu like symptoms and rash
## 10201 Acrylamide liquid splashed into left eye
## 10202 Acting as fire ? Fire tractor was backing up & hithurricane damaged tree. Causing tree to fall and limb bruising right side of body
## 10203 Acting as flagman on an ncdot worksite. Car went past stopsign & 2 following cars hit back of 1st car after it slammed brakes I/m jumped across ditch
## 10204 Acting as violating during multiple officer takedown technique. EE was thrown to the mat. Rt upper chest came down on the forearm of student. Popping
## 10205 Acting in a role pay, felt a tearing sensation to my lower abdominal area.
## 10206 Active TB
## 10207 Acute delayed stress syndrome.... A suspect died while in her custody
## 10208 Adam & 4 others personnel lifted straw blower off of the ground and loaded into read bed of a pickup truck. Everyone else is ok. Strained lumbar
## 10209 Adding flour in mixer when dough hook came around & hit finger in against inside of mixer
## 10210 Addressing aggressve pt, pt stuck at EE, EE blocked pt's hit ()
## 10211 Addressing flooding cells and removal of inmates on gray unit e-pod, slip and fell on wet floor. ()
## 10212 Addressing students for tour. As EE turned to enter bldg. Tripped on step and fell. Scrapped rt hand/cut rt knee/strain rt side of neck.
## 10213 Adhesive capsulitis
## 10214 Adjacent lab was using excessive amount of bleach for decontatmination purpose. Working in the lab exposed to fumes causing chest irratation.
## 10215 Adjusted plywood cover infront of a broken window, & cut finger on the broken glass. Medically invest-igate this claim please.
## 10216 Adjusting blind. Blind was not secured in bracket and fell on head, right shoulder, and arm
## 10217 Adjusting books on bookshelf, shelf collapsed, handcaught between 2 shelves. 2nd/3rd fingers were bruised, skinned and swollen, r arm bruised
## 10218 Adjusting cable and fluid in the tractor and accidently wiped face around eye.
## 10219 Adjusting computer monitor, monitor fell on her foot. ()
## 10220 Adjusting cover on client when the client spit and saliva landed in corner of right eye. ()
## 10221 Adjusting denture with a blade, touched blade and it cut through glove
## 10222 Adjusting fan over drivers side, accidently slipped through safety and tip finger out. Injured lt hand index finger
## 10223 Adjusting foot pedal on wheelchair, fell mashing fingernail. Middle finger right hand
## 10224 Adjusting inmate's facial mask so he would not spit on staff. Inmate took right knee and hit her on left thigh.
## 10225 Adjusting office chair slipped fell to the floor striking lower back/buttocks ()
## 10226 Adjusting restraints on inmate and inmate jerked causing the restraints to catch the officer's right finger ()
## 10227 Adjusting stag buck which is held w/nails. Slid back toward him. Nail entered his leg
## 10228 Adjusting window blinds the curtain fell, pulled chair and stood on it rehang curtain. Chair rolledalost balance, fell backwards on the floor.
## 10229 Adjustment to nitrogen regulator-pressure built upcausing hose to rupture which produced loud sound
## 10230 Admin asst: repetitive use of hands and arms. Bilateral carpal tunnel & lft elbow.
## 10231 Administer eye drop to client, client slung head drops/eye fluid hit EE in face. Contact with conjunctivitis.
## 10232 Administered insulin injection- when pulling residents sleeve down-stuck needle into left hand (palm). ()
## 10233 Administered insulin shot to client-felt needle prick after pushing syringe up to cap it
## 10234 Administering TB test when solution & possibly blood squirted out and splashed in eyes & face ()
## 10235 Administering first aid to inmate, inmates's blood got on his hands and arms
## 10236 Administering forced meds. Patient attempted to strike EE avoided but onset pain shoulder & neck motion
## 10237 Administering local anesthetic for dental restoration, resident jerked head quickly & tip ofneedle pierced skin on left thumb
## 10238 Administering medications- in doorway-r hand caught between med. Cart and door handle-mashing r. Hand. ()
## 10239 Administering medications-human bite to l. Forearm ()
## 10240 Administering meds to patient; repositioned arm and felt pain in right shoulder ()
## 10241 Administering meds, pt scratched EE on left arm ()
## 10242 Administering meds. To a patient-another patient came up behind and scratched on l arm and r. Wrist/hand. ()
## 10243 Administering narcotic to inmate. Cut ring finger on corner of med room window ()
## 10244 Administrative assistant lost consciousness and fell toward EE. In efforts to assit with the fall, the both fell down and the asst. Landed on the EE. ()
## 10245 Administrative duties making copies and sorting documents at work station. Rash on both thighs caused by unknown object or chemical. Blisters on both thighs mainly left leg. ()
## 10246 Aerating the ground when a rod that was connected to the aerator jumped back into EE face. Contusionlaceraion face, scalp & neck.
## 10247 After 1 hour of wrok at job location, EE experienced problems with breathing and chest pains
## 10248 After 4 hours of instruction, standing, employees foot left began hurting and continued until he sought medical treatment for a stress fracture. ()
## 10249 After EE administered insulin injection, EE pulled needle back and needle right index finger. ()
## 10250 After EE cleaned with virex, he began to feel itchyon both arms. When he removed jacket, he realized he had developed a rash on both arms.
## 10251 After EE completed combat fire arm training, move- ment of rt shoulder became limited and painful.
## 10252 After EE diving in cold water skin became red and noted blisters.
## 10253 After EE escorted an inmate back to his cell, inmate elbowed EE in the upper shoulder.
## 10254 After EE gave injection to patient, turnd needle to place bandaid & stuck self with needle ()
## 10255 After EE had clocked she stated that her left eye had become irritated.
## 10256 After EE had thrown a trash bag into the dumpster she felt a pull under her left arm & a stick hit her left breast.
## 10257 After EE sprayed on slide and closed it shut a fewdrops hit her in the face.
## 10258 After EE was gave non-ambulatory pt a shower, tried to lift her, strained lower back
## 10259 After a confrontation w/ I/m lunsford in b-block, c/o sprayed I/m w/ oc spray & hand restraints was placed on I/m. I/m was sitting in a chair in the..
## 10260 After a dive show, she was getting out of the tank, and she slip and fall with equipment attached.
## 10261 After a heavy but normal day of basic landscape duties shoveling soil, moving mulch soreness was observed--lft wrist
## 10262 After a meeting some chairs were stacked on the cart, while pushing the chairs into storage room cart hit the side of the door and struck employee.
## 10263 After a resident intervention, noticed right hand swelling.
## 10264 After a surgical extraction of tooth EE noticed blood on the inside of glove-glove had hole in it & patient's blood got inside on her hand
## 10265 After about a month EE notice both hands began to break out
## 10266 After adm inmate an intramuscular injection inmatewas asked recap needle came down hall needle went through rubber cap and stuck lt middle finger.
## 10267 After administering a vaccine, the claimant's left ankle was injured by a used syringe that bounced off a large needle box on the floor, piercing the skin and drawing blood. ()
## 10268 After administering an allergy injection to a patient, katherine placed the needle in the sharps containter but it popped out and pierced her right arm. ()
## 10269 After administering insulin to an inmate through the trap door, started to pull safety shield down over needle his hand slipped & punctured lt finger
## 10270 After administering meds to pt. /tried to pull him up in bed straining back & abdomen
## 10271 After administering o c spray to a aggressive inmate EE states that inmate cont.... To approach him he fell over a chair and landed on his back
## 10272 After administering shot, needlestick to l. Thumb ()
## 10273 After altercation w/pt, EE felt sore/stiffness in left 4th digit ()
## 10274 After an experiment, EE was cleaning the hood when one of the chemicals (ether) ignited causing a small fireball. ()
## 10275 After an interview with a client, I was walking down the stairs. I missed the bottom step and landed on the ground. My right foot gave out and I fell on right leg and right hand. ()
## 10276 After an open house event, employee was driving the college motorcycle around campus and lost control of the motorcycle. ()
## 10277 After answering phone in old cafeteria. EE procedded to leave area when she tripped over telephone cord hitting stand with right knee
## 10278 After approximately one hour in office eyes swollen, nose congested, wheezing, this has happen each time I opened 30 minutes or more in her office. She is fine no symptom prior to entry of her office. Upper respiratory. ()
## 10279 After arresting and transporting a suspect to the county jail, the suspect made it known that he had TB.
## 10280 After arresting and transporting a suspect to the county jail, the suspect made it known that he hadtb.
## 10281 After assailant was stopped for traffic violationsassailant proceeded to run into EE striking EE left leg causing bruises.
## 10282 After assisting another EE w/making routine security checks. Began walking down steps. Grabbed handrail & felt wrist pop. Wrist bent backwards
## 10283 After assisting dress resident-escorting to hallway and resident punched below ear ()
## 10284 After assisting individual with toileting, employee experienced pain in her back. ()
## 10285 After assisting patient w/ bath, staff was placingbath supplies back in patient's cubby. The patientsbath sponge fell onto staff's nose, staff no
## 10286 After assisting resident with his meal tray I started to walk out of f the rm & stepped on a wet surface. Slid lost balance & pulled strained muscles. ()
## 10287 After assisting with breaking up a fight a patienthit EE in the face, and put his finger in his mouth
## 10288 After attempting to draw blood from pt., EE was sliding safety up on butterfly and was stuck with needle.
## 10289 After attempting to redirect a patient, the patientthen attempted to strike staff, at which time the staff tryed to block the hit but still was struck
## 10290 After attending 4 hour meeting, when stood up ankle turned & fell forward spraining ankle
## 10291 After bath client jerked clean clothes away from EE then clien grabbed EE's wrists & twisted fingers rt thumb lt hand/finger sprain
## 10292 After bathing and removing client from toileting to wheelchair, heard something pop when EE came up from putting on client's socks; could not stand straight up without pain. ()
## 10293 After bathing client, EE squatted and turned to place shoes on client, felt pain in back.
## 10294 After bathing client-client lost balance and fell EE tried to catch client and injured rt ring finger.
## 10295 After bathing resident-bent down to pick up bag with clothes in it. Felt pinch in lower back. ()
## 10296 After being administered pepper spray for certification, officer was leaning against the wood near the waterhose and her right arm became irritated and a small red bump appeared. ()
## 10297 After being involved in use of force of england unit, officer had injured rt ring finger.
## 10298 After being maced as part of oc training, she was informed that is okay to place her contact in her eye, rt eye became irritated.
## 10299 After being on timber exam, body started itching, irritation and whelps on whole body.
## 10300 After being properly shown & demonstrated how to place handcuffs was cut on wrist by handcuffs by another c/o while closing handcuffs
## 10301 After being told of shift change from 2nd to 1st shift, felt bad pressure on head, chest pain, hard to breath--felt like a breakdown
## 10302 After blowing was complete and walking back to aviary, stepped over a log, didn't have good footing when rt. Foot came down causing ankle to give way and causing employee to fall twisting rt. Knee. ()
## 10303 After boat patrol on 4/12/06-EE noticed numbness in right foot-then fine for several days-again on 4/17/06 foot became numb again-same area
## 10304 After breaking up fight between two inmates noticed left forearm was red. ()
## 10305 After breaking up fight took cuffed inmate to segregation he noticed he had blood on right hand and thumb.
## 10306 After caring for last resident EE started itching and burning on arms and chest and rash appeared.
## 10307 After carrying & dumping fourth bucket of water rtarm had burning sensation in fingers & after a little while a numb, needle like feeling.
## 10308 After carrying a full size mattress up three flights of steps, employee felt pain on left side under arm pit. ()
## 10309 After cell door opened for inmate to exit, EE had to physically close the door using his left foot.
## 10310 After changing light bulbs, EE descended ladder and light cover fell and struck EE's right shoulder and head. ()
## 10311 After changing resident-assisted to stand pivot resident into wheel chair, resident was unable to turn body; resulting in employee twisting to assist into chair-noted left side of back hurt. ()
## 10312 After chaning battery in wall clock and stepped down to a sharp object on the floor. Injury to foot.
## 10313 After check & change r. Side/back started hurting ()
## 10314 After checking a computer in bldg. C, while walkingon gravel drive back to admin. Bldg., stepped in a pothole & ankle twisted as I fell.
## 10315 After class, walking on grass towards car, slippedon pine needles and caught foot on tree root, fellinjuring right leg.
## 10316 After cleaning instruments, picked them up to place into biosonic, when the explorer stuck into the palm of rt hand
## 10317 After cleaning tower and left upper eyelid began burning
## 10318 After cleaning up, loaded tables on rack, tried to pull them off on lower level, strained back
## 10319 After client completed her back and got dressee she became non-compliant and aggressive towards EE and scratched EE
## 10320 After client injection, needle placed in EE's pocket. Checked pocket later, needle fell out. While picking up needle, pricked on palm of rt hand
## 10321 After clocking-out on the way to car, injured-emp loyee made a statement which caused a fellow-employee to put him in a bear hug bruising his ribs.
## 10322 After coming down stairs emp. Felt a sharp pain in inner r ankle/wrong step ()
## 10323 After coming down stairs from training area, went in hallway, running to unit to assist when right knee, twist-buckled and he started hopping to unit. ()
## 10324 After completeing bathroom cleaning duties, both of EE's hands began to itch, both hands broke out in an allergic rash.
## 10325 After completing a 4:15 home visit with a parent, I walked toward my in the driveway, branches from a tree fell/broke and fell on top of me. Forcing me on the ground face down. ()
## 10326 After completing a cell search, an inmate threw an unknown liquid on the sgt. ()
## 10327 After completing blood draw while removing butter-fly needle from adaptor tubing or needle curled causing stick
## 10328 After completing cerebral angiogram on hiv + patient, EE removed gloves and notes blood on fingers on non-intact skin.
## 10329 After completing control #2 took a break. She returned classroom and began to sit down beside wall when experienced sharp pain in left rib cage
## 10330 After completing paperwork, walking back to office by the greenhouse area and stepped in a hole causing rt knee to buckle
## 10331 After completing self defense/weapons retention training, EE reported that her rt hand would not stop trembling, also her neck and rt shoulder
## 10332 After completing training both calves started burning & throbbin after a while rt stopped but ltleg kept hurting & appeared swollen
## 10333 After completing weapsons retention, she had a twinge feeling in her back, rt shoulder area. EE didn't recall what technique actually caused injur
## 10334 After completion of a search & removal of gloves while cleaning up noticed a small cut on his left middle finger. Did not see any blood.
## 10335 After completion of use of force scratch was noticed on knuckle of middle finger on lt hand. Cut on finger
## 10336 After conducting a curfew check he went to car in the parking lot he turned back at someone yelling at him and his foot slipped off curb
## 10337 After conducting a home visit, I was walking beside my state car and was struck in the right eye by the car antenna. ()
## 10338 After conducting a home visit, when closing the driver side door, right thumb got caught in the locked door ()
## 10339 After conducting gps training on a pre-commercial thinnig on private landowners property employee found multiple ticks (8-10) attached on his legs, back, arms, and stomach. A few days later a rash developed and employee experienced flu like symptoms ()
## 10340 After conducting inspection at medical center, he stumbled and fell when walking to the car. ()
## 10341 After contact with athletics dirty laundry, EE developed skin rash on face and arms. Referred to glenda.
## 10342 After copat trng, EE became hot, sweaty & nauseatedems was called to scene
## 10343 After cutting a steel plate, half of it fell onto employee's right foot
## 10344 After data entry keying alpha and numeric, numbness in fingers, pain and swelling in right hand
## 10345 After day of training EE developed severe pain in both knees
## 10346 After delivering food trays on cart for sheriff's department the rolled into employee's right ankle. When he moved to get out of the way of the cart he landed on his left fankle and twisted his left knee. ()
## 10347 After delivering medications to cluster 6-3, walking from 6-3 to 6-1; stepped on something left foot turned inward - fell on right knee. ()
## 10348 After delivering meds to unit, a pt attempted to elope, EE held door close, hitting hand ()
## 10349 After delivering packages, EE closed thumb in vehicle as he was closing sliding door of deliveryvehicle.
## 10350 After disposing of dirty linen, EE shut the door on the new dumpster. The long latch of the door caught her on the lft side of face
## 10351 After doing an I&d on a minor abcess the needle slipped and stuck finger through glove ()
## 10352 After doing cpr on a client, went to get up and lower back hurt and lt hip
## 10353 After doing drilling, remove goggles and small piece of metal got into eye
## 10354 After doing evening 7:00 pm check noted swelling and pain in left side of face.
## 10355 After doing repetitive lifting while at work, the injured complained of back pain and stiffness
## 10356 After donating blood, employee passed out, fell and hit her head on the floor ()
## 10357 After drawing blood EE had laid on the patients bed the tubes began to fall off the bed and she reached across to catch them she caught her thumb
## 10358 After drawing blood EE was stuck in wrist by needle when tubing culed up as needle was removed from patient.
## 10359 After drawing blood I was placing needle in sharps dispenser, needle slipped at the flap. When I tried to retrieve I stuck my r middle finger ()
## 10360 After drawing blood from an inmate, went to place needle in sharps container, needle flipped & stuckin thumb on right hand
## 10361 After drawing blood from inmate, EE laid needle on counter with right hand, needle caught on glove of left hand and stuck the palm causing blood to flow
## 10362 After drawing blood from inmate, when the needle was removed from his hand, it pricked/stuck my lt thumb, piercing the glove and my thumb.
## 10363 After drawing blood punctured rt palm with used safety needle.
## 10364 After drawing blood she placed contaminated needlein holder on counter & turned around to pick up needle holder & glazed palm of her left hand
## 10365 After drawing blood, EE struck rt index finger while placing in box
## 10366 After dressing a co-workers thumb due to an injurty substained outside of work, I was cleaning up the scissors that I had used as I wiped the scissors down I cut my left thumb ()
## 10367 After drilling hole in ceiling, walkind down ladder, slipped and hit back against wall.
## 10368 After driving one hour lower back region was very painful.
## 10369 After dropping laundry down chute, scraped r and l forearm breaking skin when pushing bag in arms were scraped
## 10370 After dropping off mail, tripped descending steps and twisted left ankle as she tumbled down the steps
## 10371 After dropping student off at apex high school, EE was en route back to gms on hwy 64 when she was hit by another vehicle. ()
## 10372 After dusting ()
## 10373 After eating lunch at unit inspection of piedmont #3600, Ms. Yelverton went unconscious, weak, diaphoretic w/ stomach cramps, diahrrea & nausea.
## 10374 After employee cleaned restrooms with chemicals, she felt some itching on left forearm and arm was red and swollen ()
## 10375 After employee gave showers to patients, felt itching on hands and later over his whole body. ()
## 10376 After employee taught with flashover simulator, hewas cleaning up & rubbed his eye getting somethingin it.
## 10377 After employee tried for over 1yr to obtain assist. From supervisor. Subordinate threaten to kill employee. Causing detriment to employee well-being. It was a violent situation placing employee in unstable environment. ()
## 10378 After emptying urinal for patient I turned and twisted my rt knee causing sharp pain
## 10379 After entering bldg to begin shift EE slipped on awet spot coming from the janitorial closet
## 10380 After eri, EE noticed left shoulder hurting ()
## 10381 After eri, EE reports that his back is hurting ()
## 10382 After escorting a juvenile back to his room, the juvenile broke out of his room and pushed the employee's back against the wall. While restraining the juvenile, the employee was kicked in the shin causing a laceration. ()
## 10383 After escorting individual to bedroom after disrupting ongoing task, individual attempted property destruction. Employee intervened and both employee and individual went over the bed and into the floor during the physical restraint. ()
## 10384 After escorting juvenile back to his room, the juvenile punched the staff with a closed first on the left cheek and eye. ()
## 10385 After exiting building, once outside EE tripped onon a small rock, falling on left knee.
## 10386 After exiting her vehicle she slipped on ice ()
## 10387 After exiting the office to the hall, she tripped on an office mailbox on the floor while the wall wwas being painted hurting her left ankle & knee.
## 10388 After field day found two ticks. Ticks probably acquired during morning. Became ill on 6/10/09, headache, nausea, dizzies, joint pain, mid abdominal cramping. Nausea and dizziness persisting through 6/11/09 ()
## 10389 After filing & retrieving medical jacket from files over approximately an hour she bagan experiencing low back pain
## 10390 After finding a pencil with a razor blade attachedhe placed it in an envelope and then in his pocketpricked middle finger.
## 10391 After finishing a site prep burn EE began feeling weak & sick & passed out-needing help into truck
## 10392 After firing 200 rounds EE removed hearing protection and ears was ringing and hurting
## 10393 After fixing bottle washer door which has heavy weight for tension, EE felt pain in left shoulder. EE pulled on door to try to set it back on track. ()
## 10394 After foolow up to evauations of work place picked up a bag to put it over my shoulder the bag caught part way and I hyperestended my wrist
## 10395 After gathering seedpods around locust tree becameitchy & later in evening developed rash on face
## 10396 After gettin the hep b vaccination, EE started breaking out & itching. ()
## 10397 After getting bags out of fridge, EE slipped, twisted right ankle and hit face on the floor trying to control the fall
## 10398 After getting inmates id for write up, he stated he was tired of this s*** and began swinging. ()
## 10399 After getting out of her car, EE slipped and fell on ice going into building. Injuring her lower body and knees.
## 10400 After getting out of the car to report to work EE walked toward the front of his car when rt foot slipped on some ice in the parking lot
## 10401 After getting out of work truck, employee stumbled over a vehicle stop, on knees.
## 10402 After getting pepper sprayed, I had a sharp pain in my neck/head. The nurse said I was having a panic attack and the pain was the effect of the attack
## 10403 After giving a horse an injection, horse bit EE on right upper arm
## 10404 After giving care to resident pulled trash from trash can didn't know bag was leaking water as I was walking out of the room slipped and fell on floor. ()
## 10405 After giving injection of glucogon & placing syringe back in the holder, I struck the needle in my left thumb.
## 10406 After giving insulin to client; EE was closing safety needle. Needle fell out of right hand and into left thumb through glove and into skin of left thumb. ()
## 10407 After giving medications to an agitated patient she tripped over doctor's foot on the way out of the room. Injured head, knee, ankle. And elbow.
## 10408 After giving paitent ct-patient sat up quickly andee att to catch patient from falling off table injured upper back.
## 10409 After giving patient an injection, syringe slippedthrough fingers of rt hand. Dirty needle scratchedinside of rt index finger.
## 10410 After giving resident shot jewelry became tangled in her sweater other staff helping hold resident left arm but one resident grabbed my right eye & tried to pull it out. ()
## 10411 After going through nci training le felt weak and pain began to move upward
## 10412 After grapling drill in defense class. EE had soreness in both sides. Later felt pain in side.
## 10413 After half way upstairs, she fell and hit her back. ()
## 10414 After heavy usage of the telephone, developed pain in left shoulder and numbness from left shoulder down arm to left hand fingers.
## 10415 After helpin an acytive resident to breakfast, she felt pain in hand near thumb area.
## 10416 After helping another staff member lift a 300lb patient, EE strained his left lower back.
## 10417 After helping client into shower, staff felt pain in neck and arm, at home later that evening.
## 10418 After helping with an event for donor organization, was moving furniture. Picked up small book/magazine rack which slipped from hands. ()
## 10419 After holding a child during a home visit, developed a rash on both arms. Rutherford hospital
## 10420 After holding an individual in a physical restraint employee felt pain in her neck.
## 10421 After ims finish, I walk to the center of dining hall to turn out the light. I then turn to go out the door and ran into table corner. ()
## 10422 After inmate refused to walk to segregation liftedinmate & physically carried him
## 10423 After inspecting a new roadway, the employee noticed two ticks on his clothing. On June 15th he found a tick embedded on his lower right back; he removed tick. List injury as lower back ()
## 10424 After inspecting ecoflo, EE driving toward home duty station a large deer ran from median across hwy & collded with EE's vehicle.
## 10425 After instructing a student on how & where to tie up a broken driveshaft, the EE stood up & experience a sharp pain in the lower back, which lasted. ..
## 10426 After intensive keying during March 1999, EE developed muscle spasms in rt arm, shoulder, and neck with numbness in fingers
## 10427 After keying in a lot of data into the computer, ibegan to feel pain in both wrists, extending into fingers and both elbows.
## 10428 After leaving building employee stepped in hole near the sidewalk.
## 10429 After leaving work, EE started itching and had rash over entire body
## 10430 After lifting a 5 gallon pan of grits, EE had painin lower back.
## 10431 After lifting a gun case and almost dropping it she noticed that her right shoulder and under arm was hurting
## 10432 After lifting client felt pull in stomach
## 10433 After lifting client with the help of her supervsr EE felt a something pull in her back.
## 10434 After lifting computer equipment felt pain in right inner thigh area.
## 10435 After lifting heavy container of coffee from wagonee experienced pain in lower, upper back, & l. Knee
## 10436 After lifting metal saw box-EE walked over to table to turn saw on-felt sharp pain in lower back.
## 10437 After lifting patient, back started hurting
## 10438 After lifting pt on transboard r elbow began to hurt and numbness in left fingers
## 10439 After lifting tables for event setup, EE felt painin neck and back on right side.
## 10440 After loading backhoe, employee hurt back while lifting ramps onto trailer. List inujry as: lower back ()
## 10441 After loading posts into officer amos williams' vehicle, I went to sit in the passenger's seat unknowing that one of the posts was up to far. As I sat in the passenger's seat the 4x4 post hit me from behind striking me in the head. ()
## 10442 After loading weapons he sat down in chair & spider bit him on right pointer finger
## 10443 After locking door to exam room, took a step but foot did not move. Fell and landed on thumb and elbow ()
## 10444 After lowering ramp, EE attempted to flip other section of ramp out and smaller section came back and pinched his finger.
## 10445 After lunch maria tried to finish her bathrooms when she felt her legs and had trouble breathing she stopped and hand numb. ()
## 10446 After making a violator contact, EE was walking back to patrol car & stepped on a rock causing left foot to twist. Chipped bone-left ankle.
## 10447 After making repair, tripped over pipe and came down hard on left knee. ()
## 10448 After making routine fence & weight check from unit 3 to k-dorm, EE slipped & fell on the ice. Slight swelling, redness, & stiffness- knee/elbow
## 10449 After many hours of doing data entry on a "rush" project, employee experienced pain in back of neckand down right arm
## 10450 After many occasions of contact with family, EE has learned this family was infected with tuberculosis.
## 10451 After measuring a commercial motor vehicle, EE was rolling his steel measuring tape up and cut the webbing on his right hand between the ring finger and pinky. ()
## 10452 After medication administration, placing trash in trash can, lifted head and hit her nose on the corner of the shelf located directly above trash can.
## 10453 After meeting with client & mentor, realizing leftinfo at the restaurant, proceeded to make a u-turn& turned into the path of another vehicle.
## 10454 After meeting with students, EE left to go back to office. EE did not see there was a short step and hurt left leg.
## 10455 After molding patient during seclusion/restraint EE experienced back & neck pain including shaking arns
## 10456 After mopping restroom floor, the door closed on my right hand. ()
## 10457 After mopping the designated area, employee exited the area by walking backward over the floor and slipped injuring right side of body and shoulder. ()
## 10458 After mopping up the contents of a broken bottle, the employee complained of irritated eys and dizziness.
## 10459 After morning of moving patients, EE experienced pain in lt hand
## 10460 After moving a 350-400lb pt from hospital bed to treatment table, EE experienced muscular back painlow back pain.
## 10461 After moving bar reached to move it and struck back of left hand on bar
## 10462 After moving furniture all day on friday my back hurt saturday morning to the point I couldn't get out of bed. I didn't feel any pull or pain on friday while moving the furniture.
## 10463 After moving several boxes over a period of time several months-shoulders have began to hurt esp. Right shoulder
## 10464 After mowing lawns out in community, returned to building & noticed spot on right hand.
## 10465 After much lifting experienced pull and soreness in extreme lower back when walking ()
## 10466 After opeing door, EE started out the door. EE closed the door with his right hand and his middlefinger slipped into door jam. Door closed on finge
## 10467 After opening food passage door, inmate sprayed liquid feces on the employee. ()
## 10468 After opening the door, door swing back and hit top of r hand sweeping up causing injury to top of r hand. ()
## 10469 After opening wicker door, inmate threw an unknown substance on the officer ()
## 10470 After opening wicket door, the inmate squirted a bottle of an unknown liquid on the officer ()
## 10471 After operating a skill saw while being bent over, EE movd to grap a piece of lumber and back went out. Bent over for a long period of time and then sudden movement causing injury. ()
## 10472 After operating a string gas trimmer, EE began experiencing tingling, numbness and dull pain in her right wrist.
## 10473 After oral surgery, pt was being sutured, dentist stuck his own finger w/ contaminated needle
## 10474 After packing and moving boxes for a move she was experiencing pain and swelling in her finger ()
## 10475 After packing inmate's personal property he began to itch around his hands, wrists, face and his lips became numb and broke out with whelp
## 10476 After parking and walking toward bldg foot slippedoff sidewalk and lt foot twisted. Lt foot and rt shoulder
## 10477 After parking state vehicle, fire extingisher exploded-- contents went into left eye. ()
## 10478 After parking was salted amd temp dropped it became a sheet of black ice and she fell injured wrist/shoulder. Patrick wooten
## 10479 After patient had seizure, doctor wanted oral meds given. Went to test gag reflex and patient bit finger. ()
## 10480 After patient injected himself with insulin EE wasputting syringe in sharps contr. When sheath slipped back and caused a needle stick.
## 10481 After patient injected insulin in her arm. Patientstuck dirty needle in paper cup on desk top. Picked up needle to put away & stuck finger
## 10482 After paver pulled patch, driver turned around, employee (robert) was helping shovel excess asphalt off road, back into paver hopper. ()
## 10483 After pepper spray training, EE began having problems with eyes
## 10484 After pepper spray training, EE's eyes continued to burn
## 10485 After performing a restraining hold in self defense training, EE stated she felt pain in left knee.
## 10486 After performing cell search inmate assaulted a fellow officer. While assisting officer I was hit in the back of head. ()
## 10487 After performing cpr (mouth/mouth) on I/m it was determined that there was blood in the I/m's mouth ()
## 10488 After performing duties at work, employee was coming out of the shower wearing flip flops and door closed on her left bit toe causing her toenail to come up. ()
## 10489 After performing five 3 man carries of patients, right shoulder began hurting. ()
## 10490 After performing numerous echoes both arms began to hurt by the end of the day
## 10491 After performing pit firing, EE noticed a slight redness on the top of his foot which worsened over the weekend-allergic dermatitis
## 10492 After performing shop inspection, rt eye became iritated, something got in it
## 10493 After placing an inmate in wheel chair. Employee was pushing inmate up the hill to infirmary. Employee felt a pull in lower back ()
## 10494 After placing client in therapeutic hold and released client kicked EE rt side/chest
## 10495 After placing client in tub released shoulder, client hit EE in mouth caused EE to swallow her tooth
## 10496 After placing items in to be filed bin, I was walking into the file room which is a very sharp right to return, gather charts for morning home visits, my right foot caught the corner door pane where the copier cord was bundled up and caused me to lose ()
## 10497 After placing iv pump in patient I stood up & hit top o fhead under metal cabinet.
## 10498 After placing patient in lift, handle on lift has to pulled downward to sitting up in lift. Back was injured by pulling handle downward to sit up
## 10499 After placing pt in manual restraints EE and coworkers were lifting pt, EE felt back pop
## 10500 After ppd was given during the needle transfer to dispose and pull protective sleeve over needle stuck second finger tip with the used needle
## 10501 After preparing salads EE noted pain from rt middle finger to elbow/shoulder
## 10502 After prolonged data entry on computer terminal, right elbow and right wrist had constant ache in joints has been occurring off and on ever since.
## 10503 After prolonged sitting in a meeting EE had back pain upon rising from his seat. Back strain.
## 10504 After pruning bushes and during the ensuring clean up of the debris. ()
## 10505 After pt received his shot, pt began kicking/swinging, struck EE in left breast ()
## 10506 After pulling meds from med drawers and administering, felt pain in both hands including right wrist. Extreme pain in both feet from walking on concrete floors. ()
## 10507 After pursuit of suspect, having run through a wooded area, had pain in rt foot
## 10508 After putting client to bed felt pain in left side& noticed some swelling in that area
## 10509 After putting fork attachment on, employee steppedoff bobcat, foot landed on side of fork and rolledover onto ankle
## 10510 After putting gloves on to pick up paper in the flor, both hands starting itching, also continue up EE arms
## 10511 After putting on laundry, coming out of door, hit right hand on metal frame around door hurting right hand. ()
## 10512 After putting out ice melt, both right & left handwere burned by ice melt & begin to peel. Ice meltpenetrated through gloves.
## 10513 After putting resident down, EE felt like the bone in her knee moved. **rec'd signed medical authorization form from iw*
## 10514 After receiving flu shot employee's body had a reaction to where she was itching and welped up and turning red. ()
## 10515 After recertifying with shot gun EE noticed hearing loss in left ear
## 10516 After recovering from physical training that morning the onset of pain was felt during class. List injuries as: blade of right foot
## 10517 After redirecting client to wash hands, client attacked staff by biting and scratching right hand fingers. ()
## 10518 After redirection, patient returned to staff grabbing hair and pushing against wall. ()
## 10519 After refueled vehicle, EE went to shut gate and gate caught her pant legs causing her to trip, injured left shoulder and bothe hands
## 10520 After refusing order from officer to leave chapel officer hammonds pulled out oc pepper spray and inmate grabbed and pushed her. ()
## 10521 After reloading work car, employee turned to walk off the back of the work truck. Knee twisted when turning. Left knee ()
## 10522 After removing gloves noticed rash on both hands.
## 10523 After removing paint from handrail with chemical solution, employee took off gloves and noticed his hands were red and blistered.
## 10524 After removing property from cell, I walked away and the inmate spit on mefrom the shower. ()
## 10525 After repositioning a reisdent in the bed she turned to leave and ran into a box on another residentbed. Injured rt knee.
## 10526 After responding to a code 4, he was hit across left hand with a baton ()
## 10527 After responding to help desk tickets/tasks at rutherford courthouse, while returning to my vehicle in public parking lot next to courthouse, slipped on a patch of black ice, and fell backwards on my back, sustaining a blow to the back of my head. ()
## 10528 After responding to medical code in inmate's cell, blood from inmate's open wound got on his right wrist ()
## 10529 After restraing cat-cat turned around and bit EE on rt wrist.
## 10530 After restraining aggressive juvenile EE had pain in right shoulder.
## 10531 After restraining an agressive student in yard EE slipped and twisted her ankle.
## 10532 After restriction intervention, patient was physically aggressive and employee fell to ground landing on lt knee.
## 10533 After retrieving box from second shelf in freezer, pulled muscle in lower back
## 10534 After returning from firing range, discovered a tick attached to the back of his rt leg.
## 10535 After returning from transporting a student to one of wake county's schools in apex, nc and after making a right turn from laura-ducan ron onto highway 64 east approx 200 yards from laura-ducan & hwy 64 intersection the car was rear ended at 35 mp ()
## 10536 After running for nvci, r knee aggravated pain ()
## 10537 After running long arm mower on friday; got off work and about an hour later a sharp pain went through his right shoulder. List injury as: r shoulder ()
## 10538 After searching cell discovered with in 5 minutes I had large bumps on left arm
## 10539 After searching for files on top of a cabinet she tripped on the bottom drawer that was not closed hurting her left foot.
## 10540 After securing purse in desk drawer, relocked same. Logged onto computer and turned to walk away and tripped/fell over open desk drawer.
## 10541 After seeing primary care physician for pain and numbness in rt arm. Dr Diagnosed condition as median nerve dysfunction ( carpal tunnel syndrome) causing problems and inability to bend thumb and index finger. ()
## 10542 After seizure staff was assisting sick patient to bed. Pain in hip radiating to leg
## 10543 After several days of packing, both hands were swollen with numbness in arms and wrist. Condition subsided over weekend. With new work week, burning & numbness resumed. Hands began twitching with burning sensation in hands & forearms. ()
## 10544 After several days of using chainsaw to clear fallen trees after hurricane fran, irritated, inflammed and painful elbows, wrist and fingers
## 10545 After several directives from the employee, a juvenile was guided to his room by a soft hand approach. When the juvenile failed to comply, the employee physically assisted the juvenile to his room. ()
## 10546 After several episodes of pulling clients & t. R. Holds, experience pain in abodmen. Strain to abodmen
## 10547 After she was done cleaning all restrooms in the alumni building she noticed that her eyes were getting irritated. She went home after work on friday morning woke up on saturday morning and her right eye was read and both eyes were crusty. ()
## 10548 After showering resident, while dressing him, he hit me in lower back, leaving his hand print. ()
## 10549 After showering the resident EE transferred the resident with assistant back to wheelchair & twisted her r knee ()
## 10550 After sitting at her desk for some length of time, Ms. Young jumped up quickly to leave her desk chair and hit her head against the corner of the right wall in her office. The impact was great enough to cause immediate pain and a headache. ()
## 10551 After sitting extended time for employee kickoff; stood up to leave; right foot/leg had fallen asleep causing fall and twisting of right foot. ()
## 10552 After sliding a sheet of paper under the segregation door for delivery to an officer on the other side of the door, c/o jacobson stood up from a bent over position and on his way back up to standing he hit his head on the door handle of the seg door ()
## 10553 After snaking a drain, he stood up from bended kneepulling his lower back on the right side.
## 10554 After spraying a suspect with pepper spray-spray got into EE's eyes.
## 10555 After spraying inmate waited several minute to go in to put inmate in handcuff but could not catch breath
## 10556 After spraying insect killer on vinyl floor mat, to kill ants, employee slipped and fell. ()
## 10557 After stopping at intersection, state vehicle proceeded & was struck on the right front area of the passenger side by a truck.
## 10558 After stopping at intersection, state vehicle proceeded & was struck on the right front area/ passenger side.
## 10559 After strenuous fieldwork associated with seine hauls & backpack electrofishing surveys, pain began on left side of upper back/neck after repeated strenuous seine hauls. ()
## 10560 After stripping beds-EE picked up linen and noted pain in rt thumb.
## 10561 After student gave lovenox, EE was instructing student on how to engage the saftey feature. Student stuck EE with needle. Thumb
## 10562 After taking a TB shot he became short of breath & eyes swelling
## 10563 After taking care of patient with draining wound noted itching to a boil like area on abdomen.
## 10564 After taking guest speaker to newport news airport, employee had an accident with state vehicle into a concrete retainer, causing airbag to deploy.
## 10565 After taking linen from linen cart and placing them in linen closet, she felt pain in her shoulder and upper arm
## 10566 After taking morning meds, pt suddenly and unprovoke slapped EE on the right side of face ()
## 10567 After taking out trash EE jammes left ring finger on dumpster door
## 10568 After talking with front desk staff employee turned to leave and was poked in the eye by an artificial flower arrangement. Left eye ()
## 10569 After the application of being tased about 7 to 8 minutes later I begin to feek light headed and began to sweat. As I tried to take a step I passed out. Don't remember anything after until I came to about a minute later. ()
## 10570 After the floor was mopped, EE slipped a little & jerked, heard knee pop. Left knee.
## 10571 After the process of changing a flat tire for a stranded motorist, EE began feeling a burnign sensation in his lower right back.
## 10572 After the sb tournaments, was fixing the field and slammed his toe with a tamp. Tamping clay down at homeplate. Right big toe
## 10573 After toileting and changing client right elbow started hurting
## 10574 After toileting, EE sat in bedroom area felt as if arm had gone to sleep, feeling of numbness and tingling from elbow to finger tips
## 10575 After tools demonstration, putting tools in properlocations, dislocated right collar bone breast connection while putting vacuum pump on shelf
## 10576 After transporting a patient EE began to feel pulling in lower back.
## 10577 After trying to counsel an inmate; inmate started to fight officer and injury occurred.
## 10578 After turning a resident over, EE felt a pain in her lt hand and lt pinky was crooked.
## 10579 After turning on condensate tank pump, steam line gasket blew out. Escaping steam burned both legs.
## 10580 After typing all day, EE experience numbness and tingling in hand and fingers
## 10581 After unarmed self defense training left knee became swollen. Employee had difficulty walking. Unable to bend leg. Employee unsure time of injury
## 10582 After unloading trash from truck, EE jumped off tailgate and left knee gave out.
## 10583 After unsing a needle to draw an inmate's blood eestuck herself with the used needle
## 10584 After using cleaning supplies on unit, skin on arms& arms began itching and feeling like "ticks biting her" spreadng to groin & legs/skin reddened.
## 10585 After using computer EE stood and turned to run to phone and twisted knee.
## 10586 After using restroom, while adjusting clothing, raised up upper body and hit right side/top of head on toiler paper roller (old metal type). ()
## 10587 After utilizing mouse for several extended periods, EE noticed tenderness where wrist rests on wrist pad.
## 10588 After vehicle chase defendant juped & ran in woodswhile fighting with defendant, EE received cuts tohands & knees, bruised knee
## 10589 After venipuncture on inmate, EE was removing needle from vacutainer and stuck left index finger
## 10590 After waiting in lft turn lane for light to turn green dcc began motion with flow of traffic. Car instraight lane turned, hitting passenger side of dc
## 10591 After walking through the fabrication area of sign plant, his right eye became irritated. ()
## 10592 After washing hands in the bathroom sink I slipped while walking to the paper towel dispenser on some unknown material ()
## 10593 After washing his hands, his feet went out from under him & he hit his head on the side of the toilet.
## 10594 After wearing gloves and hand sweating, employee's hands started to itch and broke out. ()
## 10595 After work (it was raining heavily), employee attempted to open car door, foot slipped and she hit head against side of car
## 10596 After working outside, employee felt something crawling on her neck/chest area, brushed and off and felt a sting.
## 10597 After working shift, went home to sleep, att to get out of bed, felt sharp pain in lower back, pain increased when moving up and down
## 10598 After working with metal in shop something fell in eye from clothing or body. ()
## 10599 After wrkin on unit road squad, he found a tick on him next morning in lower abdomen
## 10600 Agent heinrich became overheated and dehydrated during outdoor firearms training, outdoor temperature was 98 degrees ()
## 10601 Agent involved in marijuana eradication program. Got severe case of poison ivy.
## 10602 Agent scronce slipped in the grass and fell forward during firearms training at the crossnore range. She said that both knees and her lower back felt sore. ()
## 10603 Agent was investigating suspicious activity and the suspect ran at him striking agent on his left side of head. Corthell attempted to arrest suspect and suspect fought him. Suspect broke free and corthell and suspect fell on ice. Suspect got up and ran ()
## 10604 Agent was participating in special response team tactical training. When exiting the rear of a transport vehicle felt a sharp pain in his lower abdomen area and a lump appeared in that region. ()
## 10605 Agent was working a fire scene and something flew into his left eye. ()
## 10606 Agg. Patient was fighting, grabbed arm & punched floor & against wall hurting upper rt side of back
## 10607 Aggitated patient going towards charge nurse when this employee placed her hand on patient's wheelchair to stop him & patient scratched employee on forearm. ()
## 10608 Aggitated pt pushed EE, causing EE to fall over chair. Injured lt knee
## 10609 Aggitated pt was throwing items at EE, then pt charged at EE, something popped in EE's right calf ()
## 10610 Aggitated pt, grabbed EE's left arm scratching it ()
## 10611 Aggravated a previous injury to right knee during cpi training ()
## 10612 Aggravated juvenile refused to go to his room, employee was placing him in his room. *** sx 1/11/06 *****
## 10613 Aggresive attitde of patient caused EE to twist left hip
## 10614 Aggresive inmate with hands on use of force-during a use of force on an inmate. Employee phillp boney scraped his hands and was exposed to the inmates blood. ()
## 10615 Aggresive patient bit EE on back & punched in her mouth & nose with fist.
## 10616 Aggresive patient throwing furniture hit employee in back and head with chair
## 10617 Aggresive resident was trying to therapeatically walk, resident raised leg and went to floor causinee to be pulled to ground.
## 10618 Aggressive client caused cna to fall backwards andhit back on rim of ashe tray stand.
## 10619 Aggressive client fell on right arm.
## 10620 Aggressive client grabbed staff and scratched his chest. ()
## 10621 Aggressive client hit EE several times on left wrist
## 10622 Aggressive client kicked EE in face when he bent down to pick up keys
## 10623 Aggressive client kicked EE on rt thumb, arm and leg.
## 10624 Aggressive client pushed EE into door & against wall & cabinet. Lower back. **attorney**
## 10625 Aggressive patient attacked EE
## 10626 Aggressive patient attacked EE--no reason. Left hand/fingers, forehead.
## 10627 Aggressive patient kicked EE lt-thumb causing it to bend back popped 2-3x EE unable to move thumb
## 10628 Aggressive patient started kicking at staff hitting staff in lower limbs numerous times. ()
## 10629 Aggressive pt attacked EE, hitting EE in left cheek/eye ()
## 10630 Aggressive pt attacked EE, kicking her to the floor ()
## 10631 Aggressive pt attacked co-worker, EE tried to assist, pt scratched EE on right hand ()
## 10632 Aggressive pt bit, kicked & hit staff. Pt placed in Mr. EE re-injured right shoulder.
## 10633 Aggressive pt hit EE in face multiple times ()
## 10634 Aggressive pt hit EE in the left eye ()
## 10635 Aggressive pt lifted table and tried to throw at EE. EE blocked throw, pt turned table over againstee. Injured shoulder/neck/back.
## 10636 Aggressive pt on hall, pt was hitting wall with fist, EE tried to stopped pt, pt knocked EE to floor 2x ()
## 10637 Aggressive pt removed from restraints as ordered by treating doctor. Patient continued to be defiant and aggressive. Pt attacked staff/punch
## 10638 Aggressive pt swung at EE, Mr Used, injury to right chest, shoulder, arm
## 10639 Aggressive resident attacked EE pulling hair several times and grabbing shoulder. Strain of neck and shoulders
## 10640 Aggressive resident running down hall, hit EE knocking her into lockers & floor
## 10641 Aggressive resident-jerking/kicking and falling to ground-emp. Held resident to support-resident jerked l. Arm multiple times. ()
## 10642 Aggressive student was being restrained physicallyhit EE in throat
## 10643 Aggressive student-struck EE several times includebite/scratch wounds on hand/arms/neck/face
## 10644 Aggrevated shoulder injury during cpr training ()
## 10645 Agitated patient fell in coffee thrown by patient
## 10646 Agitated patient grabbed EE glasses and then scratched EE on the face
## 10647 Agitated patient grabbed EE hair pulling head forward. Pain on rt side of neck.
## 10648 Agitated patient grabbed EE's right hand & dug fingernails on top of EE's right hand. ()
## 10649 Agitated patient hit her in the nose
## 10650 Agitated patient jerked and pulled employee's leftarm
## 10651 Agitated patient rammed wheelchair into employee & bit employee's left forearm. ()
## 10652 Agitated patient swung at staff when manuel restraints were utilized. Staff fell to floor rupture of acl graft, left knee
## 10653 Agitated patient threw scalding coffee on EE.
## 10654 Agitated patient was fighting when EE attempted tohold her. Left neck and shoulder swollen
## 10655 Agitated pt approached EE swinging fist, EE blocked hit with right hand, causing injury to right ring finger
## 10656 Agitated pt attacked EE striking her on the right side. Pt struck EE in rib cage.
## 10657 Agitated pt grabbed staff by necklace jerking neck.
## 10658 Agitated pt hit EE in back of the neck with fist.
## 10659 Agitated pt hit employee in face causing laceration under left eye.
## 10660 Agitated pt kicked EE in left upper abdomen
## 10661 Agitated pt kicked EE on right wrist.
## 10662 Agitated pt lunged at EE, grabbed EE's right wrist and twisted it ()
## 10663 Agitated pt rolled over staff's left foot with wheelchair
## 10664 Agitated pt slamming doors, disruptive. EE attempted to catch door pt slammed door on EE rt finger laceration right index finger 1st joint
## 10665 Agitated pt swung at EE. Cna placed in nci hold pt combative. All parties fell to floor. EE landedon rt knee & then fell back onto bottom.
## 10666 Agitated resident came into break room and hit EE on right shoulder. Rt upper arm shoulder area.
## 10667 Agitated resident grabbed employee's left wrist and twisted.
## 10668 Agitated resident hit EE on right side of the facestriking eyeglasses.
## 10669 Agnes evans was helping clean out a storage closet. A large tv was sitting on the top shelf of a cart (mobile). Agnes touched the cart that the tv was situated on to move the cart in order to clean a shelf that was located against the wall. Before the ()
## 10670 Agress kitty qas loose in er. She grabbed the kitty but there was no carrier to place it in so kitty proceeded to bite her. ()
## 10671 Agressive patient grabbed table top, swung it and hit EE on left thumb.
## 10672 Agressive patient pulled EE's thumb back
## 10673 Agressive pt started swinging fist at staff. EE manually restraining--pt & EE fell to floor, EE hurt left small toe--hit on chair.
## 10674 Agressive resident grabbed EE hair. While EE triedto free resident's hands, resident bit EE on her right hand. 4th right finger.
## 10675 Agrressive patient bit EE on right thigh, pulled her hair & kicked her in lower back
## 10676 Aiding equipment operator on a wildfire. While riding in cab of tractor, hit a snag and a small portion of snag broke striking EE in rt lower leg.
## 10677 Air conditioning was out in kitchen, employee now has rash ()
## 10678 Air from anatomy lab and dead body cooler comes through vents. Constant exposure. ()
## 10679 Air handling failure doing experiments because of power outage. Entered the facility to restart air handling system. ()
## 10680 Air jet blew dust underneath EE glasses causing irratation to left eye
## 10681 Airborn object in eye from foreign material machine while grading peanuts. ()
## 10682 Ais kneeling during firearms training; attempting to stand when something popped in both lower back & left knee. ()
## 10683 Aisle caging wire-mesh panel fell on head and pushed neck down causing it to fall approx. 3' andhit employee on the head
## 10684 Alarm testing occured during dress time while EE was in her dressroom. Injury in right ear due to the noise.
## 10685 Alex was rotating a sample manipulator when his hand came into accidental contact with an energized conductor. ()
## 10686 Alicia zephir stated-- bent over to pick up highlighter, fell out of chair, caught self with right hand and it jammed all the way to neck, right after the incident, was numb and now cannot turn neck. ()
## 10687 Alignment of optical train in raman system and exposure to different distance.
## 10688 All doors on inmates cells on b-pod opened. Had altercation with inmate that would not return to cell. Inmate hit me in my side. ()
## 10689 All furniture was move from old office to new but was not place properly therefore I move to where I thought it would be appropriate
## 10690 All men came down stairwell at the same time and some fell and it started a domino effect and EE was knocked down landing on shoulder.
## 10691 All of sudden while pulling a 300lbs concrete grinder towards him, he felt something tear in his right foot.
## 10692 All staff was assisting in move of bookstore by setting up and restocking. Employee was handling a fixture unit and was not aware of the glass shelving. Shelving fell on her foot and shattered. ()
## 10693 All staff were preparing for our monthly staff meeting. I was walking towards the front of the room, attempting to maneuver around other staff and chairs/tables. My shoe caught the frame at the bottom of the chair and I fell. Hit shoulder and knee. ()
## 10694 All the assigned duties I have been given on gero-pushing/pulling wheelchairs, gerichairs, changing client clothing, changing pampers -strain to neck-
## 10695 Alledge pain in right arm shoulder, cevical spine & rt wrist. -- this claim is combined with 2 otherrptv motion claims #04071723 & 01058473
## 10696 Alledged injury began in 2007, from improper and poor ergonomics at her workstation. Alleged injury occured from repetitive use for a long period of time. ()
## 10697 Alledged inmate fell against officers left leg as he assisted another staff member .
## 10698 Alledges cleaning bathroom floor with bathroom scrubber equipment almost slipped grabbed equipment and was struck by handle in the stomach.
## 10699 Alledges pulling a wardrobe on a furniture dolly and tripped over a stump. The wardrobe fell from the furniture dolly striking him in the right knee.
## 10700 Alledges standing on broken piece of concrete, it rolled & he fell into van ()
## 10701 Alledges trying to control unruly inmate ()
## 10702 Alleged insect bite to r shoulder on 9/12/07, states it got worse as days passed. Incident was not reported until 9/17/07.
## 10703 Alleged physical assault. EE was talking to another EE outside of job
## 10704 Alleged that he cut his thumb on his left hand when getting inmate shaving razors together in preparation for issuance
## 10705 Alleged that he was sprayed in the face with oc pepper spray in training
## 10706 Alleged tick bite. Upper arm skin irritation
## 10707 Alleged trama to ears due to noise exposure ()
## 10708 Alleged work-related depression resulting in death
## 10709 Allegeds while cleaning the lobby area of garinger building she was bitten by ants.
## 10710 Alleges I/m messing with foot rest of wheel chair and hit foot ()
## 10711 Alleges I/m resisted during use of force kicking, punching me. Inmate then bit me on lt forearm ()
## 10712 Alleges I/m threw some unknown substance in face, left eye mouth and clothing/glasses ()
## 10713 Alleges a shelf flipped and fell on right ankle ()
## 10714 Alleges accidently struck in knee while in training by co worker ()
## 10715 Alleges after administering an allergy shot; she was disposing of the needle the needle came off the syringe; she was stuck in her left index finger.
## 10716 Alleges after completing training had pain in both her knees ()
## 10717 Alleges after exiting an electrical manhole, a malfunctioning high-voltage oil switch was re-energized and exploded; burning his face and arms.
## 10718 Alleges after framing & hanging a door he began picking up tools when he stepped on plug end of drop cord. Cord rolled causing him to loose balanc
## 10719 Alleges after handcuffing a hostile subject and assisting him into the patrol car; the arrestee spit in his face and right eye.
## 10720 Alleges after loading traffic cones on a truck the cones fell off the truck and hit his nose
## 10721 Alleges after removing the old refrigerator and moving the replacement refrigerator to the apartment he hurt his back. ()
## 10722 Alleges aligning a laser; not realizing the laser was on she stared at the light while not wearing protective glasses and later felt pain in both eyes
## 10723 Alleges assembling picnic talbes; he and a co-worker was lifting a table, it slipped; he reached for it and felt a pain in his left shoulder.
## 10724 Alleges assisting a co-worker who administered a shot; she reached for a cotton ball the co-worker turned, the needle scratched her right ring finger.
## 10725 Alleges assisting a student athlete picking dumbbells; a dumbbell fell on his ankle and as he walked away he twisted his ankle.
## 10726 Alleges assisting an officer handcuffing a male subject resisting arrest; she pushed putting his hands together and later felt pain in her right wrist
## 10727 Alleges assisting handcuffed I/m to floor. Felt sharp pain in lower back ()
## 10728 Alleges assisting in a self-defense demonstration; while standing over another officer her knee buckled and she fell back on her buttocks hurting her right knee. ()
## 10729 Alleges assisting patient in chair. Unspecified injuries and body parts. ()
## 10730 Alleges assisting staff to restrain inmate ()
## 10731 Alleges assiting to restrain an assaultive & combative inmate ()
## 10732 Alleges attempting to clean phone & he was bitten by a spider ()
## 10733 Alleges attempting to gain control of I/m and struck floor with right hand ()
## 10734 Alleges attempting to gain control of I/m lost balance fell on rt knee ()
## 10735 Alleges attempting to lift files from lower shelf of filing cabinet she felt a pop in her right shoulder with immediate onset of pain. ()
## 10736 Alleges attempting to use a pocket knife to open a box to investigate the contents; while trying to fully open a pocket knife he cut his right finger.
## 10737 Alleges attempting to walk down tower 9 stairs & slipped & fell down 4 to 5 steps hitting buttocks, leg, back & arm
## 10738 Alleges attending a meeting; her left foot hit a step that she didn't see and she fell forward landing on her knees and hurt her right ankle.
## 10739 Alleges avascular necrosis of the rt fermoral head f/ performance of wrk duties
## 10740 Alleges being in a conversation with her supervisor when supervisor grabbed her wrist and pulled her downward
## 10741 Alleges being in foot pursuit of a suspect, while running he slipped on wet leaves and tripped over a fall tree.
## 10742 Alleges being on the 3rd rung of a 6ft ladder, holding a 5 lb box when he felt a slight burning in his lower back.
## 10743 Alleges bending over barrel & felt a pop in right side lower back pain shooting down rt leg
## 10744 Alleges bending over to clean a toilet hurting herback.
## 10745 Alleges bending over to pick up a box from the floor; as she stood up the cabinet door was open and she hit her head on tthe corner.
## 10746 Alleges bending to pick up aerobic mats; he later felt pain in his low back.
## 10747 Alleges breaking up fight & hands was cut ()
## 10748 Alleges breaking up rocks with a sledgehammer; with this bare hand he burshed off the area for a closer look and cut his right ring finger.
## 10749 Alleges broke glass to get out the cut down knife ()
## 10750 Alleges carry food tray & 2 liter bottle and tripped & fell ()
## 10751 Alleges carrying mail and heavy packages; as she walked down the stairs she missed the last step and fell landing on her right hip.
## 10752 Alleges cart went down slope fast tried to catch it and twisted ankle ()
## 10753 Alleges caught between door ()
## 10754 Alleges chasing a trespass suspect, he jumped down from a loading dock/retaining wall and hurt his right knee
## 10755 Alleges cleaing the door window and as her hand wiped near the wooden frame a splinter got caught deep in her left pinky finger.
## 10756 Alleges cleaning a cooling tower; he slipped and fell forward, downward landing on his hands hurting his right wrist.
## 10757 Alleges cleaning a table with windex squeezed the trigger to spray windex on the table and sprayed the windex in eyes
## 10758 Alleges cleaning computer desks & table tops bumped leg of computer desks hurting her ankle
## 10759 Alleges cleaning lucas room-lost footing in water on floor and strained left knee and rt wrist.
## 10760 Alleges cleaning out a pit under the in-house walk off grid near the food court; as he tried to step out of the pit he turned his left ankle.
## 10761 Alleges cleaning the bottom of a storage room doorand hit her elbow on the door.
## 10762 Alleges cleaning the lab and emptying the trash she tried to stop the door from slamming with her hand while exiting the room but the door slammed
## 10763 Alleges climbing up a ladder to the fourth rung the ladder kicked out & he lost his balance & fellhurting his back.
## 10764 Alleges coming down steps & rt ankle gave out. Fell hurt rt leg, lower rt hip and rt ankle ()
## 10765 Alleges coming down steps came down hard on lt foot pain shot through lt knee ()
## 10766 Alleges conducting traning and while in crouched position twisted left knee when attempting to swing open a door
## 10767 Alleges constructing a wooden form to poor concrete for a research project; he tripped on a brace and fell on another brace hurting his left shoulder.
## 10768 Alleges cutting caulk around a shutter bolt with an utility knife; the knife got caught on the bolt, then it slipped cutting his left thumb.
## 10769 Alleges cutting gras & weed eating & was bit by an insect ()
## 10770 Alleges cutting keys and later felt a chip in his left eye ()
## 10771 Alleges depression, ptsd, add, anxiety ()
## 10772 Alleges descending steps in route back to her office after lunch; she was wearing open toe, wedged heel shoes when she turned her right ankle.
## 10773 Alleges descending the stairs; he grabbed the rail, jumped the last few stairs and fell landing on the floor hurting his left side shoulder.
## 10774 Alleges directing traffic after a basketball game; a driver turned reight instead of left as directed traffic egress hitting him and hurting his legs
## 10775 Alleges doing paperwork, and fell out of broken chair ()
## 10776 Alleges driving a utility cart to the wachovia field house; while driving, he fell out the door onto the parking lot hurting his left shoulder.
## 10777 Alleges driving an ez-go (utility) when another vehicle passed her on the left causing her to bounce up hurting her back, left arm and left fingers.
## 10778 Alleges driving an ez-go to the facilities mgmt bldg in the rain. He struck a yellow parking pole hitting his chest on the steering wheel and scratching his right leg; days later while bending he felt pain in his chest. ()
## 10779 Alleges driving back to university after completinan assessment, while stop at traffic light, she was rearended by a truck.
## 10780 Alleges driving parking services vehicle and whil e being stopped at a stop sign she was struck frombehind by another motorist.
## 10781 Alleges dropping and breaking a glass; she picked up the pieces of broken glass with her hand and cut her right index finger.
## 10782 Alleges during use of force left ankle was injured ()
## 10783 Alleges dust mopping the floor, the rubber sole of his shoe caught the floor and the stumbled twisting his right knee.
## 10784 Alleges dust/concrete particles-breathing in concrete dust ()
## 10785 Alleges emptying trash she smelled a strong chemical causing eye irritations and difficulty breathing
## 10786 Alleges entering the building walked toward the lucas room near the recycling bin; she slipped and fell hurting her left foot and right knee.
## 10787 Alleges entering the second floor entrance of cone ctr, she slipped in a puddle of water hurting her back.
## 10788 Alleges escorting inmate to cell and was head butted in eye ()
## 10789 Alleges escorting resisting inmate lost balance when imate fell twisting back ()
## 10790 Alleges excessive kyboarding
## 10791 Alleges exiting a patrol car; he put his left foot out, with his right foot planted he pivoted to exit the car. Later felt pain in his right knee.
## 10792 Alleges exiting a restroom; as he walked through the doorway there was a difference in the floor level causing him to roll his left ankle.
## 10793 Alleges exiting door & door closed on her squeezeing both arms& her side ()
## 10794 Alleges exiting out of stairwell on 1st slipped on water fell, striking upper body & head on steps ()
## 10795 Alleges exiting the trashroom, EE tripped on the floor ledge/lip and fell landing on both her knees
## 10796 Alleges exposed to inmates blood during use of force ()
## 10797 Alleges falling on way back to the e-z go and fell fracturing two ribs on the rt side.
## 10798 Alleges finishing drywall; after completion he was cleaning the finishing knife and scraped the end of his left index finger.
## 10799 Alleges first landing on steps, no lighting missed last 2-3 steps fell on left ankle and knee onto side on top of wet floor sign. ()
## 10800 Alleges folding the legs of a plastic table; he arm curled the table and lifted it onto the cart alone. The next day his back felt sore.
## 10801 Alleges folding up a hand truck after use; the hand truck caught, pinched and cut a flap of skin on her left middle finger.
## 10802 Alleges folding up a hinged table to load it on the truck when the table folded together and caught his left hand.
## 10803 Alleges gathering trash bags, putting them on ez-goto discard in the dumpster, she was putting a bag of trash in the dumpster and later felt a pain
## 10804 Alleges getting down off forklift and felt pain in his lower back, groin and right leg. ()
## 10805 Alleges getting supplies and as he was picking up 5 gallons of floor was he strained his chest muscles.
## 10806 Alleges going down stairs milled last 2 steps landed on left side and shoulder ()
## 10807 Alleges going to the landfill; they struck an unmarked speed bump throwing him up, his right hand hit the window handle and he landed on his wrist.
## 10808 Alleges going up stairs and bumped knee on wall ()
## 10809 Alleges grinding metal using a grinding wheel, a piece of grinded metal few out of the grinding wheel and puntured his left forearm.
## 10810 Alleges handcuffing a resistant inmate and struck knee on floor ()
## 10811 Alleges handling animal feed; later his left eye started to hurt.
## 10812 Alleges having a heated email exchange w/ manager; he got light headed and experienced increased blood pressure.
## 10813 Alleges he and a co-worker were loading a pressure washer, his co-worker lost his grip and the weight shifted to him causing him to hurt his back.
## 10814 Alleges he has handing/passing a mattress up to 11th floor, no one was there to get it, mattress fell, EE fell back landing on lt wrist
## 10815 Alleges he stepped in a concredt hole while walking behind holhouser hall; his boot got stuck and as he pulled it out he twisted his right knee.
## 10816 Alleges he was climbing on a ladder to doa roof inspection a dog bit him on his lt leg behind his knee.
## 10817 Alleges he was doing training & he & another ofcr were practicing bent wrist take down & he was trying to get back up & his knee hit other ofcr..
## 10818 Alleges he was entering id block when control roomofficer closed bar door, striking injured employee
## 10819 Alleges he was escorting a nurse & inmate sprayed liquid in his face ()
## 10820 Alleges he was escorting an inmate with food for pert team to the front gate when he stepped in a crack on the sidewalk. He was walking beside cart
## 10821 Alleges he was helping a handcuffed arrest subject into the patrol car; the arrestee spit on his left arm.
## 10822 Alleges he was in training simulating placing an inmate back in his cell when his rt foot got caughbetween 2 mats and twisted hit rt knee.
## 10823 Alleges he was standing between two bldgs while a malfunctioning oil switch exploded when re-energized; thrown onto a retaining wall hitting his head.
## 10824 Alleges hit head on arm of spotlight on tower #2 ()
## 10825 Alleges holding a ladder outside a manhole for exiting co-workers; a malfunctioning oilswitch was re-energized and exploded; burning his face and arms
## 10826 Alleges hurt back pulling a stretcher ()
## 10827 Alleges hurting back while filing
## 10828 Alleges injured during a response to a emergency situation ()
## 10829 Alleges injured durn anticipated use of force ()
## 10830 Alleges inmate became combative and assautive with staff ()
## 10831 Alleges inmate pushed her into the fence ()
## 10832 Alleges inmate reach out of cage and hit me ()
## 10833 Alleges inmate struck staff on wrist ()
## 10834 Alleges inmate threw a cup of feces in facial area ()
## 10835 Alleges installing new electrical lines and lock nuts onto a junction box; he contacted a sharp edge on the junctioin box cutting his right hand.
## 10836 Alleges installing signs in parking lot 16. Alleges he was bitten several time on his hands by ants
## 10837 Alleges installing signs in parking lot; ants crawled onto his shoe and bit his left ankle causing swelling.
## 10838 Alleges installing/moving furniture; while cutting the metal strap from a box with a pocket knife, the metal strap snapped back cutting his right hand
## 10839 Alleges jogging during pt and next day noticed minor foot discomfort
## 10840 Alleges jumping into the air during her part in a skit; she tripped over her foot as her shoes were not tied tight and she twisted her left ankle.
## 10841 Alleges knee bent backwards during training he & another officer fell ()
## 10842 Alleges leaving the room to go to a meeting; she twisted her foot, fell into the copier inj. Rt ankle, knee, head, waist. Cracked cuboid bone, rt foot
## 10843 Alleges leaving work, walking down the stairs, heelof shoe got caught in her skirt causing her to faland hurt her left shine and lower leg.
## 10844 Alleges left knee gave out while trying to sit down in chair & fell ()
## 10845 Alleges leg slide to right, lost balance & lt kneehit the floor, left hand inside got scuffed up from hitting the floor
## 10846 Alleges lifted off the ground & head hit the mat during a training excerise ()
## 10847 Alleges lifting a fold up seat to enter a parking services vehicle; she dropped the seat on her foot hurting her left great toe.
## 10848 Alleges lifting a non-mobile equipment rack, with computers on it, sliding it two feet to the side; a day later he felt pain in his right shoulder.
## 10849 Alleges lifting a podium onto a two foot high stage alone and he bruised his ribs.
## 10850 Alleges lifting a press row taable and the next day the felt pain in his right shoulder and lower back.
## 10851 Alleges lifting a trash can up from the concrete holder when the can slipped catching his right pinky finger between the trash can and the holder.
## 10852 Alleges lifting and moving a file box full of files when she felt a pull in her lower back. ()
## 10853 Alleges lifting and moving a hospital bed; his left hand touched a sharp edge of the metal bed rail cutting his left pinky finger.
## 10854 Alleges lifting and moving computer equipement from atkins l42 to atkins 123 and pulling a musclein his lower back.
## 10855 Alleges lifting and moving metal paint stands from one side of room to the other when he strained his left shoulder. ()
## 10856 Alleges lifting and moving/relocating a door alone to the shop area to replace the glass; he later felt pain in his lower back.
## 10857 Alleges lifting and picking flat tubs with envelopes and heavy envelopes she strained her right wrist and hand. ()
## 10858 Alleges lifting and sorting mail; causing pain in her left shoulder, neck and between her shoulders.
## 10859 Alleges lifting arm to point at co-worker and felt pain in back.
## 10860 Alleges lifting bags of bedding and animal feed tofill bends/barrels. He later felt pain in his lower back.
## 10861 Alleges lifting battery booster up to the hood of a truck to jump the truck when he felt something pull in his right shoulder.
## 10862 Alleges lifting glass panels into dumpsters; he later felt pain in his lower back.
## 10863 Alleges lifting parcels from mail hampers and moving containers of mail
## 10864 Alleges lifting rod maching alone to load onto truck to return it to the shop straining his back; he later felt pain in his lower back.
## 10865 Alleges lifting tables and chairs and doing room set ups throughout his shift and felt pain in his lower back.
## 10866 Alleges lifting various items during relocation from old shop to building j inflamming the ligament of his right wrist.
## 10867 Alleges making rounds - slipped & fell on bottom stair on right leg ()
## 10868 Alleges missed step on stairwell & fell backwards on back & slide down stairs ()
## 10869 Alleges months of stressful work conditions and circumstnces out of her control have left her psychologically unable to operate at work.
## 10870 Alleges mopping ladies rest room and slipped on floor-attempted to break her fall and her eyeglasses struck side of face causing cut
## 10871 Alleges mopping water, slipped hit her head, right side on step ()
## 10872 Alleges moved patient down stairs went home felt pain in lower back ()
## 10873 Alleges moving a box of surplus computer speakers; the box slipped from his hand and landed on his right foot.
## 10874 Alleges moving a box that turned out to be heavy hurting her back; later she tried lifting the samebox using her foot; the box fell on her left foot.
## 10875 Alleges moving a couch to load onto a truck for reupholstering; he planted his feet twisting to movethe couch and a pop occurred in his groin muscle.
## 10876 Alleges moving a desk from a student room; he lifted the desk to place it on a dolly and strained his back.
## 10877 Alleges moving a desk; the desk got caught on the end of the bed and when it was freed it dropped on his feet hurting both of his great toes.
## 10878 Alleges moving a manlift the scene room. It tussled with the lift as ittried to tip at the door threshold. Later felt pain in his back and right hip.
## 10879 Alleges moving a sprinker when while watering the college of education lawn; he slipped on wet grass landing on his buttock and later felt back pain.
## 10880 Alleges moving a surplus desk that was missing a leg. When the desk was placed down, the corner without a leg struck his rt great toe.
## 10881 Alleges moving a toilet while not wearing gloves; his hand brushed against a chip on the side of the toilet cutting his right thumb.
## 10882 Alleges moving a wooden pallet; as he tried to maneuver the pallet for a better grip a corner slipped and fell landing on his foot hurting his toe.
## 10883 Alleges moving artificial tree plants across room in salon after commencement he must have turned/ twisted wrong later felt pain in his back.
## 10884 Alleges moving boxes alone on sunday, a non-workday, to transfer to another building; she lifted a heavy box into her car and hurt her right elbow.
## 10885 Alleges moving carts & cut hand ()
## 10886 Alleges moving furniture in phase v when back pressure was applied to right wrist
## 10887 Alleges moving in a wheelbarrow the wheelbarrow sid towards a vehicle he grabbed the wheelbarrow to avoid it hitting the vehicle felt pain in back
## 10888 Alleges moving linen bags when he felt pain in hisleft shoulder
## 10889 Alleges moving some mulch and lying down on the mulch while trying to rethread piping together; later his back was red and very itchy.
## 10890 Alleges moving tables from the food court area in preparation for a basketball game; he later felt pain in his lower back and groin.
## 10891 Alleges moving tables outside the building for a event; a yellow jacket bee stung him on the left index finger
## 10892 Alleges moving woodmaking equipment on a dolly; the band saw fell off and the tried to lift it from the floor alone and hurt his lower back.
## 10893 Alleges moving/lifting and unpacking boxes.
## 10894 Alleges on back patio washing out trash can. Emptied water, stepped off curb and twisted ankle. Sprained left ankle
## 10895 Alleges opeing the door of her office when a wooden file folder and some journals fell off the top of the bookcase striking her head and left wrist.
## 10896 Alleges opening a cabinet door in the kitchen area to obtain sugar for a cup of tea.
## 10897 Alleges ounting a computer to an lcd; while latching and sliding the pc in place on the back of the lcd his finger was pinched.
## 10898 Alleges packing and taping boxes; using a putty knife/paint scraper to cut the tape, he accidently stabbed himself in his left arm cutting his forearm
## 10899 Alleges painting in enclosed area with no ventilation
## 10900 Alleges painting the electric chase under the front end of table. As he attempted to reach aroundthe table ? The paint bucket, his back popped.
## 10901 Alleges parking her car and walking down the hill to the college of education building; she slipped and fell hurting her left knee and left ankle.
## 10902 Alleges participating in a rafting team; he was partially thrown out of the raft and his left leg was caught under the seat hurting his left knee.
## 10903 Alleges participating in firearms training and complained of redness and burning on face, neck & ears
## 10904 Alleges participating in meeting with his supervisor
## 10905 Alleges passed out in control booth due to heat & exterminator fumes ()
## 10906 Alleges patrolling a parking lot and was stung by a bee on the lower leg (lower calf)
## 10907 Alleges performing cleaning duties using latex gloves, she noticed blisters on her top left hand and arm.
## 10908 Alleges performing preventative maintenance on an emergency generator; a hose ruptured releasing steam that burned his right forearm.
## 10909 Alleges performing tactics when knee & ankle got twisted when I went down, felt several pops & severe pain in left knee
## 10910 Alleges picking up cardbaord from under a stairwell to use to cover the floor for a project; he raised up, hit his head on the stairwell causing a cut
## 10911 Alleges picking up trash and was stung by a bee on his left ring finger.
## 10912 Alleges pitching during softball batting practice; the batter hit the ball and the ball struck employee in the right shin.
## 10913 Alleges possible exposure to blood when droplets of water fell on EE from an individual washing blood off face from nose bleed.
## 10914 Alleges pouring chemicals in a floor machine; he then noticed the right side of his mouth/lips begin to swell
## 10915 Alleges preparing to heat water in a coffee pot, when a box of mini spiral notebooks fell down from atop a cabinet above the counter and hit her on the left side of her head. ()
## 10916 Alleges preparing to load surplus equipment onto a truck; he raised the truck door and it sprung down hitting him on the crown of his head.
## 10917 Alleges preparing to sit in his chair; he missed the chair and landed on the floor hurting his lower back.
## 10918 Alleges preparing to sit in his chair; he tripped, missed the chair and fell hurting his neck and back.
## 10919 Alleges pulling a table cart with tables; when he tried to turn the cart, it began to flip and as he tried to catch it he hurt his back.
## 10920 Alleges pulling a table not realizing the table top was broken; the top fell off hitting her left lower leg.
## 10921 Alleges pulling out day lillies and disturbed an underground bee nest; the bees swarmed and he was stung on his right arm and left hand.
## 10922 Alleges pulling parts out of computer in preparat-on for surplus, as he reached into a computer a sharp edge inside computer cut his right middle fi
## 10923 Alleges pulling patient seated in wheelchair to get in exam room; she tried to slide the chair sideways to get around corner and felt a pull in her upper left arm. ()
## 10924 Alleges pulling weeds without gloves; he touched an ant mound that he didn't see and was bitten by ants on his left hand.
## 10925 Alleges pursuing a suspect that was fleeing and resisting arrest; when he tackled the suspect to facilitate arrest he strained his right knee.
## 10926 Alleges pushing a chair cart into place beside another cart, the cart bounced back onto his right leg-shin
## 10927 Alleges pushing a drywall cart, while wearing steel toe boots, and rolled the cart wheel over his left small toe.
## 10928 Alleges pushing a loaded cart to and from other locations; the next day a blood vessel in her rt eye burst and she felt pain in her rt rotator cuff.
## 10929 Alleges pushing chair cart from a flat floor surface to carpeted area when the cart got stuck he pushed it hard, the cart tilt & fell on lt ankle
## 10930 Alleges pushing door & finger got caught ()
## 10931 Alleges pushing furniture and vacuuming and later felt pain in her left arm. Also indicated swallowing is very painful. ()
## 10932 Alleges pushing on door to attempt to close ()
## 10933 Alleges pushing/rolling a trash dumpster with four co-workers; she slipped on ice and fell hurting the left hip.
## 10934 Alleges putting stripper down on the floor & slipped ()
## 10935 Alleges rash on lip several days after weed eatinglater developed into open wound.
## 10936 Alleges reaching through the metal security cover to retrieve change; a peice of metal barb, that was sticking up, puntured his right hand and wrist.
## 10937 Alleges reaching under a computer; he reached underneath the computer and slide his hand on the junction box cutting his right pinky finger.
## 10938 Alleges recieved left bite from inmate on left wrist ()
## 10939 Alleges rehanging a mirror after painting a room; his right hand slid down a sharp edge of the mirror cutting his 3rd right finger.
## 10940 Alleges relocating chairs & while pulling down trailer door he strained his lt shoulder and upper back.
## 10941 Alleges removing a sink for replacement; while removing a sink he was lifting and tugging alone and later felt pain in his back.
## 10942 Alleges removing and loading wood onto a john deere gator; caught his hand between a piece of wood and the trailor bed hurting his left middle finger
## 10943 Alleges removing ceiling tile; some debris fell into left eye.
## 10944 Alleges removing ceiling tiles; debris from the ceiling tile fell off into his hair and eye.
## 10945 Alleges removing dimmer switch in the ceiling w/o gloves. Holding onto a conduit he tried to turn wire nut. It fell. He touched live wire w/ finger
## 10946 Alleges removing housekeeping carts and roll barrel from the elevator; the elevator began to close and hit her on the left temple area of her head.
## 10947 Alleges removing lock set for repair. He pushed hard to open case as it popped open his hand slipped & slid down a sharp piece on metal backing
## 10948 Alleges removing trash from roller barrell-barrellfell over and dolly struck EE on feet causing EE to fall backwards.
## 10949 Alleges removing trash-head, shoulder and hand struck by falling bag of trash\\
## 10950 Alleges repair a lock; he bumped his finger on a sharp edge inside the lock cutting his right index finger
## 10951 Alleges repairing a bathroom sink in witherspoon hall; he stood up and twisted his right knee.
## 10952 Alleges repairing roof leaks; he stepped back into a pile of roofing rock at an angle twisting his right knee.
## 10953 Alleges repetitive motion involved with collectingmoney at parking deck booth. Strain to left wrist
## 10954 Alleges repetitive motions of typing, use of a mouse and lifting books have caused her pain in her left thumb and right middle finger.
## 10955 Alleges replacing a water valve in the ceiling; he was lowering the old valve alone and later felt pain in his left shoulder.
## 10956 Alleges replacing/chaning ceiling tiles, breathing in dust through the dust mask causing him to sneeze and he later fel pain in left side.
## 10957 Alleges resetting toilet reached in to push button head struck pipe ()
## 10958 Alleges returning bedroom furniture to dorm rooms after carpet installation & while he was lifting a wardrobe he felt a pull in this back.
## 10959 Alleges returning to the office after assignment; initiating a left turn on his per bicycle, the pedal hit the ground, he fell hurting is right wrist
## 10960 Alleges riding in a ez-go returning the shop from working at the reese bldg, he believes he was bitten my an unknown insect, welping on rt arm
## 10961 Alleges rolling a studio desk on a cardboard path they set-up over the lawn; the cardbaord slipped &she fell. She later felt pain in her left knee.
## 10962 Alleges rolling up water hose and dislocated right shoulder
## 10963 Alleges running downhill to his patrol car causing exacerbation of his plantar fascitis.
## 10964 Alleges running to her car; she didn't see the curb, she tripped on the curb skinning/bruising both her knees and right elbow.
## 10965 Alleges sanding wood cabinets; she rubbed her hand across the cabinet after sanding it and got a splinter in her left finger.
## 10966 Alleges setting up a flip chart easel; the hinge caught her left index finger cutting it.
## 10967 Alleges setting up platform, felt pain in the base of her spine.
## 10968 Alleges shaking acan of adhesive to repair a transition strip; the can ruptured and the adhesive sprayed into his right eye.
## 10969 Alleges she picked up trash bag and felt pain
## 10970 Alleges she placed hand on her lunch bag & hand was covered with ants ()
## 10971 Alleges she thinks she was lifting a bag of bottles (plastic) adn later had back pain. ()
## 10972 Alleges she unhooked a bungee cord that was securing the books to a cart; she lost her grasp of the bungee cord, it hit her face and she bit her lip.
## 10973 Alleges she was emptying bucket of water and pulled muscle in shoulder
## 10974 Alleges she was existing the elevator on the 3rd floor she slipped on some water and fell bruising her right hand and shoulder.
## 10975 Alleges she was moving a mop bucket full of water and later felt pain in her back.
## 10976 Alleges she was opening a window by pushing it out and the window shut back on her lt index finger.
## 10977 Alleges she was participating in training at pied-mont corrt inst. Fellow officer flipped her off & landed on her side w/her elbow sticking in side.
## 10978 Alleges she was sitting at her desk typing, droppeda piece of paper, leaned forward, pick it up, chair rolled out from under her, fell, lt foot bend backwa
## 10979 Alleges she was sitting on the floor trying to unjam a copier, 13 sheets of paper floew out from machine and hit EE in corner of her left eye.
## 10980 Alleges she was transcribing oreders for a doctor and- she bent over to retreive papers from a file cabinet and when she stood up she hit her head.
## 10981 Alleges she was trying to remove a paper jam from a copier; she opened a compartment and caught her left hand in it hurting her left thumb.
## 10982 Alleges she was typing started rubbing her arm & noticed it was bruised & swollen ()
## 10983 Alleges she was walking from the muster to the employee parking lot when she fell twisting her rtankleon the concert near the handicap parking spac
## 10984 Alleges she ws pushing a trash dumpster real hard but the dumpster did not move; she felt her chest pop and later felt pain in her back
## 10985 Alleges sitting in a disability transport vehicle while awaiting the arrival of a pickup when her vehicle was struck by a vehicle attempting to park in the adjacent space hurting her neck, back and right leg. ()
## 10986 Alleges sitting in her desk drinking a cup of coffee; the chair leg broke off and she fell on the floor in a sitted position hurting her lower back
## 10987 Alleges sitting on the floor packing old books into boxes and getting up/down, stepping over and aroung boxes, later felt pain in lt knee and calf
## 10988 Alleges sitting/waiting/driving her patrol car &d having carbon monoxide exposure causing her to getdizzy, nauseous and have a headache.
## 10989 Alleges slip and fell down stairs water on floor ()
## 10990 Alleges slipped in water and wax ()
## 10991 Alleges slipped on liquid on floor ()
## 10992 Alleges slipped on liquid on stairwell ()
## 10993 Alleges spider bit him while in control room on left outer thigh. Didn't report before leaving b/che thought he had bumped into something.
## 10994 Alleges spit in face & both eyes by inmate ()
## 10995 Alleges spreading mulch in wooded area came in contact with something that caused a rash on both hands
## 10996 Alleges stacking light fixture covers on shelving. Her finger touched sharp edge of covers and cut her left ring finger.
## 10997 Alleges standing in a chair replacing an ac/heat vent grill; when she stepped down from the chair she twisted her right ankle.
## 10998 Alleges standing in a recycle container to compact it; his weight shifted the container slid, he hit his head and shoulders on the wall.
## 10999 Alleges standing near new playing fields and was biten by a spider.
## 11000 Alleges standing on a 2 drawer lateral filing cabinet to hand a shelf on the wall; lost her foot-ing and fell landing on her buttock, hurting back
## 11001 Alleges standing on an aluminum ladder while flushing copper lines in the ceiling and when he rotated his body left to right, the ladder folded up causing him to fall hitting his head and left elbow. ()
## 11002 Alleges start smelling paint. Asked Ms. Mclean do she smell paint, she said no. Start feeling bad, dizzy room very light breathing hard ()
## 11003 Alleges steering a stalled vehicle in tow; the towing vehicle slowed to go over a bump, then sped up jerking the vehicle in tow hurting his back & neck
## 11004 Alleges step down off stairs & stepped wrong way & knee gave ()
## 11005 Alleges step over cement & down on a rock twisting left ankle
## 11006 Alleges stepped off of a box stool and sprained rt ankle.
## 11007 Alleges stepped on metal pipe twisting her ankle. ()
## 11008 Alleges strain muscle & was injured while shooting at the range ()
## 11009 Alleges stretching above his head to reach a smokedetetor and felt sharp pain in lower back.
## 11010 Alleges stripping a floor; cord got caught in buffing pad, floor was slippery, the machine got away hitting her lft hip and jerking her rgt shoulder.
## 11011 Alleges stripping/buffing floors. While using wet vacuum to pick up stripping solution his hands started tingling & later his hands felt numb.
## 11012 Alleges supervising during a power outage; a malfunctioning oil switch exploded when re-energized; days later he had chest pain and breathing problems
## 11013 Alleges sweeping the marble strairs; she lost her balance and fell down the stairs bruising her right ankle, foot, knee, both arms and her back.
## 11014 Alleges tearing off a trash liner from a roll and hit her hand on a trash barrel jammin gher right index finger.
## 11015 Alleges that bee sting to inner rt arm occured while on sidewalk.
## 11016 Alleges that felt a pull in back when climbing into the cab of a truck for inspection ()
## 11017 Alleges that foot began to hurt while walking on campus as a ticket writer. Strained left foot
## 11018 Alleges that going down stairs in control station to bathroom, misjudged steps, slipped & fell down the rest of steps.
## 11019 Alleges that her diagnosis currently of carpal tunnel syndrome has been caused by her work & has been ruled permanently and totally disabled.
## 11020 Alleges that over time working operations and operating locking devices she developed carpal tunnel syndrome.
## 11021 Alleges that she was walking to muster from the employee parking lot. When she fell twisting her rt ankle on the concrete near the handicap space
## 11022 Alleges that while locking the van door after inmate had gotten off she hit rt middle finger on the side of the van.
## 11023 Alleges that while supervising inmates in welding room at cannery, he apparently burnt eyes while looking at the work being done by inmates
## 11024 Alleges that while working c-3 area he was leaningagainst the pod slider door frame when he alleges the door closed suddenly catching his lft hand.
## 11025 Alleges that while working on razor wire on medium yard razor and struck Mr. Cooke on back of hand causing a cut.
## 11026 Alleges throwing a bag of trash into the dumpster; the bag caught his left thumb and pulled it backwards.
## 11027 Alleges throwing glass into the dumpster, the glass broke cutting the base of his index finger on his right hand
## 11028 Alleges thumb closed in door ()
## 11029 Alleges to regain control of inmate that was resisting, kicking, punching, biting. He injuried his upper back. ()
## 11030 Alleges transporting boxes of 1098t forms using a hand cart; she later felt pain in her back.
## 11031 Alleges transporting inmate on stretcher and hurt back ()
## 11032 Alleges trimming lirope with hand held loppers (pruner); he held the lirope blades with his left hand, the pruner slipped cutting his left ring finger
## 11033 Alleges trimming the edge of a lamininate on a shelf; the router got caught, when he pushed it, it slipped and cut his right middle finger.
## 11034 Alleges tripped on metal beam ()
## 11035 Alleges tripping over wooden pallet outside the security office falling and striking lt shoulder arm, knee, and head.
## 11036 Alleges trying to restrain combative inmate ()
## 11037 Alleges trying to restrain inmate ()
## 11038 Alleges turned while walking & got sharp pain in left ankle ()
## 11039 Alleges twisted lower back while lifting basket of mail to place on mail gurney
## 11040 Alleges twisted lt knee and fell down ()
## 11041 Alleges unloading a 35 lb paper, as the truck door closed it hit the paper roll; he lost his balance and fell off the dock, landing on his left side.
## 11042 Alleges unloading a linen truck on a loading dock and dropped the truck tailgate onto his lt hand and caught his rt hand.
## 11043 Alleges unloading linen bins off a truck parked on a slope; a bin rolled back, he jumped off the truck, tripped and fell onto a curb hurting his back.
## 11044 Alleges use of force with when the inmate was taken to the floor & fell on his wrist ()
## 11045 Alleges using a burnishing machine while in a bentposition.
## 11046 Alleges using a computer for 30 years causing her to be recently diagnosed with carpel tunnel syndrome.
## 11047 Alleges using a crowbar to remove nails from a built in closet and strained shoulder/chest.
## 11048 Alleges using a low speed buffer to strip wax; he slipped and fell with his legs open in a split position hurting his left hip, knee and ankle.
## 11049 Alleges using a mop, bening over, scaping spots onfloor and using wet vac, felt pain in shoulder.
## 11050 Alleges using a nail gun to hang trim board; he was holding the trim, when the nail released it went through the trim and stuck into his left hand.
## 11051 Alleges using a wrench tol loosen a large bolt on the basket ball goal and later felt pain in his right wrist.
## 11052 Alleges using computer-excessive use of mouse produced tingling in both wrists.
## 11053 Alleges using her personal x-acto knife instead of the scissors to cut out covers for dvd cases; the x-acto knife slipped cutting her left thumb.
## 11054 Alleges using stripping compound for stripping and mopping the floor when he slipped and fell hurting his lower back and left elbow. ()
## 11055 Alleges walked through gate, officer shut the gate on his back&hand ()
## 11056 Alleges walking & foot got caught on the waxed floor causing kneww to twist ()
## 11057 Alleges walking & snagged forearm on fence ()
## 11058 Alleges walking across the floor; she slipped in awaxy solution and landed on her right side hurtin g her right fingers and wrist.
## 11059 Alleges walking along the brick walkway behind the library; she stepped on the side of a brick, turned her ankle and fell hurting her right knee.
## 11060 Alleges walking and stepping on a tree seed pod/burr; avoiding a fall she twisted her left ankle, strained her back and twisted her right ankle.
## 11061 Alleges walking and talking with a co-worker enroute to a clan a room when she struck a thermostat cover hurting her right shoulder bone. ()
## 11062 Alleges walking and twisted ankle ()
## 11063 Alleges walking away from the building after unlocking the door and heading to the smith building she tripped and fell forward into knee
## 11064 Alleges walking down a spiral staircase when he lost his footing and slipped; he grabbed the railing and caught himself from falling but twisted his left knee. ()
## 11065 Alleges walking down grassy hill in parking lot; as he bagan to pass the vehicle keys to a co-worker, he slipped and fell hurting his right ankle.
## 11066 Alleges walking down lecture room steps, not realiz-ing there was another step she tripped and fell landing on her right arm and hip.
## 11067 Alleges walking down stairs slipped & fell ()
## 11068 Alleges walking down steps at rear of student activities center leading to stech; she slipped on ice on the steps and twister her left ankle.
## 11069 Alleges walking down the cone center, south 2 stair-well; he stepped wronged and awkwardly bent his left foot.
## 11070 Alleges walking down the hall as another employee was returning to his office; they collided, she fell into the door frame hurting her left shoulder.
## 11071 Alleges walking down the hall near chick-fil-a entrance; slipped on liquid or grease and fell hurting her buttocks and left shoulder.
## 11072 Alleges walking down the rear stairwell while leaving work; she slipped and fell down the stairs hurting her neck and back.
## 11073 Alleges walking down the stairs form the third floor to the first floor; he slipped on the stairs and fell with his right ankle caught under him.
## 11074 Alleges walking down the steps after work; when heplanted his r heel on the step he slipped, grabbedthe rail but landed sitting on his right leg
## 11075 Alleges walking down the steps going to another building; she had not reached the bottom of the steps, she stepped down and rolled her right foot.
## 11076 Alleges walking down the west parking deck steps; she stepped down with left foot, lost her balance and fell three steps straining her left ankle.
## 11077 Alleges walking down tunnel slipped on chicken greese ()
## 11078 Alleges walking from the parking deck viat the catwalk and she slipped on some ice but did not fall; she later felt pain in her lower back.
## 11079 Alleges walking from the parking deck; his feet slipped from under him and he fell on his back hurting his neck, back and left shoulder.
## 11080 Alleges walking in co4-toe on lt foot struck floorelectrical oultlet cover, shifted weight to one side straining hip on rt side.
## 11081 Alleges walking in hawthorn hall-tripped over own feet and fell sprained left ankle.
## 11082 Alleges walking in the basement, Miss Stepped and tripped over his own feet, hurting his right ankleand did not fall.
## 11083 Alleges walking in the cone parking garage; she tripped on cracked cement and fell forward landing on both hands, knees, and hurting her right ankle.
## 11084 Alleges walking in the garage going toward the bike cage; it was dark and he stepped of the curb and later felt pain his lower back.
## 11085 Alleges walking in the hallway near the south entrance to the lucas room, slipped on something had spill on the floor and fell to her lt knee
## 11086 Alleges walking in the hallway when she slipped, lost her balance and fell forward hitting her mouth on the terrace floor breaking two front teeth. ()
## 11087 Alleges walking in the restroom to rinse out a can when she slipped on water on floor near the second sink twisting her right ankle. ()
## 11088 Alleges walking in the track storage room; she tripped over an extension cord stored by the track team and fell on her right forearem and elbow.
## 11089 Alleges walking into a room enroute to pick up trash when she slipped in water; grabbed a chair to stop herself from falling and twisted her back.
## 11090 Alleges walking into the shop while working on a lock cylinder, he didn't see the door was only rolled halfway up, walking into it hitting his head.
## 11091 Alleges walking into the the main lounge; he hit his head on the entry gate, that was not opened completely, cutting him above his right eye.
## 11092 Alleges walking near a bed while window washing; she bumped the bed hurting her left knee
## 11093 Alleges walking near the beld tower enroute back to his office; he stepped on a piece of wood and fell hurting his right knee and left hand.
## 11094 Alleges walking near the parking lot gate entrance after a car had entered the gate; the gate arm hit the right side of her face and right shoulder.
## 11095 Alleges walking on the sidewalk in front o the east parking deck; she slipped on a patch of ice hurting her left knee, leg, arm and side.
## 11096 Alleges walking on the walkway at facilities management; he tripped on an uneven/broken asphalt with a 4
## 11097 Alleges walking out elevator slipped on wet floor & twisted ankle & hit knee ()
## 11098 Alleges walking out of cell and slipped and fell while collins was mopping and did not have a wet sign out, back, stomach, right foot were injured. ()
## 11099 Alleges walking saw pudlle of water went around slipped on second puddle ()
## 11100 Alleges walking slipped in water inj. Lt foot & groin ()
## 11101 Alleges walking through the front lobby; he stepped on the base of a line feeder station twisting h is right knee.
## 11102 Alleges walking through the grounds shop; her arm brushed against the wire brush attached to the gum removal machine cutting her left inner forearm.
## 11103 Alleges walking to a meeting in friday bldg and tripped on uneven brick; she landed on her hands and knees.
## 11104 Alleges walking to an accident scene to provide assistance to victims of an explosion. He tripped on bricks/debris and fell; later felt low back pain
## 11105 Alleges walking to her car after work; she slipped and fell on the wet pavement injuring her right knee.
## 11106 Alleges walking to her car at the end of her shift; she tripped on a cracked area of the asphalt andfell hurting her right knee.
## 11107 Alleges walking to her desk upon arrival to work; she tripped on a cord under the cubcle twisting her left ankle and hitting her cheek on the counter
## 11108 Alleges walking to her desk; rounding the corner of the desk to her chair, she stepped on the corner of a three-ring binder twisting her left foot.
## 11109 Alleges walking to lineup and slipped & fell on ice ()
## 11110 Alleges walking to lunch, right shoe got caught by raised section of cement, tripped, fell hurting neck and back
## 11111 Alleges walking to the housekeeping closet; slipped& fell hurting her left arm/shoulder.
## 11112 Alleges walking to the parking lot by way of the grassy hill; she lost her footing and tumbled down the hill hurting her left ankle.
## 11113 Alleges walking toward the ladder used to unplug the power of an air compressor being inspected; he bumped a cabinet corner bruising his left forearm.
## 11114 Alleges walking toward the office from the parking lot at the rear entrance of colvard south; she tripped and fell hurting her left shoulder.
## 11115 Alleges walking up stairs, missed stair, right knee hit step injuring knee cap ()
## 11116 Alleges walking up the rear exterior steps of the mcinry bldg. When she slipped hurting her mouth & knees.
## 11117 Alleges walking up the rear steps leading from the education bulding; she tripped on the step and fell hurting both knees.
## 11118 Alleges walking up the steps outside reese bldg enroute to work when she hit her right, big toe on the bottom of the step.
## 11119 Alleges walkint across the room to retrieve his coat; he tripped over the bottom desk drawer hurting his left leg, right arm and wrist.
## 11120 Alleges was in training helped a employee off ground & pull lower back ()
## 11121 Alleges watching her supervisor's child while she took care of some business; she had the child in her arms and fell hurting her right foot.
## 11122 Alleges weed trimmming on wet grassy hill he slipped and fell landing on his rt band dislocating his rt pinky finger
## 11123 Alleges when picking up trash near the wood area of lot 21, he was struck by tree branch/limb in his left eye. ()
## 11124 Alleges while attempting to handcuff a suspect; the suspect fled the scene hurting her left index finger. ()
## 11125 Alleges while carrying bags of recyclable plastic bottles her foot slipped on a patch of ice on the walkway; she fell hurting her left wrist, elbow and arm. ()
## 11126 Alleges while cleaning rooms in apts she felt pain in her back as moved a bed
## 11127 Alleges while driving an ez-go in the rain toward the career center; as she turned the corner to the right she struck a car that was driving on the brick sidewalk parallel to the career center causing her to hurt her left wrist. ()
## 11128 Alleges while employee was using computer with wireless mouse at computer station, she over extended her wrist and began to have severe pain on her right hand up her arm with burning and numbness. ()
## 11129 Alleges while emptying trash she smell a strong chemical causing a headache & breathing difficulty
## 11130 Alleges while he was lifting a microfridge to assist a student in moving it into the dormitory, he strained his lower back. ()
## 11131 Alleges while it was raining she walked down the exterior steps; her left foot slipped and she fell hurting her left elbow, hips and lower back.
## 11132 Alleges while lifting and moving bed frame in an awkward position he pulled the muscle in his lt arm
## 11133 Alleges while mopping; the fiberglass mop handle split and later she felt like there were splinters in her right fingers.
## 11134 Alleges while moving & stacking wooden pallets an expoxed nail scratched the back of his right hand.
## 11135 Alleges while moving a halogen light, the light slipped and fell burning his right forearm.
## 11136 Alleges while moving a petition wall, the wall swung out; as he tried to stop it his hand slid down cutting his right middle and pinky fingers. ()
## 11137 Alleges while moving furiture the hydraulic tail gate fell on his lt toe and metal punctured his toe
## 11138 Alleges while pushing outdoor table to place outside " after hous", lost balance & fell on shoulder
## 11139 Alleges while replacing a shower drain, the tool slipped causing his fist to strike jaw chipping his front tooth. ()
## 11140 Alleges while riding in van, van backed in a pole ()
## 11141 Alleges while sawing board small chip of wood blew into his lt eye.
## 11142 Alleges while setting up furiture pulled her back muscle as she tried to lift and move a coffee table alone
## 11143 Alleges while storing filing cabinets he and a co-worker were stacking one cabinet atop another, when his co-worker lost grip; the cabinet then fell on his left shoulder. ()
## 11144 Alleges while throwing out the trash he hit his right hand on the trash dumpster.
## 11145 Alleges while try to cut inmate out of a sheet, cut her index finger ()
## 11146 Alleges while unloading the 55 gallon drum from the truck the hand truck flipped over, hit him in the head and causing a laceration.
## 11147 Alleges while unlocking refridgerator metal bar fell & hit top of foot ()
## 11148 Alleges while using band saw his hand slipped causing him to cut the fourth finger on his rt hand
## 11149 Alleges while vacuuming she ran out of cord length; she unplugged the cord and when she turned to plug the cord into another outlet her knee popped.
## 11150 Alleges while walking down two steps he missed the second step and fell hurting his right ankle. ()
## 11151 Alleges while walking he tripped and fell on gravel hurting his left hand. ()
## 11152 Alleges while walking on a paved path near moore hall, she slipped on ice and fell hurting her head and left wrist. ()
## 11153 Alleges while walking quickly to his car in the parking lot to drive to a meeting, he stepped on arock & fell forward hurting his left ankle.
## 11154 Alleges while walking through bldg j, walked undermechanical lift & struck his head on lift
## 11155 Alleges while walking to a meeting; he tirpped and fell hitting his head on the wall and landed on his right wrist.
## 11156 Alleges window washing; a steel bar that was placed against the wall fell landing on her right foot.
## 11157 Alleges working at her desk using a keyboard tray causing repetitive motion injuring her right wrist, arm and shoulder.
## 11158 Alleges working at or near his desk; he hit his left knee on his desk.
## 11159 Alleges working in a tight corner strained abdominal muscle trying to get the flush valve off
## 11160 Alleges working in supply closet doing inventory. He tripped on a box; while falling he grabbed a shelf & felt something pull in his right shoulder
## 11161 Alleges working on a ladder using a bar to break open a union on steam line-felt sharp pain in back
## 11162 Alleges working on campus when his left knee started hurting. Next day could hardly walk, statesit is a possible insect bit.
## 11163 Alleges working on sewer drain step and slipped & fell when I caught my hand on the holding cell bar ()
## 11164 Alleges writing a parking citation; she stepped on an ant colony and the ants bit her lower legs and hands.
## 11165 Allegescoming down last set of steps and fell forward. Foot got trapped under step ()
## 11166 Allegs holding door open for a student carrying belongings inside; as the student entered, the door was pushed onto her right foot hurting her toe.
## 11167 Allegs reaching onto a wooden shelf to secure equipment; a staple on the shelf snagged her puncturing her right hand.
## 11168 Allen thomas was attempting to separate two juveniles that were fighting and fell. ()
## 11169 Allen was getting his truck ready for pushing snow when, he slipped in the snow/ice and fell injuring his left shoulder. List injury as: left arm & shoulder ()
## 11170 Allergia apparently became attached to hjand and rubbed on to eye area by hand and caused eye to swell.
## 11171 Allergic reaction in throat, unknown source. ()
## 11172 Allergic reaction to being exposed to ceiling dust/debris during routine bldg inspection.
## 11173 Allergic reaction to bug spray. Difficulty breathing and chest pain
## 11174 Allergic reaction to cat at the center
## 11175 Allergic reaction to chemicals on face & hands
## 11176 Allergic reaction to fungicide or insecticied that was sprayed on greenhouse tomato crop
## 11177 Allergic reaction to hepatitus shot ()
## 11178 Allergic reaction to inhaling cricket dust
## 11179 Allergic reaction to latex gloves
## 11180 Allergic reaction to latex in carpet adhesive
## 11181 Allergic reaction to lycria. Severe swelling in face, neck, trouble breathing, uncontrolled jerking movements, sweating, dizzy, disoriented.
## 11182 Allergic reaction to ppd skin test-rash noted on arms, legs, face, back and abdomen.
## 11183 Allergic reaction to undetermined allergen while waiting for baseball game to finish. ()
## 11184 Allergic reaction while processing parking tickets
## 11185 Allergic to lab animal open for allergy shots
## 11186 Allergic to latex, vinyl gloves had powder in the them and caused a reaction
## 11187 Allergies required to come in by occupational health.
## 11188 Allergies to lab animals while performing surgeries
## 11189 Allergies to mice ()
## 11190 Allergies.. Working & breathing in high humidity air found within our work conditions
## 11191 Allergies/asthma... Exposure... Moth scales animals being researched in lab
## 11192 Allergin apparently became attached to hand and was rubbed onto eye by hand causing rt eye to swell
## 11193 Allergy test confirm that EE is allergic to mold--that maybe present in shellfish office. Sinus, lung and possible swollen lymph nodes.
## 11194 Allergy to gloves, wearing white liners under gloves, have rash on rt hand, spot on lt hand
## 11195 Allergy to mice/animals, occured over past severalmonths
## 11196 Allergy.... Eyes itchy, runny nose, coughing
## 11197 Allison was moving a metal open tile shelf when it slipped and divider fell on top of her foot. ()
## 11198 Allowing inmate out of door. Inmate exiting forcefully close door & EE's right hand was caught on screw
## 11199 Allowing vehicles through sally port gate, while ddragging the big gate, caught right foot.
## 11200 Alma taylor was leaving greensboro unit office and traveling back to her work office in her automobile. She was attempting to make a left turn onto wendover ave. The light was green. A truck ran the red light and struck her car. ()
## 11201 Almost tripping down stairs ()
## 11202 Alot of typing work has gradually caused pain in EE's shoulder, neck, elbow
## 11203 Alteration started with two patients, EE tried to stop it, was in the middle of the two patients, slipped and fell and hit the floor.
## 11204 Altercation arose between EE and inmate, both eyes
## 11205 Altercation btw. Two residents-employee hit on right arm-one resident started to fall-assisted lower to floor-other resident slammed emp. Into wall and bent right thumb back. Pain l. Side of back/hip ()
## 11206 Altercation in courtroom, came to aid of baliff who was having difficulty controlling/removing inmate from court room, cut under lt eye
## 11207 Altercation w/ aggressive inmate. EE was holding handcuffs and the inmate jerked the handcuffs from his grasp, cutting his rt middle finger
## 11208 Altercation w/juvenile, juvenile kicked right knee ()
## 11209 Altercation with inmate that occurred just after acell search was conducted. Scratches on face and cut inside lips.
## 11210 Altercation with inmate, fell against gate during altercation ()
## 11211 Altercation with student and staff ()
## 11212 Altercation with suspect resisting arrest
## 11213 Aluminum foil box was falling off of counter and EE caught the box on the cutting edge - laceration to the lt index finger
## 11214 Alyce was taking down the satellite work station off the closet shelf, when the bar came out and hit her under the right eye.
## 11215 Alzheimer resident agitated-spit in employee's face/eyes (hx. Of recent surgery to l eye)and multiple scratches to hands/wrists. ()
## 11216 Amanda became dizzy and fell. Rt eye & rt elbow.
## 11217 Ambulating a client in parallel bars with another assitant. Client dropped to floor while EE control his fall with gait belt. Rt shoulder/neck.
## 11218 Ambulating patient to bathroom, became resistant and was about to go down to the floor. Took all employee and coworker had to keep patient from falli
## 11219 Amount of data entry increased since 3/1/2012, noticed pain in left wrist., in Jan 2013 numbness and tingling in hand and fingers. After wearing brace, prevented, however in last 2 weeks, brace no longer works. Pain incrrease in frequently and severity.
## 11220 Amputation of left index finger at distal first phalanx by malfunctioning table saw
## 11221 Amputation of the first phalange if the second finger of the lt hand
## 11222 Amy mastin was punched in the face with a closed fist by a juvenile she was attempting to restrain.
## 11223 Amy was operating a motor vehicle enroute to do a home visit. The vehicle hydroplaned on a wet road. The vehicle left the roadway and overturned. Right hand was injured by getting caught in the steering wheel. Left forearm abrasions from broken glass
## 11224 An aggitated patient attacked the EE. Contusion of left knee and contusion of right shoulder.
## 11225 An aggitated pt was charging toward another EE, this EE was attempting to intervene & was pushed to floor, right hand hit floor
## 11226 An aggressive client grabbed EE's finger and bent it back.
## 11227 An aggressive client hit EE on the left side of his head, behind his ear, with his fist
## 11228 An aggressive client kicked EE twice hitting left lower leg
## 11229 An aggressive male was redirected to quiet room and swung on staff member and fell on EE leg and reinjured it.
## 11230 An aggressive patient hit EE on lt side of head with her fist. Mild contusion lt temporal region.
## 11231 An aggressive patient hit EE's left cheek. Contu- sion of left temporal region.
## 11232 An aggressive patient slammed door causing both left and right ear drums to be muffled
## 11233 An agitated client hit EE in upper lt back.
## 11234 An agitated client pushed him against fence. Client began pulling and trying to push EE.
## 11235 An agitated patient attacked EE and other staff. Injured leg, forehead.
## 11236 An agitated patient attacked EE. Scratches to left hand
## 11237 An agitated pt jerked EE's name badge strap and right arm, twisting.
## 11238 An agressive patient hit EE with chair. Lt shoulder injury.
## 11239 An ant bit her hand while she was cleaning some trash cans.
## 11240 An attempt of trying to restrain inmate when he slipped cut his cuffs, hurt right hand
## 11241 An employee exiting men's restroom slammed door into injured EE's forearm. Door opens into hallway travel area. ()
## 11242 An employee was opening access door and hit EE in the left finger
## 11243 An eppendorf tube filled with liquid n2 exploded &hit my r eye
## 11244 An evacuation occured in building, going down stairs and lost balance
## 11245 An exothermic reaction from sulfuric acid being added to a reactor produced a large amount of fumes in the building which caused the employee to start gasping. ()
## 11246 An immate was going into shock, EE was trying to keep immate from falling out of chair the immate grabbed EE and would not let go.. Hurt back
## 11247 An individual (patient) was falling and employee reached out to prevent him from falling and heard a ()
## 11248 An individual came from behind employee and scratch employee's left arm and hit her head. ()
## 11249 An individual fell backwards striking employee in the back of her left leg. ()
## 11250 An individual flipped a table and chairs in the dining room and a chair fell on top of employee's left foot hitting her 2nd left toe. ()
## 11251 An individual grabbed employee and bent her hand backwards. ()
## 11252 An individual grabbed employee and scratched him on his neck/shoulder area. ()
## 11253 An individual grabbed employee on both sides of her head pulling hair and jerking and pulling head, hair, neck and back. ()
## 11254 An individual had urinated in the floor and employee came out of the dayroom and slipped in it. Employee did not know the floor was wet. She fell forward onto left knee. ()
## 11255 An individual ran into the bathroom and pushed employee against the wall causing a scrape on the employee's right upper shoulder. ()
## 11256 An individual was having a behavior and scratched employee on the left ring finger. ()
## 11257 An individual was returning from getting meds and he walked into the dayroom and hit employee on left shoulder very hard. ()
## 11258 An indiviudal aggressed towards employee and while employee was placing indiviudal in a t-hold, individual continuously headbutted employee. ()
## 11259 An indiviudal grabbed employee by the wrist and twisted. ()
## 11260 An indiviudal reach for employee's hand and bit employee on the right middle finger. ()
## 11261 An indiviudal stomped employee's right foot while employee was releaseing her from a t-hold. ()
## 11262 An indiviudal was scratching, pinching and grabbing at employee's face. ()
## 11263 An injury to the back occurred when the EE bent over to lift a grill cover--back pain
## 11264 An inmate became violent, throwing things off a desk, stapler which was on desk hit the EE's right forearm.
## 11265 An inmate entered EE office and assaulted her withsteel weight bar collar by striking her on and about the head area. Cuts to head, shoulder injury
## 11266 An inmate hit EE on his side of the face with an elbow
## 11267 An inmate hit him on the left side of his head ()
## 11268 An inmate janitor had put down fresh wax EE slipped on the wax and foot slipped toward the bottom of step caused pain in lower back and rt foot
## 11269 An inmate slipped out of his cuffs and I was hit on the right of my face to the left of my ear. ()
## 11270 An inmate spit in the officer's face ()
## 11271 An inmate splashed the officer with an unknown liquid ()
## 11272 An inmate struck employee with fist on (r) side ofhead-temple area, (l) eye-cheek area.
## 11273 An inmate tapped on a window to get my attention and I tapped back on the window and the window broke and I was cut
## 11274 An inmate threw a cup of coffee in her face, then was hit in her face by an inmate with his clodsed fist.
## 11275 An inmate threw a cup of liquid on the officer ()
## 11276 An inmate threw a cup of urine and fecese in my rt eye amd mouth
## 11277 An inmate threw a garbage can lid and struck ofc. Kelley in the back of the head at the base of his skull
## 11278 An inmate threw a liquid in EE's face
## 11279 An inmate threw an unknown substance on the officer. ()
## 11280 An inmate threw an unknown substance on the sergeant ()
## 11281 An inmate threw urine on an nurse asst. Coming in contact w. Face and rt side of body.
## 11282 An inmate thru a cup of liquid which contained feces on officer floyd.
## 11283 An inmate was attempting to kill himself correctional officer and another officer had to lift the inmate up to get him down injuring her right shoulder ()
## 11284 An inmate was being escorted to segregation & spit in his face, getting in his nose & mouth ()
## 11285 An inmate was carrying a hot pan & she was trying to get out of this way.
## 11286 An inmate was rising from the floor, began to fall& empl. Tried to catch him to prevent an injury, twisting empl. Back.
## 11287 An inmate was talking to EE and the inmate's saliva flew into EE's rt eye
## 11288 An inmate was throwing a plastic bag of trash intotrash container when liquid from bag splased into EE's left eye; experienced burning/stinging
## 11289 An inmate was throwing rocks-EE informed inmate tostop-EE was struck in forehead by rock thrown by inmate
## 11290 An insect bit employee while making rounds inside of a dorm ()
## 11291 An non employee walked into the lobby and stated he was positive for TB. Employee was exposed to TB. ()
## 11292 An obese pt fell in their room, EE tried to lift pt ( other nurses help ) EE felt sharp pain. Strain lower back
## 11293 An offender was trying to flee custody and as he ran towards employees office, she placed her arms around him and took him down to the ground. ()
## 11294 An organizer on employee's desk slid off the tableshe reached accross the table to lift it up & put it back on the table
## 11295 An otter swam up and bit him on his left index finger
## 11296 An out of control studetn was being restarined andee hit her knee on the floor while restraing the student.
## 11297 An owl flew at and struck at hand while filling water bowl. She pulled hand back and as she stepped back it flew and struck rt. Ear with claw ()
## 11298 An umbrella fell and hit EE on right foot
## 11299 An unknown individual placed a tuck pin in an upright position on edith's chair. When edith sat in her chair she felt the pin puncture her buttock.
## 11300 An unknown object flew into EE left eye when co-worker moved a burnt mattress spring at scene of investigation of burnt dead body.
## 11301 An unsercured scaffold tilted causing EE to be thrown face first striking a concrete floor this has caused a spinal/neck injury
## 11302 An upset client pushed past 2 other staff person and pushed a chair into EE lt knee.
## 11303 Anesthetized dog recovered roughly and had to be restrained- injured back
## 11304 Angel pulle dback while trying to install a front boiler cover on boiler #2 after annual inspection.
## 11305 Angle grinder kicked back and cut the back of his hand.
## 11306 Angle iron slipped out of hand bent ring finger on right hand ()
## 11307 Angry client lifted EE off the floor by neck-injury to rt shoulder and arm
## 11308 Angry patient picked EE up and threw her against the wall & punched her several times.
## 11309 Animal control came to the side gate to pick up stray cats from unit 1. The last cat that the EE moved was calm unitl she brought it to the animal control officer. The cat then turned and latched onto EE's hand, biting her finger. ()
## 11310 Ankle twisted when walking to granville dorm. ()
## 11311 Ankle(l)... I was leaving work and slipped on the last 2 stairs in the stairwell of its manning Dr. ()
## 11312 Ankle(left) gave out while at the civic center. Fell and sprained ankle and landed on her elbow. Ankle was weak wince it was sprained the night before in personal residence. ()
## 11313 Ankle... Sitting at desk turned around to get up &twisted ankle
## 11314 Announcing chow call walking down the stairs, he lost his footing and slipped and fell. Injuring his left lef, knee ()
## 11315 Annual in service training, performing crdt/functions and hurt ankle
## 11316 Annual nci test. Got down on knee and thigh popped
## 11317 Annual self defense training - crdt takedown procedure... Knee hit the floor with force. ()
## 11318 Another EE (hct) sprayed room deodorizer in hallway, Ms. Whaley reports an allergic reaction to spray
## 11319 Another EE accidentally pushed a linen cart over EE's lt foot.
## 11320 Another EE brough instrument to EE. Tip of instrument slipped and hit hand
## 11321 Another EE carrying armfull of supplies including a telephone. Cord was dragging sidewalk EE trippedover the cord and fell on his knees.
## 11322 Another EE closed EE's fingers in the door causing contusion to rt third finger
## 11323 Another EE discharge pressurized duster to clean hand held computer, victim affected when she inhaled spray in air
## 11324 Another EE dropped a razor used on patient and it fell on EE's rt leg
## 11325 Another EE grabbed neck and scratched neck on leftside with finger nails.
## 11326 Another EE helped EE pivit client from bed to wheelchair-EE pulled client up by herself and injured back.
## 11327 Another EE in far corner used her personal laser pointer to try to get the attention of co-worker across the room. Injured EE turned head into path of laser. ()
## 11328 Another EE mixed cleaning solution and when she began to clean, she became dizzy, headache, tongue started swelling
## 11329 Another EE moving patient geri chair and rolled over EE's foot.
## 11330 Another EE notified EE that there was a gas leak because he thought EE could fix it. EE could not stay in room because of odor and left
## 11331 Another EE open door and hit EE on left shoulder
## 11332 Another EE opening entrance door for EE, as door opened, it went over EE foot, the metal strip cut EE toe.
## 11333 Another EE placed hands on her shoulders and startled her at her desk - causing injury to neck and shoulders
## 11334 Another EE ran vehicle in to ditch and EE helped other EE out of vehicle and as the day progressed her back hurt
## 11335 Another EE tried to trip someone and kicked EE instead
## 11336 Another EE was being attacked by patient-EE went to help-was knocked out of office by patient- landed on back and hit head on wall
## 11337 Another EE was closing closet door-an individual began yelling-other EE turned to see what was wrong and shut door on EE's rt middle finger.
## 11338 Another EE was coming in restroom as EE was going out. EE tried to move out of way to avoid being hit and twisted already injured right knee
## 11339 Another EE was doing a blood draw and asked EE for a tube. The EE turned to hand him the tube without looking and was stuck by the needle the other employee was holding. ()
## 11340 Another EE was opening container and sat containerdown on table. Contents splashed into injured eyesswelling, irritation and bruised left eye
## 11341 Another EE was pushing a wheelchair and accidently pushed chair into EE causing her to fall-inj to knees, ankles, elbows, and back
## 11342 Another EE was spraying a chemical solution in the vetilation system of c domatory the fumes from the spray entered the dorm EE sumer smelled fumes
## 11343 Another EE was swatting wasp-EE move to right and lost balance-fell hitting head on door facing
## 11344 Another car struck EE from behind.
## 11345 Another chaplain was pumping gas. Line became kinked & when straighten hose line gas continued pumping & shot up into air & into eyes
## 11346 Another corr officer pulled his gun on me EE began to experience anxiety problems such as loss of sleep
## 11347 Another driver failed to stop at stop sign and collided with EE's patrol car.
## 11348 Another employee and I were transferring a resident from her bed to her wheelchair and she bit my left upper arm ()
## 11349 Another employee and this employee were placing resident in bed using the hoyer lift for patient care. Resident became combative and fussy. Resident started to grab and grip my arm resulting in skin tear. ()
## 11350 Another employee bumped into EE causing this EE toslip and fall on wet floor. Floor wet from being mopped. EE hit side of head.
## 11351 Another employee came out of bathroom & accidentally hit this employee on her right elbow with the door. ()
## 11352 Another employee mixed a sanitation mixture of bleach and water. Apparently it was mixed to strong for Ms. Watson, and the mixture removed skin.
## 11353 Another employee put her arm around injured employees neck
## 11354 Another employee standing next to erin and working on the same experiment dropped a test tube of blood. The blood splattered on erin's lower lip. ()
## 11355 Another employee stumbled and fell into injured employee who was at desk ()
## 11356 Another employee threw a can of checmical at carl jones. Some of the chemicals got into his eye.
## 11357 Another employee tipped Ms Jones chair over causing her to fall to floor. Contusion/sprain to right elbow & shoulder.
## 11358 Another employee was cutting tree at worksite and the tree behind it fell and the employee went to help get the other employee out of the way and the tree hit the employee on the r arm. ()
## 11359 Another employee was moving a 12' metal post & a piece fell landing on this employee's left foot ()
## 11360 Another employee was rolling cold mix asphalt with crew cab pick up truck from the shoulder. Employee glanced back and forth between the windshield and side mirros while driving when, he struck 2nd employee (taylor) left foot/ankle. ()
## 11361 Another employee was walking backwards from a display case and stepped onto the employees foot. ()
## 11362 Another health care technician and I were giving resident a shower when resident began spitting, fighting, and biting scratching both of us ()
## 11363 Another officer and employee lifted a barrel of trash to dump it, let it down and twisted back
## 11364 Another officer called a code 1000 in g&h dorms. EE was running to dorms from k&l dorms and she twisted her ankle,
## 11365 Another officer came up behind EE putting him in choke hold & dragging him backwards
## 11366 Another officer carrying trays up steps, trays started sliding, bossie twisted around to help secure the trays. ()
## 11367 Another officer dropped some tylenol on floor. Bent down to pick up tylenol, bumped head on door stop. Injured head.
## 11368 Another officer had officer long in an arm bar performing an arm bar escape during self defense class. The officer turned to slam officer long to the ground. As officer long fell to the mat, he landed on his right shoulder. ()
## 11369 Another officer pulled EE's chair out from under him. EE fell hitting head and falling on buttocks. EE pushed open door and hand went thru window.
## 11370 Another officer rolled to my right on top of and iheard a pop on my right side.
## 11371 Another officer was holding security tip screw driver while EE helped turn it. It came loose and EE's rt. Hand hit part of the metal door.
## 11372 Another officer was passing EE fingerprint book & it slipped out of EE's hand, landing on her right foot
## 11373 Another officer was placing handcuffs on inmate while inmate was laying prone his arm moved and the sharp point of cuff dug into my left arm. ()
## 11374 Another officer was showing emp. How inmate could use fire ext. As a weapon when it went off, sprayingemployee.
## 11375 Another person sawed limb from tree. Limb fell, pinning EE to tractor seat. Took EE to hospital for examination.
## 11376 Another pert team member fell into EE's lt knee
## 11377 Another staff & I was pushing patient up ramp whenpushing I felt my muscles in leg & back pull
## 11378 Another staff came in and went to close door; EE went to shut door and caught EE's hand in the door causing bruises to hand and swollen. ()
## 11379 Another staff entered & sat on corner causing desk to fall on officer's left knee
## 11380 Another staff member closed door on EE's left hand causing contusion/puncture wound to left middle finger
## 11381 Another staff member pulled the retractable string attached to his I. D. Badge and when they let it go, it hit him in the right eye
## 11382 Another staff member was assting a client to computer. The client tripped and fell. Pts head struck eelft knee causing EE to fall
## 11383 Another student was driving a golf cart too fast and turned it over. Student EE landed on cross bar and concrete ()
## 11384 Another veh pulled into path of EE's veh and struck left side door.
## 11385 Another veh ran stop light and hit EE's veh.
## 11386 Another veh went off road & crossed center line hitting EE's veh head-on.
## 11387 Another vehicle changed lanes on I440, was going too fast and ran into the back of linda's car.
## 11388 Another vehicle collided with EE's vehicle in the rear.
## 11389 Another vehicle crossed center line into path of EE. EE ran off road and overturned
## 11390 Another vehicle hit him in the rear of his vehicle
## 11391 Another vehicle hit state vehicle from behind, no injury listed
## 11392 Another vehicle lost control on patch of ice, spun around and hit EE in from of van
## 11393 Another vehicle pulled out in front of EE; injuredright hand, both knees and side
## 11394 Another vehicle pulled out in front of employee and employee struck vehicle. ()
## 11395 Another vehicle ran red light and struck EE car while on duty -
## 11396 Another vehicle struck parked patrol car
## 11397 Another vehicle turned into the path of EE and EE ran into the pole head on @ 40mph.
## 11398 Another vehicle turned left in front of EE. She applied brakes and blew horn before impact. Air bag disloded. Multiple injuries to multiple parts.
## 11399 Another vehicle was being allowed in the outside lane - employee was driving straight on the inside lane - the other driver didn't turn sharp enought and hit employee's vehicle. ()
## 11400 Another worker was blowing debris off a chair, & some debris went into EE left eye.
## 11401 Answered a call for help from other staff menbers during a riot employee has soreness in back and neck
## 11402 Answering phone / repeatedly laying phone on rt shoulder
## 11403 Answering phone and hit elbow on counter.
## 11404 Answering phone at reception desk and chair slipped out from under EE. Injured right knee, back of head & neck.
## 11405 Answering sick call, walked to break room, slippedon floor and fell injuring neck, rt shoulder/arm hand, lt leg/foot
## 11406 Answering telephone while waiting on customer at desk of fellow EE, turned in hurt & tripped over box of files sitting in floor beside desk
## 11407 Answering the phone in receptionist's office; reaching for item and the chair turned over. ()
## 11408 Ant bite while standing outside on concrete, when she looked down a few seconds later, there were ants on right foot. Foot was bitten on top. ()
## 11409 Ant infestation in breakroom, hard candy full of ants, moved basket to get rid of ants. Bitten sever-al times
## 11410 Anticipated use of force & training. Simulated drills in sgt unit avery/mitchell corrt inst, doesnot know exactly how injury occurred.
## 11411 Anticipated use of force alleges while struggling with inmate he fell hitting right knee on floor ()
## 11412 Anticipated use of force pulling jammed door ()
## 11413 Anticipated use of force,
## 11414 Anticipated use of force, injured left foot () inmate stomped on his foot-contusion of left foot
## 11415 Antonella was changing the top of a temed bottle and some temed sprayed toward her eye. Her glasses blocked most of the temed. ()
## 11416 Ants bit EE on both arms/hands
## 11417 Ants got into clothing bit EE on multiple parts ofbody
## 11418 Apparently continued use of mouse and computer first learned about employees pain when observed ace bandage on right arm the week of October 12, 2009. Right wrist and index finger. ()
## 11419 Appears that a piece of ceiling material fell intoee's eye
## 11420 Applicant came into office for interview with pinkeye-next day EE contacted pink eye.
## 11421 Applied back fire fuel to brushpile in attempt to ignite it. Struck match to backfire fuel, fire flashed into EE's face causing 1st and 2nd deg burns
## 11422 Applied front & rear brakes of motorcycle then struck traffic cone which caused him to loose control
## 11423 Applying Mr/Ri to assultive client
## 11424 Applying bandaid to patient's knee-patient kicked in knees-knocking feet out from underneath-fell on l. Side-hip/low back pain.
## 11425 Applying cleaning solution
## 11426 Applying eye drops to student, had an outburst & grabbed & squeezed left breast
## 11427 Applying hand cuffs on an inmate ()
## 11428 Applying handcuff to inmate. Door opened and inmate advanced toward EE striking him in left cheek w/a fist
## 11429 Applying joint compound to dry wall or carrying 5-gal bucket of joint compound. Injury to rt elbow. *** denied claim ***
## 11430 Applying pressure to labels in order to cut through adhesive tape and cut rt hand.
## 11431 Applying soil fumigant
## 11432 Applying use of force technique on non compliant inmate while taking inmate to lockup and trying to get inmate in handcuffs ()
## 11433 Applying weedkiller with a backpack sprayer and back became soaked with weedkiller, rash developed on back, shoulder and back of arm.
## 11434 Applyinga physical restraint, me and resident fell. I hit my head on a table and cut my head.
## 11435 Apprehending bleeding detainee ()
## 11436 Apprehending probationer. C/o fell during chase.
## 11437 Approach residence, one of three dogs ran to agent, bit right thigh above knee. ()
## 11438 Approached a suspect. Suspect struck him w/door ofvehicle. Struck EE in shoulder w/hood
## 11439 Approached an inmate to place cuffs on him, inmate punched officer in the chest and spit in his face. ()
## 11440 Approached back door of home, new litter of puppiesmother dog bit EE
## 11441 Approached by client screaming at EE; tried to redirect when client hit EE in the upper chest close to right shoulder; trying to move out of harms way; client threw pool ball at EE; EE jumped out of way. Lower back hurting after this incident ()
## 11442 Approached by patient and punched on face/both sides near jaw. ()
## 11443 Approached by supervisor about an error at work. Employee could not make her point and an argument occurred resulting in her having a panic attack. ()
## 11444 Approached cell where inmate was housed as presented his medications, spit in EE's face
## 11445 Approached inmate cell with custody when trap opened and inmate sprayed feces and urine to my eyes, nose mouth and upper body. ()
## 11446 Approached park visiter walking a dog. The dog jumped up and bit EE on the upper right arm and lower left arm. ()
## 11447 Approached patient to assist other staff & rstrainfrom assaulting other staff. During process & while on the floor, the patient scratched staff l
## 11448 Approaching a subject to check for compliance, when EE was attacked by 3 chow dogs--belonging to subject. Bite marks/scratches both hand & lwr legs
## 11449 Approaching building was running due to rain, slipped and fell, injuring left elbow & shoulder, twisting back & neck.
## 11450 Approaching client to be placed in emergency pic; scratched by client
## 11451 Approaching gate house entrance when reached for the door and slipped and fell
## 11452 Approaching inmate's cell door, inmate threw what appeared to be urine and feces out of his wicket door onto EE, striking him on the clothes
## 11453 Approaching stopped vehicle EE stepped off roadway shoulder twisting right ankle
## 11454 Approaching swinding door glanced down to avoid tripping over raised portion of floor & rt was outstretched & missed stuck rt arm laceration
## 11455 Approx. 2 month prior to 8/4/99-EE contracted rash of unknown origin on chest, back, stomach arms and legs
## 11456 Approx. 8-weeks ago, pins/needle tingling/numbnessin pinky of left hand & moved to other fingers. 1-wk. Ago, same in r-hand w/pain in wrist/shoulder
## 11457 Approximately 3-4 weeks ago employee had a lesion appear on left thumb. ()
## 11458 Appt w/ecu retired faculty member and donor iw fell at her home/fell down steps inside her home
## 11459 Aprehending a suspect fleeing from a license station, trooper arrowood fell and smashed his hand on the pavement causing injury to hand.
## 11460 Arc flash electrical explosion while working in blue ridge dorm. Arc flash caused burn injury to arm. ()
## 11461 Area between thumb & forefinger sore & swollen rt hand
## 11462 Area needs to be evaluated by ergonomics. Neck and upper back. ()
## 11463 Arjo lift rolled over employee's left foot while she was putting individual in the wheelchair. ()
## 11464 Arm bar take downs, during subject control arrest techniques. Pain in left shoulder.
## 11465 Arm caught in door while handing inmate tylenol
## 11466 Arm emptying a lown mower bag fell came into contact with poison ivy plant
## 11467 Arm on lift of food truck broke and fell-EE has head injury.
## 11468 Arm over worked--using air guns--sanders--drills, in carpenter shop--lifting heavy cabinets. Right elbow pain.
## 11469 Arm pulled through passage door by inmate ()
## 11470 Arm scraped on wire poking through chair cushion ()
## 11471 Arm slammed in door when exiting building ()
## 11472 Arm strain from sustained typing - tendinitis - lt wrist.
## 11473 Arm twisted causing wrist to crack while moving a client in a wheelchair. Strain to left wrist.
## 11474 Arm was barred up during a defensive technique. Left upper arm & shoulder.
## 11475 Arm was being place behind back for handcuffing position. Heard a pop when shoulder began to hurt.
## 11476 Arm was broken out with red bumps from chemical spray.
## 11477 Arm was hit during a therapeutic restraint
## 11478 Arm was pinned against a metal trash can during riots
## 11479 Arm, hand, hip, knee.... Making deliveries twisted ankle in pot hole
## 11480 Arm.. Neck... Was sitting at stop light & was hit from behind
## 11481 Arm.... Putting gas in the van walked around to put seats up in van & noticied a pain in upper arm
## 11482 Arose from desk chair to replace notebook on shelflost balance & started to fall, hit the corner of desk with knee
## 11483 Around 5:30-5:45 pm playing w/ client "not sure what happened" at 6 began to monitoring rt eye, beganto burn/swell er dx: abrasion & conjunctivitis
## 11484 Arranging bakery products in case when she slammeddoor on right ring finger
## 11485 Arranging boxes in break room on shelf, turned while lifting boxes
## 11486 Arranging boxes of supplies in supply closet & while struggling w/heavy box hit corner of her eye on side of box
## 11487 Arranging charts in file cabinet. Too many drawers were pulled out & file cabinet began to fall forward. Bottom drawer hit foot
## 11488 Arranging file cabinets in her office when she felt pain in left side of her back & hip
## 11489 Arrested individual & individual ran from trooper on foot. EE pursued individual into field of brushof small trees & EE twisted his right knee
## 11490 Arrested male subject & his girlfriend became upset & started raising her voice. Dog became agitated and bit EE on leg
## 11491 Arrested offender during the struggle between subject and me the subject took his hand and scratch me under my rt eye causing it to bleed
## 11492 Arrested offender without incident & transported offender to jail in state vehicle. Later, learned that offender had tuberculosis.
## 11493 Arrested supect for supicion of driving impaired. Suspect seatbelted in patrol vehicle & tried to escape. EE grabbed suspect & felt pain in rt hand.
## 11494 Arrestee running out of magistrate's office-EE attto catch arrestee outside and fell over a curb in the p/lot.
## 11495 Arrestee spat on officer ()
## 11496 Arresting a suspect. Suspect hit officer in the nose causing him to fall on his ribs. ()
## 11497 Arresting an offender that became combative ()
## 11498 Arresting an offender who resisted arrest. ()
## 11499 Arresting an offender. Handcuffed to the offender. Offender broke through a glass door and drug EE thru the door cutting lower rt arm and rt knee
## 11500 Arresting defendant. Defendant attempted to escape from custody by running from the mags office. EE ran after defendant & fell
## 11501 Arresting individual for dwi & was attempting to place handcuffs on individual when individual began to resist
## 11502 Arresting intoxicated person left arm was injured during the handcuffing of subject.
## 11503 Arresting offender, placing handcuffs on her. Whileplacing handcuffs on the offender, she kicked backhitting my leg two times.
## 11504 Arresting offender. After placing handcufs on offender he started to fight, fell down steps as I was trying to get him to a car. ()
## 11505 Arresting resisting impaired driver, EE injured his rt hand when handcuffs pinched him while administering an arm bar on the suspect
## 11506 Arrive at troop a headquarters building and was walking from parking lot, stepped on concrete curband awkwardly twisted left knee.
## 11507 Arrived at a client home for evaluation, was met my mother as I got out of my car. As I turned to get my evaluation tools, a small white chiwahwah dog jumped up and bit my r pinky finger ()
## 11508 Arrived at home where evaluation was to be done on twin girls. Phoned the mom to make aware of arrival & left message on voice mail. Went up steps onto porch. Dog came from dog house on porch, smelled leg, growled and bit me on l outer thigh. ()
## 11509 Arrived at job site on golf cart. Got off golf cart after stopping put left foot on ground and as I turned to take first step I felt a pop above left knee. I my foot slipped on the curb.
## 11510 Arrived at parking lot, got out of car and fell. ()
## 11511 Arrived at work to find smell of gas in building. Was told by security officer that is was safe to stay in building
## 11512 Arrived at work, got out of car, and stepped on the curb when a roofing nail went through my shoe and left foot. List injury as: left bottom foot ()
## 11513 Arrived in greenville, nc on 6/14/10 at approximately 5:30 p. M for a vendor training on 6/15/10 on a state car. At approximately 6:00 p. M. I opened the car trunk lid to reach inside to get my water and the trunk lid came down on my head. ()
## 11514 Arriving at work and parking in parking lot, upon exiting his vehicle he was getting items & steppedonto the icy curb, fell on his hip/ rt arm.
## 11515 Arriving to scene of a collision and was reducing speed, when he was struck in rear by another vehicle. Neck and head.
## 11516 Arriving to work walking across craige deck, tripped and fell over cement barriers. She sustained unspecified injuries to her right knee, head, neck, and shoulders. ()
## 11517 Arthralia developed as result of continuous repetitive data entry. Back injury is result of carrying files.
## 11518 Artificial carpet was on the concrete porch. It had been raining a lot on this day. The carpet was wet with a slick black slimy mildew. She slipped and fell on the carpet. ()
## 11519 As Dr. Weggel was preparing to open the door with the handle someone was coming out of the door hitting his hand.
## 11520 As EE and other staff were trying to go through the automatic door, EE's right 1st toe was run over by wheelchair. ()
## 11521 As EE approached the gatehouse she slipped on mat and fell
## 11522 As EE attempted to walk away from EE who was pretending to be a patient and had EE placed in anupper bear hug EE broke free and right knee gave..
## 11523 As EE attempts to move from one dexk to another to answer phone her ankle and foot turns under causing her to fall
## 11524 As EE bent client's head down to shave his face, client pushed head back & spit in EE's face.
## 11525 As EE emerged from patrol car to issue citation he heard a pop and immediately felt pain in left hip. Possible strain of ligament.
## 11526 As EE entered the front door of police bldg., she tripped on the area rug at the inside of the entrance.
## 11527 As EE exited his vehicle, the door began to slam shut, EE attempted to keep door from slamming and small rt finger was shut in door.
## 11528 As EE exited the building she turned to speak to security guard and missed a step, fell on right knee and side
## 11529 As EE exited the security gate he accidently closed his lt index finger in gate
## 11530 As EE got out of her truck, she slammed the door shut on her right hand.
## 11531 As EE got ready to sit on tailgate of truck, co-worker drove off, causing EE to fall off back of truck. Rt side/back/buttock/lower lt abdomen
## 11532 As EE leaving office felt pain in lower back.
## 11533 As EE locked the corridor door he reached back to pull it close and caught his middle finger betweenthe door and the door jam. Left.
## 11534 As EE opened supply cabinet, the paper cutter fell& cut her left foot.
## 11535 As EE reached for the rail, she tripped on water &leaves from the top of the steps. Hurt left hand, left knee & back in the fall.
## 11536 As EE stepped off the stairs a rubber mat at the bottom of the steps slid out from under him causing him to fallon the floor and steps.
## 11537 As EE stepped off the stairs to enter the courthouse as soon as stepped on tiles at the bottom of stairs slipped and fell on the wet and or icy tiles at the foot of the stairs
## 11538 As EE turned corner in hallway, EE slipped on wet floor that had just been mopped by janitoral staff
## 11539 As EE walked back to the unit, she slipped on the ice which caused back injury. She did not fall she only made a sudden movement.
## 11540 As EE walked out of office and down first stair, ccarpet & stair tread on end of step gave way. EE fell forward. Rt big toe bent bent back.
## 11541 As EE was attempting to exit the men's room, another EE pushed door open to enter from the other side, hitting EE in the head. ()
## 11542 As EE was attempting to find a door knob with a jacket on it; his right small finger popped.
## 11543 As EE was cleaning tables, she turned and struck her left knee on a chair. She did not realize it was injured until next morning. Contusion- knee
## 11544 As EE was coming to work up a hill, she turned her right ankle on a water drainage.
## 11545 As EE was crossing the intersection, she was hit on the passenger's side by a speeding car. EE suffered from bruise-thigh/knee, head, neck-pain
## 11546 As EE was escorting an inmate back to cell, she became violent and bent left finger back. Inmate fell to ground and began kicking
## 11547 As EE was getting into his truck he slipped and felt his left ankle pop
## 11548 As EE was going down steps to master control, she tweaked/felt something in her knee. ()
## 11549 As EE was inspecting tables after visit, he raiseda table to look underneath; the table got off balance & table fell on right foot/ (r) big toe
## 11550 As EE was lacing client's shoe, the client scratched EE's right arm & fingers.
## 11551 As EE was lifting a laundry buggy onto the sidewalk, her rt wrist snapped.
## 11552 As EE was preparing to wash pots & pans, the steamburned her left arm.
## 11553 As EE was pulling gate closed the wind's force thrust the gates door foward, there was metal prong sticking out at the base of the door. Lac rt heel
## 11554 As EE was putting radiology envelopes in black trash liners into dumpster, as EE & another EE were lifting the bag while adjusting to put in dumpster, it landed on (rt) thumb causing contact with dumpster, cutting (rt) thumb ()
## 11555 As EE was rolling her chair back to prepare putting away some papers, she leaned forward and slipped out of her chair. She fell on to the floor injuring her thighs, lower left side of her back, middle finger, left hand, and right forearm. ()
## 11556 As EE was shooting shotgun, trigger guard hit right middle finger. Injury to right middle finger
## 11557 As EE was sitting at her desk, turned to answer telephone, caught her right thumb on corner of desk, her desk is metal.
## 11558 As EE was stacking speakers too high, he bent over to pick up a speaker. Speaker was not stable and fell sideways and hit EE in forehead. ()
## 11559 As EE was traveling in his state vehicle, another vehicle collided into the car. EE's left knee hitthe dashboard, forehead hit steering wheel
## 11560 As EE was walking across royster bldg parking lot on way into work. EE's right foot slipped into a hole causing EE to lose balance, but did not fall. ()
## 11561 As EE was walking into the bathroom, her right little finger was caught in the lock of the door.
## 11562 As EE was walking through programs hallway he slipped on the floor stripper the inmates were using on the floor and fell on right elbow. ()
## 11563 As EE was walking to control center, her foot got caught on a piece of plywood. Numbness- right armpain- back.
## 11564 As EE wearing gloves, pt blood soaked cotton gaugecame in contact with an open cut on EE's hand.
## 11565 As EE went to sit, chair rolled away and EE fell backwards onto floor.
## 11566 As I approached the door to the lab, I had my coat and purse in one hand and used my other hand to open the door. My coat obscured my view of the bottom of the door. When I pulled the door open it struck the side of my left foot, injuring my toes. ()
## 11567 As I exited men's bathroom, the door was jerked open as student entered restroom. I fell forward severely twisting both knees and right foot.
## 11568 As I left b side of bldg 2, I tripped and stumbled but didn't fall. I felt a sensation of pins and needles up and down back ()
## 11569 As I prepared to move pts from b hall to c hall tocreate beds I lifted bags & boxes bending over tolift items I pulled area back causing strain
## 11570 As I started out to the rec yard of unit3b-blk side my rt hand was caught btwn the door
## 11571 As I stepped from owen hall on my way to a campus meeting, I stepped on a tack on the sidewalk ()
## 11572 As I turned in my chiar I accidentally hit my rt knee on the lock hanging from the lock boxes
## 11573 As I walked down the stairs outside of the thompson center I fell down the last two stairs and landed on both my knees and my foot was bent under me. ()
## 11574 As I was attempting to sit in chair, it rolled backwards and I fell, striking tail bone and back of head on hardwood floor. ()
## 11575 As I was changing resident I caught my right foot in the cord to the air pump which caused me to fall & bend my knee up under me & sideways. ()
## 11576 As I was closing an inmates trap door after delivering food trays the inmate held a squirt tip bottle out the door and squirted urine at me
## 11577 As I was clsoing the falls lake holly point sra main gate, my left index finger was crushed between the two tips of the gate sections ()
## 11578 As I was coming out of elevator and accidently hit with the trashcan by inmate worker I was behind it and he didn't see me rt arm was hit
## 11579 As I was entering the justice building downtown this morning, the automatic door ripped off the nail on my second toe on my right foot. ()
## 11580 As I was getting ready to walk back into courtroomturned to check door, dislocated hip
## 11581 As I was getting up out of the chair in tower & I caught a wood splinter underneath my finger nail
## 11582 As I was going to the office, a black dodge truck ran me off the road into a ditch.
## 11583 As I was leaving f-block the door jammed while I was walking out. My back was against the door way
## 11584 As I was leaving my clients' home, I tripped and fell over uneven concrete walkway.
## 11585 As I was leaving to go to lunch as I was going up steps my foot slipped causing me to fall on lt knee and rt hand
## 11586 As I was letting the water out of the steam tray the faucet came off & hot water came out & burned top of right foot
## 11587 As I was pulling the drawer out to retrieve flat film, the drawer suddenly broke apart landing on my arm. ()
## 11588 As I was sitting down the chair rolled backwards from under me and I fell on the floor and landed on my right side. ()
## 11589 As I was stepping down the steps in visitation, I began to fall and I placed my right foot down to catch myself, and as I stepped down, it twisted; however another staff caught me, breaking my fall. ()
## 11590 As I was taking an inmate to the ground, he stuck his thumb behind my left ear and scratched me in the process. ()
## 11591 As I was walking toward the gatehouse from the parking lot, I felt dizzy and fell to the ground on my right palm, right knee, and area below right kne
## 11592 As Mr. Mccaskill was inspecting the kitchen, his rt foot hit a sticky spot twisting his right foot & making a loud popping sound injuring his foot
## 11593 As Ms. Kellis was walking up the stairs, she felt a pressure, catch and pain in her left knee ()
## 11594 As Ms. Poage was stepping into the kitchen, she tripped over the step leading into the kitchen ()
## 11595 As Ms. Sheppard was walking out of the administration building she hit an uneven patch of sidewalk and fell to the ground. Her left forearm & hand broke her fall and resulted in swelling. ()
## 11596 As a basic law enforcement training part time instructor, the employee was role playing with students.. During a role play the employee slipped in mud and his right elbow hit the concrete sidewalk ()
## 11597 As a bus monitor, EE tried to stop student who ran off. He hit, bit, kicked etc EE on her shoulder and chest.
## 11598 As a cpi instructor, was dropped by 2 employees onto right knee while participating in a technique ()
## 11599 As a needle was being removed by phlebotomist, the patient jerked & needle stuck her right index finger.
## 11600 As a passenger in a state vehicle there was a correction in the direction of travel resulting in a sideward snap of neck.
## 11601 As a result of a brain tumor caused by long term exposure to chemical fumes.
## 11602 As a temporary employee, her job includes flipping flags located outside patient door. The flags are located above her head. She has to wipe down tables in between patients and at the end of the day. ()
## 11603 As c/o hildreth was changing the tv in the west wing on the mezzarine, she was coming down the stairs, her foot slipped and she fell down 3 to 4 stairs ()
## 11604 As client was stumbling I tried to prevent him from falling by catching him around the waist areai fell & hurt my rt wrist
## 11605 As closed bar door to clothshouse she caught her finger in it
## 11606 As door was closing put his hand up in attempt to close door & his second finger on right hand caught in door & was mashed
## 11607 As employee entered the classroom, he slipped on a wet spot & fell on his left shoulder.
## 11608 As employee got up from chair, her foot slipped and she fell on the floor landing on her left side. ()
## 11609 As employee grabbed tower door, trying to prevent it from opening to far, left hand got caught between the door and the guard rail.
## 11610 As employee walked down wooden ramp leading to ferry, he turned, slipped, and fell onto his right shoulder. Ramp had spots of ice on it. ()
## 11611 As employee walked into welding shop, she slipped on the wet concrete floor, causing her to fall.
## 11612 As employee was coming inside the building an individual ran up and hguged him and bit employee on his left shoulder ()
## 11613 As employee was entering the building, she tripped over the raised area at the entrance near the kitchen area fell on right hip and right knee. ()
## 11614 As employee was entering the mcgowen building, a coworker spoke to her. She turned her head to reply to the coworker. As she turned her head forward, she ran into a supporting post of the canopy attached to the mcgowen building ()
## 11615 As employee was exiting maintenance truck, turning torso to left, felt sharp pain in his lower back. ()
## 11616 As employee was folding up ladder he had been using, he felt something in his left eye.
## 11617 As employee was leaving the bathroom stall, the stall door slammed shut on employee's head ()
## 11618 As employee was loading pipe back into truck after it rolled out, he felt a strain in his lower abdomen and groin area. ()
## 11619 As employee was moving file folder in her office, some fell. She bent to picked them up. As she went to stand upright, she felt something pull in her back ()
## 11620 As employee was raking asphalt behind patching machine, he felt a pull on his groin area. It later caused pain when he walked. List injury as: strain groin area ()
## 11621 As employee were clearing a beaver damn, Mr Hawks was forcefully pulling and dragging away enterlocked driftwood as he felt a pop between his shoulder blades
## 11622 As exiting dorms she felt something on her lt arn she looked down and saw a spider on her arm and kncked it off
## 11623 As he attempted to open the back door to the food service building he hurt his lt shoulder the exhaust fan had pulled a vacuum on the door
## 11624 As he exited the armory gate, I attempted to wave my left hand to get a staff member attention and lt fingers hit the razor wine.
## 11625 As he exited the truck his right knee twisted when he placed it on the first step. ()
## 11626 As he helped move a cow through the chute to the trailer, the cow kicked him above the lt knee.
## 11627 As he reached the bottom of the stairs he missed the step & landed hard on his rt foot. Complains of dull pain in upper rt leg
## 11628 As he was closing the door it closed on his left index finger. ()
## 11629 As he was crawing resvoling he was knocked to the ground by the door and was struck on his hand
## 11630 As he was exiting the stage he fell into a cyclorama light pit bruising his hand, leg, and gluteus.
## 11631 As he was sitting down in a chair, the chair twisted hitting his right knee on the desk drawer ()
## 11632 As inmate was being placed in cell, he was irate. He was left in restraints and then spit on me. ()
## 11633 As larry walked towards the tailoring plant officedown the loading ramp, he slipped, fell, & fractured his right wrist.
## 11634 As nicole was entering the third floor of the mcleod bldg stairwell, she tripped on the threshold causing her to trip and fall.
## 11635 As ofc was escorting inmate back to his cell, the inmate turned and spit on the officer. ()
## 11636 As officer approached the cell door, inmate threw an unknown substance on him. ()
## 11637 As officer maness was unloading surplus copier from the truck, he stepped between the tailgate and scissor lift lamp, fell and scraped his leg on the way down ()
## 11638 As officer mccoy was seated in a chair, she stood up and felt a sharp burning pain from right shoulder to waistline.
## 11639 As officer opened inmate's wicker door, the inmate threw and unknown substance on him ()
## 11640 As officer was walking up to inmate, the inmate threw an unknown substance on him ()
## 11641 As part of job EE keys fertilizer information intodatabase. Repetitive motion has resulted in cts. EE noticed pain in wrist grew worse. Dr. On 5-6-04
## 11642 As part of new hire orientation, I had to be pepper sprayed and had an allergice reaction to the pepper spray. ()
## 11643 As part of study abroad program, engaged in service learning project in ghesc, italy, repositioning stone. In process of passing large stone, stone slipped and pinched knuckle. ()
## 11644 As part of training, received oc pepper spray class& exposure. After exposure to pepper spray, claimsto have very senisitive scalp, lips, face, e
## 11645 As routine worker the employee has to repeatedly remove cages and racks, which caused the injury. Both hands and shoulder ()
## 11646 As sgt. Williams walked towards dorm, inmate came ran up behind him. Sgt turned to face inmate and they fell on the ground and wrestled until staff arrived. ()
## 11647 As she stood up from her chair, her toe hooked under the bottom desk drawer and she toppled over the drawer and fell to the outside of the drawer onto the floor. She hurt her arm, leg, hip and neck. ()
## 11648 As she was doing her security check and coming down the stairs, slipped on water and tried to catch with my right hand and injured it when I fell. ()
## 11649 As she was getting up from a chair to open the door, she got her foot tangled up on the leg of the chair and she fell hitting her head, back, leg, arm and left hand and shoulder ()
## 11650 As she was going to hold the door so staff member pushing a cart could enter medical, the door came toward her &slammed against her left shoulder ()
## 11651 As she was opening door to go to the back office where the charts are, she flet a sharp pain in her upper back. ()
## 11652 As soon as I stepped onto the waxed linoleum tile floor I slipped and fell immediately. Carpet was wet from shampooing the night before.
## 11653 As staff exited the unit, she stepped into a hole twisting her right foot and ankle off the sidewalk. ()
## 11654 As staff was intervening with a client the tv was pushed hitting top of left foot ()
## 11655 As students began fighting on wing one, staff ran over and the employees foot slammed into an object as she tried to get out of the way of staff restraining a student.. ()
## 11656 As the EE entered the building reporting to work, she stepped on the concrete floor and slipped on wet spot. ()
## 11657 As the employee was walking to her car, she stepped in a hole, twisting her left ankle and falling on her knee. ()
## 11658 As the inmate was taken down the EE states that his leg was trapped under inmate and or under officer.
## 11659 As the iw was bending over to move files from the floor to a shelf, she experienced a sharp pain in her lower back. ()
## 11660 As the officer was closing the control booth door, the edge of the door cut him on the thumb ()
## 11661 As the officer was retrieving the inmate's tray through the door, the inmate slammed his wrist against the door ()
## 11662 As walking into door at office building; had moth to fly into ear. List injuries as: left ear ()
## 11663 As wheelchair was being pushed down ramp, tripped over footrest and step. Turned ankle
## 11664 Asaaulted by patient-hit in nose, face and back of neck. ()
## 11665 Asbestos exposure
## 11666 Asbestos fibers has caused EE to have breathing problems.
## 11667 Asbestos in eyes
## 11668 Asbestos insallation at mount mitchell restaurant
## 11669 Asbestos installation at mt mitchell restaurant
## 11670 Asbestosis exposure
## 11671 Asbestosis exposure/claimant died 12/07/95
## 11672 Ascend the ladder from the exterior roof of taylor-slaughter bldg, EE slipped on remaining precipitation from the rain, fall appro 10ft to ground.
## 11673 Asked client to go & get bath client got up & swung at EE hitting EE on neck w/fist
## 11674 Asked inmate to leave library. Inmate was being hostile & violent. Inmate struck me under left eye
## 11675 Asking I/m if wanted to come out for shave and I/m threw urine and feces on EE ()
## 11676 Aspects of job significantly contributed to the development of left knee condition
## 11677 Asphalt gave way and EE fell into ditch hitting his left hip on concrete
## 11678 Aspirating mosquito's. Mouthpiece of aspirator chipped bottom middle left tooth. ()
## 11679 Assalted by an inmate ()
## 11680 Assault - breaking up fight between inmates possible blood exposure only. ()
## 11681 Assault - possible blood exposure while breaking up an inmate fight ()
## 11682 Assault by another staff member
## 11683 Assault by juvenile - punching on staff head several times
## 11684 Assault upon law enforcement officer
## 11685 Assaulted by a co worker, punched in the face, sitting at the stop light
## 11686 Assaulted by a juvenile ()
## 11687 Assaulted by a patient
## 11688 Assaulted by a patient by grabbing her left index finger and kicking her in the abdomen.
## 11689 Assaulted by a student. Pushed against wooden door and right foot stepped on by the student.
## 11690 Assaulted by an inmate, while passing cleaning supplies to him. ()
## 11691 Assaulted by female trying to take into custody, sheel came off chair throwing EE into the floor very hard
## 11692 Assaulted by inmate ()
## 11693 Assaulted by inmate and received scratches on left side of face and back of neck
## 11694 Assaulted by inmate escorting him to shower
## 11695 Assaulted by inmate w/closed fist to face
## 11696 Assaulted by inmate when cell was open for cleanup time. ()
## 11697 Assaulted by inmate, hit in head with metal bracket ()
## 11698 Assaulted by inmate, hitting and kicking.
## 11699 Assaulted by inmate. Injury to left side of face--abrasion, left side of chest-torn cartilage from rib cage, strain neck muscle, from choking.
## 11700 Assaulted by juveniles trying to escape & take down EE. Was administering medication & snacks. Lt arm/shoulder; rt knee/lower back/hip/thigh teeth
## 11701 Assaulted by patient in restroom.
## 11702 Assaulted by patient injuring right hand
## 11703 Assaulted by patient, hit on left eye and injured right 5th phalanx-finger.
## 11704 Assaulted by patient, punched on left side of jaw by patient ()
## 11705 Assaulted by student
## 11706 Assaulted by student w/a broom handle while tryingto assist co-worker who was being attacked by same student
## 11707 Assaulted by student while trying to help another staff member that was being choked by student
## 11708 Assaulted by student who was out of control. Student kicked EE in face & EE strained back whiletrying to restrain student. Face & back strain.
## 11709 Assaulted by unknown person.
## 11710 Assaulted during supervision of segregated inmate ()
## 11711 Assaulted during violator contact
## 11712 Assaulted when I/m grabbed him while assisting another c/o picking up food trays
## 11713 Assaultive patient-hit staff on rt arm and lft elbow during restraint-combative patient--abrasion forearms
## 11714 Assembling 'big sally', almost dropped a part, caught it, strained shoulder and jammed lt thumb
## 11715 Assembling discharged records and reviewing ward charts for timeliness. Carpal tunnel syndrome right wrist.
## 11716 Assembling glass rod onto a rubber policeman and glass rod brake and cut finger open.
## 11717 Assembling glass rod onto rubber policeman, glass rod broke and cut finger open
## 11718 Assembling scaffolding, end unit rolled over my head causing my back to twist as I grabbed it and prevented myself from falling. Lower back pain, soreness in back. ()
## 11719 Assembling shelving, cut thumb on upright metal edge.
## 11720 Assembly of overhead equipment, small metal particle fell into right eye. Glasses were worn during assembly
## 11721 Assessing child motor skills. EE demonstrated: scooting down steps on buttocks, while holding child, & scooting bkwds. Injured low back
## 11722 Assessing self injurious pt, standing in doorway of his bedroom, pt approached EE and punched him in the left temple area ()
## 11723 Assessing stream riparian area quality, was exposed to poison ivy
## 11724 Assiating with out of control juvenile, juvenlie spit in her eyes and face
## 11725 Assigned a call on old us 64 involving a horse & mule out of pasture. EE hurd animals to pasture through high weeds. Insect bite left lower leg.
## 11726 Assigned at wake medical center, leaving hospital parking lot fell hurting left knee & left hand while crossing street
## 11727 Assigned classroom had mold covering cabinets, desks, books, windows, doors, countertops.. Immed after bgng work in room, experienced breathing dif
## 11728 Assigned custody offcier on yard attempting to open fire door... Rt forearm/lt wrist f18 filed. ..
## 11729 Assigned duties-I am the forms person at dix formsare being changed to crh requires handling boxes up to 50 lb repetative
## 11730 Assigned on road squad duty supervising inmates on work site. Observed tick on his back after work hours at his residence - wooded area
## 11731 Assigned to attend all-day class-parked car in public lot/walked 2 blocks to class and in processstepped off curb hurting calf in lt leg
## 11732 Assigned to clean bathroom on foothall field. Areawas saturated with pollen. Began itching before end of shift and itch continued to worsen.
## 11733 Assigned to cleaning block when inmate assaulted her w/unknown substance in bottle thru trap door & on inmate's cell door
## 11734 Assigned to gum dorm-pushed outside vestibule door open-hurt right shoulder ()
## 11735 Assigned to hatteras control and hit her knee at the counter in the control station. EE was prior knee injuries.
## 11736 Assigned to install door stops in each room on 1stfloor of the villages & had to use hammer drill into a concrete floor. Numbness rt arm & hand.
## 11737 Assigned to kitchen security. Officer was locking 220 door when my 3rd finger on right hand got caught in key
## 11738 Assigned to segregation. Picking up a pair of handcuffs from desk beside metal file cabinet & drew his arm back & scraped right forearm in cabinet
## 11739 Assigned to tower #4 and was bitten/stung by what appeared to be termites or ants. Bitten all over upper body leaving red marks.
## 11740 Assigned to tower 1 & something flew out of air conditioner & hit EE in left eye
## 11741 Assigned to tower 6 she was standing in front of heater when her vision became blurry & knees weaken causing her to fall hitting her back. No injur.
## 11742 Assigned to traffic direct'nl post at lowes motor speedway. EE was parked sitting inside car when another car backed into patrol car. Back & head.
## 11743 Assigned to wildfire as facilities unit leader. Began experiencing numbness in fingers, feet & lt leg. Cause unknown. Taken for diagnosis.
## 11744 Assigned to work b, d, and f blocks two rats came out of EE's coat when EE picked up the rats fleas that bit him allover his cheast and back
## 11745 Assigned to work in control center #3 ()
## 11746 Assigned to yard. Reached to place his hand on fence getting his left index finger in razor ribbon
## 11747 Assigned tower #1 raised trap door lost footing & slipped into stairwell opening. Lifting door sliped & fell - scratch rt knee & bruised lt shoulder.
## 11748 Assigning in pic procedures hurt index finger on right hand
## 11749 Assisiting a co-worker transfer a client back into a wheelchair. The client turned his head and herupper rt arm.
## 11750 Assist chg. Resident in bed-coworker and I turned resident on side. Pulled back against my arm/shoulder while holding-pulling r. Shoulder ()
## 11751 Assist coworker transporting heavy pt up incline in gerichair. My stomach is sore & low back throbs
## 11752 Assist lift client w mechanical lift-grabbed top of sling to keep client from falling out-pain l. Wirst radiating up forearm. ()
## 11753 Assist resident from recliner to bed-resisted-started to sit down-pull in mid back. ()
## 11754 Assist resident into shower room-attempted to stand pivot (to sit) into shower chair-resident combative-slammed down/ back into chair hitting employee's left hand (on back of chair) bending 4 fingers back. ()
## 11755 Assist resident off of commode, resident grabbed uniform and rail at the same time, EE holding arm and resident fell back down.
## 11756 Assist transfer resident out of recliner to bed-resident resisted-tried to sit down-felt pull in mid back and r. Shoulder blade. ()
## 11757 Assist. Change resident-attempting to keep resident from falling-resident jerking emp. Back and forth- r. Shoulder elbow soreness ()
## 11758 Assist. Chg. Client-client leaning against emp. -empbearing weight. Client kept pushing forward into emp. Forcing emp. Backwards. Back hurt later.
## 11759 Assist. Chg. Resident-resident seated in chair-kept tilting chair backwards- emp. Kept lifting chair upright to prevent resident from falling -pain in upper back. ()
## 11760 Assist. Co-worker. Shave client-client hit co-worker's arm-resulting in razor cutting injujred employee's left hand.
## 11761 Assist. Resident sit in wheelchair-l. 3rd. Finger caught between resident and side arm on wheelchair. ()
## 11762 Assist. Resident to slide back in chair-went to pull him back by his gait belt and something popped in low back. ()
## 11763 Assist. Stand pivot resident from toilet to wc. Stood resident up to dress-resident started leaning then to drop-felt pull in back ()
## 11764 Assist. Transfer resident from w/c into regular chair-resident pulled back causing pain in r. Shoulder/neck. ()
## 11765 Assist. Transfer resident from w/c into regular chair-resident squatted down in usual position when attempting to be transfered-pain in l. Shoulder ()
## 11766 Assist. Transfer resident to chair-when sat resident back-felt l. Shoulder start to hurt.
## 11767 Assist. Walk resident into bathroom-resident pushing/pulling -pushed emp. To floor then fell on top of er-landed on left side-complaint of r. Ankle & elbow and l shoulder and leg pain/soreness. ()
## 11768 Assistaing inmate back to cell - inmate spit on officer.
## 11769 Assistance was needed in cottage, but EE was in gym. EE began running across field to cottage & twisted knee. Caused contusions to right knee
## 11770 Assistant manager was helping set up for nc state fair when a doberman owned by one of the fair workers bit her right buttock. ()
## 11771 Assisted 2 staff members restrain student who was attempting to fight another student
## 11772 Assisted Ms. Nichols helping an inmate up who had slipped on a newly waxed floor. Pain in back/neck after assisting inmate up off the floor.
## 11773 Assisted a clinet in bathroom & client began to fall. EE intervened & hurt right wrist trying to break fall. Injury to right wrist.
## 11774 Assisted chg. Residents clothes-directed resident out of bathroom-holding residents left arm-resident started jerking /swinging emp. Around-strained neck/upper back/shoulders. ()
## 11775 Assisted client from floor to w/c
## 11776 Assisted client in leaning forward in chair resulted in pain in rt wrist.
## 11777 Assisted client to stand (to toilet)client dropped- emp. Assisted to stand back up and lift to bed -back pain.
## 11778 Assisted co with cutting down sheets around inmateneck w/a cutdown knife. Staff pulled away, the knifecontacted lt inner forearm above wrist
## 11779 Assisted get resident up and ready for day-resisdent pulled back- caused co-worker to bump into resident- resulted in resident starting to fall-caught-resident upset-jerked- twisting back. ()
## 11780 Assisted getting resident up out of floor and into chair then attempted to pull resident's pants up- employee was holding resident from behind so co-worker could pull pants up-felt pull in back. ()
## 11781 Assisted in a call extraction of an inmate while restraining inmate someone's knee hit EE in the rteye
## 11782 Assisted in breaking up a fight between inmates. Injured lower left side of back and legs.
## 11783 Assisted in clearing kitchen of inmates during fire. Inhaled smoke from fire.
## 11784 Assisted in getting patient up after which her back started hurting since.
## 11785 Assisted in moving tables, chairs & boxes for room set-up of activity & hlth fair. Middle of back affecting rt side.
## 11786 Assisted in physically restraining a student. Employee escorted a student to the floor while student was attempting to fight
## 11787 Assisted in restraining a combative inmate who washandcuffed. I/m suddenly rose from a seated posit ion causing left shoulder and upper arm to pop.
## 11788 Assisted in securing disruptive inmate he grabbed upper torso of inmate falling to floor during struggle. As EE fell right arm struck commode rim
## 11789 Assisted in use of force in which an inmate spit in head
## 11790 Assisted keeping client from injurying self and lifting up off of floor.
## 11791 Assisted lab with resident during blood draw and resident was swinging to hit kathy price who was drawing blood and resident hit my arm ()
## 11792 Assisted lift a client into bed, EE felt pain in upper lt chest-continued thru night-sneezed felt pop in chest
## 11793 Assisted lift of stretcher w/patient on board
## 11794 Assisted moving a 5 gal. Paint bucket out of the paint shop, I twisted around & I felt a pull on theleft side of my lower back.
## 11795 Assisted other employees pulling large truck and patient tray bottoms into kitchen. When attempting to steer truck felt pull in back.
## 11796 Assisted patient from a sitting position in floor to standing-felt strain/tightness in lower back. ()
## 11797 Assisted resident from sofa-chair in dayroom to rolling walker. Back started hurting later. ()
## 11798 Assisted resident into dental chair-stand pivoted resident into chair-had to go behind dental chair to lift/pull resident up and back into chair-felt strain in l collar bone area (shoulder).
## 11799 Assisted resident to stand from toilet-supported resident while co-worker changed-assisted to chair-pain lower back ()
## 11800 Assisted resident to stand-placing gait belt around-resisdent began to fall-caused r. Ankle to turn in toward l. Foot. ()
## 11801 Assisted resident to wheelchair with a health care technician assistance. When resident turned to sit in wheelchair she punched me on my chin and scratched my arms. ()
## 11802 Assisted restraining of I/m, fell on knees. ()
## 11803 Assisted retraining patient. Patient kicked and fractured left 5 th finger
## 11804 Assisted staff get resident up and dressed, had to turn resident back and forth to put sling under. After went to shave another resident bent down and felt pull in back (below l. Shoulder blade). ()
## 11805 Assisted staff to hold pt so pt could be cleaned, pt grabbed into rn hand, causing pt fingernails to dig into skin of hand
## 11806 Assisted stand a sedated resident up and attempt to walk from wheel chair to dental chair-resident began to sit prior to reaching dental chair-resulting in bearing full weight to keep from going to floor-low back pain ()
## 11807 Assisted students w/moving patient in & out of bedon 3/30 & 3/31/06. Complained of increased tenderness after standing
## 11808 Assisted w/ an arrest offender began to resist attempted to stand offender up to apply handcuffs; placed him on floor after cuffs were on saw blood
## 11809 Assisted w/ lifting and moving pts, back very tight, wrked extra shift causing increased discomfort
## 11810 Assisted w/client's transfer to wheelchair w/use of lift. Client began falling out of chair. EE broke fall
## 11811 Assisted walk resident to sunporch (after 12:00 pm check & change). Emp. Sat down in chair in front of resident -resident suddenly slapped emp. Across left side of head (ear & jaw). ()
## 11812 Assisted with 4 man carry of a combative patient. Injured left distal ulna(lower arm) and left wrist.
## 11813 Assisted with carrying an agitated patient to restraints. Pain in upper back extending around to left front chest.
## 11814 Assisted with patient restraint, afterward, employee complained for shoulder pain ()
## 11815 Assistig inmate out of shower, inmate pushed open door and lunged towards another officer, glover tried to stop inmate and was cut w/blade on ear/arm.
## 11816 Assistin gclient with shower, slid on substance in floor- twisting lower back.
## 11817 Assisting & teaching clients. Hornets nest was disturbed.
## 11818 Assisting 2 cna's stand resident up to change clothes. Resident punched in l. Side of face. ()
## 11819 Assisting 2 other staff perform check and change-felt pull/strain in mid lumbar area. ()
## 11820 Assisting 2 other staff with lifting a patient who had fallen in the shower.
## 11821 Assisting 300 lb pt walking getting up out of chair noticed back pain left lower side following morning ()
## 11822 Assisting 4 other staff-transfer client from x-ray table to w/c- employees bore full weight) noted pulled muscle in upper left leg.
## 11823 Assisting Dr. As she drew blood with butterfly needle from cat infected with fiv.
## 11824 Assisting Dr. Goldstein w/ procedure gathering secsurine reached in box felt stick withdrew hand, found 3cc needle uncapped left in wrapper, discard. ..
## 11825 Assisting EE in exhaust repair. Piece of metal flew in eye causing injury
## 11826 Assisting EE w/moving desk while sliding dolly around desk slipped landing on left foot, big toe
## 11827 Assisting a correctional officer in a use of forcetried to help with hand cuffing, hurt right shoulder and jammed right pinkey **sal cont. ******
## 11828 Assisting a customer in joblink, when EE was bitten by insect. Lower top of left arm.
## 11829 Assisting a inmates into a van for transport ()
## 11830 Assisting a nurse with medication when inmate threw an unknown fluid/yellow liquid in my face ()
## 11831 Assisting a patient out of gerochair, the patient sat back instead of getting up. Staff injured right shoulder. ()
## 11832 Assisting a patient to take a shower. The patient refused to take a shower and rolled off the bed onto staff's right 3rd finger.
## 11833 Assisting a pt out of a chair with the help of a co-worker, EE felt a pull in his back, came in next day and reported this to his supervisor
## 11834 Assisting a pt out of bed, EE felt lower back pull and began hurting
## 11835 Assisting a resident from the floor, I could feel a pain and pulling in the bottom of back and thighs
## 11836 Assisting a resident out of the dining room when another resident came from behind and pushed both EE and the resident. They felt to the floor
## 11837 Assisting a resident to stand up-felt pulled muscles in r. Hip. ()
## 11838 Assisting a resident to stand-resident started to fall-pulling emp. R. Side ()
## 11839 Assisting a resident to standing position, & back locked up, loss rom, pain.
## 11840 Assisting a staff because patient started fightingtook patient to pr. Got kicked in lft leg and was pushed against wall. Twisted lft foot, shoulder.
## 11841 Assisting aggresive patient to exit van twisted myknee-right
## 11842 Assisting an agitated client from pov to cottage when client started strugging/jerking EE's arms and scratching and shoving EE into wall.
## 11843 Assisting an agitated pt fm turning wheelchair over. Wheelchair turned over landing on employee's left foot.
## 11844 Assisting an inmate getting out of wheel chair & was too large for her
## 11845 Assisting an inmate in medical and the inmate went into a grade mal seizure. Inmate, his w/c, and her all fell to the floor. Finger caught between inm
## 11846 Assisting an inmate off the floor. Extended right hand, proceeded to pull inmate up off the floor ()
## 11847 Assisting an inmate with a telephone call to her family and supervisor was sitting in desk chair and must have leaned wrong causing chair to turn over and she fell out of chair to floor injuring right side of body. ()
## 11848 Assisting an uncooperative client, tried to reposition client
## 11849 Assisting and subduing a combative inmate, EE encounter bloodborn path to chest and right arm
## 11850 Assisting another EE in getting free of an assaultive juvenile, the staff grabbed EE's hand & arm injuring his rt arm and hand
## 11851 Assisting another EE to lift client off bathing slab, pulled back.
## 11852 Assisting another EE while trying to restrain a student. EE was kicked in left ribs onto floor
## 11853 Assisting another EE who was trying to re-attach tailgate to dumptruck when tailgate slipped crushing right thumb
## 11854 Assisting another EE-EE fell into tire rut twisting rt ankle.
## 11855 Assisting another cna to lift pt from bed to chair, l arm had popping, sound, feltit pull, shoulder over
## 11856 Assisting another cna w check/change in the w. Bathroom. Attempting to pull resident's pants up-resident grabbed r arm, pulling it downward and twisting. Felt elbow pop. ()
## 11857 Assisting another female staff who was physically restraining a student, was standing behind the student, she kicke me on my right knee with heel
## 11858 Assisting another hct to help resident from shower chair to wheelchair. Resident bit me on my left hand. I had on gloves. Break in skin ()
## 11859 Assisting another nurse stand client up from floor-bent over-lower back popped. ()
## 11860 Assisting another officer during a fight. The suspect scratched the lt side of EE's face/cheek with her fingernails
## 11861 Assisting another officer that was being assaulted by an inmate. ()
## 11862 Assisting another officer w/violent inmate
## 11863 Assisting another officer with getting the carts off the block officer evans lifted the supply cart up 2 steps and (left) hand and wrist twisted ()
## 11864 Assisting another staff in a two person lift when was hit by a client in the jaw with client's knee ()
## 11865 Assisting another staff in lifting a patient and felt a sharp pain in back **rtn apt w/Dr Is 5/03/05 -8th day oow**
## 11866 Assisting another staff lift client. EE was to lift bottom portion of client and other staff lift top portion. Other staff did not lift at the same time; EE felt a pain going down left side of back. ()
## 11867 Assisting another staff member in performing cpi hold on a patient, patient headbutted employee. ()
## 11868 Assisting another staff member to bring in an o2 tank; she got her right shoe caught on door turned right foot with full weight bearing down
## 11869 Assisting another staff member who was being assaulted by a patient in the nursing station, EE was assaulted by a second patient, the patient.. ..
## 11870 Assisting another staff menber in restraining 2 juvenils fighting employees left knee was twisted ***sal contin***
## 11871 Assisting another staff move chairs and was pushed into wall by accident by staff. Landed into wall on right arm and right shoulder causing pain in area. ()
## 11872 Assisting another staff move client up in bed and felt pain in lower back.
## 11873 Assisting another staff to get patients ready to go to to beauty shop and pt became resistive, then pt scratched EE--superficial scratches on rt wrist
## 11874 Assisting another worker transfer a resident, whenee felt something pull in right knee. Continued to work, as day went by pain/swelling worsened.
## 11875 Assisting bathe a resident-resident jerked employee causing employee to be pulled across tub (front to back of tub) pulling back. ()
## 11876 Assisting bathe of client. Client came out of shower and hit employee with fist in left breast
## 11877 Assisting bathe-adjusting sling to transfer out of tub-patient slid and had to ease to floor -felt pain in lower back ()
## 11878 Assisting blind pt at water fountain, pt went down on knees, causing EE to twist right shoulder/neck ()
## 11879 Assisting boat captain with anchor, slipped on boat deck ()
## 11880 Assisting campus police with fire alarm, employee breathed in smoke
## 11881 Assisting carrying a bucket of water for fire safety training and strained back
## 11882 Assisting change a client-holding clients hands client head butted EE in nose and upper mouth.
## 11883 Assisting change a patient became agitated and scratched on both arms. ()
## 11884 Assisting change a patient-patient kneed in ribs under l. Breast ()
## 11885 Assisting change client - client kicked EE in right thigh
## 11886 Assisting change client, EE right wrist caught between clients arms and body, twisted, noted feltpop/pain.
## 11887 Assisting change client, client bit EE on right forearm
## 11888 Assisting change client, client bit EE on right ring finger
## 11889 Assisting change client, client grabbed wrists and twisted left wrist.
## 11890 Assisting change client. Client swung at EE, hitting EE in neck, then shoved EE into the door
## 11891 Assisting change patient-aggressive-kicked l. Pinkie finger ()
## 11892 Assisting change patients clothes-patient punched in left side of nose/cheek. ()
## 11893 Assisting change resident on floor-sqatting on knees leaned forward and felt pain in l. Knee. ()
## 11894 Assisting change resident's clothes, resident pushced chair up and back landing on end of l. Middle toe ()
## 11895 Assisting change resident-resident grabbed r. Wrist and twisted. ()
## 11896 Assisting change resident-resident kicked in directly below r. Knee. ()
## 11897 Assisting change resident-resident was aggresive pushing/shoving. Next morning (6/11/14)noted pain in low back. ()
## 11898 Assisting changing client, client became resistivelate during shift employee noted pain in right side of chest.
## 11899 Assisting chg. Patient-rolled patient towards employee- patient jerked body away-pain in low back. ()
## 11900 Assisting cleint out of tub & fell in twisting left side of back
## 11901 Assisting client ambulate. Client lost footing and EE was still holding gait belt until client placed feet back on floor. ()
## 11902 Assisting client back to bed from bathroom and she went down and staff assisted her to floor ()
## 11903 Assisting client back to room; client moved head back, EE moved client's head to the right; while EE was holding gait belt, client attempted to buck causing strain to left shoulder and shoulder area and neck. ()
## 11904 Assisting client down hall; client leaned back; staff broke fall causing pain in right shoulder
## 11905 Assisting client down hallway with right hand on middle back area; client stumbled backwards, bending EE's right thumb backwards. ()
## 11906 Assisting client down steps. Client leaned & EE supported client under arm. EE felt discomfort next am
## 11907 Assisting client dressing for breakfast when client grabbed EE arm & scratched it. Scratched rt forarm.
## 11908 Assisting client during work duties; struck the table with right knee when turning the corner ()
## 11909 Assisting client exit bathroom, client slapped employee in face
## 11910 Assisting client from wheelchair to bathing chair and felt a pull in neck and hips on right side. Also walked antoher client to unit
## 11911 Assisting client from wheelchair to toilet client began to fall. EE reached out to catch. Client & EE injured right shoulder
## 11912 Assisting client from wheelchair to trolley-clientdropped weight causing EE to pull lower back
## 11913 Assisting client in bathroom and hit rt knee on wheelchair ()
## 11914 Assisting client in bathroom, wheelchair rolled back onto EE lt foot, causing her to lose balance & fall onto her left knee/leg.
## 11915 Assisting client in bed making. Pulled bed away from wall. When EE was assisting client to pull/push covers on the other side, EE had a sharp pain through mid back. ()
## 11916 Assisting client in changing when the client turned and bite EE's right upper arm. ()
## 11917 Assisting client in dining room adn client got agitated and hit employee in the mouth/jaw. Pain in lt front tooth.
## 11918 Assisting client in getting ready for bath, clientslapped EE in the face
## 11919 Assisting client in hanging his jacket, client accidentally slammed door on EE right middle and ringfinger
## 11920 Assisting client in preparing her bath, client became aggressive and bit staff
## 11921 Assisting client in pulling pants up. Client spotted item on dresser & dove for it. Client started to fall. EE tried to break fall
## 11922 Assisting client in putting on clothes, client struck EE on left side of nose, breaking glasses
## 11923 Assisting client in restroom, client stumbled, EE attempted to keep client from falling
## 11924 Assisting client in sorting frames, wall display was bumped causing a frame to fall hitting the back of neck
## 11925 Assisting client in wheelchair and walked client to program area. Felt straining and pulling in left knee during transfer
## 11926 Assisting client into bath tub, client kicked EE in rt eye
## 11927 Assisting client into dining room. EE fell & twisted left ankle
## 11928 Assisting client off floor from fall noticed afterwards left side of lower back began to hurt. ()
## 11929 Assisting client off the toilet. Client refused to get up; client pulled back from EE and EE hurt right arm. ()
## 11930 Assisting client off van and pulled muscle in back
## 11931 Assisting client onto table for suturing aggravate EE's neck and shoulder area
## 11932 Assisting client onto trolley; client pulled EE's right arm down and EE felt a sharp pain in back. ()
## 11933 Assisting client out of bed, rt hand got caught under client arm pit, when pivoting him in wheel chair employee's hand was pulled and hit bed rail.
## 11934 Assisting client out of chair and onto and off of commode, while toileting, felt twist in right wrist.
## 11935 Assisting client out of chair onto weight scale client unsteady EE stumbeld grabbed bar cut rt finger.
## 11936 Assisting client out of wheelchair, noticed a cut open area on right wrist, apparent May have occured by hitting wheelchair.
## 11937 Assisting client pivot toward bed. Clients knee buckled. Client went down taking eee w/her
## 11938 Assisting client pulled to lift in order to changeclient felt pain in left shoulder
## 11939 Assisting client put on labels, wanted to sit downstool began to move and stool went backwards causing EE to fall on floor on back
## 11940 Assisting client that was in behavior; client kept dropping to floor; EE was holding client to keep her from hurting herself. Client dropped very fast, EE felt a sharp pain the bottom of lower back. ()
## 11941 Assisting client to activity. Client suddenly stopped and just stood on left foot. Tried to redirect client to get off, client would not move; got assistance from other staff to get client off foot. ()
## 11942 Assisting client to bathe; client pushed door openleaned forward, staff reached to catch client & both fell; EE fell on left knee.
## 11943 Assisting client to bathroom, client lost balance and started to fall, EE broke fall-- pulled lower back.
## 11944 Assisting client to bathroom; client headed into wall, tried to guide client and hold onto client; client was pulling against EE and EE heard her left wrist pop. ()
## 11945 Assisting client to bathroom; stepped into door frame with left foot awkwardly causing pain in left foot. ()
## 11946 Assisting client to be transported by ems, ems rep moved client to soon and lift tilt off wheel and hit me in the r temple and left ()
## 11947 Assisting client to bed, struck left thumb to the end of bed against bed rail. Thumb turned dark around edge due to nail flipping back. ()
## 11948 Assisting client to chair when he jerked away causing employee to twist left wrist.
## 11949 Assisting client to chair. Client pulled on arm & tried to bit EE
## 11950 Assisting client to dining area; client lost balance and stumbled; EE hurt lower back attempting to break client's fall. ()
## 11951 Assisting client to get breakfast plate. Hit foot on chair leg. Fx. Left big toe.
## 11952 Assisting client to get on van for medical appt. Client began to fall backwards, EE supported client from back to keep client from falling
## 11953 Assisting client to his seat. Stumbled & fell forward. Tried to break fall by holding onto his walking belt & injured left arm
## 11954 Assisting client to program when client tried to drop to floor; EE stopped fall by assisting client to floor; felt pull in lower back. ()
## 11955 Assisting client to pull his pants up. Client stiffened his legs & EE felt pull in back
## 11956 Assisting client to put on clothes, client went down on EE's right leg
## 11957 Assisting client to sit on bed-client grabbed EE and att to pull self back up-EE was pulled off balance and felt pain in lower back.
## 11958 Assisting client to slide over; client made sudden move and caught EE's right arm between client and seat causing swelling to wrist and arm. ()
## 11959 Assisting client to stand up from chair to grasp walker, Ms Client, jerked arm to the lt; client satback down causing upper neck & rt shoulder pain
## 11960 Assisting client to stand. Client started to slide while EE was assisting to lift. EE felt pop in left side of neck & shoulder
## 11961 Assisting client to stand. Clt dropped-resulting in EE bearing clt's weight bending wrist. Right wrist sprain.
## 11962 Assisting client to toilet-client hit EE in lt eye
## 11963 Assisting client to toilet/slipped on chair seat belt, client started to "seizure" client hit EE r knee causing knee to pop
## 11964 Assisting client to toilet; client began to sit; EE redirected client and twisted/pulled her back when client resisted. ()
## 11965 Assisting client up and felt her back pop
## 11966 Assisting client up from dinning table, client began to fall, grab EE hands pulling her forward &downward, EE felt pain in mid to low back strain
## 11967 Assisting client up from floor, client pulled wrist & right arm
## 11968 Assisting client up off of floor-felt pull in back-worsened over night.
## 11969 Assisting client up out of bed. Client resisted & pulled backwards, felt pull in left shoulder.
## 11970 Assisting client up. Client was aggressive. EE popped his right thumb in process
## 11971 Assisting client w toileting-client pushed/pulled emp. Hand and around br-next am noted pain in back ()
## 11972 Assisting client w/ getting dressed. Client becameaggressive & scratched EE on left hand.
## 11973 Assisting client w/ pjs; client had hand on lower part of EE's back. Client lost balance & pressed hard into her lower back.
## 11974 Assisting client w/ tooth brushing, client grabbed EE's lt forearm and pulled/scratched
## 11975 Assisting client w/bathing. Client was getting clothes out wardrobe when client slammed the door on his right hand.
## 11976 Assisting client w/dressing when client kicked her in left side of face
## 11977 Assisting client w/dressing... Client became combative- grabbed employee around neck
## 11978 Assisting client w/her shorts & client lost balance and fell on EE
## 11979 Assisting client w/rain coat. Client fell on EE causing EE to fall. Landing on right wrist and hitting back on chair
## 11980 Assisting client w/shower client leaned to one side -EE thought client was falling, reached to catch client & back popped
## 11981 Assisting client w/sponge bath, EE lifted client in order to change & bath client, during this timeemployee felt a strain/pull in back & both wrist
## 11982 Assisting client w/toileting lifting client when felt pull in lower back muscles
## 11983 Assisting client w/toileting. Assisting w/pull up brief. Urine splashed into emp left eye
## 11984 Assisting client walk-holding onto client's gait belt, suddenly dropped down to floor, attempted toassist to sitting position
## 11985 Assisting client walking her to her wheelchair client began to fall-emp caught client. Twisted back in process
## 11986 Assisting client when another client grabbed shoulders; client charged EE; grabbed left arm leaving 3 bruises on arms and skin abrasion on arms. ()
## 11987 Assisting client when client pushed back on wheelchair and EE's left hand hit the wall with wheelchair handle hitting palm of left hand. ()
## 11988 Assisting client when entered office. Came towards EE
## 11989 Assisting client when he moved to other side of chair and let go. I fell on floor trying to hold him ()
## 11990 Assisting client when walking and moving from different areas because client can't walk by herself. Pain in back. ()
## 11991 Assisting client with ambulation; client began to fall; EE trying to break fall; client and EE fell; EE felt pain in right leg, behind knee up to buttocks. ()
## 11992 Assisting client with bath and dressing; client became combative and resistant; EE later felt pain and pulling sensation in left and mid lower back.
## 11993 Assisting client with bath. Client became aggressive. Client almost fell in bathtub; EE broke the fall causing pain to lower back. ()
## 11994 Assisting client with bathing when client punched staff on right side of head and in chest area ()
## 11995 Assisting client with bathing. Client was getting clothes out of wardrobe when client slammed the door on EE's rt hand
## 11996 Assisting client with bed making and he shoved her into wall ()
## 11997 Assisting client with buttoning shirt when client grabbed EE's wrist and twisted it. ()
## 11998 Assisting client with dressing. Patient had seizureand hit staff on right side of head
## 11999 Assisting client with dressing; client began to swinging arms wildly and hit EE in the right eye causing pain to the right eye. ()
## 12000 Assisting client with gait belt from sofa to wheelchair. Client became unbearable causing stress to EE's right wrist
## 12001 Assisting client with getting off floor along with other staff. Client was half in the chair and EE was trying to get client completely in chair; pulled lower back. ()
## 12002 Assisting client with her medication; client refused juice; tried to leave; turned and dropped while EE was holding onto her gait vest causing strain to back. ()
## 12003 Assisting client with lunch; client grabbed right arm twisted it and attempted to bite right arm while digging nails in EE's arm. ()
## 12004 Assisting client with money management; chair leg broke off chair, fell on floor hitting left shoulder and cutting left thigh against chair leg.. ()
## 12005 Assisting client with preparing breakfast. Client suddenly punched staff on his scrotum. EE went to the er and was taken out of work for 6 days. Will
## 12006 Assisting client with shower-client jerked EE lt arm/shoulder and neck.
## 12007 Assisting client with toileting and stumbled back to avoid being hit by client and fell on floor ()
## 12008 Assisting client with toileting and the client has spastic movements causing pain in EE's neck, back and left shoulder. ()
## 12009 Assisting client with toileting when EE felt something catch in her back.
## 12010 Assisting client with toileting, client wouldn't bend knees, to sit, instead leaned backwards, causing employee to support clients weight
## 12011 Assisting client, client could not fasten belt; employee tried to assist when the client laughed and spit went in right eye and on lip.
## 12012 Assisting client, clients legs buckled - EE felt burning sensation in lower back
## 12013 Assisting client-client started to fall-eased to floor-noted pain in left shoulder and rib cage.
## 12014 Assisting client. Pulled muscle in right arm
## 12015 Assisting client; client swung hand; hit left eye; saliva in eye.
## 12016 Assisting client; client tried to run out of room; EE attempted to prevent him from falling & injuredher left hand.
## 12017 Assisting clients at bowling alley, wearing bowling shows, she bumped her left foot/toe on thebowling ball return
## 12018 Assisting clients off van; client getting off holding onto EE's hand; as he stepped down he went down on one knee and fell over onto EE's right shoulder causing pain. ()
## 12019 Assisting clients on golf cart--emp was helping client out of cart-swinging clients legs around so that he could stand-felt & heard pop in wrist
## 12020 Assisting clients when the client went to shake his hand and grabbed his left wrist and bent his wrist downward.
## 12021 Assisting clinet w/ toileting, clients legs buckled- dead weight- EE felt pull in shoulder
## 12022 Assisting co-worker & pt back to bed pt "dropped" pulling my r shoulder as I was bearing his body weight
## 12023 Assisting co-worker get resident up-resident struggling-employee felt neck pop. ()
## 12024 Assisting co-worker giving pt a bath, pt attack EE ()
## 12025 Assisting co-worker in detaining inmate. Co-worker rolled onto right wrist. ()
## 12026 Assisting co-worker in moving computer injured lower left side of back
## 12027 Assisting co-worker in theraputic walk when pt wrapped her legs around co-worker right leg and dropped her wt. EE attempted to catch pt. Low back
## 12028 Assisting co-worker lift patient up from ground to place in w/c. L. Shoulder and r. Hip. ()
## 12029 Assisting co-worker pull client up in bed-right pointer finger started burning. No specific incidentreported-finger not caught, pulled, twisted or turn
## 12030 Assisting co-worker that was being attacked, pt scratched EE on left arm/hand ()
## 12031 Assisting co-worker to change diaper, urine splashed in right eye ()
## 12032 Assisting co-worker turn resident, to place pillowbehind back, and felt right knee pop.
## 12033 Assisting co-worker with getting pt out of bed, back started hurting next day.
## 12034 Assisting co-worker with pt., pt became aggressive & grabbed EE arm & twisted. Pain/burning left arm /wrist.
## 12035 Assisting co-worker with removal of electronic monitoring device. Cut left thumb with multi-tool. ()
## 12036 Assisting co-workers during eri, was scratched on right hand ()
## 12037 Assisting co-workers in adjusting pt in a geri chair, neck/shoulder began hurting
## 12038 Assisting co-workers in restraining juvenile. Juvenile kicked EE in nose & mouth.
## 12039 Assisting consumer to dining room. Stopped pulled back as if falling causing this EE to have pullingof right hip & back
## 12040 Assisting consumer to remove oil plug, torqueing wrench, shoulder popped
## 12041 Assisting consumer with pulling off wet clothing, consumer became unsteady, EE reached for consumer to prevent falling. EE stood up & hit head on sink
## 12042 Assisting coworker during eri, no injury ()
## 12043 Assisting coworker placing student in mechanical restraints and he hit is right forearm above the elbor ()
## 12044 Assisting coworker transfer pt fm chair to w/c, pt dropped weight, EE grabbed pt before hitting floor, twisted back ()
## 12045 Assisting customer at parking south raised window and window fell on EE's left hand, middle finger cutting middle finger
## 12046 Assisting customers in the reception area, when EE fell down 2 steps. Buttock/right foot/right elbow & entire back.
## 12047 Assisting deaf/blind consumer in slicing ham for omelette - held the ham while consumer cut, accidentally slicing index middle finger of right hand ()
## 12048 Assisting dentist puctured left finger on a dirty bur (needle).
## 12049 Assisting deputy sheriff w/suspect-got into scuffle with suspect and fell onto the ground bruising left knee and leg.
## 12050 Assisting dress a resident during check and change-resident pushed into corner of wall-hitting back of l. Upper arm. ()
## 12051 Assisting dress client-putting socks on client hitee twice with a closed fist, stomach and ribs
## 12052 Assisting dress patient in bed-patient thrashing around and unintentionally kicked in r. Side of stomach-8 mths. Pregnant. ()
## 12053 Assisting dress pt, pt agitated, punched EE in stomach, hit and scratched on his back, grabbed left fingers and squeezed, finger swollen and painful
## 12054 Assisting during a use of force, was attacked by inmate, injured when taking inmate down ()
## 12055 Assisting during check & change-attempting to change patients clothes, patient resistant-jerking back & forth-felt pop in l. Palm. ()
## 12056 Assisting during check & change-knelt on floor to assist change and heard l. Knee pop ()
## 12057 Assisting during fire alarm with evacuation of evergreen, attempted to stop self with doorframe finger separated at angle on the doorframe
## 12058 Assisting elderly woman up & onto sidewalk so she could enter wendy's. Knee struck corner of wall
## 12059 Assisting emt when patient became agitated and grabbed EE lft thumb and twisted backwards. Sprained lft thumb
## 12060 Assisting escort client to ito--client punched EE in left ribs--EE noted pain to back while client struggled to get loose
## 12061 Assisting escort patient. Squeezed EE's right hand
## 12062 Assisting fellow officers in altercation. When he was struck in face w/blow delivered by an inmate
## 12063 Assisting female co-worker in moving computer fromone office to another. Was placing computer in backof car when he felt pain in lower back & legs.
## 12064 Assisting food service inmate loading unit 5 food service truck. ()
## 12065 Assisting forest service in destroying a illegal still. Swining a 1011 sledge hammer when EE over extended left elbow. Strain/sprain left elbow.
## 12066 Assisting gates co. Sheriff's dept, when EE was confronted by a large dog & struck his head on a low overhanging wooded shelter. Top rt side head.
## 12067 Assisting get patient out of the tub-stood patient up-knees buckled-caught and felt pull in low back. ()
## 12068 Assisting get patient up off of floor-patient resistant-felt pain in l. Lower back. ()
## 12069 Assisting get resdient ready for bed-resident became angry and punched x 3-emp. Blocked first 2 punches-on third hit l. Side of head- ear. ()
## 12070 Assisting getting a resident out of bed-resident resistant-resident pulled back resulting in strain to employees upper back-btw. Shoulder blades. ()
## 12071 Assisting giving bath-resident leaned in and bit on left shoulder. ()
## 12072 Assisting giving pt forces meds ()
## 12073 Assisting hct staff transferring pt from bed to chair, resident pulled backward, EE lost grip and pulled wrist
## 12074 Assisting hct with putting resident to bed and she bit me ()
## 12075 Assisting hct with resident in the bathroom. Hct was pulling residents paints up & I was assisting resident to stand, resident was pulling back & trying to sit down ()
## 12076 Assisting hcts and turned and twisted right knee. R knee sx on 1/25/05 **overpd $3734. 88 (2/19-3/28*
## 12077 Assisting housing an inmate when he hit his rt hand against cell wall ()
## 12078 Assisting in 4 man carry-kicked in right side during carry.
## 12079 Assisting in a use of force with inmate and slipped and fell on both knees. ()
## 12080 Assisting in apprehension of offender who resistedarrest, bolted from the building & broke glass in door. Cut left index and ring finger on glass.
## 12081 Assisting in arrest of defendant, defendant refusedto walk & we were trying to assist him up the stairs. EE lifted him under arms. Injured hand/wri
## 12082 Assisting in arrest, went to floor & rt hand was squeezed
## 12083 Assisting in bringing an inmate to the infirmary because of medical emergency twisted ankle
## 12084 Assisting in changing a client and turning a client and pulling on lifting pad. Felt strain and next morning had visible swelling and soreness. ()
## 12085 Assisting in client transfer from chair to wheel- chair- bumped right elbow on room divider.
## 12086 Assisting in emergency manual restraint with an individual when I felt something in my shoulder pop & immediately alerted my senior manager of the home. ()
## 12087 Assisting in eri, EE was hit by pt in the left side ()
## 12088 Assisting in evacuation of inmates in e-wing after one inmate started a fire. ()
## 12089 Assisting in giving client a bath; client spit in right eye
## 12090 Assisting in handcuffing inmate when inmate bit rtthumb on right hand causing a chipped bone in the 1st digit.
## 12091 Assisting in handcuffing inmate, noticed rt forearm swollen
## 12092 Assisting in lifting patient from floor, readjusted left wrist and it popped.
## 12093 Assisting in maintaining control of inmate when she spit in face and eye ()
## 12094 Assisting in moving a patient
## 12095 Assisting in moving furniture. EE stooped down, when he stood up felt sharp pain in left knee. Left knee began swelling & became very painful.
## 12096 Assisting in moving inmate to medical. Vomit splashed on left forearm during cpr. ()
## 12097 Assisting in moving metal locker out of office. Injured occurred while walking down steps
## 12098 Assisting in moving office partition onto loading dock. Coming onto loading dock foot was caught on mat, fell against railing, hitting lower back.
## 12099 Assisting in moving student to a safe place, student bit EE on right arm
## 12100 Assisting in off loading scientific equipment from the ship ()
## 12101 Assisting in office move-when lifting wooden tablesplinter went into left middle finger.
## 12102 Assisting in placing a patient who was attempting to escape. Patient & staff fell on him during the process. Injured upper back between the shoulder
## 12103 Assisting in placing a pt in restraints
## 12104 Assisting in placing inmate back in full restraints. Inmate turned and spit in my face during an attempt to put him in full restraints. ()
## 12105 Assisting in police officer physical agility testing, as I was assisting the officer readjusted his grip and twisted my left arm. ()
## 12106 Assisting in prevention inmates hasing seizure ()
## 12107 Assisting in pt transport/carry when pt kicked EE in left knee ()
## 12108 Assisting in removing patients from a smoke filled area during a fire.
## 12109 Assisting in restraining a disruptive inmate he spit blood on me. Went on left arm, nose, month, and once being treated at hart industrial employee experienced neck pain. ()
## 12110 Assisting in restraining an inmate, taking inmate to the floor, contusion to rt knee abrasion, left knee
## 12111 Assisting in self-defense class. Wrist was bent improperly
## 12112 Assisting in subduing assaultive patient. Low back pain & rt buttock.
## 12113 Assisting in surgery. Stuck w/needle by another person
## 12114 Assisting in the execution of a search warrant, when suspects ran into woods & EE ran into woods &slid down wet leaves. Left knee strain.
## 12115 Assisting in the restraing of a juvenile. Report of injury made at time of injury, was listed as a report only now employee would like to see Dr For b
## 12116 Assisting in the restraint of an inmate, staff fell on my l arm ()
## 12117 Assisting in transferring an individual he jerked & EE felt her back buckle & pain started.
## 12118 Assisting in trying to stop two inmates from fighting, had to physically restrain one of the inmatesand injured lt shoulder/neck.
## 12119 Assisting in uncrating a pc of equipment @ loadingdock. Had to lifted to remove frm pallet. Back strain occurred during this process
## 12120 Assisting individual from dining room to bathroom, individual tripped and fell to ground on top of employee ()
## 12121 Assisting individual from his chair to toilet feltleft shoulder pop and it started to hurt
## 12122 Assisting individual out of the dining room, as she placed the individual on the couch, she felt a pain under her left arm pit. ()
## 12123 Assisting individual to bathroom for grooming, employee was supporting most of individual's weight. ()
## 12124 Assisting individual to nurses station for medication & individual body hit against left thumb. Sprain left thumb.
## 12125 Assisting individuals off of van. While doing so, another individual closed the sliding door (passenger) onto my thumb. ()
## 12126 Assisting inmate back in wheelchair when he felt acatch to his lower back.
## 12127 Assisting inmate back to his dorm, when another I/m came out of rec. Yard coming to me to attack the I/m I fell to floor in hallway. ()
## 12128 Assisting inmate into wheelchair injured low back pain radiating into right leg. As stated by EE. ()
## 12129 Assisting inmate that had fallen on floor, inmate hit employee with fist
## 12130 Assisting inmate up flight of stars, strained back ()
## 12131 Assisting inmate who had fallen into a wheelchair. Inmate could not stand on his own.
## 12132 Assisting inmates cleaning cell when accideentally was given the mop accidentally step over pan dust and slipped and fell
## 12133 Assisting instruction of crdt. Lead instructor was showing the class how to the best wrist technique on him which caused pain in wrist in elbow.
## 12134 Assisting lay resident down for bed-resident kicked in l. Shoulder ()
## 12135 Assisting lay resident down in bed-removing shoes-kicked in r. Side of nose ()
## 12136 Assisting lift client back up into w/c, EE went around client, tripped over client's hand landing on left knee
## 12137 Assisting lift client from chair into bed-felt tightness between shoulder blades
## 12138 Assisting lift client off of floor (from mat) when felt pull in her back
## 12139 Assisting lift client onto toilet, and felt sharp pain in right ankle/foot.
## 12140 Assisting lift client out of floor felt pain over her bladder from rib cage down to bladder
## 12141 Assisting lift client up from chair felt lumbar pain.
## 12142 Assisting lift client, lifting lower body, felt pain in back
## 12143 Assisting lift patients legs and reported back pain following day (8/12) ()
## 12144 Assisting lift the head of resident's bed up-r. Thumb caught between/in head rail. ()
## 12145 Assisting loading and unloading clients (wheelchair). One client did not know how to get in van. Very hot day helped client get in van. Noticed sharp pain in right groin area. ()
## 12146 Assisting loading tractor trailer of pallets of recycled aluminum signs I opened the back door of the tractor trailer and a 2x2 square steel hit
## 12147 Assisting manual restraints, went down on both knees on floor
## 12148 Assisting mental health inmate with clean clothes, inmate attacked cliamant and hit him upside his head.
## 12149 Assisting nurse draw blood from client, when nursepulled needle from client's arm the needle stick went into EE right hand.
## 12150 Assisting nurse passing medication as he walked down c block steps he stepped down and felt like he pulled his groin ()
## 12151 Assisting nurse push inmate: while lifting chair nurse was pushing & chair landed on right foot
## 12152 Assisting nurse to give out medication. Inmate regermain ross (0614614) squirted a liquid substance, which smelled like urine. ()
## 12153 Assisting nurse to hold client's arm while drawing blood; client moved arm and needle pricked right 4th finger. ()
## 12154 Assisting nurse with client; client was in behavior (hand banging); hitting when client bit EE's right wrist. ()
## 12155 Assisting nurse with dressing change on a patient. Moved patient in bed after completing and pain in right hip, leg and back.
## 12156 Assisting nurse with inmate, inmate wanted to fight, other officer, went to help, the other officer's knee hit fuller's right pinky causing it to be knocked out of place. ()
## 12157 Assisting o. T. In loading stander into vehicle (stable). When she turned to assist o. T., EE fell on concrete driveway, injuring rt knee and lt foot.
## 12158 Assisting obtain bp-patient became upset-hit emp. Multiple times in back. ()
## 12159 Assisting officer in making an arrest.
## 12160 Assisting officer processing dwi. Subject became combative while being restrained and bit trooper on upper lt arm.
## 12161 Assisting officer restrain inmate, inmate hit her in mouth twice w/ fist and scratched neck, hit face beside nose
## 12162 Assisting officers getting rags out of dryer & assessing the situation during a fire. Questionablechemical spill.
## 12163 Assisting one other staff transfer a patient from chair to a gerochair.
## 12164 Assisting oral surgeon with sutures
## 12165 Assisting other employees to restrain a juvenile and the employee lost his balance and he fell on his right knee. ()
## 12166 Assisting other officer getting wheel chair. Fell backwards on lift of surgery trailor at central prison, as the officers were carring wheel chair corr sgt hardy stepped back and fell off of the porch onto the lift ()
## 12167 Assisting other officer with resisting inmate, while inmate was resisting officer creech hurt his back ()
## 12168 Assisting other staff contain patients-scratched on both arms by patient, right arm stepped on by staff and struck by a patient on left side when pati
## 12169 Assisting other staff from being hit. Placed patient into therapeutic wrap, patient bent over and bit staff on her left forerm.
## 12170 Assisting other staff giving a patient a bath. Thepatient bit staff on her left wrist.
## 12171 Assisting other staff in applying handcuffs on an inmate when inmate hit EE. Skin was broken.
## 12172 Assisting other staff in transferring a patient from bed to bed chair; EE lifted & other staff did not causing strain to EE neck, back & right hip.
## 12173 Assisting other staff putting a patient on bed for bath.
## 12174 Assisting other staff to restrain a juvenile; juv assaulted EE by hitting him in the head w/phone receiver () contusion to right side of forehead
## 12175 Assisting other staff with a patient to prevent fighting. Patient & staff fell to floor causing staff to injure her left knee.
## 12176 Assisting other staff with separating patients that were fighting, patient began hitting employee in the back. ()
## 12177 Assisting out a staff member who was being assaulted by an inmate ()
## 12178 Assisting owner in lifting dog onto transport cartinjured rt side of back.
## 12179 Assisting partner who was being assaulted by an inmate. Fell to floor and struck her knee against concrete floor
## 12180 Assisting patient back into bed from shower chair using trapeze bar. EE assisting patient to get hislegs & lower body into bed.
## 12181 Assisting patient brush teeth-spit toothpaste in face ()
## 12182 Assisting patient dress-patient grabbed left arm and pulled (attempted to keep from falling) ()
## 12183 Assisting patient dress-patient scratched l. Arm multiple times. ()
## 12184 Assisting patient from car into wheelchair-patient went limp as sat down-pulling employee down resulted in mid to lower back pain. ()
## 12185 Assisting patient from chair to standing-felt pull in r. Shoulder. ()
## 12186 Assisting patient from geriatric chair to bed. Patient gripped chair and EE lifted patient and chair, twisting back.
## 12187 Assisting patient from wheelchair with adls. Suddenly patient made a movement that caused his body weight to shift onto me. Almost immediately I felt
## 12188 Assisting patient get up out of gerochair for toileting and daily care, felt a sharp pain in lower right side of back.
## 12189 Assisting patient in bathroom & patient shut door on staff's right hand.
## 12190 Assisting patient in bathroom for bm, patient holding pants and drops to the floor, tryingto prevent fall. Caused staff to strain her right shoulder.
## 12191 Assisting patient in wheelchair
## 12192 Assisting patient into gero chair and injured mid/upper back ()
## 12193 Assisting patient into gero-chair patient gave wayand put all their weight onto staff's left arm.
## 12194 Assisting patient into shower chair-felt pop in left leg. Didn't hurt until began walking on it-pain moved into groin area. ()
## 12195 Assisting patient off of a gurney, patient fell onto employee
## 12196 Assisting patient open box of milk and for no reason the patient punched staff in mouth. ()
## 12197 Assisting patient out of bath when patient slammed l. Side into employee resulting in l. Arm hitting door jam. ()
## 12198 Assisting patient out of bed as EE and another EE attempted to assist him into w/c he stiffened trying to slide to the floor. Lumbar laminectomy
## 12199 Assisting patient out of wheelchair/twisted r. Ankle-resulted in sitting on ankle. ()
## 12200 Assisting patient shave-nicked chin-spit in emp. Face. ()
## 12201 Assisting patient to bathroom-patient scratched r. Hand at base of thumb. ()
## 12202 Assisting patient to bedroom-kicked employee in r. Ankle. ()
## 12203 Assisting patient to chair when patient began grabbing, hitting, and kicking employee ()
## 12204 Assisting patient to sit in chair-patient missed chair and started to fall to floor-supported patient-while co worker assisted into chair.
## 12205 Assisting patient up from chair, patients stepped on EE toe.
## 12206 Assisting patient up from floor. Patient started resisting, causing staff to injure lt shoulder, low back & right hip.
## 12207 Assisting patient up off of floor. ()
## 12208 Assisting patient w/bedmaking, patient sitting in wheelchair & tried to get up, EE grabbed her to keep her from falling. EE & 3 others picked her up
## 12209 Assisting patient walk down hall-had arm around patient-patient started to fall-jerking back. ()
## 12210 Assisting patient with adl's, patient grabbed and hit left hand.
## 12211 Assisting patient with bath. Patient struck staff, jamming her finger
## 12212 Assisting patient with check and change-patient headbutted in r. Cheek. ()
## 12213 Assisting patient with shower, being resistant to care, resulting in both patient and employee falling to floor-r. Shoulder sore. ()
## 12214 Assisting patient-patient grabbed r. Arm and scratched x 2. ()
## 12215 Assisting patient. Patient resisted. Both sides of lower back hurting
## 12216 Assisting patsy off bed. She was pulling back and became into a behavior as another staff and I tried to prevent her from a fall. ()
## 12217 Assisting physician preparing dressing when client kicked EE in the mid back area and in the chest. ()
## 12218 Assisting place patient in tub for bath-it felt like I just moved my shoulder the wrong way- ()
## 12219 Assisting place sling (lift) under resident-resident was slapping with her hand-employee went to turn resident and jammed r. Little finger.
## 12220 Assisting placing pt in geri-chair, geri=chair ran over foot
## 12221 Assisting placing pt in restraints, pt spat in EE's face - no exposure ()
## 12222 Assisting placing pt on transport board, pt spat in EE's face ()
## 12223 Assisting prone a client. Client rolled onto stomach causing clients right knee to hit EE's right knee. EE's knee popped out of joint
## 12224 Assisting provide a bath for patient-patient became aggressive and scratched r. Cheek below eye. ()
## 12225 Assisting pt across hall, pt dropped their weight pulling her shoulder ()
## 12226 Assisting pt from wheelchair to toilet-hurt back during transition
## 12227 Assisting pt in bathroom, pushing in w/c, pt turned and scratched EE on left arm ()
## 12228 Assisting pt in packing, next day woke up w/stiff neck ()
## 12229 Assisting pt on potty chair, co-wkr tripped, grabbed pt so they wld not fall to floor ()
## 12230 Assisting pt out of bed, pt kicked EE in left knee ()
## 12231 Assisting pt out of wheelchair, felt pain in neck, shoulder
## 12232 Assisting pt to another area in unit, pt was walking on his own with assistance from EE, EE states that pt was leaning on her
## 12233 Assisting pt to bathroom, pt foot slipped & EE felt rt shoulder pull as pt sat down.
## 12234 Assisting pt to bed, foot got caught and twisted lt leg
## 12235 Assisting pt to bed, pt pinched EE on right arm ()
## 12236 Assisting pt to chair, EE got her foot crossed up with the pt's leg, fell in a chair, twisting left knee ()
## 12237 Assisting pt to lunch, pt turned and hit EE in the left shoulder ()
## 12238 Assisting pt to seclusion room, pt scratched EE on left hand ()
## 12239 Assisting pt to stand, pt dropped their weight, pulling down on EE ()
## 12240 Assisting pt w/ toileting, EE sprained wrist
## 12241 Assisting pt with ambulation fm hallway to bathrm, pt became weak, began to drop to floor, employee broke fall.
## 12242 Assisting pt with ambulation to neonatal room. When pt dropped and made EE elbow pop. Left elbow.
## 12243 Assisting pt with forced bath, pt began scratching EE and spat in EE's face-no exposure ()
## 12244 Assisting pt with meds, pt bit EE finger and head butted EE over left eye ()
## 12245 Assisting pt with shaving. Floor was wet & EE slipped & hit head on metal rail
## 12246 Assisting put client into bed-client kicked in left shoulder. ()
## 12247 Assisting put resident into bed-kicked in r. Side of chest. ()
## 12248 Assisting put resident into bed-resident kicked in l. Jaw. ()
## 12249 Assisting put resident to bed-turned resident (very stiff/hard to transfer) and felt pop in l. Wrist. ()
## 12250 Assisting re-direct client. Client to sit down- as client turned to sit-he stepped on emp. Left foot
## 12251 Assisting redirect a patient back to activity room-patient shoved into door frame-hitting r. Elbow. ()
## 12252 Assisting research tech by restraining dog while she drew blood. Afterwards, she began feeling hot, lightheaded, vision blurred and she fainted. ()
## 12253 Assisting resident Dr. Crystal cox with impressions, went to break room table to get salt, the phone was near lori self's desk, turned to go to clinic, left foot/leg was entangled in long phone cord, fell to floor. ()
## 12254 Assisting resident after lunch when resident swung her arm striking EE's rt ring finger causing severe bruise
## 12255 Assisting resident by attempted to set resident up in bed by lifting head of bed up with lever. Resident's weight was too heavy per EE.
## 12256 Assisting resident during self care routine, resident splashed water over entire floor causing EE to slip twisting back. Lower left side of back.
## 12257 Assisting resident from bed to shower chair. Pulled muscle in rt middle back as she was turning to sit him in shower chair. Rt middle back
## 12258 Assisting resident from chair to bed-had arms around resident and under residents arms-resident grabbed the back of emp. Arms-scratching/bruising. ()
## 12259 Assisting resident from tub and injured lt shoulde
## 12260 Assisting resident get ready for shower-resident headbutted in nose. ()
## 12261 Assisting resident in Dr-Upset-attempted to throw a cup over head-cup hit employee on r. Lower lip ()
## 12262 Assisting resident in bathroom-resident punched in l. Cheek. ()
## 12263 Assisting resident in chair. Resident was swinging her arms and I tried to stop her & she pulled my thumb back. ()
## 12264 Assisting resident in walking with a gate belt. Resident fell forward and caused employee to fall as well.
## 12265 Assisting resident into Dr-Became agitated grabbed left wrist with both hands and twisted/squeezed. ()
## 12266 Assisting resident into an upright position (on bed_ in order to help get out of bed-resident did not assist resulting in trapezius strain. ()
## 12267 Assisting resident into bed-resident pulled employee down onto bed-back sore ()
## 12268 Assisting resident into wheel chair-walked behind chair and reached over to pull resident back into chair and felt ribs rub together. ()
## 12269 Assisting resident into wheelchair-after shower-hurt l. Shoulder-also, slapped in back between shoulders. ()
## 12270 Assisting resident intoito. Resident picked up wooden wedge and hit staff lt side of head.
## 12271 Assisting resident off of toilet-resident lost footing - was leaning back on employee-employee attempted to keep resident from falling to floor-felt pull in back. ()
## 12272 Assisting resident off van at speedway cafe, was backing out van door, turned ankle, fell backwards onto pavement
## 12273 Assisting resident on pogo stick, pogo came down and staff bent knee and heard pop sound
## 12274 Assisting resident onto golf cart. Resident became agitated, hitting, slapping and bit EE.
## 12275 Assisting resident onto train, resident fell backward and EE tried to catch her, injury to right forearm
## 12276 Assisting resident onto van; resident fell backwards injuring EE's left shoulder and hand
## 12277 Assisting resident out of bed-resident bent r. Thumb backwards. ()
## 12278 Assisting resident out of wheelchair, resident hestitated while transferring, EE's back began to hurt
## 12279 Assisting resident pull pants up-resident placed full weight on emp- back pain ()
## 12280 Assisting resident to bathroom-hit in l. Eye ()
## 12281 Assisting resident to bed. Transferring to bed put arms around him to assist resident to stand, sit him on bed felt sting on left lower side of back. ()
## 12282 Assisting resident to bedroom-wheelchair accidentally ran over top of l. Foot ()
## 12283 Assisting resident to breakfast-resident had left hand-jerked arm backwards and up-pain in l. Shoulder. ()
## 12284 Assisting resident to chair, resident accidentally pulled employee down.
## 12285 Assisting resident to restroom-assisted to sit down-resident grabbed arm and scratched x3 upper r. Arm. ()
## 12286 Assisting resident to room. Resident becomes weak and falls. EE tries to catch resident by grabbing back of pants. Strains shoulder.
## 12287 Assisting resident to shower, EE felt pull in r shoulder
## 12288 Assisting resident to sit down and put shoe on-resident grabbed right hand and twisted right thumb. ()
## 12289 Assisting resident to sit down, resident pulled away while staff was holding on to gait belt causingmy left upper arm muscle to be pulled.
## 12290 Assisting resident to sit-resident fell back-pinning l. Hand wrist and forearm btw. Resident and wall. ()
## 12291 Assisting resident to stand and walk from couch to bed-took 2 steps then started to sit on floor-bore full weight until returned resident to couch-felt tearing/burning in abdomen ()
## 12292 Assisting resident to stand at toilet-felt pull in right side of mid back ()
## 12293 Assisting resident to stand-resident grabbed l. Thumb and pulled backwards. ()
## 12294 Assisting resident to stand-resident started to loose balance- causing emp. To jerk r arm upwards (client holding onto arm/hand ) noted pain in shoulder. ()
## 12295 Assisting resident up and to the bathroom-resident jerked-yanking emp. Right shoulder/arm backwards. ()
## 12296 Assisting resident up from chair and felt pull in back. Later assisting a resident out of bed and felt pull again in back. ()
## 12297 Assisting resident up from floor and felt pain in low and midback
## 12298 Assisting resident walk. Rt shoulder started to hurt.
## 12299 Assisting resident while doing nci, EE went to floor w/ resident and hurt back
## 12300 Assisting resident with bath, when resident hit EE in eye
## 12301 Assisting resident with self care. Res. Scratched EE left eye.
## 12302 Assisting resident with toileting-resident became agitated-pushed employee down-fell over heater-hitting floor on back. Pain in back/r knee and r hip. ()
## 12303 Assisting resident, resident stopped abruptly causing staff to fall onto chair
## 12304 Assisting resident-raised head of bed- when stood up-resident struck in face-finger poked r. Eye ()
## 12305 Assisting resident-rsident swung arms hitting emp. On left and right side of face. ()
## 12306 Assisting residents in/out of Dr-Assist. Resident to stand-resident started to lean all of his weight onto emp. -back pain
## 12307 Assisting resisdent during check & change-resident unsteady-causing both to fall-resident landed on l. Shoulder. ()
## 12308 Assisting resistive patients
## 12309 Assisting rn administer injection to resident-exposed needle scratched l. Wrist ()
## 12310 Assisting rn place steristrips on both of residents arms-resident clipped legs out from under emp. -landed on back, twisting right side. ()
## 12311 Assisting shower client-bent to wash legs and feet-stood up felt pop/pain in back ()
## 12312 Assisting shower patient-patient resistive/pushing against- after shower noted r. Elbow started to hurt. ()
## 12313 Assisting showers inmate kicked EE in the stomach side area
## 12314 Assisting someone drawing blood and accidently brushed by finger against needle
## 12315 Assisting sponge bathe a resident-turned to put washcloth back into sink-resident grabbed front of scrubs and pulled-abrasion to r. Side of neck. ()
## 12316 Assisting staff assist resident out of Dr- Resident kicked in l. Shin and hit in r. Jaw. ()
## 12317 Assisting staff from inmate assault. ()
## 12318 Assisting staff in calming down a patient, patientkicked EE in chest and ribs.
## 12319 Assisting staff in carrying an aggressive patient to timeout room, pt leaned over & bit EE on back
## 12320 Assisting staff in changing clients diapers when attempting to lift patient EE felt pop in middle lt-lower back
## 12321 Assisting staff in forced meds and inmate began kicking and kicked officer in the chest area several times. ()
## 12322 Assisting staff in getting patient up. Patient wasgradually tipping backwards and pulled agianst EE. Injured lower back.
## 12323 Assisting staff in maintaining control of an inmate when inmate spit in face and possibly in eyes. ()
## 12324 Assisting staff in restraining a juvenile that was assaulting another juvenile in restraining the juvenile Mr. Fields hit his left leg and knee on the floor. File ready to close, pending 2 bills
## 12325 Assisting staff in restraining inmate & was struckby inmate
## 12326 Assisting staff in restraining inmate when he was struck by baton on his left hand
## 12327 Assisting staff in restraining out of control juvenile when juvenile bit staff member on rt wrist
## 12328 Assisting staff in stoping inmate from assaulting officer
## 12329 Assisting staff member in restraining out of control juvenile and was kicked in groin area
## 12330 Assisting staff to break up fight, admiinstrated pepper spray to both inmates & used force to pull them apart, skinning it, both EE knees hit concrete
## 12331 Assisting staff to control inmate, while assisting inmate in cell, inmate ran and hit me on back with fist
## 12332 Assisting staff w/controlling assaultive inmate, inmate pushed officer into bar gate on fore unit causing officer to hit rt shoulder & back on gate
## 12333 Assisting staff with client; client went into behavior; client kicked EE in face and under left eye
## 12334 Assisting staff with meds on g block. Inmate threw a clear liquid substance on his left arm, face and uniform chest area. ()
## 12335 Assisting staff with student hurt left shoulder
## 12336 Assisting stand pivot resident from chair to bed-resident stiffened-resulted in pain to back ()
## 12337 Assisting stand resident-resident pushed employee and started to fall-pulling emp. Right shoulder. ()
## 12338 Assisting stock clerk in getting box down from top shelf. Stock clerk hand bix to EE which was too heavy; therefore injuring her back
## 12339 Assisting stranded motorist w/flat fire. Attemptedto help shift weight of vehicle to place spare tire on when raiseed pain in lower back
## 12340 Assisting student on to/off of ride. Student who is not able to use 1/2 body functions fell against employee. Employee fell into rail and student started to fall down. Employee held student up from falling; therefore, breaking the students fall. ()
## 12341 Assisting student to chair, student lost control and fell back into chair pinning employee's right arm between chair and wall. ()
## 12342 Assisting student when bitten. Bite broke skin ofright forearm.
## 12343 Assisting student with daily hygiene care and student became angry and pushed employee then slapped her ears with both hands. ()
## 12344 Assisting student with nci techniques, therapeutic holds, felt pressure or tension at the right deltoid region.
## 12345 Assisting student, foot caught on leg of student'schair, fell forward on concrete floor. Left knee hit first with right knee/elbow hitting secondary.
## 12346 Assisting subduing patient that attacked another staff when they fell to floor
## 12347 Assisting supervisor load a wet-vac onto the back of a pick-up truck from the loading dock. ()
## 12348 Assisting the client on off campus shopping-clientrushed towards staff to grab him-staff intervened-client grabbed him & they bot fell to the ground.
## 12349 Assisting to give patient forced meds, he started fighting, when he did he jerked on my arm and pulled my shoulder *** attorney rep **********
## 12350 Assisting to help restrain an out of control staffmember, got up from sitting position, twisted to left and felt pain in left lower back
## 12351 Assisting to hold struggling child during overheadafter he assaulted another child.
## 12352 Assisting to lift a large patient, pulled back. Not getting better, getting worse.
## 12353 Assisting to lift female inmate from steps. She lifted heaviest portion of inmate body causing injury to back
## 12354 Assisting to lift resident out of bed using mechanical lift. Emp. On the opposite side of bed raising resident (in sling) onto lift- emp. Reached over resident to turn away from bed and felt pull in lower r. Back. ()
## 12355 Assisting to move client (away from another client). Client was holding employee's right hand and jerked right thumb.
## 12356 Assisting to pick up inmate after he had seizure to place him in wheelchair he pulled muscle in hisupper back.
## 12357 Assisting to place inmate into segregation. Sustained small abrasion on her left forearm, due to inmate resisting to be handcuffed
## 12358 Assisting to put client in wheelchair. Client sit back on her wrist.
## 12359 Assisting to restrain patient. Neck started getting sore around 4:00pm
## 12360 Assisting toilet a resident-fecal matter on resident's hands came into contact with abrasions on employee's r. Forearm. ()
## 12361 Assisting toilet resident-resident sat down on toilet and fell back-resulted in emp. L. Hand being pushed agains pipe on back of toilet. ()
## 12362 Assisting toileting client-complaint of pain in neck and back.
## 12363 Assisting toileting client. Staff helped EE to lift client; EE lifted client from left side shortly after felt pain in neck area. ()
## 12364 Assisting toileting patient I tweaked something on the left side-underneath shoulder blade ()
## 12365 Assisting transfer patient from w/c to bed-patient grabbed l. Upper arm bruised and scratched. ()
## 12366 Assisting transfer patient-started to fall-caught under arms-bending r. Thumb backwards. ()
## 12367 Assisting transfer resident from bed-to go to breakfast- felt pop in l. Lower bacak. ()
## 12368 Assisting transfer resident out of bed and into chair. Resident started to go down to floor, while employee was supporting -straining lower right back. ()
## 12369 Assisting trooper in making arrest. Attempting to remove driver from vehicle. Fell to ground & rightelbow was pinned underneath EE against ground
## 12370 Assisting turn patient in bed-using pull sheet-turned several times, later noted moderate lower back pain. ()
## 12371 Assisting turned the wrong way in merry walker; resident turned around, grabbed left wrist. Did attempt to do wrist roll out, when arm was free resident grabbed middle fingers and twisted them. ()
## 12372 Assisting ups driver unload lightweight boxes - twisted back pulled muscle. ()
## 12373 Assisting verbally client to put away items, client grabbed wrist, EE fell
## 12374 Assisting visitor with boat winch handle when winch came loose sticking EE in the nose ()
## 12375 Assisting w ck/chnge-resident grabbed r. Forearm w both hands and squeezed-heard pop in wrist. ()
## 12376 Assisting w/ adl's-client grabbed EE's lt arm and twisted backwards
## 12377 Assisting w/ agitated patient and when placing pt in nci hold, he hit his leg on a chair causing injury to his knee
## 12378 Assisting w/ client, she grabbed my wrist & tried to scratch me. As I pulled away she twisted my wrist.
## 12379 Assisting w/ life guard recertification, as he was returning to his vehicle, he stepped on grass covered hole and fell and hit right shoulder
## 12380 Assisting w/ lifting van seats to put back in cwp van.
## 12381 Assisting w/ pt ni a nci hold and pt pushed his hand back causing his hand to hit the door
## 12382 Assisting w/ removing handcuffs and the inmate was resisting. Handcuffs cut into EE's rt index finger
## 12383 Assisting w/ resident in distress - resident had glass on person, EE finger cut while removing glass
## 12384 Assisting w/2 person lift. Lifting client from wheelchair onto bed. Felt spasms between shoulder blades & stiffness of neck
## 12385 Assisting w/a lift. Felt back catch. Felt sharp pain in left upper back area
## 12386 Assisting w/a pic, sliipped and fell striking both knees on floor
## 12387 Assisting w/aggressive pt, pt bit EE on left arm ()
## 12388 Assisting w/discharge of combative patient who hadto be physically removed from ward. Felt strain right leg
## 12389 Assisting w/force of an inmate causing a disturbance on dorm. Sprained left knee
## 12390 Assisting w/high speed chase. Chase came to an end& EE gave pursuit on foot. Road surface covered w/thin layer of sand. Fell to ground
## 12391 Assisting w/lifting inmate from floor to stretcher
## 12392 Assisting w/programs moving inmates from one bldg to another when he was walking in court yard area stepped into hole & twisted his left ankle
## 12393 Assisting w/pt transfer from toilet to gero chair when pt went to floor
## 12394 Assisting w/pt's shower, drying pt when EE's feet slipped out fm under her, EE caught her fall with left arm
## 12395 Assisting w/restraining inmate who was resisting. Kicked by inmate
## 12396 Assisting w/searches with benbing squatting lower back pain/left side ()
## 12397 Assisting w/seclusion & restraint & hit his leg on bed
## 12398 Assisting w/setting timing on cutter bar. Accidentially rotated knife pulley & EE had left leg on cutter bar causing laceration of hand
## 12399 Assisting w/the mail. Walking out the back door, turned the corner & stepped down wrong. His weightplus weight of box fell on his right ankle.
## 12400 Assisting w/toileting client. Client bent EE's left hand back
## 12401 Assisting w/tooth extraction. Dentist started to put gauze in pt's mouth and struck EE's thumb with scalpel.
## 12402 Assisting w/transfer fm bed to w/c, pt jerked on EE causing back strain ()
## 12403 Assisting w/two person lift of client and felt immediate pain in back
## 12404 Assisting w/unloading of new computer equipment at information management unit. Lifted shipping case from rear of truck & injured lower back
## 12405 Assisting wasy client-client pulled emp left arm
## 12406 Assisting wayne co. Deputy with the arrest of a pre-trail offender ()
## 12407 Assisting who was in shower. Resident went down and staff fell while asst. Resident
## 12408 Assisting with 2 man carry of a combative patient, employee strained her upper back.
## 12409 Assisting with 2 person lift of client; EE lifting top portion of client; noted pain in right back
## 12410 Assisting with 40-10. Patient was kicking and twi sting and now I feel a pull in the middle of back.
## 12411 Assisting with a behavior intervention consumer kicked right upper anterior arm
## 12412 Assisting with a cardboard, bent down to pick it up and it felt like a knife in back.
## 12413 Assisting with a dryer fire ()
## 12414 Assisting with a transfer of a resident when the chair moved and I landed on my right hip & right shoulder ()
## 12415 Assisting with adl's resident turned around & slap me across the face. Then resident came out in the hall and said sorry. ()
## 12416 Assisting with adl's-patient lost balance-started to fall-adjusted weight to prevent from falling-l. Wrist sprain ()
## 12417 Assisting with agressive pt when pt kicked staff in lower abdomen
## 12418 Assisting with an arrest, twisted left knee
## 12419 Assisting with an nci procedure on an individual and employee's left knee popped. ()
## 12420 Assisting with arrest, offender hit officer in face/nose with both hands while resisting arrest ()
## 12421 Assisting with bath-patient resistant-jerked r. Shoulder ()
## 12422 Assisting with bending metal on metal brake machine when lock released hitting him on left side of head ()
## 12423 Assisting with blocking an individual from hitting his face, the individual bit staff on the left hand. ()
## 12424 Assisting with breaking up an altercation and inadvertently jammed my r index finger. ()
## 12425 Assisting with brush clearing operation near wood chipper. Flying debris from chipper lodged in lefteye.
## 12426 Assisting with cell cleaning. After passing mop and broom thru cell doorway, mop started to fall, attempted to catch it, door closed on lt hand.
## 12427 Assisting with chase on I-85. EE was performing a a road block when violator rammed his car in the rear causing strain to left wrist, neck, low back
## 12428 Assisting with check & change, resident hit (open handed) in left lower back. ()
## 12429 Assisting with check and change-resisdent grabbed r. Arm and bent it. ()
## 12430 Assisting with check/change- patient combative-jerked arm and flung against wooden cabinet and kicked in l. Chest wall. ()
## 12431 Assisting with check/change-changing residents clothes-became agitated-scratched right wrist. ()
## 12432 Assisting with client in preparing breakfast. Client kicked EE & as EE stepped back from client, knee popped
## 12433 Assisting with client restraint, client scratched staff ()
## 12434 Assisting with clients lunch. Turned around to assist client. Twisted right knee.
## 12435 Assisting with code blue. Inmate seizuring. Spit up on employee face ()
## 12436 Assisting with combative patient who had to be lifted from the ground and escorted to the ward. Injury to left shoulder.
## 12437 Assisting with containing a fighting patient. Staff was holding patient's leg and patient was kicking which caused staff to lose his balance falling
## 12438 Assisting with decorations for an event in the performing arts center when she cut her hand/thumb on a broken vase. ()
## 12439 Assisting with dental procedure, syringe stuck left middle finger
## 12440 Assisting with dressing client hit staff ()
## 12441 Assisting with ems, exposed to a small amount of blood on his right hand
## 12442 Assisting with escort of hostile inmate and she spat in sergeant's face. ()
## 12443 Assisting with escorting inmates to showers when lfoot hit stair step & she missed a step, fell on on knees & legs & hit cement floor.
## 12444 Assisting with frish searching inmates near the dinning hall area when I stepped out of the dinning hall turned the corner and then I felt my ankle pop and I fell to the floor and grabbed my left leg. ()
## 12445 Assisting with getting inmates off ground. When bitten on the right side of face ()
## 12446 Assisting with getting patient on stretcher to transport to s&r room- injured right shoulder
## 12447 Assisting with helping a patient to a wheel chair, chair started to move, EE and help were tyring to lift patient back in chair. EE strain low back.
## 12448 Assisting with hostile inmate, when door popped open inmate flung door at the officer knocking her down ()
## 12449 Assisting with inmate having seizure and inmate bite him ()
## 12450 Assisting with inmates on yard - rubbed back of left leg against aluminum bench causing cut to leg.
## 12451 Assisting with loading and unloading tray carriers from van, trip in one of the carriers and fell out the door injuring arms and knees
## 12452 Assisting with manual restraint of a patient for forced blood draw and injured right hand. ***rtw full duty 4/19/2005***
## 12453 Assisting with manuel restraint of a patient who was kicking & struggling causing staff to injure his left shoulder.
## 12454 Assisting with morbid obese inmate to take a bath and she suddenly held onto me and pulled herself causing my back to strain. ()
## 12455 Assisting with moving heavy piece of equipment. Employee place hand on equipment to guide it has it was being lowered on the forklift. Pin on equipment dropped slicing end of left thumb. ()
## 12456 Assisting with nci manual hold due to agitated pt - pt started hitting this staff.
## 12457 Assisting with other staff to place a patient in atherapeutic hold & carry. Injured right upper arm, right side of neck and down right side of back
## 12458 Assisting with out-of control individual & was bitten ()
## 12459 Assisting with physical agility testing, holding ankles while participant did sit ups. When finished as I was getting up I lost balance and fell forward. Participant rolled in that direction and I struck my left hand on his knee cap. ()
## 12460 Assisting with physical restraint, student became assaultive, hitting and kicking at staff. Injured right wrist, supranasal injury & left 5th finger
## 12461 Assisting with physical with client, client began kicking and fighting during entire physical
## 12462 Assisting with prescribed burn operation in woodedarea and was struck in the eye by a tree branch
## 12463 Assisting with protecting client exhibiting sib by putting down mat rt hand injured during process ()
## 12464 Assisting with putting a patient in seclusion. Employee reached for patient's arm, patient jerked away and employees arm started hurting. ()
## 12465 Assisting with putting a turnstile on truck when it slipped causing his back to give
## 12466 Assisting with putting client in time out, client hit rt hand. Injured rt hand.
## 12467 Assisting with putting patient in cpi hold, patient punched employee in the face ()
## 12468 Assisting with putting restraints on patient, felland hit head on door. Laceration on head.
## 12469 Assisting with replacement of ball joint on track. Co-worker hit ball joint with hammer. The hammer glanced off and struck employee in the lip and left side of face. ()
## 12470 Assisting with resident who was being aggressive, was kicked in ribs
## 12471 Assisting with resident, got kicked in the lower back, left side. Felt pain later on getting into car to go home.
## 12472 Assisting with resident-resident agitated-hit employee in nose with fist. ()
## 12473 Assisting with resident-scratched on both hands and neck. ()
## 12474 Assisting with resident-scratched tops of both hands. ()
## 12475 Assisting with restrictive intervention. Patient had sprinkled baby powder on floor, employee slipped & fell injuring knee & finger. ()
## 12476 Assisting with securing a student. Student grabbedee hair at roots/ kicking. EE injured hair pulled out on rt side of head/ bruise lt calf/ lt pinky.
## 12477 Assisting with self-help skins in cottage, bathrrom. Resident hit EE, shoving her backwards. Area hit was sternum.
## 12478 Assisting with therapeutic hold and injured right knee
## 12479 Assisting with therapeutic hold on client ()
## 12480 Assisting with toileting client; client and EE were coming out of bathroom when the door closed quickly on EE's right hand. ()
## 12481 Assisting with unloading book at warehouse (e. G. Right and left arm, back and face ()
## 12482 Assisting with urinalysis and got a sharp pain in my right eye ()
## 12483 Assisting with use of force when inmate bit her on rt hand
## 12484 Assisting with violent and agitated inmate. Inmate spit in my face, striking my right eye, right hand hurts after using hands on force. ()
## 12485 Assistng with breakfast, cleaning coffee maker thought coffee was through brewing, water spilled on right hand
## 12486 Assiting aggressive patient that was kicking, jerking fighting and in process hearing aid was broken. Hearing aid in pocket.
## 12487 Assiting co-working with getting client up off ground using gait belt. Strain lower middle back.
## 12488 Assiting debbie to bed when debbie tripped on the mat in her room, caught her and slipped on the mattwisting left knee
## 12489 Assiting holding an inmate's legs muscle tightness ()
## 12490 Assiting in removing cement, pulling from back of pick up truck - leaned over and attempted to lift cement. Popping in back - severe pain, neck area
## 12491 Assiting in restraining pt
## 12492 Assiting to move medical computer & strained muscle in right groin when reached over computer to move shelf brackets so shelf could be elevated
## 12493 Assiting w/ pic situation and got l arm pinned between pt and door
## 12494 Assiting with manual hold for a accucheck, patientfighting & scratching. Scratched on right dorsum wrist.
## 12495 Assiting with out of control student EE was hit inribs
## 12496 Asssisting other staff in getting patient from wheelchair into van for transport. Patient became resistive and dead weight caused staff to have to ob
## 12497 Asssisting resident to transfer from wheelchair tobarstool. Resident wouldn't hold on, fell. Injury occured when resident was stopped from falling
## 12498 Asssiting with lifting a client onto the trolley. Client's body had to be turned. While lifting client, EE hurt lower back.
## 12499 Asst & client to get out chair at hairdresses in hall. When she reached down something in back pulled.
## 12500 Asst. Chg. Resident-resident agitated-kicking& hitting-swung catching r. Hand/arm btw. Forearm-fell to floor-twisitng r. Arm/hand ()
## 12501 Asst. Client put shirt on-guiding arm through sleeve-client pulled emp. L hand-wrist popped.
## 12502 Asst. Resident into Dr-Resident holding r. Hand squeezed and hit top of hand on corner of table-trying to push food away. ()
## 12503 Asst. Visitor in the carraway garden, tripped overuneven brick walk, fell & hit face & jolt neck. Broke glasses in fall. Lt eye/forehead/neck.
## 12504 Asst. With client having behavior. EE standing in kitchen door, client wanted to run out, could not get by EE. Hit EE & pulled hair. Neck strain
## 12505 Assualted and thrown to floor att to arrest pt multiple injures substained
## 12506 Assualted by patient struck face, left ribcage, kicked left foot
## 12507 Assulted by an inmate, inmate spit on the officer ()
## 12508 Assulted by inmate ()
## 12509 Assumed role of inmate during crdt training. Whileperforming the mount escape technique cfsm slovnikwas thrown and landed on her pinky finger.
## 12510 Assuming duties at gatehouse suddenly rash & itching occured about the body. I noticed it about my arms & then around my neck.
## 12511 Asthma attack - cig smoke exposure
## 12512 Asthma attack at work ()
## 12513 Asthma attack triggered by fresh paint and dust from drilling. ()
## 12514 Asu van stopped on I-81 for construction when it was hit in rear by a large truck going to fast to stop in time. Multiple injuries
## 12515 At 11 pm, as part of employees building closing routine, she went outside to turn off the air compressor. It was totally dark there and even though she was careful, she tripped over a mop bucket. Her right thigh landed on the mop bucket and head hit the
## 12516 At 12:45 pm on 11/27/2012 inmate dominick jordan opus 0994465 threw a cup of urine out of his food passage door in jackson's face. The urine went into his eyes and mouth. ()
## 12517 At 4pm my eyes started itching horribly, left eye felt worse, then a few minutes after the itching started, eyes are area around eyes started swelling and appeared splotchy. I was in the radiology dept straightening up rooms prior to the itching I was ()
## 12518 At a client's home outside with child and pt provider working on independent mobility skills using her walker around the family home outside and around farm animals. Stepped on ground and felt bite marks on l foot and ankle. ()
## 12519 At about 8:30 a. M. On November 12, 2009, entered the doors to the lower lobby area of the c. J. Barber building on fsu campus. Steadily raining on that day, so employee slipped and fell onto the floor. Employee was taken to cape fear valley medical ctr
## 12520 At annual corr officer re-certification, stated on t-op of partner when partner threw him off. Landed on right side, knocking the breath out of him. (unarmed self-defense training) broken right rib; pain in rt side of chest ()
## 12521 At approx 12:35 pm at 1170 scot rd., salisbury, ncduring home contact dog came from under trailer & bit right leg.
## 12522 At approx 2:00pm I was doing a training exercise on a takedown move and was forced to the floor and injured my rt shoulder
## 12523 At approx. 14:50 hr. On 3/30/2006 EE was leaving gate house and caught his middle finger on his lt hand in the door.
## 12524 At approximately 10:30am, the employee was exiting the back of the drivers license office on her way to her vehicle when, she slipped, fell, and landed on her right side. List injury as: right knee, right elbow, right shoulder ()
## 12525 At approximately 11:02 officer james reed was injured in an anticipated use of force.
## 12526 At approximately 1250 hrs officer norris was assigned to firearms re-qualification at bcci range. At this time she complained of light headiness to the firearms instructor. After eval by bcci medical, ref to richmond mem er. ()
## 12527 At approximately 2:30 pm while walking the perimeter my inner calfs got hot feeling. There is notable red splotches, I felt sick and pain in my l-shoulder and chest. ()
## 12528 At approximately 9:48 am on April 14, 2011, employee complained of swelling in face and lips, soreness in throat and upper chest. Employee's office was painted with high gloss paint on April 4, 2011. ()
## 12529 At basic training involved in breakfalls, officers left thumb bent in an awkward position. ()
## 12530 At basic training was going to vehicle and tripped and fell. ()
## 12531 At bertie ci for drug interdiction. Using a metal detector and shovel to dig for weapons. Foot got stuck in mud. Foot twisted while pulling it out. ()
## 12532 At cdrt training and performing breakfall/takedown and my back started to hurt. ()
## 12533 At cell extraction training, EE was stopped by officers and pressed against wall. Injured left shoulder
## 12534 At client interview, was alerted that client had been exposed to TB, taking meds
## 12535 At client's house, walking down sidewalk, didn't see step off or step down, right leg hit sidewalk and l eft leg did not fall
## 12536 At clients home conducting evaluation sitting on floor when EE adjusted postion with hand and hand was cut on nail sticking out of floor
## 12537 At clients home to initiate ils service and evaluation, client asked susan to step outside during the low vision evaluation and in stepping from inside to the porch area, stumbled on ramp twisting rt ankle ()
## 12538 At clotheshouse locking sliding gate in back. Metal cart fell-handle struck EE across neck & shoulder.
## 12539 At college-sponsored o/s event, EE was carrying herplate of food walking toward a table when her lt ankle twisted.
## 12540 At completion of experiment, students were purging the test chamber with outside air using a blower power cord was plugged into a heavy duty extension cord. A spark caused an electrical shock. Employee did not touch any metal parts. ()
## 12541 At conference in greensboro, nc @ guilford community college when part of a desk fell on EE left foot. ()
## 12542 At conference, returning to hotel, stepped off sidewalk into a hole in road pavement
## 12543 At crdt training, required move to be tossed over shoulder of another officer, when tossed landed on left shoulder
## 12544 At desk doing paperwork, rolled chair over to her computer about 2 feet, and felt severe pain in herback.
## 12545 At desk typing, got up and tripped over an electrical cord under her desk. Fell on rt knee.
## 12546 At desk using scissors to open item. Item dropped to floor; reached down to pick up item with scissors in right hand; scissors cut left hand, inside thumb area. ()
## 12547 At desk working on order request. EE saw what appeared to be a piece of plastic on floor beside deskreached to pick it up & cut by sharp edge of glass
## 12548 At end od distillation to remove thionyl chloride from reaction flask, explosion happened. Small glass pieces cut face.
## 12549 At end of EE's shift, he was walking down steps tohis vehicle, lost his balance & almost fell.
## 12550 At end of day after fire training, EE & another eehad firetruck out, firehydrant to refill water. Ri chard turned around rufus was on ground, did cpr
## 12551 At end of first shift started hurting in back left lower back pain
## 12552 At end of work which involved lifting of students & bouncing on ther ball, EE experienced low back pain
## 12553 At firing range getting up from kneeling position and put right hand on ground to assist me and fingers went backwards too far. ()
## 12554 At firing range, pulled the weapon from the holster, could not lock out my arm to aim shoot the weapon, & felt sharp pains, raise my left hand for the hand gun to be removed. ()
## 12555 At fitness conference - taking yoga - performed vinyasa many times on carpet which caused a foot abrasion
## 12556 At foothills nursery to get ojt signed, cat approached being friendly, began petting cat and cat bite forearm ()
## 12557 At formation for pert briefing () -chest pains
## 12558 At gas pump, bent down to pump sample into can, went to stand back up, felt pain in lower middle back
## 12559 At goosecreek EE appriciation, EE was walking on beach, started walking back to cookout site, stoppedto get water from fountain, felt sting on thigh
## 12560 At her desk typing when she lifted her lt hand an d hit the bottom of her keyboard tray, injuring her lt hand
## 12561 At home of client had low vision aid kit in hand, turned to go in home lost balance & fell down steps onto cement
## 12562 At home of family interperting for mother and cdga nutrionist said mother indicated taking medication for tuberculosis
## 12563 At intersection - collision with another vehicle. Pain in shoulder & neck
## 12564 At local high school attending meeting, coming down stairs when she tripped and was falling face first, but caught handrail and pulled to side before falling ()
## 12565 At lunch, EE appeared dazed, fell off of sidewalk onto his back, contusion to left leg and back
## 12566 At offenders home, offender tried to run away officer tried to stop him. Slammed door breaking glass on officer causing injuires to officer
## 12567 At outing w/clients. Lifted client out of wheel- chair & onto ground. Felt pull in right inner thigh & back
## 12568 At probationer home, made an arrest and when he got out of the car he walked a few steps and his knee buckle causing him to fall to the ground ()
## 12569 At recertification training/crdt doing guard in - guard out technique. While partner was position himselfhe hit her knee with his elbow. ()
## 12570 At residence to hook up eha unit. Door was open so he went in. Heard sounds upstairs, went up, yelled hello, wife yelled back. Dog bit hand. Wife expl
## 12571 At sampson corr inst. In control tower when a spider bite her on her lt eyelid
## 12572 At scene of accident. Vehicle being towed was being loaded onto rollback wreaker when began to shift to right. Tried to push vehicle back up
## 12573 At some point after lunch while sitting at desk typing a spider bit her ankle
## 12574 At some point during techincal assistance trainingvisit to ecuador, I was infected by a parasitic worm.
## 12575 At some point during the day, one of the chemicals he was working on fell into his shoe causing a minor chemical burn to top of right foot. ()
## 12576 At some time, something small stuck in my knee, I thought I got it out but it still feels like its there
## 12577 At stop light when light turned green. EE started through intersection, jeep ran red light & hit passenger side of state car. **subro claim***
## 12578 At stop sign & pulled out into traffic. Another vehicle not visible b/c of hedges & light pole. Was struck by other vehicle
## 12579 At the beginning of her shift employee was walking up the steps leading from sidewalk when she lost her footing and tripped, hitting her right leg on the steps. ()
## 12580 At the conclusion of training EE said she felt a pull in her back and right leg.
## 12581 At the desk turn to call in count and bang my left knee funny bone. ()
## 12582 At the door in kitchen turning the key and door hit right thumb causing it to tear away from top of cuticle. ()
## 12583 At the end of a car chase, the suspect locked himself in the vehicle and was threatening suicide. EE struck the window with his hand and broke the window. ()
## 12584 At the end of a mini center, employee was unloading state van to move supplies & equipment used in the mc the storage area in haywood. But on opening the door at back of van a cart rolled out and struck employee's leg. ()
## 12585 At the end of honors assemblky (ged graduation) eewas going up steps to remove microphone when EE fell on stage
## 12586 At the end of shift (near) felt a small bump on left side of back, as stated by EE ()
## 12587 At the end of the ems exercise, Mr. Thompson was loading equipment into the vehicle. His back began hurting intensely by that evening. ()
## 12588 At the greenville law annex-EE rolled his left ankle on the mats while training in pert ground defense
## 12589 At the time of the accident was conducting security rounds. Was walking and her right foot turned to the right caused ankle sprain
## 12590 At the time of the incident the EE was separating two inmates fighting and was exposed to one of the inmates's blood
## 12591 At the top of stairs coming down from making a security check when foot slipped and started bouncing down each step on her buttocks hitting her back
## 12592 At the training facility doing baton training hurt her self didn't feel it until 2 days later ()
## 12593 At time of accident no injury was reported and nottransported was used for the above prosp. Report filled out in event future problems.
## 12594 At training performing a 2 person take down officer's legs were held by officer. He turned to speak with officer and felt a pinch ()
## 12595 At tyrrell prison work farm, I was working with road squad #2 moving furniture off trucks putting in the doc office. When I got to the room the desk fell off the dolly. Fractured middle finger, right hand. ()
## 12596 At work in medical building during use of force ()
## 12597 At work in the master control room the EE states he was possibly bitten by an unknown insect/spideron the lower right leg
## 12598 At workstation, lt arm started itching-pulled lab coat off. Increased itching & discomfort radiatingfrom inner elbow down arm. Prob. Insect bite.
## 12599 At wssu storage warehouse picking up a chair, when I tripped over a piece of surplus that stuck out on the floor. I was not able to see it the lighting are out in the area where we keep our surplus. ()
## 12600 Ate ice out of wrong cup (inmate's cup). May have consumed inmate's saliva.
## 12601 Atempting to handcuff an inmate, was pushed against a holding cell wall (made of chain link fencing) ()
## 12602 Att to assit w/student, reached to open door when door slammed on rt index finger casusing swelling
## 12603 Att to put helmet on client-client was being resistive-EE hurting in chest, rt side of neck and back.
## 12604 Attached by pt, kicked in right leg, fell to floor hitting knees and injuring left wrist ()
## 12605 Attached by pt, pt kicked EE in left leg and twisted right thumb ()
## 12606 Attached by pt. C/o blurred vision, headaches, short term memory loss, balance off
## 12607 Attaching an asphalt kettle to the trailer hitch of truck & trailer shifted on trailer ball & he pulled the trailer back over the ball & felt a pop in lower right back ()
## 12608 Attaching razor ribbon to top of security fence. While untangling & attaching ribbon, back of left hand was struck by ribbon barb.
## 12609 Attacked & beaten by an inmate
## 12610 Attacked and assaulted by a patient
## 12611 Attacked by a combative patient.
## 12612 Attacked by a dog during field contact ()
## 12613 Attacked by a patient, choking her and throwing herdown. Injury to hip/neck/back.
## 12614 Attacked by a patient-placed in a headlock and scratched on the arm and face.
## 12615 Attacked by a patient.
## 12616 Attacked by a patient. ()
## 12617 Attacked by a patient. Kicked on the left thigh, hit to face and scratched on right arm.
## 12618 Attacked by aggresive inmate,
## 12619 Attacked by aggressive pt, pt hit/kicked/pulled EE's hair ()
## 12620 Attacked by an agressive patient - contusion/ sprain tl knee - possibel lumbar strain, mild contusiont to face.
## 12621 Attacked by client, lt wrist injured
## 12622 Attacked by individual and fell in bathroom hitting rt elbow.
## 12623 Attacked by inmate in kitchen
## 12624 Attacked by inmate. ()
## 12625 Attacked by inmate. Shoved head against window several times ()
## 12626 Attacked by patient & fell hitting his knee on floor. Abrasion on right ring finger
## 12627 Attacked by patient & in process of trying to subdue patient right arm was hurt
## 12628 Attacked by patient causing stress to his already injured back
## 12629 Attacked by patient during a restraint.
## 12630 Attacked by patient from behind, hit EE on r shoulder, r side of face ()
## 12631 Attacked by patient punching & kicking shoved staff into wall striking left shoulder
## 12632 Attacked by patient while giving patients their lunch
## 12633 Attacked by patient, hit in face, pulled hair, pushed against wall. ()
## 12634 Attacked by patient. Attempted to use therapeutic block when pt hit her on head receiving injury to lft pinky finger.
## 12635 Attacked by patient. Grabbed around neck & both fell to floor
## 12636 Attacked by patient. Patien hit her in nose w/ fist
## 12637 Attacked by patient. Patient hit EE on left side of face & bit her finger on left hand
## 12638 Attacked by patient. Patient pulled hair, punched at staff and scratched her on right thumb.
## 12639 Attacked by psych pt punched left temple area thrown to floor neck, shoulder, and back pain ()
## 12640 Attacked by pt from behind pt grabbed EE around neck causing EE to fall backwards, hitting head shoulder & hip on chair
## 12641 Attacked by pt resulting in broken finger trt w/ e ortho
## 12642 Attacked by pt, blocked hit, pt scratched EE on right arm ()
## 12643 Attacked by pt, blocked pt, pt hit right finger ()
## 12644 Attacked by resident... Injury low back pain down both legs
## 12645 Attacked from behind by a patient. Head hit floor.
## 12646 Attacked from behind by patient who slammed him into wall causing laceration to his eyelid
## 12647 Attacked from behind by patient. Hit on head, scratched
## 12648 Attacked from behind. Stabbed several times w/ homemade knife had wounds to back and head
## 12649 Attacked staff and bit her arm ()
## 12650 Attacked unprovked by pt. Hit multiple times in back of head neck upper-back & abdomen (soreness burising stiffing)
## 12651 Attemp to reach file over head on shelf; grabbed the office step stool to assist and stool struck top of foot; gaping wound required 4 stitches ()
## 12652 Attemped to open water spicket container compartment and hornet swarmed him. He was bitten on the left forearm.
## 12653 Attemping to gas up track car when the pressure from the tank sprayed gas in his eyes. ()
## 12654 Attempt gain control of I/m and was struck in right hand by I/m ()
## 12655 Attempt to pull a file from a box located on the floor while sitting in a chair. Motion caused a sharp pain in lower back
## 12656 Attempt to redirect client when client charged attempt to place in therapeutic hold was bitten onleft upper bicep
## 12657 Attempted several times to turn key to unlock lock on fire door during fire drill
## 12658 Attempted to ? Overhead door to test can with ? On track
## 12659 Attempted to apply belt on client in order to transfer from chair to wheelchair, client became aggitated and undsteady and attending staff fell to flr
## 12660 Attempted to arrest an offender ()
## 12661 Attempted to arrest an offender. While taking offender to the ground the offender attempted to run from ppo and ppo fell to the ground on left knee ()
## 12662 Attempted to arrest offender he bacame aggitated, we struggled & fell then tried to gain control he continued to wrestle w/us.
## 12663 Attempted to assist a patient who was falling-in process twisted r. Shoulder ()
## 12664 Attempted to assist co-worker from being attacked by client-in process, client head butted employee in right eye
## 12665 Attempted to assist officer breaking up fight between two inmates. As was wrestling inmate, fell on floor and right wrist landed on pepper spray cannister. ()
## 12666 Attempted to assist resident to stand from sitting position on floor - became agitated- hit in l. Jaw with fist. ()
## 12667 Attempted to assist staff member with agitated client-client grabbed left middle, ring & pinky finger and bent them backwards. ()
## 12668 Attempted to catch door from slamming and caught his finger in the door
## 12669 Attempted to climb on loading dock to check east doors; slipped and fell
## 12670 Attempted to close infirmary gate. Was trying to get pole down. Other gate handle piece came down onrt index finger.
## 12671 Attempted to cut box (containing kleenex boxes) open and cut left index finger. ()
## 12672 Attempted to detain and cuff inmate and inmate snatched away. He then grabbed my head & hit it up against the wall ()
## 12673 Attempted to direct patient to sit in wheelchair- patient resisted & leaned over & bit staff on her left deltoid.
## 12674 Attempted to exit supply room. Went around an inmate who was emptying trashcan & slipped on floor
## 12675 Attempted to free jammed bleachers by lifting them and felt pain in the abdominal area, above the naval
## 12676 Attempted to gain control of a student hit rt knee on metal bed.
## 12677 Attempted to get resident up for bath-resident rolled over stated didn't feel good. Asked that resident get up for shower and resident hit employee, with fist, below left eye-against side of nose. ()
## 12678 Attempted to grab student when fighting w/another student & her hand slipped off of his arm causing her finger to bend backward.
## 12679 Attempted to handcuff an inmate, who was in secured shower stall. Inmate grabbed handcuff also pulling his arm causing it to scrap bars
## 12680 Attempted to handcuff offender, had one hand cuffedoffender jerked and teeth on handcuff tore skin on pinky finger. Required 4 stitches.
## 12681 Attempted to inject young child when child jerked and EE injured thumb w/clean needle
## 12682 Attempted to intervene with client who had seizure and fell on floor. Cleint was violently throwing arms & legs about and kicked employee
## 12683 Attempted to interview driver @ traffic collision driver drew fists @ EE, EE struck driver w\\rt handlaceration rt-knuckles requiring sutures
## 12684 Attempted to keep client from falling on floor. When the client attempted to hold on to me to keep from falling, experienced a sharp pain in lower part of back and dull aching pain in left shoulder area. ()
## 12685 Attempted to keep patient from falling in shower-patient stood up from shower chair-attempted to grab patient and chair-fell into shower-l. Hip, and lower leg bruised. ()
## 12686 Attempted to keep resident/patient from falling twisted rt ankle and resident also stepped on her rt big toe
## 12687 Attempted to lift folder dropped it, left hand went weak ()
## 12688 Attempted to lift patient from floor patient resisted strained left shoulder
## 12689 Attempted to lift sheet rock debris onto forklift when felt sharp pain in lower abdomen & groin area ()
## 12690 Attempted to move rolling work bench, wheels did not move and pulled muscle in back
## 12691 Attempted to open steel valve pit cover for inspection of pit arm
## 12692 Attempted to pick up a piece of foam rubber that was in the bottom of a ice cream cup she picked up the foam and was stuck with a sewing needle
## 12693 Attempted to pick up the mail tray when an inmate threw an unknown substance on officer. ()
## 12694 Attempted to prevent a fight between to juveniles. Escorted juvenile to his room. Lower back pain by the belt and lower.
## 12695 Attempted to prevent a patient from falling-holding-emp. Legs went out in opposite directions-strained l. Lower back/hip & r. Forearm. ()
## 12696 Attempted to put fire out in inmates' bathroom. Inhaled smoke.
## 12697 Attempted to raise head of bed of resident. Felt something pull in back middle/lower part
## 12698 Attempted to redirect a resident from hitting another resident when resident hit in stomach. ()
## 12699 Attempted to redirect agitated client from staff emp holding onto client's elbow, client started jerking in other direction, pop right wrist
## 12700 Attempted to redirect client - client punched employee in nose
## 12701 Attempted to redirect consumer. Consumer grabbed right thumb & bent it backwards then jerked her thumb forward
## 12702 Attempted to redirect patient by grabbing hat-aggravated patient-patient scratched/hit in face/neck. ()
## 12703 Attempted to redirect patient. Patient became aggressive. Hit her on right hand.
## 12704 Attempted to redirect resident from unit elevator. Resident started throwing punches. Co-worker got resident's right arm I prevented resident from punching co-worker in face. Resident punched emp. In upper l shoulder w force. ()
## 12705 Attempted to redirect resident to bedroom in order to redress-resident agitated-attempted to lay down on floor while holding onto employee-twisting l. Wrist backwards. ()
## 12706 Attempted to redirect resident, resident shoved me in to door frame with his back ()
## 12707 Attempted to remove brief from resident-resisdent grabeed r. Thumb and twisted. ()
## 12708 Attempted to remove medical charts from wooden order box, something stuck into my (l) small finger ()
## 12709 Attempted to remove resident from Dr Chair-resident punched employee in r arm and l jaw-later that day (around 3:00 pm) reported pain in mid back/l jaw. ()
## 12710 Attempted to restrain inmate, inmate jerked away and struggled causing employee to fall to the ground. ()
## 12711 Attempted to restrain patient and fell over table to the ground
## 12712 Attempted to restrain patient fell on knees then buttocks
## 12713 Attempted to restrain patient twisted and landed hard on left leg
## 12714 Attempted to return pt to bed when he tripped striking rail of bed adn hit knee, strained back
## 12715 Attempted to rise from desk in nursing station after signing off medication book, hit right knee on corner of desk.
## 12716 Attempted to roll backward from the desk and chair flipped out from under employee, hit the back of neck and head. ()
## 12717 Attempted to separate 2 boys fighting, grabbed onecoat and pulled back, boys plus staff trying to separate them went in opposite directions
## 12718 Attempted to separate residents during altercation-resident grabbed hair and pulled head back-grabbed around throat, pulled ear. ()
## 12719 Attempted to serve parole warrent on parolee. Ran across front yard & ran into clothes line causing damage across top of mouth
## 12720 Attempted to sit down and chair slid from underbeath body. ()
## 12721 Attempted to sit down in desk chair on rollers & chair tipped backward & slid out from under her throwing back of head.
## 12722 Attempted to sit down in the chair, rolled beneath her, grabbed for the desk, drawer fell out on her, she fell on her right hip and right elbow.
## 12723 Attempted to sit down, when chair rolled back and she fell on the floor injuring back and buttocks
## 12724 Attempted to sit in chair, chair broke off from the base, EE fell to floor
## 12725 Attempted to stand pivot a client, client jerkedb backwards resulting in employee twisting back.
## 12726 Attempted to step from the roof onto ladder, ladder kicked out, EE lost balance, fell onto gravel driveway, ladder fell on top of him.
## 12727 Attempted to step over dollies stacked in floor caught toe of shoe and fell on knees
## 12728 Attempted to stop door from shutting; it shut on right hand/middle finger ()
## 12729 Attempted to straighten patient up in chair and felt muscle pull in r. Low back. ()
## 12730 Attempted to take client's vital signs, client bit EE on left fifth finger
## 12731 Attempted to throw another staff during cell extraction training and knee would not turn with body.
## 12732 Attempted to untie a dress from around inmate's neck. Inmate bit her right shoulder.
## 12733 Attempted to use oc pepperspray on inmate outside; wind blowing caused spray to get in eyes
## 12734 Attempted to wash client's face & hands. Client became aggressive pushing EE's hand away & bendingfingers back
## 12735 Attempting arrest of dwi subject-struggle began EE placed subject on ground to handcuff-he fell toground on top of EE caused left hand injury
## 12736 Attempting delivery of goods, goods on top of cart fell off striking her foot & toes
## 12737 Attempting entrance into narcotic cabinet. Latch jammed causing shoulder to pop ()
## 12738 Attempting gain access into driver compartment of a wrecked car, by striking the windshield with baton. Glass shards flew into EE rt eye.
## 12739 Attempting manual hold when heard a pop in left shoulder.
## 12740 Attempting run out of area. Reaching client, turned suddenly & EE's left arm went w/client
## 12741 Attempting to accest individual he rolled over and kicked EE in the hand injuring my thumb
## 12742 Attempting to adjust closure signal on door in gatehouse while looking up to read instructions EE heard a pop in neck lt arm went numb
## 12743 Attempting to apprehend a fugitive who ran, employee gave chase and pulled his left leg
## 12744 Attempting to apprehend a handcuffed suspect that had jumped from trooper's car, during foot chase stepped into a hole, twisted left ankle, fell
## 12745 Attempting to apprehend a subject when EE stepped into a hole & twisted his left ankle.
## 12746 Attempting to apprehend an absconder went over a fence to gain acess to rear of residence & landed wrong injuring lt knee
## 12747 Attempting to apprehend fugitve while assisting another officer, injured lower rt leg, calf muscle
## 12748 Attempting to apprehend suspect on foot, injured his r ham string as he attempted to grab the suspect
## 12749 Attempting to apprehend suspect who had just wreck a stolen vehicle. Vehicle overturned on its side. EE tried to grab suspect, got hand caught in door
## 12750 Attempting to arrest a suspect for shop lifting. Suspect fled on foot. Pursuing suspect EE stepped in a hole & fell bkwds. Rt--arm/hand/elbow/knee.
## 12751 Attempting to arrest an individual who was fleeing& resisting arrest injuries consisted of scratches& bruises
## 12752 Attempting to arrest an intoxicated person who was resisting arrest at rolling stones concert
## 12753 Attempting to arrest an offender and fell. ()
## 12754 Attempting to arrest appreherd subject
## 12755 Attempting to arrest assailant w/another trooper & weight of another trooper caused his right thumb& wrist to become jammed
## 12756 Attempting to arrest dwi suspect. Suspect resistedby kicking EE and knocking her down
## 12757 Attempting to arrest dwi suspect. Suspect twisted his arm around, kicked EE & both fell to floor of elevator
## 12758 Attempting to arrest individual he rolled over and kicked me in rt hand
## 12759 Attempting to arrest individual, EE struck indivi dual in head with his right hand, causing injury to hand
## 12760 Attempting to arrest offender after he was handcuffed he fail back onto bed and kicked with both feet and fell backwards and struck EE's back
## 12761 Attempting to arrest offender, offender resisted arrest and a scuffle ensued.
## 12762 Attempting to arrest person for speeding & grabed socket wrench from his hand. Struck in face. Exposed to blood pathogens
## 12763 Attempting to arrest person--resisting arrest. Injured left knee, severe bruising.
## 12764 Attempting to arrest sherman ward, accussed injured and officer fell in hospital parking lot and hurt rt knee.
## 12765 Attempting to arrest subject for driving while license suspended. Subject started fighting duringaltercation. Left wrist became sprained
## 12766 Attempting to arrest subject for dwi; subject resisted & trooper bruised right hand while subduing subject.
## 12767 Attempting to arrest suspect for criminal violation while involved in training scenario. As attempted to gain control of suspect knee twisted
## 12768 Attempting to assist another staff member who was being assaulted. He was assaulted by inmate
## 12769 Attempting to assist medical staff with extending the legs of a stretcher that an inmante was on, lifted 3-4 times still did not extend
## 12770 Attempting to assist with manuel restraint of a patient. The patient bit EE on her left wrist causing swelling of left hand, skin not broken.
## 12771 Attempting to assume kneeling position while on a doc firing range attempting to complete weapons e xercise, fell down
## 12772 Attempting to avoid stepping in wet wax on floor located in voc rehab area. Misstepped & bumped head on corner of hanging cabinet
## 12773 Attempting to block inmates from fighting, inmateswere sprayed with pepper spray causing officer to be exposed to spray. He bruised his right arm.
## 12774 Attempting to break patient's fall, causing staff to fall to floor. ()
## 12775 Attempting to break up a fight between inmates, inmate struck me with a metal object on the left forearm ()
## 12776 Attempting to break up a fight between two inmates in dining hall. ()
## 12777 Attempting to break up a fight between two juveniles, employee was kicked in the right shin ()
## 12778 Attempting to break up a fight between two juveniles, ran to get phone and hit left forearm on corner of a bookcase
## 12779 Attempting to break up a fight between two juveniles. I was punched and pushed into a wall.
## 12780 Attempting to break up a fight where an inmate had attacked staff. ()
## 12781 Attempting to break up and altercation the officer was attempting to break to strike the right shoulder of an inmate and he grabbed her left hand injuring her ring finger ()
## 12782 Attempting to break up fight and was hit in the stomach by inmate and officers pepper spray fell out of pocket to floor. ()
## 12783 Attempting to break up fight between 2 inmates & one of inmates hit EE on right hand.
## 12784 Attempting to break up fight between juveniles, hit in the hand - left hand & thumb swollen & painful ()
## 12785 Attempting to break up fight between two patients, injured lower back ()
## 12786 Attempting to calm down upset pt, pt scratched EE on right arm ()
## 12787 Attempting to calm residnet. Pt shoved a rolling cart into hot tony. Skin intake small knot
## 12788 Attempting to calm verbally abusive student. Student got physically aggressive. Pushed EE into wall at which point his thumbs were injured
## 12789 Attempting to capture fleeing suspect. Jumped embankment & pulled musle in lower portion of leg
## 12790 Attempting to carry a stack of 10 lunch trays up the steps and stepped on the strap ()
## 12791 Attempting to catch a falling patient from x-ray table.
## 12792 Attempting to catch a horse using standard procedures the horse pulled away kicked the employee in both thighs and stepped on right foot
## 12793 Attempting to catch an offender who was running away slipped, tripped and fell near the curb
## 12794 Attempting to catch falling resident and twisted lower back
## 12795 Attempting to change the blade on electric powered chop-saw. When putting allen wrench in nut to check size, saw activated & cut EE lt index finger
## 12796 Attempting to change tire for elderly, disabled motorist on interstate 95. Attempting to loosen lug nut felt pull in right shoulder
## 12797 Attempting to clean dirt from ground near machine and left thumb got sucked up into blade area
## 12798 Attempting to clean window located behind secretary's desk. Tipped over and fell onto chair
## 12799 Attempting to clear debris from holesaw drill bit w/screwdriver while holding drill bit. Screw- driver slipped and struck left palm
## 12800 Attempting to climb into back of truck & bumped her knee on rear bumper
## 12801 Attempting to close a window in a pt's bedroom. When I pushed down on the window with my finger, my right hand slipped and pulled tendons.
## 12802 Attempting to close a window when his lt hand slipped from the handle and broke the glass. Causing him to cut his lt middle finger and lt ring finger
## 12803 Attempting to close bar doors. Tried to remove roll of toilet paper that was keeping door open bar door closed on fingers.
## 12804 Attempting to close door -patient aggressive-grabbed arm and hit in face-attempted to pull through doorway- placed r. Leg back for leverage-pain in r. Calf.
## 12805 Attempting to close file cabinet drawer, binder prevented drawer from closing, bent thumb (left hand) backward causing sprain.
## 12806 Attempting to close gate. Felt burning sensation in back.
## 12807 Attempting to close inmate's cell trap door during medication call and inmate pushed the door back open injuring officer secor's left index finger ()
## 12808 Attempting to close operation w/ iris van and secure all the equipment. While closing mounting device that holds the infra-red camera, rt thumb lodged
## 12809 Attempting to close safety sheath on butterfly needle; pricked right 2nd finger; penetrated glove. ()
## 12810 Attempting to close the elevator door when his finger got caught in it resulting in injury
## 12811 Attempting to close window in d-dorm memo board hit her head ()
## 12812 Attempting to close window in nurses' station, window fell on right index finger ()
## 12813 Attempting to close wing door, third finger on hisright hand got mashed between door and hinge
## 12814 Attempting to conduct a complete search on a inmate, the inmate became aggressive and spat at EE. Then tried to hit EE w/ his rt hand. EE struck inmat
## 12815 Attempting to conduct a covert operation in a rural area when 8-10 dogs came from targeted residence. While running sprain rt ankle/foot.
## 12816 Attempting to confisicate contraband when attacked by the I/m and was c/o was repeatedly hit in the facial area and kicked in the ribs. ()
## 12817 Attempting to connect trailer to vehicle during extreme adverse weather conditions during hurricanfram. Trailer moved. Pinned between trailer & vehic
## 12818 Attempting to control disruptive inmante. Head andright hand.
## 12819 Attempting to control disruptive inmate. Bruised right arm and hand.
## 12820 Attempting to control hostile inmate
## 12821 Attempting to control police dog, EE struck hand on wooden decking. Blow caused piece of wood to be driven under left index fingernail
## 12822 Attempting to counsel juvenile about negative behavior when she hit staff on left temple and head with fist
## 12823 Attempting to cross over to other side of parking lot when she slipped on ice and fell backwards
## 12824 Attempting to cuff an inmate
## 12825 Attempting to cuff an inmate-web of right hand cut
## 12826 Attempting to cuff inmate and inmate scratched rt arm
## 12827 Attempting to cuff inmate, got inmate's blood on me. ()
## 12828 Attempting to cuff up an inmate to move cells. Had one cuff on im and im jerked the cuffs away and I tried to hold on to cuffs. ()
## 12829 Attempting to cut a lock off with pair of bolt cutters when handle popped away from his hands & slammed into his elbow 2 times. Twisted back
## 12830 Attempting to cut braided cable with portable band saw. Holding saw w/right hand and cable w/left hand, saw pulled left hand into blade cutting edge.
## 12831 Attempting to cut restraints off an inmate when hand was injured ()
## 12832 Attempting to detain a subject to issue a citationwhen subject fled on foot. A struggle ensused & EE fell on left knee.
## 12833 Attempting to discard needle after attempting a blood draw, finger slipped, was stuck by the needle
## 12834 Attempting to dislodge padlock from gate; struck padlock with heel of right hand. ()
## 12835 Attempting to do the mounted formation. Left thumbpopped.
## 12836 Attempting to draw blood of high risk pt. Needle was withdrawn when trying to place needle in the sharps needle stuck in lt finger.
## 12837 Attempting to empty tower and was bitten by an unknown insect in palm of her right hand
## 12838 Attempting to enter sallie port entrance to prison area, when electric steel door opened & closed suddenly pinning EE lt shoulder/arm/hand/fingers.
## 12839 Attempting to escort inmate back to his cell. He spat on my face ()
## 12840 Attempting to evacuate an inmate from segregation cell due to fire. Inmate resisted & scratched EE on right elbow
## 12841 Attempting to execute his duties by arresting an offender when offender ran. Altercation & chase occurred.
## 12842 Attempting to exit door and hand was caught between door & door facing
## 12843 Attempting to exit vehicle when opening door door puled officer out of vehicle
## 12844 Attempting to free grounded vessel from shoreline. Lifting/pushing up & out on starboard bow. Pain & limited range of motion in both shoulders.
## 12845 Attempting to gain control of an aggressive juvenile. Injured lft hand, 3rd finger, rt arm, shoulder.
## 12846 Attempting to gain control of disruptive inmate, he felt something pull in his back near the center, upper right side of back
## 12847 Attempting to gather vehicle information by stepping down into & attempting to cross road ditch while investigating motor vehicle collision
## 12848 Attempting to get 2 cartons of milk out of window and window slammed down on two fingers
## 12849 Attempting to get a restrant pt ou of chair, approx. 30 mins later EE experienced sharp pains in low back.
## 12850 Attempting to get inmates out for school when an inmate lunged at her striking her in lower chin area
## 12851 Attempting to get keys out of key box when officerpulled box back in control room thinking she had already got keys
## 12852 Attempting to get lift back into van and bumped right wrist--sprain
## 12853 Attempting to get off loading dock and slipped on iron rail.
## 12854 Attempting to get up on rt leg from the floor, standing on lt foot, feet felt as thought it lock straight out
## 12855 Attempting to give client meds and client hit EE in the nose
## 12856 Attempting to give pt medication, pt was aggitated and aggressive
## 12857 Attempting to hadncuff probationer, she resisted, pulling both herself & this officer to the floor. Had to use physical force to subdue her.
## 12858 Attempting to handcuff a defendant. EE received several abrasions, and two human bites to both hands & wrists.
## 12859 Attempting to handcuff inmate - inmate struck officer in neck. Per medical staff - sustained 3" laceration to left side of neck, apprx 2" deep.
## 12860 Attempting to handcuff inmate, inmate struck officer in the face on the left side repeatedly. EE sustained psychological injuries.
## 12861 Attempting to handcuff offender when offender pushed officer and both fell to the floor ()
## 12862 Attempting to handcuff subject, in the process subject elbowed EE in lower jaw causing EE to chiptooth on bottom right side.
## 12863 Attempting to help a self injurious inmate ()
## 12864 Attempting to help cleint get closer to table, client suddenly leaned back & jumped, EE tried to keep cleint from falling back
## 12865 Attempting to help handcuff an offender. The offeneder tried to abscond and officer had to gain control of offender. ()
## 12866 Attempting to help restrain inmate and fell on theconcrete and hurt her right knee
## 12867 Attempting to hold bedframe to prevent patient from hurting themselves, resulted in staff having pain in back of neck and left shoulder blade.
## 12868 Attempting to hold patient. Patient lunged againstee. Knocking EE into wall
## 12869 Attempting to hold struggling patient. EE felt pain in right shoulder & lower back
## 12870 Attempting to intervene w/an agressive resident who was upset. EE hit on left shoulder & kicked onleft leg several times
## 12871 Attempting to intervene w/client's combative behavior. Client struck EE on tip of left thumb
## 12872 Attempting to intervene with client's behavior. EE's right hand was caught under client's and floor
## 12873 Attempting to keep client from falling and struck leg on table ()
## 12874 Attempting to keep client from falling, clients weight went on employee suddenly, causing EE to pull bicep in left arm.
## 12875 Attempting to keep resident from removing tube. Resident dug nails into r. Ring finger. ()
## 12876 Attempting to kill a spider on window and right hand went threw window. ()
## 12877 Attempting to kneel in firearms training for practical applications of firearm use and fell backwards hitting head on tables stacked against the wall
## 12878 Attempting to lift a cooler filled iwth ice, waterand soda when EE pulled muscles in both legs
## 12879 Attempting to lift a manhole cover with the pipe tool and the cover slipped and it's weight pulled a muscle in his back.
## 12880 Attempting to lift a restrained inmate after a use of force when he hurt his back
## 12881 Attempting to lift a soda machine which had turned over and pinned an inmate underneath it
## 12882 Attempting to lift box of materials weighing approx. 89 lbs. Experienced sharp back pain
## 12883 Attempting to lift pc to move it and pain shot through lower back
## 12884 Attempting to light a kiln. The chamber filled with gas causing flame to roll out and burn employee's hands.
## 12885 Attempting to light gas grill during center activity. Flames spread from grill to his person when grill was lit.
## 12886 Attempting to located employer at home, slipped on ice
## 12887 Attempting to lock food passage door, when padlock fell & hit shin
## 12888 Attempting to lock inmate up after becoming disruptive in the dayroom. Inmate turned towards him, began cursing and struck him in the rt eye w/ fist
## 12889 Attempting to loosen the strap on his patrol boat, strap broke loose quickly, causing EE to slam against gunwale of boat. Pain/stiffness rt rib cag
## 12890 Attempting to lt bucket of water stepped over pipe atop floor felt discomfort in rt ankle
## 12891 Attempting to make a job required home visit
## 12892 Attempting to make a right turn into driveway, missed driveway and struck ditchbank
## 12893 Attempting to make a vehicle stop for a night deer hunting violation. Suspect rammed mv. Lt shoulder
## 12894 Attempting to make an arrest, the suspect was forced to the ground. While going to the ground the employee jammed her rt thumb/wrist.
## 12895 Attempting to make arrest, sprained rt ankle
## 12896 Attempting to make contact with taxpayor at thier residence-appointment, exited car, went to door, dogscame from back, bit on leg.
## 12897 Attempting to make left turn onto us 64 when EE was struck by a vehicle traveling west on 64 failing to stop for a red light
## 12898 Attempting to medicate pt who was rolling around on floor, EE tripped over pts feet and hit cubby w/r shoulder ()
## 12899 Attempting to mount horse when horse started to kick. Pushed himself away from horse
## 12900 Attempting to move a cart & the wheel fell off thecart. As she tried to replace the wheel she pulledher arm trying to catch the contents.
## 12901 Attempting to move a portable dry erase board & when she reached to take hold of the board a nail cut the palm of her right hand.
## 12902 Attempting to move around object. Punctured right knee
## 12903 Attempting to move pallet; jack stuck & pallet did not move; emp felt muscles in back pull
## 12904 Attempting to move student desk. Book shelf slipped off desk & struck EE in head
## 12905 Attempting to obtain the key to enter tower from the dorm
## 12906 Attempting to open a compartment for a parent using knife, finger slipped off the top of the vehicle and the sharp end cut fith index finger ()
## 12907 Attempting to open a sugar jar, the jar broke and employee cut his hand
## 12908 Attempting to open door of a room that patient had barricaded. While attempting to un-barricade door, employee injured his rt shoulder. ()
## 12909 Attempting to open hand onboard boat. Hand slippedoff handle. Finger lacerated on hose clamp
## 12910 Attempting to open janitor's door when turned to right on his left knee he heard popping sound frombehind his left knee
## 12911 Attempting to open lobby door, pulled and twisted lower back area. Automatic door broken, heavy doorhad to be opened manually.
## 12912 Attempting to open officer's station door to respond to call. Rt hand slipped off handle, jamming his hand between the handle and the door
## 12913 Attempting to open quad door and slipped on concrete floor hurting right hip and lower back. ()
## 12914 Attempting to open window in b block and window broke loose pinning hand betwen cover and wall. ()
## 12915 Attempting to overtake a vehicle. Lost control of his vehicle ran off rd and collided with embnkmnt. Contusion--rt hand, top of head, chest area.
## 12916 Attempting to overtake speeding vehicle, another cruiser turned in front of him causing accident
## 12917 Attempting to overtake violation vehicle when violator turned around and collided with patrol car injuring EE's back
## 12918 Attempting to physcically close a stuck sallyport door when door became unstuck and slammed on his hand and fingers ()
## 12919 Attempting to pick combative patient up from floor and was hit on right side of temple and injured cervical.
## 12920 Attempting to pick up rat and rat bite pinky finger of left hand
## 12921 Attempting to pick up trash over side of high shoals falls platform. EE lost footing and fell 13feet off ledge onto rocks below
## 12922 Attempting to place a suspect under arrest and the suspect fought with the officer.
## 12923 Attempting to place aggressive pt in Mr, Twisted right hip ()
## 12924 Attempting to place an inmate in restraints when the inmate snatched and jarred his arm and trapping his fingers inside the cuff. ()
## 12925 Attempting to place hand behing pt's head to prevent her from banging her head, & pt head strucksmall finger on rt hand, resulting in sharp pain
## 12926 Attempting to place hand restraints on inmate when inmate bit him on left hand. ()
## 12927 Attempting to place handcuffs on an inmate and the inmate spun around and began to strike officer in the head, face, and neck area with closed fists
## 12928 Attempting to place handcuffs on deaf pt, pt became upset ()
## 12929 Attempting to place handcuffs on subject that had arrested for driving while impaired. Subject pulled away from EE causing to twist back
## 12930 Attempting to place muzzle on fractious patient. ()
## 12931 Attempting to place patient into mechanical restraints & the patient bit staff on his right upper arm.
## 12932 Attempting to place subject in jail. Subject refused to take all items from his pockets. Began removing items from pockets was struck in nose
## 12933 Attempting to place suspect in handcuffs & heard popping sound in left shoulder-then pain began
## 12934 Attempting to place suspect under arrest who was resisting arrest. Member reached through broken window & cut fingre
## 12935 Attempting to prevent a juvenile from harming selfwhen juvenile attacked EE by pulling lower extremites, & pinching with fingernails.
## 12936 Attempting to prevent an object from falling on aninmate. In doing so, she slipped and injured her right leg.
## 12937 Attempting to prevent patient from entering nurse's station to hit nurse, his arm got stuck between patient and door jam. ()
## 12938 Attempting to prevent resident from falling backwards in shower, staff's right hand 3rd fingerwas bent backwards
## 12939 Attempting to pull a co-worker over wall & wrist popped
## 12940 Attempting to pull file box from squatting position, lid broke and EE fell back onto right hand. Right thumb.
## 12941 Attempting to pull handle of gate in upward motionfelt strain/pull in back
## 12942 Attempting to pull on a jam door. Door struck rt hand ()
## 12943 Attempting to pull the handle of the hand cart tilted forward while employee held with her left handshe fell backward elbow put hole in wall.
## 12944 Attempting to push a vechicle that was struck in ditch on edge of roadway. Felt sharp pain in lowerback
## 12945 Attempting to push g-chair off transport van. Whenthe g-chair got stuck & rolled back, it hit iw's knee.
## 12946 Attempting to push pallet jack under pallet when his hand slipped off pallet jack striking handle
## 12947 Attempting to push stranded suv from intersection, and strained a muscle in rear of upper left leg.
## 12948 Attempting to put a gill net into his vessel. While pulling on gil net something gave away in his back. Low rt back
## 12949 Attempting to put a spit mask on inmate, inmate head butted officer jefferson against holding cell bars ()
## 12950 Attempting to put client in therapeutic hold client bit EE on left arm
## 12951 Attempting to put drink cup holder where drink bottle would fit in it. Knife cut through plastic cutting thumb on right hand
## 12952 Attempting to put ear drops in client's ear. Clientbecame non-complient hitting at EE. Client knockedbottle out of hand, medicine hit EE in the eye.
## 12953 Attempting to put handcuffs on suspect, suspect fought trooper & both fell to ground
## 12954 Attempting to put patien's hand back into cuffs when patient bit him on left arm
## 12955 Attempting to put patient in mechanical restraintspatient punched hct in right eye
## 12956 Attempting to put patients shoes on-upset-kicked foot contacting with employee's l. Eyelid, check and bridge of nose. ()
## 12957 Attempting to put resident in wheelchair, residentwent to other side & sat on floor, pulling EE w/him.
## 12958 Attempting to put shirt on patient-aggressive-yanked l. Arm several times. ()
## 12959 Attempting to raise bedrail and l ring finger caught between bed rail and bedframe. ()
## 12960 Attempting to raise door to room & felt sharp painto his right side lower back
## 12961 Attempting to re-center a lead on forklift, bag shifted, tried to conrol.
## 12962 Attempting to re-enter work vehicle, lost footing on vehicle threshold and his reaction to prevent falling cause him to experience chest pain
## 12963 Attempting to reach for plate on top of refrigerator loss balance step the wrong way. EE was assisting another EE to reach on topof refrigerator. EE started to use a chair however she place left foot in chair EE lost blance and twisted right leg ()
## 12964 Attempting to reach up to push elevator button pulled muscle in her rib cage
## 12965 Attempting to readjust while carrying patient, employee laid across leg. ()
## 12966 Attempting to recap a needle. Needle bent, went through side of plastic cap and punctured lt index finger.
## 12967 Attempting to redirect an aggressive pt, EE was hit in left jaw & kicked in stomach.
## 12968 Attempting to redirect and when pt struggled physically, pt and staff fell.
## 12969 Attempting to redirect disturbed pt. Pt slung herself into chair, while EE was holding her arm. C/o back pain.
## 12970 Attempting to refuel his patrol vehicle when his foot got intangled in gas hose & he fell to the pavement striking pump island
## 12971 Attempting to reinstall exhaust trunk. It burnt ltindex, middle, and ring fingers.
## 12972 Attempting to release a load bar from trailer that was securing baskets of laundry, by releasing load bar
## 12973 Attempting to release a load bar from trailer that was securing baskets of laundry, by releasingload bar
## 12974 Attempting to relieve officer on tower 2, walking up icy incline and fell 4 times before a another EE assisted him to his feet & up incline
## 12975 Attempting to remove a plastic bushing using a straight pick tool it slipped and stuck in left middle finger - tip end. ()
## 12976 Attempting to remove bungie cord that secured copier to cart, bungie cord tension caused the buckle to directly strike left eye (eyelid closed, broke skin on bone ()
## 12977 Attempting to remove clients dentures-client kicked in left knee ()
## 12978 Attempting to remove inmate cap from his head while inside dormitory inmate refused to comply. EE reached for cap but inmate swattered her hand
## 12979 Attempting to remove inmate from conference room. While trying to control inmate, staff member fell on hand and pinned it to the edge of the table. ()
## 12980 Attempting to remove inmate from upper level of f-pod anson to medical, arms got twisted by inmate and co-worker accidentally kicked me with his chin ()
## 12981 Attempting to remove irrate inmate from dorm. Inmate attempted to hit another inmate and struck officer in right arm
## 12982 Attempting to remove kitten from under front passenger tire trapped in spring and kitten bit right index finger
## 12983 Attempting to remove large dog from travel portionof I-40 when he was bitten on left hand. Skin was broken.
## 12984 Attempting to remove radar from his assigned vehicle. Cutting plastic strap loose w/pocket knife. Knife jabbed through right index finger
## 12985 Attempting to replace a 4" pipe hanger from a ladder and fell about 4 feet to the floor and injured his right elbow and right shin bone
## 12986 Attempting to reset circuit breaker and circuit breaker exploded ()
## 12987 Attempting to respond to code yellow & due to emergency feet slipped out from under him
## 12988 Attempting to restrain (hold) an ofc & felt some thing pull in lower back
## 12989 Attempting to restrain a juvenile, the juvenile hit employee in the face with his fist
## 12990 Attempting to restrain a student and bruised both knees and left upper arm
## 12991 Attempting to restrain aggressive pt when pt scratched EE on r upper l hand and arm
## 12992 Attempting to restrain an individual in behavior, she went to grab her legs for the 3 person carry then stepped to walk with individual and fell onto her right side. ()
## 12993 Attempting to restrain an inmate he received a scratch to upper left forearm near elbow by an unknown object
## 12994 Attempting to restrain an inmate his hand slipped & his thumb struck something hard
## 12995 Attempting to restrain an inmate refusing to follow orders ()
## 12996 Attempting to restrain an inmate when another inmate came from behind and attempted to hit restrained inmate, instead hit c/o in back of head
## 12997 Attempting to restrain an inmate who had assaultedanother inmate & in so doing allegedly injured left shoulder
## 12998 Attempting to restrain an inmate, he became combative injuring right shoulder ()
## 12999 Attempting to restrain an inmate. Blood exposure. Inmate had attempted suicide and he was exposed. ()
## 13000 Attempting to restrain an inmate. He got blood on his pants and right wrist. ()
## 13001 Attempting to restrain an irate student, when he punched her in right cheek & eye. EE continue to restrain student & hit knee on floor.
## 13002 Attempting to restrain an out of control juvenile when he was kicked in the chest.
## 13003 Attempting to restrain an out of control juvenile when the student slammed his forehead into EE's forhead
## 13004 Attempting to restrain an unruly inmate when exposed to blood from the inmate
## 13005 Attempting to restrain cat a vet student lost control and cat escaped to floor. Attempting to capture cat when EE was bitten
## 13006 Attempting to restrain combative inmate; lost footing and fell on right hand
## 13007 Attempting to restrain inmate and fell to the floor. ()
## 13008 Attempting to restrain inmate who was assaulting her
## 13009 Attempting to restrain inmate, landed on his rt arm
## 13010 Attempting to restrain inmate, was head butted andscatched in the struggle.
## 13011 Attempting to restrain inmate. Another officer sprayed pepper spray and it got into EE's eye & on his face
## 13012 Attempting to restrain juvenile and escort him to his room, the juvenile fought back and caused staff and juvenile to fall on the floor. ()
## 13013 Attempting to restrain juvenile, putting on mechanical restraints, twisted lt arm and wrist
## 13014 Attempting to restrain offender-they fell to flooree landed hard on left knee
## 13015 Attempting to restrain patient, sorness in wrist
## 13016 Attempting to restrain resident & while holding him patient patient was hitting him in head. C/o pain in neck, head & shoulders
## 13017 Attempting to restrain resistive patient. Strain to right elbow.
## 13018 Attempting to restrain several juveniles who had assaulted another juvenile. Scratch on left forearm back of neck through shoulder became stiff
## 13019 Attempting to restrain student, student shoved andhit EE in the chest
## 13020 Attempting to restrain student-twisted l-ankle salary continuance employee tracy w/centralina Dr Furr- 704-633-6044
## 13021 Attempting to restrain subject he had arrested fordriving while impaired. Altercation took place--- EE broke right hand.
## 13022 Attempting to retrieve a box from the file cabinet and cut finger on file cabinet drawer ()
## 13023 Attempting to retrieve another resident's tray from resident-resident attempted to slap emp. In face-emp. Twisted head away to avoid slap-2nd. Slap hit emp. On l jaw. - resulted in neck & back pain. ()nc
## 13024 Attempting to retrieve bag that had gotten hung infence and when he did he was cut on his middle finger on his right hand
## 13025 Attempting to return inmates hands into cell through food passage opening, inmate pulled and twisted wrist into food passage opening ()
## 13026 Attempting to return notebook to shelf 3 others fall. Moved quickly to catch them
## 13027 Attempting to run resident up in bed and finger popped when hand was placed under resident/right thumb
## 13028 Attempting to secure safety lock & lt 3rd fingure struck needle. ()
## 13029 Attempting to separate and restrain two juveniles who were fighting, EE fell on the floor. Left knee strain.
## 13030 Attempting to seperate 2 inmates in dorm h from fighting one of inmates grabbed her right arm. Bruise to arm
## 13031 Attempting to seperate 2 juveniles fighting rt elbow was strained
## 13032 Attempting to seperate two inmates while fighting and lost balance and fell on my left hand. ()
## 13033 Attempting to serve order for arrest when offenderstruck officer in face knocking officer's glasses to ground breaking them
## 13034 Attempting to serve parole warrant. Defendant attempted to flee. Officer had to restrain him in process fell on floor, dragged into door frames
## 13035 Attempting to serve probation violation warrant. While out on routine curfew checks. Tripped on back porch whice ascending & fell forward
## 13036 Attempting to serve warrant on defendant when he resisted arrest and officer and defendant fell to pavement.
## 13037 Attempting to set a panel in place, the load shifted & the EE strained his back.
## 13038 Attempting to shower an inmate while handcuffing him, he attempted to pull the handcuffs inside his cell injuring officer's finger. ()
## 13039 Attempting to sit down fell out hit head on wall ()
## 13040 Attempting to sit down in chair & it moved from under him. Lost his balance & fell. Striking his back & head on key box. Elbow hit floor
## 13041 Attempting to sit down in chair. Chair gave way resulting in EE's fall. During fall right arm struck metal key box
## 13042 Attempting to sit down on a seat and it rolled out from under her
## 13043 Attempting to sit down on a stool when stool flew out from under her
## 13044 Attempting to sit down; chair rolled out from under EE and EE hit the floor
## 13045 Attempting to sit in a rolling desk chair. Came down to sit, aught the edge of the chair and it moved away from her causing her to fall. Hit her hand
## 13046 Attempting to sit in chair in tower when chair completely broke & fell on stomach when 7 months & on her knees
## 13047 Attempting to sit in chair, when chair rolled from under employee
## 13048 Attempting to sit in the chair, chair slide from under neath me, and I fell to the floor, injuring my left arm, and upper chest. ()
## 13049 Attempting to sit on chair chair rolled out from under EE, fell on glutus maximus w/full weight back was injured
## 13050 Attempting to stand a grinder upright with another employee, he pulled a muscle in his hamstring
## 13051 Attempting to stand pivot a resident-resident pulled back and felt pull in lower l. Back. ()
## 13052 Attempting to stand pivot resident into bed- stiffened-emp. Had to ease into chair-noted l. Arm sore ()
## 13053 Attempting to step down from top step & slipped & fell to floor striking back on bottom step
## 13054 Attempting to step on tailgate of pickup truck to throw trash bags in dumpster, from off of the truck he then hit his right shin
## 13055 Attempting to stop a client with a behavior problem and fell on hand ()
## 13056 Attempting to stop a fall from foot catching on floor where water seal crossed doorway, EE twistedleft knee.
## 13057 Attempting to stop a fleeing subject. EE dove for subject & missed. Hit face/lt knee on sidewalk & scraped rt hand. Lt knee/both wrists/rt hand/face.
## 13058 Attempting to stop a fleeing violator running on foot in grassy & bushy field. Jumped ditch and injured his back
## 13059 Attempting to stop a fleeing/escaping inmate. Afterpulling the inmate off the fence, fell or stepped into a hole twisting ankle and knee.
## 13060 Attempting to stop a vehicle when he was involved in a motor vehicle collision. Injuries to face & head area, soreness in neck & back, sore lt ankle.
## 13061 Attempting to stop an employee from being assaulted by an inmate ()
## 13062 Attempting to stop clients from fighting each other ()
## 13063 Attempting to stop patient from running out door patient grabbed neck cutting off air & hitting EE's hand on wall
## 13064 Attempting to stop pt from injuring self. Lower back pain.
## 13065 Attempting to stop vehicle by motioning w/hands. Vehicle attempted to pass w/o stopping & struck EE
## 13066 Attempting to stop vehicle for dwi suspect and suspect's vehicle struck patrol vehicle
## 13067 Attempting to straighten client's room, tripped over object on floor, pulled muscle in back of lower lt leg
## 13068 Attempting to strain a student when another student struck EE in the face with a clinched fist, on EE face and jaw area
## 13069 Attempting to subdue an aggressive patient & was kicked
## 13070 Attempting to subdue an agressive inmate in use of force, EE states that the inmate apparently hit him on 2nd & 3rd finger rt hand.
## 13071 Attempting to subdue an inmate and was pushed-- against fencing. ()
## 13072 Attempting to subdue an inmate, was punched several times in the face, head and body ()
## 13073 Attempting to subdue an irate inmate from assaulting staff ()
## 13074 Attempting to subdue fleeing violator when subjectassaulted EE. During scuffle EE was kicked by violator in the right hand. Broken- right hand
## 13075 Attempting to take a fleeing suspect into custody, while chasing suspect on foor, EE and suspect fellto ground, EE landed on his own rt arm
## 13076 Attempting to take an inmate to floor & left side of face brushed wall causing small puncture to hisupper lip
## 13077 Attempting to take client to bathroom, another client struck out causing client to be unstable, fell back on staff, both falling on floor.
## 13078 Attempting to take picture at a crime scene, the strap poked her in the eye
## 13079 Attempting to take resident to theraputic walk (which he lifted his feet severe pain felt rt elbow)
## 13080 Attempting to talk w/probationer. Prabationer panicked and pushed EE against refrigerator & thenran out of residence
## 13081 Attempting to turn off outside water faucet w/ chisel & hammer struck left thumb
## 13082 Attempting to turn onto I-85 when struck on right side by another vehicle
## 13083 Attempting to unarm and restrain an inmate and waspunched in the face and scraped r shin
## 13084 Attempting to uncap glass hybridization tube whose lid was very tight. Glass broke and frag- mented end cut his right hand
## 13085 Attempting to unclog toilet in men's bathroom slipped on wet floor and used right wrist to break fall
## 13086 Attempting to unplug radio to go home, I bumped a ladder which fell into a weedeater & the weedeaterfell onto my face/eye.
## 13087 Attempting to verbally redirect pt. When pt lungedacross table & struck staff on left side of face. Also inj. Lt thumb in restraint of pt. Face/thumb.
## 13088 Attempting to walk down steps of staff training house-#2 fell down two stairs trying to catch fall w\\rt-hand
## 13089 Attemptingto move lever on lower back chair and attempted to pull chair back and when I did that, pulled something in lower part of my back. ()
## 13090 Attemptng to calm patient when patient swung at hct stricking employee on arm
## 13091 Attended training for cpr and mats were present and she tripped over mat and fell on left knee. ()
## 13092 Attending a conference in arlington, va as part of employment. Walking on the sidewalk, stumbled, fell and hit the left side of head. Face cut and bleeding. ()
## 13093 Attending a meeting - was attempting to sit in a chair; the chair hit employee in the middle of lower back.
## 13094 Attending a officer survival school at wake tech. List injury as: right ankle inside of ankle bone ()
## 13095 Attending annual in service training and performing crdt technique - demonstrating guard in and was trying to get the officer off of me when felt sharp pain in spine ()
## 13096 Attending basic training was at the firing range shooting the shot gun
## 13097 Attending board workshop as commissioner appointeetriped over cord causing fall & injury to back pelvis. Back, spianl column pelvis.
## 13098 Attending combative hypoglycemic inmate. While trying to get him to swallow glucose gel, he spit saliva and blood in my eye. ()
## 13099 Attending firearms training, during qualification, EE was kneeling down to get in a firing position and twisted his left knee.
## 13100 Attending in-service when felt a sharp pain in abdomen ()
## 13101 Attending inservice training/weapons retention/bent wrist technique injured l wrist/arm/shoulder ()
## 13102 Attending joblink staffing at local esc, when leaving meeting, heel caught in edge of step losing balance and fell down stairs ()
## 13103 Attending law enforcement officers memorial srvc walking across parking lot of chapel when EE passed out fell to ground striking head on pvment
## 13104 Attending manatory firearms training, placed shot gun in position to fire it; impact was so severe bruised her right shoulder & arm
## 13105 Attending mandatory firearm class. While performingfoot slid out from under him & landed on his knee **credit of ttd 215. 73 needs to be taken from ppd*
## 13106 Attending mandatory training for self-defense course. During one of the movement EE landed incorrectly on her right hand. Sprain rt hand.
## 13107 Attending meeting & stepped off curb in parking lot of meeting site & injured ankle
## 13108 Attending new employee orientation. Scooted her chair under table resulting in laceration to her right knee
## 13109 Attending office holiday party, off campus, tripped on step & fell to floor
## 13110 Attending officer survival class, during a take down procedure officer stated he felt sharp pain on inside rt knee when thrown to mat.
## 13111 Attending pert training. Jumped over a ditch, slipped and struck left knee ()
## 13112 Attending physical fitness instructor school at the north carolina justice academy west. While exercising in the gym, EE injured lower right back performing a burpee broad jump ()
## 13113 Attending professional conference was on way out of hotel. Stepped off curb at end of hotel driveway. Tripped on pot hole on street
## 13114 Attending required firearms training, cleared a couple of malfunctions and possible loading shotgun rounds, pulled index finger ()
## 13115 Attending state ncflex siminar. While walking around hotel swimming pool area, gust of wind blew abrasive material into rt eye
## 13116 Attending to inmates that were exposed to pepper spray; coughing, sore throat, difficulty swallowing ()
## 13117 Attenpting to make a arrest subject engaged car into reverse and pinned officer underneath was drug down drive way appox. 15-20 feet
## 13118 Attenting to inmate, inmate struck her in the face
## 13119 Attepmting to subdue an inmate, pulling inmate to floor, hit knee on concrete floor ()
## 13120 Attmept to lift legs of strugeling patient while back against wall, strain to low back
## 13121 Atty-craig bryant (919)736-0408 fax 735-6453 **$40k auth at present**
## 13122 Atupic dermatitis- allergic to thimoroson- worse at work- unc hospital- clears when not in hospital
## 13123 Audio shows change in threshold reading since last tested one year ago. Hearing.
## 13124 Audit of inventory in several campus buildings with prolonged repetitive motion, and counting by physically touching items. Continuous for 3 days.
## 13125 Autistic child bit teacher while teacher was training other teachers
## 13126 Auto accident - courier van was hit by another vehicle when the other vehicle made an illegal turn and collided with the courier van. ()
## 13127 Auto accident - employee was traveling west on hwy 24/27 and the other vehicle ran the stop sign and hit state vehicle. ()
## 13128 Auto accident - no injury
## 13129 Auto accident EE driving state vehicle. EE going north other vehicle going south lost control. Broken nose, rt heel glass cuts, contusion & strain
## 13130 Auto accident in state vehicle that EE was drivingcollided with another vehicle at intersection- strain to left shoulder & neck
## 13131 Auto accident on the way to work resulting in multiple injuries.
## 13132 Auto accident scarring of pancreas and intestines head injuries
## 13133 Auto accident while traveling to employer audit
## 13134 Auto accident- vehicle pulled into the path of the state owned car. Injured rt leg.
## 13135 Auto accident---fatality
## 13136 Auto accident--sturck by another vehicle strain to neck and back
## 13137 Auto accident-no injury
## 13138 Auto accident. Injured rt leg.
## 13139 Auto accidnet - contusion of rt temporal skull, severe interanl bruising rt side, strain to neck and back.
## 13140 Auto-accident- EE in traffic waiting on vehicle to make turn. EE hit in back and knocked into vehicle in front of him. Neck and back injuries.
## 13141 Automatic door closed, hitting EE in rt arm above wrist. Severe contusion rt forearm dorsal side, probally some muscle hematoma
## 13142 Automobile accident ()
## 13143 Automobile accident as EE crossed the street to work fractured leg
## 13144 Automobile accident on the way to work causing head injury and ankle injury
## 13145 Automobile accident resulted in head, neck and back injuries.
## 13146 Automobileaccident as described on reverse side. EE was in official work capacity
## 13147 Autopsy evisceration & reached into the pelvic canal in order to remove the bladder. I felt a sharp prick and realized the patients staple had come out of his body and embedded in my thumb. Staple was pulled out with forceps ()
## 13148 Avoided rear ending vehicle by swerving. Hit a vehicle in the median. ()
## 13149 Avulsion of penis, scrotum, testicles & perineum. Broken right arm
## 13150 Awkward movement during restraint of a patient. Pain felt in chest area afterwards.
## 13151 Aww $768. 95
## 13152 Ax ricocheted off wood and struck EE's left foot.
## 13153 Ay to work on city bus when driver made and adruptstop and EE's left side hit wall between her and the driver
## 13154 Back
## 13155 Back and left leg pain
## 13156 Back and r shoulder painful after nvci training ()
## 13157 Back claim 10% ppd from Dr Tucci 8/23/7 iw wants 2nd opinion with center for scoliosis and spine surgery 252 7529794
## 13158 Back claim denied 2/26/9 - picking up work manuals& computer case, noticed some slight lower back discomfort friday evening, reported monday
## 13159 Back concrete steps/platform at rockingham co dss, fell when reaching top of steps
## 13160 Back door arlam sounded and EE left meeting to inquire about the alarm. EE slipped and fell on floor that was being mopped
## 13161 Back door of admin bldg came to on hip as enteringbuilding.
## 13162 Back gate on lower yard attempting to unlock gate the bar slipped and caught my finger
## 13163 Back had been bothering EE b/c of all the lifting moving the grill and other equipment during courseof the day
## 13164 Back hurt when lifting heavy car lift arm ()
## 13165 Back hurting from chair w/no thoracic support. Neckhurting from forward motion to write or type.
## 13166 Back injury
## 13167 Back injury while doing a back bend in gym with students. When coming out of back bend a student rushed at me so I tried to hurry up and get up, pulli
## 13168 Back jerked to one side while on roving patrol
## 13169 Back locked up after bending over sink at home to wash hair
## 13170 Back of rt hand scatched during transfer of keys from one person to another
## 13171 Back pain driving to wilson, n. C. Middle to lower right side pain during 3 hour trip to wilson and pain continued throughout the day.
## 13172 Back pain occurred while climbing in and out of bunk bed ()
## 13173 Back pain-assisting to keep client from self injury and up off of floor.
## 13174 Back popped while assisting resident from chair. Injured back.
## 13175 Back poppoed on left side while mopping floor
## 13176 Back recurrent injury from previous work comp, rt arm pain with repetitive typing, filing, daily.
## 13177 Back started hurting after lifting several resident files.
## 13178 Back strain
## 13179 Back strain ()
## 13180 Back support on chair broke causing backward fall, landing on back.
## 13181 Back was injured during use of physical force w/an inmate
## 13182 Back was injured when inmate pulled away from him, while in handcuffs
## 13183 Back was strained during a combination of events occuring at this work site
## 13184 Back, arm neck injuried on job cleaning
## 13185 Back, neck and eye strain from work station being set up in awkward position
## 13186 Back.. No specific incident occured. I have workedwith my back giving me problems for months now & pain in unbearable
## 13187 Back... Cleaning rooms & picked up headboard & pulled something in upper back
## 13188 Back... Employee was vacuuming with back pack on back and felt pain in his back. ()
## 13189 Back... Getting paper towels & tissue moved wrong way
## 13190 Back... Pulling hose into dog pens apts-mri approved through 6/11/2009
## 13191 Back... Trying to get obese patient onto stretcher
## 13192 Backed elbow into 15 gauge needle held by a doctor
## 13193 Backed into a door, while completing duties ()
## 13194 Backed into a piece of cut steel and puntured rt leg
## 13195 Backed into student causing him to hit back of ankle with hammer that he was using.
## 13196 Backed popped while pulling on an inmates leg during a cell extraction to which the inmate would not let go of the bars. ()
## 13197 Backed up and fell over cart on lower back.
## 13198 Backed up and fell over seat that was mounted in the cell block
## 13199 Backhoe hit pipe and knocked EE down on hot pipe that had just been welded.
## 13200 Backing backhoe & placing right finger near e prong of roaring river when ufo hit him in right eye
## 13201 Backing down sloping siedwalk wet with leaves, feet slipped out from under,; pst control of hand truck, fell on abdomen, weight of fall on rt side
## 13202 Backing motor vehicle in high drug trafficking area in attempt to apprehend fleeing drug suspect vehicle skidded into utility pole
## 13203 Backing out of a marked parking place when a vehicle came from EE's rt and ran into lt rear of EE's vehicle
## 13204 Backing out of a room and fell over a buffer
## 13205 Backing out of an elevator with a cart & fell on her low back/pelvis
## 13206 Backing out of prking space state truck came around parks truck & said he didn't see the back of truck- strain neck/shoulder
## 13207 Backing out of the room with floor buffer. Slipped and fell, landing on right shoulder ()
## 13208 Backing out property room w/2 bags inmate propertydoor closing & she fell backwards hitting head, back & elbow on wall
## 13209 Backing tractor off hauling unit-tractor slid off ramps-2nd tractor turned on its rt side throwing EE against cage-rt shoulder-mid back
## 13210 Backing truck at loading dock when pedal stuck and he backed into dock ()
## 13211 Backing up from t-1 tripped & fell down & hit my lower back. As I hit the floor my cuffs went rightinto my lower back.
## 13212 Backing up trip over barrier rail and landed on right shoulder on concrete.
## 13213 Backing up write a citation and stepped into a hole turning ankle
## 13214 Backpack blower hit shovel which fell
## 13215 Backpack spray leaked herbicide onto clothes & soaked to skin
## 13216 Backsawing through metal tubing when completely sawed through tubing the motion caused EE to lean forward w/ left hand hitting metal tubing.. ..
## 13217 Backyard duty going up step of steps and left knee gave away and began to hurt ()
## 13218 Bacterial infection at site of vaccination
## 13219 Bad air molded trapped air, and dust release during hvacs project led to sinus pressure /pain fatigue difficulty breathing headaches.
## 13220 Bad posture; repeated continuous computer use. Strain neck.
## 13221 Baker was lifting boxes of copy paper off of a hand truck and placing the paper in the back of the moving truck. After lifting one of the boxes of paper onto the back of the moving truck he complained of pain in his lower back. ()
## 13222 Balancing a tire, using a computer tire balancer. When he picked up the tire to put it on the balancer, he twisted his back. Felt pain in back and fel
## 13223 Banding birds using crochet hook to remove bands. Put crochet hook in pocket--forgot & put hand in pocket. Hook went into right middle finger.
## 13224 Banged knee against desk in front office of 117 king bldg
## 13225 Banged l knee on metal support for work surface in office cubicle while collating.
## 13226 Banged right shin on ladder ()
## 13227 Bar on lt of van popped while EE was trying to putback & hit EE's lt hand.
## 13228 Barbara was exiting the bathroom, stumbled & fell on the tile floor. ()
## 13229 Barbara went into the albemarle building cafe to get a cup of ice. After filling her container, she turned to leave and the next thing she remembers she was on the floor, she was not sure how she got there, but felt shaky, so she sit there for a few.. ..
## 13230 Barke failure of farmers truc while assessing farmer's christmas tree led to truck stopping after hitting creekbank.
## 13231 Barrell lid fell on rt wrist while packing
## 13232 Bartrug was in the back seat of work van when it struck the side of another vehicle in the parking lot @ hoke c. I.
## 13233 Base runner collided with donald as he was moving to tag the runner out
## 13234 Based on Dr Sypher's report pre-existing conditionwas aggravated by tooth extractions & other physical demands of the job.
## 13235 Based on doctor's evaluation EE's injury was due to repetitive data entry & station configuration. Pain in lower lt & rt arms(forearms, wrist, hands)
## 13236 Based on report of employee and others present during and immediately after incident, employee was exiting door to circulation department when the door closed on the middle finger on the left hand, pinching off a small amount of the tip of finger flesh. (
## 13237 Basement area flooding where copy machines were located open door to get help in moving copiers, fell on step lt side of back, hip & buttocks
## 13238 Basement flooding due to blocked drain-slipped & fell on wet floor-contusion left arm
## 13239 Basic office work entering data on computer and filing has caused pain in EE's rt wrist.
## 13240 Basic training performing crdt ()
## 13241 Basketball hit EE in face during facility recreation period in university gym.
## 13242 Bat bit left hand while processing home # 828 665 9608
## 13243 Bat exposure in office
## 13244 Bathing & felt something like mosquito bite. Scratched it
## 13245 Bathing a pt, picked them up, later in the evening felt pain in pelvis (cramping) and low back - this EE is pregnant.
## 13246 Bathing a resicent who was acting up on the bathing table. Employee struck his own hand on rail. ()
## 13247 Bathing a resident, pt aggressive
## 13248 Bathing and repositioning individual ()
## 13249 Bathing client and slipped on bathroom floor ()
## 13250 Bathing client on bed; repositioning client several times during care. Felt lower back pain upon arising from chair. ()
## 13251 Bathing client that became aggressive. Blocking hits staff noticed strain in neck area
## 13252 Bathing client. Client started to slip off bathingtable. EE grabbed client to avoid client falling upper back rt side & rt shoulder
## 13253 Bathing client; client went into behavior; tried to prevent client from falling, EE slipped on floor hurting right shoulder and hand ()
## 13254 Bathing client; turning with drawsheet; staff felt a pull in left hand from all fingers. Swelling in top of hand. ()
## 13255 Bathing clients - reposition a client w/ coworker EE felt mild pain in right shoulder.
## 13256 Bathing clients, transferring from shower chair towheelchair. After doing lifting & transferring forthe day, back injury.
## 13257 Bathing individual, I slipped on the wet floor. I came down on my knees and hands. I injured my leftknee
## 13258 Bathing patient and patient started to fall. In process of making sure patient did not fall, employee injured his back
## 13259 Bathing patient lower back started to hurt
## 13260 Bathing patient, patient became agitated & hit EE in left eye
## 13261 Bathing patient-patient punched in r. Jaw. ()
## 13262 Bathing patient-started to turn on flat tub and jammed l. Middle finger on tub. ()
## 13263 Bathing patient. Patient grabbed lft hand scratching deeply below knuckle
## 13264 Bathing patient. Patient started to fall
## 13265 Bathing pt, finished, tried to pull pt back on stretcher, felt sharp pain in back
## 13266 Bathing pt, pt kicked EE in left knee after putting pt to bed hit same knee on bed railing
## 13267 Bathing pt, pt was upset, pt sat on EE's l shoulder/neck area, back began hurting
## 13268 Bathing pt. Went to lean pt forward and slipped onsoapy floor and fell on his back.
## 13269 Bathing resident & resident hit EE in nose fracturing nose
## 13270 Bathing resident (washing back)-resident on left side-resident jerked causing emp. Right hand to slip and resident rolled against left hand. ()
## 13271 Bathing resident and resident very aggressive, pulled on EE left arm.
## 13272 Bathing resident and slipped and twisted rt leg- knee
## 13273 Bathing resident on high tub. After rolling res. Back & forth several times to complete task. EE noticed pain in right lower back.
## 13274 Bathing resident when became aggressive, kicking, slapping at her. Back & lower legs did not begin hurting until later
## 13275 Bathing resident when turning resident over, felt pull in back and obth arm.
## 13276 Bathing resident, bent over tub to wash hair, went to stand up and felt back pull/pop. ()
## 13277 Bathing resident-attempted to get him to turn over onto his back and felt pop in back. No initial pain at first, but as continued to bathe pain began/worsened. ()
## 13278 Bathing resident-resistant-scratched l. Wist and hip ()
## 13279 Bathing resident-rolled resident over-felt sharp pain in low back. ()
## 13280 Bathing resident-started to fall backwards into tub when stood up- attempted to prevent from falling-hurt r. Upper arm. ()
## 13281 Bathing resident-walked over to get an attend-turned and fell-due to standing water in the floor-hitting r. Ribs on railing and landing on r. Hip ()
## 13282 Bathroom door came down on EE's right arm.
## 13283 Bathroom door flew open striking EE in shoulder, propelling him backward.
## 13284 Bathroom door slammed shut on EE's left hand
## 13285 Bathroom door slammed shut on middle and pointer finger on left hand.
## 13286 Baton training, fighting off instructor, shuffled to get away from him, right foot got caught on mat and fell backward, falling on my left arm.
## 13287 Baton training- struck in neck by another officer ()
## 13288 Baton training. Didn't know shoulder was hurt until that night and it started hurting real bad. Went to Dr. Next day.
## 13289 Bats flew into net EE used for reseach-att to remove the bats and was bitten on the hand.
## 13290 Battery compartment exploded when officer attempted to start motor causing loss of hearing in rt ear
## 13291 Batting at a softball game. Right knee dislocated. Iw cell number 919-656-3692
## 13292 Bcot-mount escape technique-EE was thrown landing hard several times injuring rightchest/ribs@ spcc
## 13293 Beach outing in water. Knocked over by surf on right shoulder
## 13294 Bean juice was spilled on floor, EE slipped in it and twisted back
## 13295 Bear-hugged by student & lifted. Pain & discomfort
## 13296 Became aggressive with staff and scratched them when told he was going to work. ()
## 13297 Became hoarse at work, cleared up at home, came to work became short of breath
## 13298 Became ill all of a sudden & felt dizzy and blacked out
## 13299 Became light headed and dizzy started to get sick and hot after working in the kitchen for 30 minutes ()
## 13300 Became light headed/dizzy/racing heart beat/numbness/tingling in extremeties while on routine foot patrol
## 13301 Became light headed; left ribs hurt; sat down or stooped down on the floor, blacked out and hit back of head on floor.
## 13302 Became overheated and dizzy working in dorm.
## 13303 Became overheated deplaying symtoms of heat stress while working on wildfire.
## 13304 Because the tongue of a trailer became lodged in the wheel well of a forklift, employee was trying to guide the forklift operator. He positioned himself between the trailer and shop door, trailer sifted and pinned employees leg between door and trailor. (
## 13305 Beckoning for resident to come, had papers in hand, papers went in rt eye
## 13306 Bed rail fell hitting EE on top of left foot.
## 13307 Bed rail fell on feet-fell backwards onto r. Hip and r. Wrist. ()
## 13308 Bed railing toppled over onto employee's left foot causing injury. ()
## 13309 Bed scale leg protruding into walkway-scale brokenand leg would not move into closed position injured left index finger.
## 13310 Bedding box fell off machine and splashed. Blower turned on dust hit top of eye, left. While adjusting bedding dispenser control eye. Left eye ()
## 13311 Bedside table used broke and when attempting to repair the table it fell hitting her left knee causing bruise ()
## 13312 Bedspread was on floor and EE slipped and fell injuring left shoulder and elbow
## 13313 Bedspread was on floor, EE intagled her feet, she fell and twisted her left knee.
## 13314 Bee crawled up in pant leg; stung just above ankle. List injury as: right leg ()
## 13315 Bee flew up her dress and stung her on the lt hip
## 13316 Bee nest was interrupted by employee working in field and he was stung multiple times. Had an allergic reaction.
## 13317 Bee sting on right forearm while weedeating. ()
## 13318 Bee sting right arm ()
## 13319 Bee sting right elbow
## 13320 Bee sting to face ()
## 13321 Bee sting to left leg
## 13322 Bee sting to right forearm
## 13323 Bee sting to rt arm while in linen closet
## 13324 Bee stung EE on left eye
## 13325 Bee stung EE on left forearm when exiting personalvehicle
## 13326 Bee stung EE on left leg
## 13327 Bee stung EE on rt shoulder.
## 13328 Bee stung employee in the l ear while digging sewer line ()
## 13329 Bee stung injured while standing outside on break. Swelling to left wrist
## 13330 Been bothering me for about a week & a half, did nothing to actually injure my hand/wrist, pain with repetitive motion
## 13331 Before entering bldg EE stepped on uneven sidewalktwisting her ankle.
## 13332 Beforework EE bumped lt knee bruised little painful after reporting to work EE turned and attempted to stand to open door when it hit lt knee
## 13333 Began complaining of aching in hands, fingers curling in mornings, inability to grasp
## 13334 Began experiencing pain in rt shoulder, arm & wrist. Pain was greater when using computer.
## 13335 Began feeling pain, burning and numbness in forearms and behind elbow while typing. Left and right lower arms.
## 13336 Began hurting in right upper back and right arm about 7:00 pm on 7/16/03. Does not know how injury occurred
## 13337 Began to feel light headed and weak while emptyingtrash in bldg. Smelled strange odor
## 13338 Began to fell numbness in thumb
## 13339 Began to move forward in chair, it tipped over and rolled from under employee, fell on left arm and hand
## 13340 Began to prepare client for transfer from wheelchair to mat. Grasped wrist to assist in 2 person lift; once transfer began felt sharp pain in lower back. ()
## 13341 Began to walk thru unit 1 yard gate, door started to close and I was hit by the gate door. ()
## 13342 Begin hurting on or about the conclusion of the anaconda course--rt ankle/achilles strain.
## 13343 Beginning carpal tunnel. Left hand, tip of fingers numb and tingling.
## 13344 Beginning in early May 01, EE began having episodes of numbness in rt arm from shouldr to the tips of thumb to 3 fingers. Frequent when at computer.
## 13345 Beginning to re-enter the dt office and staff let go of door hitting me in mouth ()
## 13346 Beginning to run after a violator, felt tearing sensation in arch of lt foot which caused intense pain
## 13347 Behind bldg. 400 while climbing hill to get to sidewalk Ms. Crump stepped to get on the sidewalk and her foot caught on the edge of the sidewalk she tripped and fell while bacing herself she injured her right hand. ()
## 13348 Behind central control - restraining inmate and back hit central control door ()
## 13349 Being exposed to chemical 27yrs. Mold, truck fumes air borne parties, and extreme temp.
## 13350 Being graded on a one leg take down. When he fell to the mat his partner was being the take down wason officer ingram foot causing his knee to twist.
## 13351 Being handed tools/equip overhead, debris got into left eye ()
## 13352 Being introduced to Ms. Wright, a new teacher, she was wearing strong perfume & withing 2 or 3 mins she had an allergic reaction experiencing wheezing, feeling nausea, dizzy, trouble breathing, throat & tongue swelling along with confusion ()
## 13353 Being involved in use of force to control inmate
## 13354 Being relieved from control booth, stepping down stairs to bottom of booth, felt something snap in right bottom part of foot.
## 13355 Being taught new technique in unarmed self defenseclass & her foot slipped & she fell down & bumped her head
## 13356 Being the inmate officer applied bent wrist take down. From pressure of technique and repeats.
## 13357 Believed constant use of typewriter has caused carpal tunnel syndrome.
## 13358 Belinda was walking out of the building and fell when she got to the road. She hurt her left knee and shoulder. ()
## 13359 Belt cover had been removed and fan turned off. Eereached for a grease gun with right hand and had rag in left hand. Rag got caught in belts pulling
## 13360 Belt tension handle hit employee in leg when engaging in pto switch (defective belt). ()
## 13361 Bench checking a motorola shp control station at work bench in troop e radio repair shop. Utilizingtest instrument EE hurt ears due to loud sirens.
## 13362 Bend down to pick up hand bucket, turned wroong back started hurting
## 13363 Bend over in flood-rise up pull muscle in back
## 13364 Bend to check a bag of trash and a hypodermic needle stuck him in the right hand
## 13365 Bending at waist to move small pump ls strain
## 13366 Bending behind barricade felt pain in left knee
## 13367 Bending brackerts for power supply and bracket broke. Hitting the pipe in the forehead and cutting head
## 13368 Bending down & picking up roasting pan full of meat & pull muscle in her back
## 13369 Bending down during floor buffing & also bending down & picking up bucket full of water
## 13370 Bending down felt a burning sensation on lower rt side of back
## 13371 Bending down in cage removing boxes and lid of cage fell and hit back of head. ()
## 13372 Bending down putting patient on the transfer board with 5-6 other employees from various departments.
## 13373 Bending down to get items under on the shelf underthe counter. Can't determine time of injury or howmedically investigate.
## 13374 Bending down to get linen off cart
## 13375 Bending down to get papers, leaned up, hit nose & r eye on shelf
## 13376 Bending down to ground to retrieve bullet casings from an uneven dirt ground
## 13377 Bending down to move box of magazines, pulled box and then picked it up
## 13378 Bending down to pick up a box of copy paper from other EE, and came back up, felt something pull in neck.
## 13379 Bending down to pick up box of paper, felt some- thing pull in his back
## 13380 Bending down to pick up cup, raised up and hit head on top of courier box
## 13381 Bending down to pick up keys and hit head on door hinge ()
## 13382 Bending down to pick up something off floor & her chair flipped from under her
## 13383 Bending down to put cage back, coming back up, felt pinch/sharp pain in back. ()
## 13384 Bending down to put paper towel in trash can. Straightening back up the rt side of her face struck the paper towel dispenser
## 13385 Bending down to turn on heater and hit head on pipe ()
## 13386 Bending down. Sliding water cooler to rear of truck & when stood up hit his head on support brace
## 13387 Bending neck and head continuously.
## 13388 Bending over and getting up and down off the floor. Felt a twinge, went away two days later I could hardly lift my left leg. ()
## 13389 Bending over and lifted tool box. L side rib cage.
## 13390 Bending over bed to pull patients pants up-pain in mid back ()
## 13391 Bending over cleaning drawer, stood up and hit head on open cabinet door. ()
## 13392 Bending over client when the client reached towards EE face and scratched EE's ()
## 13393 Bending over filing at one point back did not feelright. After the day moved on began to hurt and by the end of the day could barely move
## 13394 Bending over holding inmate russell's leg an officer fell on my back
## 13395 Bending over looking under desk and when EE stood up hit top of head on the tool cabinet. ()
## 13396 Bending over picking up box
## 13397 Bending over picking up paper ()
## 13398 Bending over pulling weeds; hurt lower back and rt foot.
## 13399 Bending over student's desk in esl lab
## 13400 Bending over to clean the toilet and sharp pain went through his hip, low back.
## 13401 Bending over to get some serving utensils when felt sharp pain in his lower back area
## 13402 Bending over to get something out of tote and hit eraser tray with right side of face next to right eye
## 13403 Bending over to help inmate, as she stood up her back hit the edge of the desk
## 13404 Bending over to lift table. Raised up hit head on steel bar
## 13405 Bending over to move something on the floor, went to stand back up, experienced shooting pain in right lower side of back ()
## 13406 Bending over to open file cabinet and felt somethi-ng pull in lower back
## 13407 Bending over to pick up 5 gal bucket and had sharp pain in lower back area
## 13408 Bending over to pick up a bag of shredded paper, felt a muscle pull
## 13409 Bending over to pick up a bucket of mail, twisted or pulled something in lower back
## 13410 Bending over to pick up a mop bucket. A big knot came up in lt side of back.
## 13411 Bending over to pick up a paper towel off the floor and I bumped my face on the desk. ()
## 13412 Bending over to pick up an ink pen which he had dropped, hit his head on corner of sick call box
## 13413 Bending over to pick up bed and moved wrong injuring back.
## 13414 Bending over to pick up container of glue and pulled muscle in lower back
## 13415 Bending over to pick up key and pulled a muscle in back
## 13416 Bending over to pick up keys and pulled something. ()
## 13417 Bending over to pick up mail that had fallen to floor located in control office stood up and hit head on hutch door that had come open
## 13418 Bending over to pick up paper towel off floor in ladies room, was hit by incoming door opening. ()
## 13419 Bending over to pick up rock used to simulate fence cut by tapping on fence. Got too close to razor ribbon wire & cut right arm
## 13420 Bending over to pick up some straw off the floor
## 13421 Bending over to pick up work that fell to the floor. Stretching
## 13422 Bending over to reach under the medicine cabinet pulled something in back. ()
## 13423 Bending over to retrieve from 2-drawer file cabinet & chair tilted over causing EE to fall out of chair
## 13424 Bending over to unhook chain from around tree, a limb from the tree flipped across his right eye.
## 13425 Bending over to unhook wheelchair safety hook from floor of van
## 13426 Bending over to unlock lock, struck his head on wire tie protruding from fence in center sally port
## 13427 Bending over working on shut-off valves under a sink, 1 came loose and burst spraying water on floor & employee slipped & back hit against sink.
## 13428 Bending over. Consumer fell w/total weight onto staff's back. Reinjured injury to back incurred inauto accident earlier in week
## 13429 Bending searching locker and sharp pain in low right side of back. ()
## 13430 Bending to get item from drawer, strain low back.
## 13431 Bending to go under counter to get napkins & didn't realize her head was that close to counter
## 13432 Bending to look the vermer scale of steretox intrument, lower back
## 13433 Bending to move scott air pack w/right arm on the case. Arm had shot of pain went from neck to fingers & tingled w/numbness
## 13434 Bending to retrieve file, stood up with acute pain in back ()
## 13435 Bending to stack boxes appox 10 units high, repetitive lifting motion for several hrs causted him toover exert himself and injured lower back
## 13436 Bending, lifting on 5/17... Didn't feel pain until 5/18 ()
## 13437 Bending, lifting, and pulling sandbox barriers cause back to pop
## 13438 Bent down and turned head and was struck by student from behind neck and head
## 13439 Bent down from desk to pick up trash, as employee got up to sit down, chair rolled away and employee fell backwards and hit her head on the desk edge behind her (u-shaped desk) ()
## 13440 Bent down on right knee to check inmate and felt right knee pop, got up and felt knee pop again, hurting did not stop until hours later
## 13441 Bent down picking up something off the floor and when I came up the hand truck fell towards me when a box was removed by the inmate ()
## 13442 Bent down restocking book shelves, raised up and hit right hand side of forehead on shelf. ()
## 13443 Bent down to floor to unpack supplies & felt sharppain on left buttocks area. Unable to stand up w/opain.
## 13444 Bent down to get soap from under counter and hurt lower-mid back
## 13445 Bent down to lock brakes on wheelchair-patient hit/struck on r. Jaw. ()
## 13446 Bent down to pick up a bag of clothes, coming backup holding bag then neck "popped"
## 13447 Bent down to pick up a broom in the mop closet and heard a popin his lower back. Also felt a sharp pain in his back. ()
## 13448 Bent down to pick up child. Back caught & could notmove
## 13449 Bent down to pick up jar lid on floor between wall& sink next to elevator in kitchen. Extinguisher fell off & hit back part of left leg
## 13450 Bent down to pick up pan, when back went out
## 13451 Bent down to pick up paper off the floor and EE knee popped
## 13452 Bent down to pick up stack of shovels. Contained 6 or 8 shovels. As he did so felt pop in his lower back
## 13453 Bent down to pick up trash caught right foot on shelter for golf cart and fell on right knee
## 13454 Bent down to pick up trash from floor - raised up - hit head corner of fire extinguisher cabinet.
## 13455 Bent down to push door open. Right food slipped and I fell on my right knee. ()
## 13456 Bent down to put 3 boxes on handcart, handle came forward & hit me on rgt side of face, (nose & undereye)
## 13457 Bent down to put foot pedals on wheelchair, pt jumped up and put arms around EE's neck. EE unalbe to get loose from pt at that time.
## 13458 Bent down to raise resident's legs and felt pain in back
## 13459 Bent down to remove food from microwave hurt lower back
## 13460 Bent down to replace tube to drain bath, stood back up & caught left shoulder blade on lift.
## 13461 Bent down to roll bed up and felt a pull in back.
## 13462 Bent down to search a locker and sharp pain went down back ()
## 13463 Bent down to take a leaking water out of a dog cage. As iw was bending, right foot skid backwards and knee popped inward. ()
## 13464 Bent down to tie her shoe while in female staff restroom. When she stood up she hit her forehead on paper towel holder
## 13465 Bent down to unlock post office box to get the mail out then stood up and felt a pinch in neck and shoulder
## 13466 Bent down when raising up hit head on lock and hasp on building ()
## 13467 Bent down, picked up bag of property w/right hand & stood up w/it
## 13468 Bent finger back when subduing patient to escort to hall
## 13469 Bent left hand backward while picking up a heavy bag of recycling.
## 13470 Bent over & reached under wide shelf to retrieve an empty gas can. Stood up before clearing shelf & hit back of head, mouth slam shut breaking tooth.
## 13471 Bent over and reached to pick up a tray on gettin gup I felt a aharp pain on my lt u pper back near the ribs
## 13472 Bent over at desk and sneezed while in that position ()
## 13473 Bent over cleaning toilet, coughed and sneezed, pain in right lower quadrant of back.
## 13474 Bent over filing cabinet retrieving files
## 13475 Bent over sitting on edge of chair pulling box from under computer table. Chair rolled out from under employee causing her to fall backwards.
## 13476 Bent over to assist patient out of bed to stand pivot- pain in low back. ()
## 13477 Bent over to assist resident in getting dressed. EE felt a pull in mid lower back, and left leg.
## 13478 Bent over to clean tub-feet slipped causing back pain
## 13479 Bent over to file something under cabinet & when leaned up, head struck counter corner
## 13480 Bent over to get pan of food out of the warmer boxand EE's foot slipped on wet floor lost balance dropped pan and jerked to catch myself from falling
## 13481 Bent over to get sheet pains from wire storage rack when large serving pan fell from top of rack onto her upper back & shoulder area
## 13482 Bent over to get something outof the desk and when he stood up he felt pain in his lower back
## 13483 Bent over to help child with finger stuck between shelf and felt my back pull with pain in lower back. ()
## 13484 Bent over to lift box in counting inventory & feltpull in her back
## 13485 Bent over to lift trailer tailgate and felt something move in her lower back
## 13486 Bent over to move a plant pot, when she stretched out she felt a sharp pain to across her lower back
## 13487 Bent over to pick trash up out of van felt pain inback and leg as walked
## 13488 Bent over to pick up a magazine from the floor while doing a locker search ()
## 13489 Bent over to pick up box of snacks & hurt back while bending
## 13490 Bent over to pick up box-injured low back
## 13491 Bent over to pick up broom & dust pan and door handle caught me in the back
## 13492 Bent over to pick up chair(approx 20lbs) & felt a sharp pain in lower back.
## 13493 Bent over to pick up envelope. Knee popped
## 13494 Bent over to pick up expended brass on firing range & pain in back when stood up. Still having pain in back & right leg.
## 13495 Bent over to pick up lt. Bunch instead of bending legs and pulled my back
## 13496 Bent over to pick up mats after crdt and felt sharp pain through left shoulder blade and left side of neck ()
## 13497 Bent over to pick up papers and bumped forehead
## 13498 Bent over to pick up pen off floor, back spasmcausing staff to go backwards falling against door frame striking right side of forehead.
## 13499 Bent over to pick up printing job and hit head on shelf.
## 13500 Bent over to pick up ribbon pack from green container and back locked up.
## 13501 Bent over to pick up scissors from ground heard pop in right knee. Extreme pain, could not bear weight on right leg
## 13502 Bent over to pick up something, thought she had hold of machine to steady herself and lost her balance, fell on the floor
## 13503 Bent over to pick up tool off of floor & felt a pull in back.
## 13504 Bent over to pick up truck battery, he has pain inhis lower right side and back
## 13505 Bent over to pick up wash cloth and hit head on towel rack ()
## 13506 Bent over to pull file and metal tab insert hit forehead causing a gash on forehead.
## 13507 Bent over to put residents socks on and felt pain in back.
## 13508 Bent over to put shoes on and bumped head on corner of counter
## 13509 Bent over to unlock a latch at medical department and felt a pulling feeling in lower back area.
## 13510 Bent over to wipe legs of chair & got a sharp stabbing pain in right side of back above buttocks
## 13511 Bent over to wipe up a spot in the floor and when she stood up her back went out and she was in a lot of pain
## 13512 Bent over while doing a locker search, when sttod up back was hurting, right leg started going numb ()
## 13513 Bent to help patient from bed and she kicked me twice once in the chest cavity and once in the abdomen
## 13514 Bent to pick up cd which had fallen and hit head on corner of desk ()
## 13515 Bent under desk to retrieve is number on computer, bump her head and fell on her shoulder. ()
## 13516 Bent underneath desk to disassemble it and hand touched broken glass on the floor which he did not see.
## 13517 Bent wrist was being applied to her, her hand was placed behind her back to be handcuffed, felt a stabbing pain
## 13518 Betn over to pick up can of chicken oil with another employee. About 20 mins later felt back & right leg tighten up. ()
## 13519 Between 0150 hours and 0450 hours EE fell from thethird floor window of brooks hall. EE forgot his keys and attempted to enter through window.
## 13520 Between 11pm and 6am employee was bitten in abdomen by a spider while in a-doom sleeping
## 13521 Between 3:50 & 4:00 pm delivering forms to another location (building) on campus. Walking, got to uneven pavement, tripped and fell on right knee ()
## 13522 Between 7/2/09 - 8/13/09 EE banded mourning doves. EE was repeatedly in contact with ticks and mosquitos during banding. On 8/15/09 EE became ill after heavy banding between 7/30/09 - 8/13/09.
## 13523 Bi lateral carpel tunnel syndrome
## 13524 Bicycle accident as EE on way to mason farm reserve injured left hand.
## 13525 Bilateral carpal tunnel syndrome
## 13526 Bilateral carpal tunnel syndrome - wks as a telecommunicator
## 13527 Bilateral carpal tunnel syndrome from use of personal computer
## 13528 Bilateral cts typing on work processor, carpal tunnel syndrome developed over a period of time.
## 13529 Bilateral wrist and rt shoulder data entry and typing
## 13530 Bill joe parker was backing up getting cones out of road and said he didn't see cj in road. Tailgate hit employee, knocked him to the ground. Employee listed injury as lower back. ()
## 13531 Bill link was walking down a hall carrying a laptop, when he tripped and fell over a blue mat on the floor. He fell face first on the floor, striking the left side of his forehead. ()
## 13532 Binder/notebook fell from the table onto the top of employee's foot
## 13533 Binding booklets. Repetitive motion of binding booklets. Continued motion of pulling down arm of binding machine to punch holes in booklets. Using right hand. ()
## 13534 Biological exposure while bleeding on infected move to the bacteria ceptospisa interrogms. ()
## 13535 Bird flapped wings and hit EE's left index finger. Sprain.
## 13536 Bird or fish matter got into eye causing bacteria infection.
## 13537 Bird scratched EE on face.
## 13538 Bit by a client on his right arm.
## 13539 Bit by a client while assisting him. EE went to urgent care and did not Miss Any time from work.
## 13540 Bit by a dog on side of right knee while conducting a home visit with a client's family. Juv. Court couns. Rt knee puncture wound.
## 13541 Bit by a patient on right wrist
## 13542 Bit by a tick in his right groin region.
## 13543 Bit by aggressive cat ()
## 13544 Bit by an unknown
## 13545 Bit by client exhibiting aggressive behavior ()
## 13546 Bit by client on arm ()
## 13547 Bit by client on right wrist during a therapeutic restraint.
## 13548 Bit by hornets while working
## 13549 Bit by inmate; alleges finger began itching w/redness after leaving room ()
## 13550 Bit by insect in l lower arm ()
## 13551 Bit by patient during patient intervention ()
## 13552 Bit by tick on left front thigh. ()
## 13553 Bit by tick while instructing firearms
## 13554 Bit by tick while working on irrigation. ()
## 13555 Bit by venomous snake on right hand while checking butterfly containment units. ()
## 13556 Bit in lowe leg by patas monkey while attempting to catch animal in a net to be kenneled & transported.
## 13557 Bit on arm by resident ()
## 13558 Bit on foot by an insect while sitting at the desk
## 13559 Bit on hand by leashed dog ()
## 13560 Bit on left arm and clawed on right hand by a patient.
## 13561 Bit on left wrist x 2 by patient being placed in restraint ()
## 13562 Bit on right arm by inmate while attempting to remove inmate's personal property ()
## 13563 Bit on right calf by patient during manual hold ()
## 13564 Bit on rt lower leg by spider or other insect which caused swelling and inflamtation at bite site.
## 13565 Bite from spider on left leg under knee while at work. ()
## 13566 Bite from student during restraint ()
## 13567 Bite occured during requested site visit for permit requirements for construction of pier and bulkhead
## 13568 Bite on back of neck while wrking on assorted duties
## 13569 Bite on left forearm while carrying brush ( trimmings) ()
## 13570 Bite on left hand.
## 13571 Bite on right forearm by fire ant while pulling weeds
## 13572 Bite on rt hand bumps popped up itching drainage
## 13573 Bite on the left leg, feeding sealions, one pulledee into the water, biting lt leg, rt arm, lt wristand inside of rt knee
## 13574 Bite possibly from insect. While handling boxes containing materials for class
## 13575 Bite right upper arm
## 13576 Bite to both ankles from a dog bite and no date as to dog having rabies shots in years
## 13577 Biten by tick while sampling forest fuels. Developed fever one week later. ()
## 13578 Bitten by a bug under the desk at her workstation
## 13579 Bitten by a dog while making a homeowner visit. ()
## 13580 Bitten by a dog while verifying a residence on a parole case
## 13581 Bitten by a german shepard while restraining during treatment. Rt ring finger.
## 13582 Bitten by a patient on her right hand.
## 13583 Bitten by a spider got very dizzy and had some nausea ()
## 13584 Bitten by an insect on lower right leg causing infected area around bite
## 13585 Bitten by an insect when she opened the facility door at eastern region training center
## 13586 Bitten by black widow spider
## 13587 Bitten by bug
## 13588 Bitten by bug on 3-4-96 while painting in v. R. Building
## 13589 Bitten by cat while performing treatment. Left hand.
## 13590 Bitten by cat while restraining for iv catheter.
## 13591 Bitten by fire ants on tower 6-right leg
## 13592 Bitten by fire ants while photographing outdoor concert in museum park. Ants crawled up pant leg and bit right leg and lower leg.
## 13593 Bitten by hiv positive patient
## 13594 Bitten by inmate on left hand
## 13595 Bitten by insect
## 13596 Bitten by offender's dog
## 13597 Bitten by paper mites and spiders from paper.
## 13598 Bitten by patient on right shin area during patient intervention ()
## 13599 Bitten by presumptive spider when reaching in to a deep cabinet. Bite became infected during next 24 hours. ()
## 13600 Bitten by rat while removing cage from rack
## 13601 Bitten by resident on right forearm
## 13602 Bitten by resident. Was prescribed an antibiotic and had an allergic reaction to the medicine
## 13603 Bitten by residnet on l index finger and scratched on l forearm
## 13604 Bitten by spider during her sleep
## 13605 Bitten by spider in the groin area
## 13606 Bitten by spider or other unknown creater while sleeping in assigned quarters ncja.
## 13607 Bitten by students during restraints.
## 13608 Bitten on back of right leg by dog. Making home investigation on potential transfer case
## 13609 Bitten on left forearm and left hand when attempting to redirect an aggressive patient.
## 13610 Bitten on left hand by an aggressive patient
## 13611 Bitten on right thumb during a manuel restraint after responding to response call on ward 542.
## 13612 Bitten on right upper arm by a patient.
## 13613 Bitten on rt side by ants while blowing sidewalks
## 13614 Bitten on the lower rt leg by an insect while he was working out in the loading dock area. Complained off itching and nausea
## 13615 Bitten on top of both feet
## 13616 Bitten on upper arm by a otter.
## 13617 Bitten, spit upon, and hit while trying to restrain out of control juvenile
## 13618 Bitten/stung by unknown insect on back of neck
## 13619 Bkwd roll over entry into water from dive support octopus regulator got caught on wall & snapped back shattering glass of mask. Abraison above eye.
## 13620 Black bug bit on left wrist & scratched it, it then spread to both wrist.
## 13621 Black mold in office on the 4th floor of the buncombe county court house. Room 423.
## 13622 Blackboard fell off track onto EE's hand ()
## 13623 Blacked and fell in hotel bathroom. Some bruising and soreness to ribs. *****denied clm******
## 13624 Blade detached from fan and sliced off nose.
## 13625 Blade slipped while skinning pig, cut finger on left hand. Forefinger.
## 13626 Blair fell from a distance and landed on feet compressing back. ()
## 13627 Bldg has mold in it inside, also under renovation including abestos removal wih alot of dust being blown out.
## 13628 Bldg having renovations done and as a result dust particles in the air irritated EE's eye.
## 13629 Bldg restroom-using facility door stall did not completly latch. ()
## 13630 Bldg srv tech: employee was stripping the floor and went around a corner and slipped and fell on the wet floor injuring his right arm/shld&hip.
## 13631 Bleach fumes was very strong when she opened the van doors firday morning.
## 13632 Bleach was being used by another employee and caused trouble breathing, red eyes, sore throat
## 13633 Bleeding hogs was hit one fell
## 13634 Blet student was attempting to arrest EE and EE hit head on floor/teaching/evaluating. Traumatic head injury, loss of consciousness.
## 13635 Block of ice fell on foot while doing ice carving for board of trustee dinner. Right foot.
## 13636 Blocked a chair swung by a patient with left arm-also hit by patient's closed fist on arm
## 13637 Blocked chair from client that he was trying to hit staff with ()
## 13638 Blocked ears, during a scientific dive for inspection. Trauma inner ear--water ruptured capillaries. Right ear.
## 13639 Blocked hit by resident x 2-resident grabbed left hand and bent ring, middle and index fingers back.
## 13640 Blocked individual from butting his head on wall with lt hand ()
## 13641 Blocked punch from pt, put pt in wrap, r arm locked & sharp pain ()
## 13642 Blocked punch of patient and manually restrained rt shoulder blade up into neck area
## 13643 Blocked sib client aggression ()
## 13644 Blocking door preventing patient from leaving the ward-right arm caught in door.
## 13645 Blocking kick from client & in process twisted herright knee
## 13646 Blocking one lane of traffic with patrol car. Another car failed to move over struck EE car while hewas still in it. Strain neck, stress rear deltoid.
## 13647 Blocking pt from hitting another pt., employee landed in chair and fell on right knee ()
## 13648 Blocking resident from hurting himself and/or others while at hostpial from testing and felt pull in rt shoulder (at back shoulder blade)
## 13649 Blood clot in left leg diagnosed, 2nd clot found in right leg later.
## 13650 Blood clots that resulted from trauma on the job. Loss of vision in left eye
## 13651 Blood exposure on back of shirt.
## 13652 Blood exposure while performing cpr, eyes
## 13653 Blood from one of the inmates eye go onto cuts on EE's arms. Attempting to stop a fight between 2 inmates
## 13654 Blood from patient sprayed into EE's face/mouth
## 13655 Blood in eye during liver transplant. Was wearing protective eye wear
## 13656 Blood on back of right hand breaking up fight in dorm. Received blood on clothing
## 13657 Blood on hands & clothing received when respondingto alarm. Escorting inmate from scene
## 13658 Blood splashed in EE's eye when completing radiological procedure.
## 13659 Blood splatter from trauma patient during emergency assist on left arm
## 13660 Blood vessel in right eye burst, employee was not engaged in any activity at time of injury
## 13661 Blower fell down from engine room escape hatch and hit tommy's leg ()
## 13662 Blowing bleachers using backpack blower, backpack shifted causing EE to step & stumble. He twisted his ankle.
## 13663 Blowing debris with backpack, tripped over root and turned right ankle
## 13664 Blowing debris with blower when a projectile from a passing lawnmower hit him in the calf of his rt leg.
## 13665 Blowing grass and dirt from parking lot; got in left eye
## 13666 Blowing leaves and slipped off curb and twisted right ankle ()
## 13667 Blowing leaves at loading and sand got in eye ()
## 13668 Blowing leaves on wet ground fell down the side of a hill ()
## 13669 Blowing leaves with backpack blower, wind changed direction and debris got in his right eye behind safety glasses. ()
## 13670 Blowing off rain shelf when elbow hit next-lite ()
## 13671 Blowing on frame, trash in left eye
## 13672 Blue unit sgt. Responding to a code blue in the gym ()
## 13673 Blunt trauma to rt hand & wrist
## 13674 Blurred vision, light sensitivity, little drainageof eyes
## 13675 Board fell on EE's hand
## 13676 Board on floating dock was being removed it slipped and nail cut his rt hand
## 13677 Board rotated in crosscut operation, trapping fingertip between board and fence causing broken finger tip and cut requiring sutures. ()
## 13678 Board slipped on a sander and board was jerked from hand and finger was caught on sanding belt ()
## 13679 Boarding elevator when door closed. Retract mechanism did not retract door & door closed on EE's arm.
## 13680 Boat hit wave and hauled in way that twisted my neck
## 13681 Boating across area. Trimming branch & tree limbs a branch struck him in the eye
## 13682 Bobby fleming was picking up a garden sprayer whenhe slipped and fell.
## 13683 Bobby was tightening up bolts on the ash line and the wrench slipped and hit him in the mouth ()
## 13684 Body systems... Allergic reaction to n. Z rabbit when handling animals
## 13685 Body systems... Exposure to patient h1n1
## 13686 Body systems... Sm chemical hood in rm 414 mary ellen jones was not properly operating exposure tovapors
## 13687 Body systems... Smell from patient
## 13688 Body... Hood was not appropriately working exposure to xyline and formaldhyde
## 13689 Boil like lesion on rt middle finger that EE relates to chemical (dip-it) used in dishroom water.
## 13690 Book fell from 6' bookshlf onto EE head
## 13691 Book shelf fell and struck EE
## 13692 Bookcase being moved on a cart by workers from another agency fell off the cart and struck EE on her left hand and thumb. EE states thumb hurt badly, but only seemed to be bruised. She did not seek medical treatment. ()
## 13693 Bookcase fell and struck employee on back of left leg **pa bruce jackson**f18 filed.. Ag: stacey phipps
## 13694 Books of books fell down in the back of my head rt side of my face arm and back
## 13695 Boot got caught on raised concrete on sidewalk between chapel and operations and employee fell ()
## 13696 Boot got caught on uneven portion of sidewalk causing fall.
## 13697 Botanical garden employee reports to ueohc for an insect bite. A tick was discovered and removed. A small rash has since developed ()
## 13698 Both hands and wrist stay numb, causing great discomfort.
## 13699 Both of EE's feet slipped on ice while she was walking down glazed bank to car after comlpeting shift.
## 13700 Both res and staff were standing while staff cleaned consumer to change diaper, res lost balance and staff was holding res up to keep from falling
## 13701 Both rt & lft inner wrist area
## 13702 Both wrists- aggravated by continual use of computkeyboard.
## 13703 Bottle of bleach fell on floor and splashed up into EE's left eye
## 13704 Bottle of bleach splashed into employee left eye.
## 13705 Bottle was on a shelf, caught in wires falling down, cap came off and chemical splashed into botheyes and burn on face.
## 13706 Bottom drawer of 2 drawer file cabinet was pulled out for enough to caused cabinet to tip over on EE
## 13707 Bottom of stairs near exit door, shoe came from under her and shifted to the side. Felt instantly bad pain. It was raining at the time of accident. Sprained ankle ()
## 13708 Bottom shelf collapsed hitting EE's right arm
## 13709 Bowling ball slipped from ramp and hit EE on left knee
## 13710 Box cutter blade slipped and cut thumb
## 13711 Box cutter slipped & cut left middle finger tip
## 13712 Box cutter slipped while removing cable ties from a wire harness in a cpu, cutting the l index finger ()
## 13713 Box fell from top shelf, hit EE in head and hand, finger dislocated, knot on head, glasses broke
## 13714 Box fell on her right foot, affecting her ankle ()
## 13715 Box fell on shoulder
## 13716 Box fell on shoulder when ladder was moved
## 13717 Box of cans on cart, cans fell on top of EE's right foot ()
## 13718 Box of needles fell to floor, EE felt 3 sharp pricks on rt foot
## 13719 Box of yarn fell on floor /tryng to stand upright while liftng the box had pain in lower back
## 13720 Box slipped from cart, fell on EE's finger
## 13721 Box slipped out of hands while attempting to move it off the counter. Tried to catch the box, heard "pop" in elbow of right arm.
## 13722 Boxes of copy paper were stacked about 4 high to be delivered to different depts. Reached up to slide top box down and weight of box made same slide off stack. Did not actually catch box but weight of it pulled muscles in lower back. ()
## 13723 Boxes that were to be disposed in hallway next to employee's doorway. Not aware of boxes and when exiting doorway, fell over boxes ()
## 13724 Boxing as part of law enforcement defensive tactics & was hit in left shoulder causing shoulder strain
## 13725 Boxing up bio hazard & person helping made it splash on arm
## 13726 Bracing self against wall; fractured arm.
## 13727 Brakes failed on vehicle causing collison w/ dumpster. EE was operating vehicle as driver of same
## 13728 Brakes gave out on car and EE ran into car in front of her. Lt shoulder strain.
## 13729 Brakes locked on bike causing EE to fall and bruised left knee and elbow and sprain rt wrist
## 13730 Braking up a fight between two juveniles, he was hit in the left jaw
## 13731 Branch fell out of tree & struck EE in back of neck. EE was walking from building to truck on state campus
## 13732 Break out occurred while sitting in lobby area ()
## 13733 Break room preparing lunch, left and returned, foot slipped out from under employee, some type of spilled liquid on floor ()
## 13734 Breakfalling and foot got caught between mates and his knee popped ()
## 13735 Breaking a metopialoc xl tablet with hands & fingers, tablet would not break. Sprain right hand.
## 13736 Breaking concrete out from under a pipe support. Drilled holes in concrete and was using hammer/chisel to break concrete. Small cut on left leg ()
## 13737 Breaking down a folding table in the board room and slid his left foot under the table to ease it to the ground and the foot became pinched between the side of the table and the floor ()
## 13738 Breaking down boxes after putting away supplies; using scissors to cut tape and scissors slipped and cut thumb ()
## 13739 Breaking down boxes, putting up supplies; stepped back on a piece of paper and fell hitting buttocks on the floor; pain goes up back. Put arm back to keep from falling back on cement floor. ()
## 13740 Breaking down lattire material. A staple was exposed and stabbed through fingernail of left index finger.
## 13741 Breaking hole in wall, piece of sheet rock broke. ()
## 13742 Breaking out wall & hit left hand with hammer ()
## 13743 Breaking up 4 inmates fighting. Inmate kicked him in ribs after having stopped fighting w/other inmates
## 13744 Breaking up a fight and gaining control of inmate ()
## 13745 Breaking up a fight betweeen inmates and hit left elbow ()
## 13746 Breaking up a fight between 2 juveniles and fell on right knee
## 13747 Breaking up a fight between 2 juveniles was struck in the head around the temple and cheekbone
## 13748 Breaking up a fight between 2 juveniles when kicked in her adbomen and lower right side
## 13749 Breaking up a fight between 2 juveniles, rt hand scratched and post exposure to blood.
## 13750 Breaking up a fight between 2 patients, when trying to pull patient off, stumbled into a bathroom sink
## 13751 Breaking up a fight between 2 students
## 13752 Breaking up a fight between 2 students. In doing so muscles in back began to hurt. Injured upper & lower back.
## 13753 Breaking up a fight between inmates. Got their blood on his arm. Was blood tested by doctor. ()
## 13754 Breaking up a fight between three inmates when shewas contaminated by blood to palm of both hands. Quick action taken to help inmate who was bleeding
## 13755 Breaking up a fight between to juveniles. Had to take them to the floor to separate them. Causing EE to fall on rt side. Low back & rt shoulder.
## 13756 Breaking up a fight between two deaf children, a high school boy & girl weighing approx 220lbs eachee re-injured left shoulder.
## 13757 Breaking up a fight between two inmates ()
## 13758 Breaking up a fight between two inmates and officer stood between the two injuring his back. ()
## 13759 Breaking up a fight between two inmates, & one wasbloody.
## 13760 Breaking up a fight between two inmates, one inmate snatched away, she hurt her left shoulder ()
## 13761 Breaking up a fight between two inmates, while on the floor with the inmates kicked in the right hand by the inmate
## 13762 Breaking up a fight btwn 2 inmates. As he grabbed the inmate he fell against a wall injuring his rt hip
## 13763 Breaking up a fight holding a pt. As he was tryingto get away from staff. EE's fingers got jammed when pt. Was trying to pull away
## 13764 Breaking up a fight in c dorm, fell on a table hurting right knee ()
## 13765 Breaking up a fight restraining inmates ()
## 13766 Breaking up a fight right knee hit floor, supervising inmates ()
## 13767 Breaking up a fight slipped and fell hitting right arm and elbow on edge of stainless steal table ()
## 13768 Breaking up a fight, back and midle finger on rt hand injured
## 13769 Breaking up a fight, pulling inmates apart was scratch was exposed to blood. ()
## 13770 Breaking up a fight, separating two inmates from each other & got blood on him
## 13771 Breaking up a riot and responding to call for help from staff, employee was assulated by juveniles by jumping on his back
## 13772 Breaking up altercation between students, he injured pinky & ring finger on left hand
## 13773 Breaking up an altercation b/t inmates ine inmate had a large laceration on his lt arm and was bleeding profusely I scraped my forearm slightly
## 13774 Breaking up an altercation between residents and was pushed against the wall, hitting hand. **10-6-05- rec'd e-mail confirming aww**
## 13775 Breaking up an altercation between students, EE fell to floor hitting his right elbow on concrete. ()
## 13776 Breaking up concrete walkway-fell -landed on r. Knee. ()
## 13777 Breaking up fight
## 13778 Breaking up fight & was accidentally hit in mouth
## 13779 Breaking up fight and was struck in right eye with pepper spray and inmates hand. ()
## 13780 Breaking up fight b/t two inmaes and hit on bench.. Lt 2nd & 3rd fingers. ..
## 13781 Breaking up fight b/t two inmates in dining hall one inmate had severe cut on his lt arm and splattered blood on body
## 13782 Breaking up fight between 2 inmates. In process of separating inmates when inmate's head came downon top of EE's breaking skin on left hand
## 13783 Breaking up fight between 2 pts, one of the pt hit EE on left side of face ()
## 13784 Breaking up fight between inmates. One of inmates hit him w/his fist in mouth
## 13785 Breaking up fight between patients, fell to floor with patient on top of staff.
## 13786 Breaking up fight between two inmates & got blood on hands, arms, & clothes.
## 13787 Breaking up fight between two inmates, one was bleeding from the head, inmate's blood got on EE's lt hand and arm
## 13788 Breaking up fight between two inmates. Came in contact with blood borne pathogens while controlling inmates that were involved in a fight. ()
## 13789 Breaking up fight between two students and was punched in face/head stanley melvin 252 830 6590
## 13790 Breaking up fight between two students when one student fell causing student's shoulder or head tohit teacher's ribs under his rt arm.
## 13791 Breaking up fight in dayroom, I was pushed against shower door hurting my elbow and arm. ()
## 13792 Breaking up fight in dining hall ()
## 13793 Breaking up fight in falcon unit in dorm when kicked in left thigh by an inmate
## 13794 Breaking up fight seperating two inmates from eachother & got blood on his hands, arms & clothes
## 13795 Breaking up fight w/clients when EE pulled one client to separate them. EE's left elbow slipped and hit door frame
## 13796 Breaking up fight when one of inmates began assaulting him. Several punches to face. Small cut to rt eyelid and lower lip, glasses damaged.
## 13797 Breaking up fight, separating combatants EE was exposed to inmates blood on his left hand and down his left wrist
## 13798 Breaking up fight, separating four inmates from each other & got blood on him
## 13799 Breaking up fight, separating two inmates from each other & got blood on him
## 13800 Breaking up hardened sodium hydroxide with ice pick. Accidentally stuck it in the left hand
## 13801 Breaking up patients fighting---fell to floor striking left knee
## 13802 Breathed pepper spray and floor stripper while working as floor officer ()
## 13803 Breathing difficulty, burning rash on face, sleeping difficulty due to exposure to chemicals.
## 13804 Breathing in office and hallway while doing processing on a personal computer and other officework.
## 13805 Breathing problems & chest pains when using cleaning chemicals.
## 13806 Breathing problems ()
## 13807 Breathing problems developed from mold in work area due to construction water being circulated through steam lines.
## 13808 Brenda slipped over computer wires on the floor. She fell, hitting her head and nose. Her nose bled, swelled, and dark circles formed under her eyes. After a short time, she said she felt fine. ()
## 13809 Brickhouse missed the 1st step and fell down the other two steps. ()
## 13810 Bringing an agressive juvenile to floor causing the juvenile & other staff member to fall on his knee also jammed thumb into floor.
## 13811 Bringing an inmate to the holden cage for a cooling down period. Placing inmate on floor who was combative. ()
## 13812 Bringing boxes of files into bldg on cart; when cart hit concrete crack, cart tumbled. She caught it and bungee cord slipped off box and hit her eye.
## 13813 Bringing chair into nursing area when hct jumped into chair injuring EE's back.
## 13814 Bringing client back from classroom in wheelchair, wheelchair hit back of both legs
## 13815 Bringing down chairs in service elevator. Elevatorcame down 3 inches lower than normal, wheels got caught, EE had to pull chairs out. Strain back
## 13816 Bringing in air conditioner to the basement. Injured rt shoulder/arm
## 13817 Bringing in supplies for clubhouse. Went to put bag on counter & heard pop & rt arm started hurting
## 13818 Bringing inmate under control & was cuffed inmate right wrist & attempted to cuff left when inmate turned body over on her hand squeezing it
## 13819 Bringing inmate under control during assault on staff member. Inmate struck EE on left hand injuring finger
## 13820 Bringing inmates back from clinic in unit iv lobbytrying to get through security door & it shut before could get through
## 13821 Bringing office furniture up/down steps, pulling hand truck with filing cabinet chairs, boxes
## 13822 Bringing patient's meal trays up & down the stairs due to elevator being out of order. ()
## 13823 Bringing wheelechairs tires back to medical dept., wheelchair intertube burst while carrying tire (burst in rt hand).
## 13824 Broke a beaker and while carrying glass to disposeof it and cut my finger.
## 13825 Broke desk fell forward on employee when file drawer was opened. ()
## 13826 Broke out in a rash after leaving work.
## 13827 Broke out in a rash when assisting with sick calls ()
## 13828 Broke out in welps all over body. EE does not knowwhat she came in contact with.
## 13829 Broke out with poison oak on face. Legs, and hip after inhaling smoke from burn
## 13830 Broke up a fight between 2 students, sprained left wrist.
## 13831 Broken cahir gave way when EE sat down in dining hall.
## 13832 Broken glass in recycling bag - 1st floor - robinson hall - was taking trash out to dumpster; reach inside to get bag out of buggie and got cut on broken glass in side of bag ()
## 13833 Broken hinge on metal technology cabinet resulted in door becoming disengaged and striking employee in the face. ()
## 13834 Broken light bulb in trash can liner punched through plastic and cut EE on right lower leg.
## 13835 Broken spring was on top of a maintenance tool boxand as he walked by the tool box his arm struck the spring.
## 13836 Broken stethoscope put in right ear ()
## 13837 Broom broke while employee was sweeping the floor and cut his finger ()
## 13838 Broom fell through railing and struck EE on head. ()
## 13839 Broom handle fell out from beside a refrigerator as employee turned and the end of the handle hit the employee in the neck. Employee was also hit her hand on the table and hurt it. ()
## 13840 Brown spider was crawling on EE's leg
## 13841 Bruce was mowing and weeding at the blueberry project site, where he pulled 4 ticks he got while working. ()
## 13842 Bruise of lt knee and rt wrist
## 13843 Bruise to upper arm while shooting the shotgun in annual training..
## 13844 Bruised left lower arm assisting with a four man carry of a patient to restrain
## 13845 Bruised right leg right shoulder & left side when she slipped on ice in parking lot that hadn't been cleared.
## 13846 Bruised right thigh (cannot read description of injury)
## 13847 Brushed against caterpillar while reaching into bushes. Rt forearm
## 13848 Brushed aganist posin sumac
## 13849 Brushing a spider web away from window and spider bite his right index finger
## 13850 Brushing client's hair. Client bit EE on lt upper arm
## 13851 Brushing patients teeth, spit splattered in face and on arms. ()
## 13852 Brushing resident's teeth-resident scratched upper lip and r. Side of nose. ()
## 13853 Bryan was working in a trench at greek village when exiting the trench he heard a pop in his knee. ()
## 13854 Bucket from tower 5 lowered by officer & struck co stalcup on the head
## 13855 Bucket of court cases started to fall, reached for them to stop from falling, hurt lower back
## 13856 Buffer was setting next to the wall and fell over and bumped right leg.
## 13857 Buffering hall floor when left hand slipped of the buffer cutting middle finger on left hand ()
## 13858 Buffing floor - no injury listed.
## 13859 Buffing floor and ankle began to hurt and swell ()
## 13860 Buffing out floor, when changing cord foot got caught up in cord. Went down on floor on both knees. Rt knee.
## 13861 Bug bite ()
## 13862 Bug bite discomfort pain increased noticed bite onleft lower leg
## 13863 Bug bite left arm ()
## 13864 Bug bite on right hand ()
## 13865 Bug bite on rt leg while working on water fountain
## 13866 Bug bite or sting while working on project. Bite not getting better and started blistering around edge of infected ara. ()
## 13867 Bug bites occurred during yard work behind camp staff house ()
## 13868 Bug flew into eye
## 13869 Building a cabinet. Nailing a piece of plywood together with brad nailer. Nail went through plywood and into finger. ()
## 13870 Building a rock wall injured left wrist while picking up rock
## 13871 Building a wall. EE turned on ladder and his left ankle snapped
## 13872 Building being renovated - fumes came through ventilation causing evacuation of building
## 13873 Building cabinet-another staff had staple gun; staple shot in right thumb.
## 13874 Building collapsed during training. Employee pulled a firefighter from the building after the collapse ()
## 13875 Building ducts for hvac system. Cut his left hand
## 13876 Building fences-pinched left index finger between two pipes
## 13877 Building maintenance came into the unit and sprayed around a table; after 30 minutes, EE had reaction ()
## 13878 Building platform, sitting down cutting out piece of angle iron to make a fit. Grinder hung up in metal bounced off & hit leg
## 13879 Building prison for doc. Right shoulder head and neck right arm and elbow no file case ta 20801 July 312008 ncic comm ()
## 13880 Building shelves, EE bent down causing an injry to knees l knee surgery 2/9/07***
## 13881 Building sign rack. Grinding metal to get ready forwelding. A piece of metal hit employee cheek, wentunder his safety glasses hitting him in the eye
## 13882 Building steal door, lifted corner of door off sawhorse to move saw horse and felt pain in groin, left side.
## 13883 Building tech.: moving carpet (approx 500 lbs) and injured his back.
## 13884 Building tent for outreach event (lifting, squatting, standing, holding objects above hand). Pain inlower back began
## 13885 Building wall to cover drain, employee's foot slipped and rt knee went backwards making a loud pop
## 13886 Building was being exterminated and EE had an allergic reaction to the fumes of the chemicals being used
## 13887 Building was dark. Mr. Ramsey side-stepped and fell down 3 steps while assisting with placing students in building for mass casualty incident class. Injured left thigh and right foot. ()
## 13888 Building was flooded due to rain storm. Slipped and fell on wet floor hurt wrist and hip. ()
## 13889 Building was unusually cold causing chemical vaporto be released causing exposure to eyes and lungs
## 13890 Buildong scaffolding, handling & moving 18 ft scaffold boards & poles overhead. Bent down to pickup poles & felt pain in chest
## 13891 Bulb fell out of light fixture and hit ladder and hand cutting fingers
## 13892 Bulb was broken inside box & cut pinky finger on left hand
## 13893 Buld shattered while changing, causing lacerating inside left index finger ()
## 13894 Bulldog ran and lunged at her hitting her in the middle of back & pushed her forward jerking back & neck area
## 13895 Bullentin board fell on her head
## 13896 Bumped arm (right) against the corner of hot pan. ()
## 13897 Bumped elbow on cell block door while locking up ()
## 13898 Bumped elbow, bruised and swelling
## 13899 Bumped head on edge of the contol station ()
## 13900 Bumped head on platform when standing up. ()
## 13901 Bumped head on safety interlock/door, scalp laceration
## 13902 Bumped head on stairs during a home visit
## 13903 Bumped head on stairs outside building causing concussion ()
## 13904 Bumped into hvac system drain sill cock. Removing circulating pump lacerating his head
## 13905 Bumped into low mounted exterior wall fixture while turning a corner.
## 13906 Bumped into the car in front of the state veh justafter the light chngd.
## 13907 Bumped knee moving vending machine *right knee* ***left knee not work comp*** clinchered ****
## 13908 Bumped on corner of desk.
## 13909 Bumped right elbow on block of student room while trying to pull a sheet from exterior window that student was trying to escape from
## 13910 Bumped right knee into file cabinet
## 13911 Bumped right knee on steel pole. Looking for thermostat to turn off the cool air blowing
## 13912 Bumped rt hand on wall when opening the bathroom door.
## 13913 Bumped table while counting. Turned corner & scraped/cut his left forearm on corner of prep table
## 13914 Bumped top of head on cabinet door
## 13915 Bumping volleyball with patients and injured rt thumb-history of previous r thumb injury
## 13916 Bungee cord on atv came loose while EE backing atvand s hook on bungee cord hit EE on the face
## 13917 Bunking beds together, pinched hand between brackets
## 13918 Bunnie was working at her desk; she caught her rt little finger between the arm of the chair & computer tray. ()
## 13919 Bupmed her head on one the porch floor beams.
## 13920 Burn to right ankle. Water tem set at 170 degrees. While cleaning the floors hot water splached in boot causing burn to right bottom of leg and ankle. ()
## 13921 Burned both hands on hot plate while serviing evening meal.
## 13922 Burned by heat when extinguishing fire
## 13923 Burned cornea installing auv light. (welders eyes) ()
## 13924 Burned finger on hot cart ()
## 13925 Burned front abdomen while using charocoal grill.
## 13926 Burned hand on muffler of pump motor
## 13927 Burned left hand when washing hands in the ladies room, because water was scalding. Burn left hand scalded with blisters.
## 13928 Burned leg on steam pipe in mechanical room
## 13929 Burned lt arm on hot base while serving lunch
## 13930 Burned right forearm while trying to repair brokensteam line
## 13931 Burning above right ankle/swelling
## 13932 Burning in eyes from chemical (in training)
## 13933 Burning sensaiton in left hip joint and left knee with swelling due to a previous injury. List injuries as: left hip & knee ()
## 13934 Burnt left wrist on oil filter machine
## 13935 Bursistis in rt shoulder and tendinitis in rt wrist. Constant key boarding, typing.
## 13936 Burton moore with mike nowicki assistance were taping trim tape on teague dorm basketball goal. He cut his left fifth finger ()
## 13937 Burton was driving her state vehicle when she stopped due to traffic stopping & was struck in rear by another veh traveling about 45mph.
## 13938 Bus attendant on school bus asked student to retn to seat when student started punching and kicking EE.
## 13939 Bus ran into ditch. Injury was caused by impact slamming his feet into floor of bus
## 13940 Bus stopped at work stop - seating in seat across from letreene on bus. Reached with rt hand grabbedpole pulled up then felt finger was cut.
## 13941 Butterfly tubing was stuck inside the tub. In the getting tubing part out spike accident stuck 2nd finger on lt hand.
## 13942 Buzzer located directly behind attendent. Buzzer startled EE causing her to jerk her neck.
## 13943 By employee was inappropriately touched a co-worker and caused post-traumatic stress disorder. ()
## 13944 By removing 40+ soil samples from sites, she strained her back using heavy force/body weight to remove soil cores. ()
## 13945 Bynum was removing wood boards from a shelf where they had been stored; reached for one on top shelf and nail in board hidden behind the one he was reaching for punctured pinky finger on right hand approx. 1/4 inch deep, very little bleeding. ()
## 13946 Bynum's right foot tripped on the shaft of a transmission laying on a pallet as he exited the area in which spare parts are stored. ()
## 13947 C- 919 632 0598
## 13948 C/o May states while working tower 3 the space heater sparked fire, causing her to jump from the chair hitting her left butt on the chair arm.
## 13949 C/o a. Gibbs was walking & securing the block withan inmate janitor. She slipped in a wet spot in albermarle a02 block.
## 13950 C/o alleges she stepped outside of auman single cell door & stepped down, twisting her left ankle.
## 13951 C/o alleges supervising inmates strip floor in dorm, saw a spider, and stepped on it, slip and fell on left knee, buttock, breaking fall with rt hand.
## 13952 C/o alleges that an inmate kicked him on his left shoulder area while jumping up on his bunk.
## 13953 C/o alleges while patrolling newsome dorm, courtyard, while walking up the steps, she didn't lift rt foot high enough to clear top step & fell
## 13954 C/o avery stepped in floor stripper & slipped & twisted
## 13955 C/o backed into EE as he was pushed/kicked at by the nurse. EE was standing in infirmary doorway waiting to go in. Injury to right arm/wrist
## 13956 C/o barnett was making a perimeter check of a building when she tripped on a rock and fell.
## 13957 C/o blank was in the kitchen and getting ready to have to have the coolers filled w/ice. C/o blank drank water from a orange cooler contained bleach.
## 13958 C/o boone wan checking the inmates a the new leash on life building and one of the dogs bite him on his right hand ()
## 13959 C/o bright was walking up the steps from a-yard tothe entrance to the kitchen when she slipped and fell on her right knee and arm.
## 13960 C/o bruton was pouring a cup of coffee & while he was pouring the coffee the handle to the coffee pot broke.
## 13961 C/o bunch twisted right knee while walking down stairs in a-block. 30 minutes later she felt a popin right foot.
## 13962 C/o callihan was getting into unit van #6435 when he steeped up into the vann his foot slipped causing him to fall on his left hand ()
## 13963 C/o carlton reports during a use of force to control an inmate, he struck his lt knee on a wall
## 13964 C/o clifton stated that he injuried his back during cell extraction training on 7/10/13 ()
## 13965 C/o coley stated it was raining and she slipped on was floor in the gatehouse.
## 13966 C/o conducting home contact on offender. Walking from vehicle to residence, officer stepped into a hole in the offender's yard & twisted foot.
## 13967 C/o davis reports during a use of force incident, he cut his right forearm. The involved inmate also was cut & bleeding from his wound.
## 13968 C/o dawson stated, walked down the stairs my body jerked and something pulled in lower back.
## 13969 C/o draper was passing out food trays when the door began to close and she tried to stop the door with her hand and the door closed on her.
## 13970 C/o drennan states she started hurting in chest, down the left arm and could not breathe while working the gun tower.
## 13971 C/o edwards was in crdt training when his partner flipped him onto the floor & he fell on his left shoulder where he heard a pop & he felt pain
## 13972 C/o eric powell stated that he was assigned to segregation wings and he made his rounds inmate daryl adkin in cell 1 spit through the wire screen hitting c/o powell in the face ()
## 13973 C/o eudy reports that she was walking down the steps and fell ()
## 13974 C/o evans states he caught his left hand between cart & fence pole as he was pulling cart from yards 2 & 3.
## 13975 C/o exposed to a 1/2 - 1 sec burst to the brow area of his face
## 13976 C/o fainted and fell directly on EE. Causing a strain of the middle back and neck. Strain back/ neck.
## 13977 C/o faison was closing vehicle gates at tower 6, &the razor ribbon was hanging to low & scratched EE on top of the head.
## 13978 C/o fell to the ground with an inmate causing his left knee to hurt ()
## 13979 C/o grabbed my ankles to put me to the matt when ihanded my right foot, my toes bend back
## 13980 C/o gray states, ()
## 13981 C/o hayes was involved in an anticipated use of force. His left shin struck the protective shield and started to bleed.
## 13982 C/o hill was exiting the sergeant's office when she attempted to lift her right leg across the stationay arm of skylift when she tripped.
## 13983 C/o jacobs was shocked as he touched the door entering the gatehouse. ()
## 13984 C/o jason gray stated, closed his fingers in the entrance door of the control center on essex unit. C/o gray pinched the finger nails on his right hand, the 3rd & 4th fingers. Staff not being observant. ()
## 13985 C/o johnson fell while climbing the stairs between 1f and 2f.
## 13986 C/o kechia howell was performing her duties as roving patrol officer when she apparently blacked out & ran vehicle front first into six foot ditch
## 13987 C/o lindsey was involved in an anticipated use of force. He hit the corner of his left eye on c/o r. Jackson knee
## 13988 C/o making routine security check at meat plant got lt foot caught in some plastic that was wrapped around pallet that was lying on floor
## 13989 C/o marshall was lifting boxes & felt a pain on her right side
## 13990 C/o miller fell on her causing her knee to go backbelieves she twisted the wrong way.
## 13991 C/o moore was leaving compactor and fell on some grease-like substance that was on the floor outside of the compactor room.
## 13992 C/o narron was doing a search of m1 dayroom. He lifted one end of a picnic table to check underneath it and the table slid across the floor jerking him causing stinging/burning in his lower back with later turned into pain. ()
## 13993 C/o of force and restrainingconklin was involved in a use an inmate who was resisting and he arched his back and twisted it as he went against the wall with the inmate. ()
## 13994 C/o patterson was observing the inmate medication pass, when he rubbed his eye, it shut with pain.
## 13995 C/o patterson was securing a gate when her right finger got caught and pinched the gate and left hand was scraped as closing the gate.
## 13996 C/o peel stated while another c/o was attempting to restrain an inmate, he was sprayed with a burst of pepper spray in his eyes. Also c/o peele states he was hit on left arm with a baton. ()
## 13997 C/o porter reported she injured her shoulder whilelifting a scott air pack tank over her head duringtraining on 1/26/09.
## 13998 C/o potter stated after completing a security search of the yard she was in process of returningher equipment felt dizzy collapsed.
## 13999 C/o reed states he was driving a state vehicle andstruck a deer which was crossing the road on nc 53west of elizabethtown.
## 14000 C/o robbins was firing the. 40 m&p handgun during night fire and the recoil from the firearm caused pain to thumb bone and left wrist.
## 14001 C/o roberson stated, down on the floor and reachedfor another officer with left arm and something pulled deep in chest on the left side. (c. R. D. T.)
## 14002 C/o shaver states that he was performing an assisted takedown during training when the person being taken down landed his wt on his left shoulder
## 14003 C/o singletary leaned back in chair & chair broke causing him to hit his head & elbow on the floor.
## 14004 C/o sitting on stool in control center had severe coughing episode & passed out woke up on the floor
## 14005 C/o smith was standing in maintenance shed, turned and hit his head on a pipe that was sticking out. This was report 48 hours after the accident
## 14006 C/o sprayed w/ oc pepper spray @ training. Reportedeye irrated on 09-18-08 & situation was worse the next day & he was sent to outside medical.
## 14007 C/o stated during crdt training fall backwards on mat strained left shoulder.
## 14008 C/o stated she was bitten by something on lower right leg, did not see what it was.
## 14009 C/o stated while answering an inmates call she wascoming down stairs and fell down the last 2 or 3 steps on left knee.
## 14010 C/o stated while strip searching inmate struck him in the mouth. Two of his teeth were loosen.
## 14011 C/o states she hit her hand on the control panel in the red unit control booth
## 14012 C/o states she was in collapsible baton training &baton fell out of holder & hit her left foot.
## 14013 C/o states that he was feeding h-block & inmate threw an unknown liquid assumed urine through trapdoor.
## 14014 C/o states that while feeding inmates, he touched the two food carts at the same time.
## 14015 C/o states walking down the stairs to open sally port doors, I stumbled on the stairs and hurt my foot
## 14016 C/o states wasp stung her on left thumb, while shewas adjusting her belt. C/o was performimg controlcenter operations in co-op unit.
## 14017 C/o stepped through sally port door, slipped, foodtray went up in air, shifted weight to left leg. Fell l knee bucket underneath c/o
## 14018 C/o t. Moore was seperating 2 inmates fighting w/ shanks. He was cut on the right arm with one of the shanks. (sharpened toothbrush and razor).
## 14019 C/o tametric patterson was leaving the bathroom & hit her shoulder on the door.
## 14020 C/o taylor was assigned to east yard. Wind blew foreign object into eye.
## 14021 C/o truitt was discharging his firearm & a shell casing was ejected from the firearm. This shell casing then struck officer truitt in the inner eye
## 14022 C/o trying to turn a key it janitor's closet; thumbwas bruised.
## 14023 C/o walking in horseshoe of hcon turned back gave out fell to the floor, c/o jefferson, helped turnerup to go to medical.
## 14024 C/o walking through the gate headed to single cella, slipped on sidewalk and fell on right knee.
## 14025 C/o was at basic training & doing technique "breakfall" from a kneeling position & pulled muscle in stomach when coming up.
## 14026 C/o was attempting to handcuff inmate in the shower when his left hand went limp.
## 14027 C/o was biten by fire ants multiple times, multiple locations, hands, arms, legs, feet
## 14028 C/o was caught in the controlled slider door. C/o was hit in the back of the head and hurt thumb pushing the door back off of her.
## 14029 C/o was closing sally port gate and punctured his right middle index finger. ()
## 14030 C/o was conducting a locker search when the inmate became irate causing injury the the c/o's head and eye area ()
## 14031 C/o was doing search when I/m pushed c/o down. C/ofell to the floor hurting left hip, l leg, l foot, l shoulder, l hands, head, and neck. Dr Rtw 3/12
## 14032 C/o was making security check of domestic violencetrailer, slipped & fell on frostry handicap ramp.
## 14033 C/o was moving a water tank off the back of a pickup truck. The tank rolled on his left foot on top of his big toe.
## 14034 C/o was picking up lunch tray from inmate's cell &inmate spit in eyes.
## 14035 C/o was putting up target at firerange and sliced right index and middle fingers on the clip.
## 14036 C/o was responding to a disturbance on the yard. While running down stairs, he slipped and fell to the bottom, hitting his head and back.
## 14037 C/o was restraining inmate another c/o struck the baton hitting the back of his right thigh.
## 14038 C/o was sharpening a bush axe and two inmates wereholding it still, the axe rolled causing his rightmiddle finger to roll into the blade
## 14039 C/o was walking across grounds and stepped off thewalkway the wrong way causing her to fall and injury right knee.
## 14040 C/o was walking down steps from bridge of tag/duplicating and right foot slipped and twisted ankle.
## 14041 C/o whitfield stated a car pulled out from a driveway into oncoming traffic hitting the side of the bus.
## 14042 C/o williams was head butted by an inmate during a cell search
## 14043 C/o wilson was pushing cart on to the elevator in mental health west, the food cart smash her left hand between the elevator door and the food cart
## 14044 C/o worker & EE running w/crash cart to code 900. Wheels were not turning going down handicap entrance & ramp. Wheel rolled over toes on lt foot. ..
## 14045 C/o wright alleged that she was preparing coffe for herself, when she bent down to get some sugar from her bag the boiling water allegedly over.. ..
## 14046 C/o's found tattoo needles while handling it I received a stick of left thumb ()
## 14047 Cabinet door lock was not aligned-EE tried to align door with pliers-pliers slipped and stabbed EE lt hand
## 14048 Cabinet drawer jarred open and cabinet fell forwarhit leg on corner of cabinet drawer and cut rt legshin area
## 14049 Cabinet fell from wall onto EE striking her in theleft side
## 14050 Cable broke on liftgate of truck, food cart slanted on angle & EE attempted to keep food cart from falling using outstretched arm.
## 14051 Cable broke sending port in rt side of knee
## 14052 Cable in road caused EE to loose his balance and fall
## 14053 Cable line slipped out of its connection; injury to left hand
## 14054 Cadet brunce was participating in a defensive tactics. While performing a neck restraint techniqhe injured his rt shoulder.
## 14055 Cadet cerbone was participating in physical fitness training by doing a ground grappling technique with another cadet when he experienced pain in his left hip. ()
## 14056 Cadet fell on EE's left arm. After the exercises there were bruising and swelling to EE's arm.
## 14057 Cadet miller was participating in physical fitness training when he was holding a strike bag for a fellow cadet. The other cadet was striking the bag when they missed and hit cadet miller in the left side of his jaw. ()
## 14058 Cadet participated in the pe fitness training withthe cadets of 114 hwy patrol and informed trooper tafoya thta he was having pain in lt ankle 11/23
## 14059 Cadet rogers was participating in a physical confrontational exercise when he was struck in the mouth causing two of his teeth to become loose. ()
## 14060 Cadet was attempting to restrain EE during asp training with practice baton and landed on top of EE -EE landed on rt shoulder
## 14061 Cadet was doing active confrontation drills when he was struck in the head by the instructor and fell to the mat ()
## 14062 Cadet was doing active confrontation tactics drill when he was struck in the head and fell to the mat. ()
## 14063 Cadet was jogging in formation when they heard a pop in lower leg and fell to the ground. While falling to the ground rolled ankle.
## 14064 Cadet was participating in a training fitness as part of the basic school. Was running on roadway &stepped in a pothole and injured his foot.
## 14065 Cadet was participating in active confrontation tactics drill when he was struck in the head and fell to the mat. ()
## 14066 Cadet was participating in defensive tactics when stricking a heavy bag he recieved a cut on his right knuckle. ()
## 14067 Cadet was participating in the active confrontational tactics survival drill as part of the advanced def. Tactics when he recieved blows to the head causing a concussion.
## 14068 Cadet was taking part in active confrontation tactics when he struck the instructor with his left hand and felt pain. ()
## 14069 Cadet whitford was participating in physical fitness as part basic school was running when low leg started hurting. Notified school staff.
## 14070 Cadet wilson was participating in a tactic traininduring a dynamic arrest, cadet tried to handcuff ainstructor and felt sharp pain in rt shoulder.
## 14071 Cadet wsa handcuffing EE during training while EE was lying on the ground-EE felt pain in rt elbow when arm was pulled back
## 14072 Cadets were on morning pt run when 2 cadets started fighting-EE stepped in to break up the fight andinjured rt hand and lower back.
## 14073 Cafeteria worker opened pull down refrigerator door as EE was walking by causing EE to run into door contusion rt leg above knee lower back strain
## 14074 Calf came into sale ring, ran at EE--tried to stop & slid into right ankle. EE was grading feeder cattle. Spraing right ankle.
## 14075 Call to assit with out of control student; while restraining student empl was hit in rightknee & other staff member fell on his knee ()
## 14076 Called by client to check on swarm of bees at home. While removing bees with vail, gloves and smoker used
## 14077 Called for pic on 1 north at 1415 patient had to be restrained. 2nd pic called obese pt. Kicking & fighting in private parts & is very painful.
## 14078 Called to investigate motor vehicle crash, motorist extended hand to shake iw's hand, small dog jumped up and bit right ring finger
## 14079 Called to unlock door at the bottom of the bridge house & when climbing back up the stairs she fell up the stairs ()
## 14080 Caller reports iw was outside working, got hot, started having stomach cramps that progressed to the legs and iw could not walk. Iw was taken to er. ()
## 14081 Calling inmates to visitation officer wall went through slider door and had his left middle finger in the way of closing door. The door pinched off the tip end and nail of his middle finger. ()
## 14082 Came around bldg and tripped over stoop, fell forward on hands and knees
## 14083 Came around corner and ran into a file cabinet and cut left eye. ()
## 14084 Came around corner from unit 6 into room hit chair sitting slightly in doorway with rt leg and fell prone but initially hit on rt knee & left hand ()
## 14085 Came around tower one building and a bee stung on arm ()
## 14086 Came around work station and slipped on wet floor
## 14087 Came down road and stopped. Blow horn. Van backed into EE
## 14088 Came down stairs & turned felt a pop rt leg just below the knee area
## 14089 Came in contact w/ poison ivy while doing forest inventory.
## 14090 Came in contact w/ the tuberculosis bacteria whilein the congo on a business trip. His chest x-ray tested positive, but not active.
## 14091 Came in contact w/blood while helping young child w/cut knee
## 14092 Came in contact w/defendant at randolph county jail who was later determined to have contracted v. R. E.
## 14093 Came in contact w/poison ivy/oak during ground work
## 14094 Came in contact w/poison oak, touched face & neck
## 14095 Came in contact with MRSA virus.
## 14096 Came in contact with an animal.
## 14097 Came in contact with blood pumbing gas and there was blood on the pumb
## 14098 Came in contact with inmate that had TB
## 14099 Came in contact with poison ivy on rt lower leg.
## 14100 Came in contact with poison ivy while clearing research plots in sc. Rash is located on both arms and her abdomen.
## 14101 Came in contact with poison oak and is very allergic just even to be near it.
## 14102 Came in contact with something that got on hands causing redness, blisters and stinging
## 14103 Came in door of kitchen and slipped on wet floor
## 14104 Came in from outside activity, EE turned around to check on residents, resident scratched EE face resident is a hepatitis carrier
## 14105 Came into bldg. Floor wet, slipped falling hittinghands, knees and rt side on floor
## 14106 Came into building to pickup keys, started back out the door feet slipped on wet steps, trying to break fall, right hand left wrist hit iron rail
## 14107 Came into contact w/ subjects who state they were "carriers of TB".
## 14108 Came into contact w/defendant who was tested positive for TB by office contact & taking urine specimans for drug testing
## 14109 Came into door area & door closed up on me.
## 14110 Came on gradually, made worse by mousing with right hand. Right hand, wrist, fingers and arm up to shoulder. ()
## 14111 Came out of 2b from unloading a truck and slipped on ice
## 14112 Came out of office going down steps and right kneepopped. ***r/I # 148721***
## 14113 Came out of the control room stepped on the first step and slipped off of the first step
## 14114 Came through door & patient hit him in back between shoulder blades then patient & cna went to floor
## 14115 Came to a complete stop at the stop sign and felt a hard bump which came from the rear of the truck, a van had struck him on the passenger side.
## 14116 Came upstairs to use the bathroom, going down missed last step, left knee went all the way to chest ()
## 14117 Camera operator during a planned use of force when inmate threw an unknown liquid substance on her
## 14118 Camper slid off top bunk and landed on back of EE's head and neck. Neck and rt shoulder injured
## 14119 Can't explain. Got up and bathed and groomed and her wrist started to hurt around 9:30
## 14120 Canoe flipped on rapid on mayo river & landed on right shin
## 14121 Capping and opening tubes while pipetting numeroussamples.
## 14122 Capt states that as he was escorting I/m to seg, the inmate hit him in the chest & he responded with doc escorting technique.
## 14123 Capt sutton was showing self defense class how to get handcuffed inmate up & ofcr melvin simulated the inmate. Capt sutton twisted EE's rt knee..
## 14124 Captain was responding to an inmate disturbance and fell from the pepper spray on the floor ()
## 14125 Capture of fleeing defendant who was in officer's custody. Fell and EE landed on left hand & knee
## 14126 Car accident - EE was driving and was hit by another veh on the rear passenger side. ()
## 14127 Car accident - air bag deployed to causing injury to left forearm and right thumb. Also injury to chest and groin areas.
## 14128 Car accident -doing field work for probation ()
## 14129 Car accident -hit & run on greensboro interstate. ***************no subro hit & run*******************
## 14130 Car accident injured lt knee & neck. ..
## 14131 Car accident leaving conference. No physical injuries.
## 14132 Car accident while traveling through intersection muscle soreness bruising rt leg pelvic abrasions lt/rt legs ankle. Chest/x-ray bronchitis-inahaler
## 14133 Car accident while traveling to the office
## 14134 Car accident without injury.
## 14135 Car accident, accident occured at corner of lindsyst and dudley st, car ran red light and hit van eewas driving on front lft side,
## 14136 Car accident, on way to meeting in fayetteville fx index fgr & wrist, seatbelt burns, deep bruise on side
## 14137 Car accident- employee was on her way to pick up another co-worker who had dropped their state vehicle off for repairs. ()
## 14138 Car accident--in rental car. Lacerations, bruising concussion, head, chest, arm & hand.
## 14139 Car accident-was rear inded when attempting to navigate a lt. Turn.
## 14140 Car accident. Sprain neck/lumbar, myofascial pain.
## 14141 Car accident. Traveling from home courthouse to destination courthouse for work. Sprain ankle, bruised chest, ankle, stomach, extreme soreness.
## 14142 Car backed into EE while moving on the campus of john umstead hospital
## 14143 Car broke down on side of road. Stepped on a yellowjacket nest. Stung 12 times, arms, legs and chest.
## 14144 Car hit EE's vehicle causing him to hit another vehicle
## 14145 Car hit van from behind on w ash st I was a pass- anger in the van driver side, front seat. Lower back feeling sore.
## 14146 Car hydroplaned hitting cement median on I-40 westsingle car accident. EE was driving at time of accident.
## 14147 Car immediately preceing EE abruptly slowed to observe fire on adjacent bank of highway. Slammed on brakes
## 14148 Car in front her stopped abruply and she swerved to Miss End and ran into the ditch/yard.
## 14149 Car in front slammed on breaks causing several cars behind it to stop suddenly; EE was in the middle ()
## 14150 Car left road to avoid head on collision. Car ran into something and stopped suddenly.
## 14151 Car moving toward EE lost control, slid sideways EE drivers side struck other drivers side and their back door and tire.
## 14152 Car of anotehr individual crossed center line hitting EE's car head on. EE was passenger in state vehicle
## 14153 Car pulled in front of EE trying to make left turnthe vehicle driven by EE hit the car. EE felt painin both knees & left shoulder.
## 14154 Car pulled into path of her vehicle causing mva-stiff neck and back pa thomas west.. Liability atty not wc..
## 14155 Car pulled out and hit injured's car
## 14156 Car ran a stop sign hitting EE's state van on the right rear causing van to knocked to left medan. Neck.
## 14157 Car ran red light and collided with EE's car at intersection.
## 14158 Car ran red light and hit officer's car on the front left side, the other driver was cited for the accident
## 14159 Car ran red light hitting EE's car.
## 14160 Car ran stop light and hit vehicle in left front. EE working saturday w/inmates when it was time forhim to return to camp
## 14161 Car ran stop sign and EE hit car head on. Injuriesconsistent with a broken neck. Work#919-733-8390 **do not pay charges cbi for low back-not related*
## 14162 Car skidded out of control and hit guard rail.
## 14163 Car stopped at red light when it was rearended by another vehicle
## 14164 Car that EE was riding in was struck in the rear by another car.
## 14165 Car was coming up george st. To fast & EE was walking fast to avoid being hit, fell & hurt leg & ankle ()
## 14166 Car was struck when another car ran a red light. Neck, back right leg, right foot.
## 14167 Car wash detail- EE states that he was getting out of state vehicle and stepped down feeling a sharp pain in his rt thigh/groin
## 14168 Car wreck - back injury
## 14169 Car wreck, hit from behind sitting at stop light. ()
## 14170 Carbon disulfied seeped through latex glove while handling chemical in small vials
## 14171 Carbon monoxide exposure. Experience trouble breathing and heaviness in chest. Did not go to Dr. At first, thought everything was fine. Problems later
## 14172 Carbon monoxide poisoning due to construction going on in the building.
## 14173 Card catalog slipped off of cabinet that was beingmoved and struck EE in the rt foot
## 14174 Cardboard on pallet and tripped over pallet- twisting left knee and dislocating rt hip **ovpd -oow on ttd on another inj-08010093 $369. 68
## 14175 Caring for children in childcare-came in physical contact-developed rash-rt shin/lt foot/chest
## 14176 Caring for resident w/scabies
## 14177 Carla was opening a mailing box with scissors. The scissors and she punctured her lower forearm with the sharp point of the scissors. ()
## 14178 Carla was talking to a team member while standing. She turned to walk away and then quickly turned back. She had a sever back spasm and fell. On the way down, she tried to grab the desk but was unable to prevent her fall. ()
## 14179 Carlton was repairing a broken foot bridge and stepped on a nail. ()
## 14180 Carol was carrying surfboards when she hurt her neck.
## 14181 Carol was picking up a box with form inside and felt like she pulled something in her back. No treatment necessary. ()
## 14182 Carolyn was leaving 205 wilson street and as she the door and took her first step out, her ankle turned. Carolyn's right foot was injured. ()
## 14183 Carpal tunnel & tendonitis symptoms hand, shoulder & elbow
## 14184 Carpal tunnel from entering data on computer
## 14185 Carpal tunnel from sitting in chair too big for feet to touch floor ()
## 14186 Carpal tunnel from using computer 4-7hours a day in left and right wrists.
## 14187 Carpal tunnel from years of sign language and computer use
## 14188 Carpal tunnel in both hands
## 14189 Carpal tunnel in both hands from use of computer and keyboard.
## 14190 Carpal tunnel in both wrists from using keyboard
## 14191 Carpal tunnel in hand and wrist.
## 14192 Carpal tunnel in rt arm from right hand to right elbow.
## 14193 Carpal tunnel in wrists/hands/fingers/arms/shoulde **r/I# 149914- cataloged**
## 14194 Carpal tunnel injury to the left wrist.
## 14195 Carpal tunnel right hand
## 14196 Carpal tunnel rt arm, wrist, and lower arm.
## 14197 Carpal tunnel syndrom
## 14198 Carpal tunnel syndrome & metatarsal syndrome
## 14199 Carpal tunnel syndrome caused by work activities
## 14200 Carpal tunnel syndrome from opening medicine bottles
## 14201 Carpal tunnel syndrome from repetitive and excessive data entry with computer
## 14202 Carpal tunnel syndrome from using calculator, computer and writing. Carpal tunnel in right hand
## 14203 Carpal tunnel syndrome hand, wrist and arm.
## 14204 Carpal tunnel syndrome in rt hand wrist arm
## 14205 Carpal tunnel syndrome, tendonitis, golfers elbow
## 14206 Carpal tunnel syndrome-right and left hand and wrist. ()
## 14207 Carpal tunnel syndrome-right wrist
## 14208 Carpal tunnel syndrome. Severe pain, swelling and numbness in right hand, wrist and arm.
## 14209 Carpal tunnel syndromes in both hands from repetitive typing
## 14210 Carpal tunnell caused by repetivive use of hands doing clerical duties, I. E. Typing, filing etc. ()
## 14211 Carpel occurred over time w/repetitive motion. Computer and calculator office equipment
## 14212 Carpel tunnel both hands; developing over 3 yrs+ sleep apnea: possible air problem in office. Has not been oow
## 14213 Carpel tunnel caused by repetitive use of office computer keyboard and mouse.
## 14214 Carpel tunnel in hand. Right hand
## 14215 Carpel tunnel syndrome
## 14216 Carpel tunnel syndrome ()
## 14217 Carpel tunnel syndrome diagnosed as resulting fromfrequent computer use for regular job duties. Bilaterl ctr
## 14218 Carpel tunnel syndrome in both hands. EE states that daily activities which require use of hands ()
## 14219 Carpel tunnel syndrome of the right wrist has beena reoccuring problem for several years but has become severe in recent months.
## 14220 Carpel tunnel syndrome r hand. Ctr 2/5/02 per er, EE temp EE since 12/5/00 EE cell phone 910-262-5789**
## 14221 Carpel tunnel syndrome to right wrist
## 14222 Carpet being cleaned & was wet stepped off carpet onto tile, slipped fell and twisted back trying to catch fall. Back strain
## 14223 Carpet had been layed down over an approx. 2 inch hole. While walking across carpt employees high heel went through carpet causing fall.
## 14224 Carpet in hallway was wet and slipped when stepped onto breakroom hard floor. ()
## 14225 Carpet in office was wet from being shampooed, walked into office, and slipped and fell landing on r shoudler and injurying l foot
## 14226 Carpet was wet when EE approached stairs. EE fell and tumbled down steps. EE injured back and buttocks area
## 14227 Carried I foot step ladder up two flightso of stairs. As climbed lader to gain access to pilot house roof felt pop in groin region ()
## 14228 Carried binding machine to reade office, handle came off and the machine dropped, left hand was under the machine and was twisted as the machine fell to the ground ()
## 14229 Carried discharged patient's suitcase down stairs and then experienced pain in chest
## 14230 Carried ladder & head lamp purchased for consumer, stiffness and fatigue EE # at work 919 733 5897.
## 14231 Carried pampers to dumpster. When put them up in dumpster hurt back
## 14232 Carried patient's luggage to the dormitory, no cart available
## 14233 Carried vacuum cleaner down stairs strained upper back
## 14234 Carring a box of medication when the elevator dooropen, there was a large tray on the floor. View was obstructed stepped on tray, it slid, I fell
## 14235 Carring clothes down the steps missed last two steps ()
## 14236 Carring length of stell pipe, fingertip bruised when setting down pipe/contusion to right finger
## 14237 Carroll tried to remove dress from inmate's neck. Inmate assaulted carroll causing a bruise & bitingcarroll's right thumb and ring finger.
## 14238 Carry blackline on wildfire, set lit drip torch down to adjust radio. Fuel
## 14239 Carry box and door close causing shoulder pain
## 14240 Carryiing a desk down the steps and slipped ()
## 14241 Carryin a plate of food to cart, slipped on something that was spilled on floor, fell injuringback. Lega bent behind her causing back pain.
## 14242 Carrying 2 bags of trash down stairs from 2nd to 1st floor, fell down last step landed skinning knees & struck feet on steps. Foot/knee/back.
## 14243 Carrying 2 broken toilets from 4th floor and pain developed in his back
## 14244 Carrying 2 hss sections in basement. Caught left pinky finger in between steel and stud welder. ()
## 14245 Carrying 2 large bags of packages to be mailed, lost footing on ledge & fell on rt arm & hip. Injured rt hand, elbow & hip.
## 14246 Carrying 3 pans & slipped on drain, fell on her knee, face hit pans
## 14247 Carrying 4 boxes of individual salad dressings when she tripped over some bread racks sitting in floor w/right foot, causing her to fall
## 14248 Carrying 5 gal. Bottle of water up stairs, stepped on bottle & fell ()
## 14249 Carrying 5 gallon paint buckets to 3rd floor
## 14250 Carrying 50lb basket of fish injured back while lifting basket
## 14251 Carrying a 12x12x2 ft wooden block down slope, slipped on wet concrete and fell against bridge trapping left hand in between bridge and block. List injureis as: left hand thumb broken ()
## 14252 Carrying a 75 lb buffer up the stairs in leatherwood dorm and strained right shoulder
## 14253 Carrying a bed which fell apart causing employee to fall backwards onto back.
## 14254 Carrying a book&bag down stairs slipped and fell ()
## 14255 Carrying a box of civil records; turned to dodge people and something in knee popped. ()
## 14256 Carrying a box of drug screen supplies down to her office in the basement. When going down the stairs, she missed the last step and fell, hitting her knee. ()
## 14257 Carrying a box of paper for copying training material
## 14258 Carrying a box with form on top of box. Form slid and corner cut eye ()
## 14259 Carrying a bucket of rock-shoulder popped and started burning. List injuries as: left shoulder ()
## 14260 Carrying a bucket of water down steps & EE slipped& fell straining chest wall and low back
## 14261 Carrying a buffer machine on the steps when he suddenly heard a pop and he said he groaned in pain.
## 14262 Carrying a form & shoe got caught on a matt insidedoorway. She became off balance and fell forward hitting lft upper arm/shoulder. Finger caught wght
## 14263 Carrying a full backpack water pump on back, whileassisting with fire control on steep mtn slope. Back pain/verterbrae/pinch nerve/rt shldr/hand.
## 14264 Carrying a hard drive to the office from the trunkof the car, soreness on right side of neck and shoulder
## 14265 Carrying a heavy scaffolding system from 3rd floorto parking lot to load truck injured lower back
## 14266 Carrying a laptop pc and the pc was slidding out of right hand lacerated left forearm on a scrapper carrying while trying to steady the laptop.
## 14267 Carrying a large light fixture bumped into doorway-lacerated l. Hand between index finger and thumb.
## 14268 Carrying a pan across wet floor, slipped and fell.
## 14269 Carrying a table, tip of shoe was caught, tripped & fell on sidewalk, landing on knees, hands & armsinjured shoulders, mid. Finger, wrist & knees.
## 14270 Carrying a tool bag and laptop down mt mitchell trail from the building to the parking lot. Due to the steepness of the hill and the weight he was carrying he took a wrong step and felt a pull in his right upper thigh region. ()
## 14271 Carrying a/c grate to truck and put on the back oftruck; strained lower back
## 14272 Carrying an aggressive patient to restraints, twisted right wrist
## 14273 Carrying and lifting boxes into bldg pulled musclein left shoulder
## 14274 Carrying automobile tires by hand. Worker stepped on side of tire and twisted ankle. ()
## 14275 Carrying battery when battery acid spilled on his stomach and left wrist - minor burn to stomach and left wrist
## 14276 Carrying binders for mtg-walking down stairs & fell on back
## 14277 Carrying blankets down steps & felt pain in his lower back. Bundle weighed 50 to 60 lbs
## 14278 Carrying blocks up a ladder onto scaffolding
## 14279 Carrying bolt cutters on right shoulder and while taking it off used left arm and felt something tear.
## 14280 Carrying book to diet line, inmate pushing food cart collided with her striking her hand
## 14281 Carrying books from class to class has caused pain in left arm.
## 14282 Carrying bottle of germiscat(cleaning)spray-handlebroke, bottle fell, germiscat sprayed into left eye. Chemical/left eye.
## 14283 Carrying bottles of chemicals in arm, accidentaly squeezed bottle & it squirted into his eye & some went into his mouth.
## 14284 Carrying box and missed step lest footing
## 14285 Carrying box of food from program in friday bldg room. Food shifted causing left ankle to turn. Fell down two steps spraining ankle
## 14286 Carrying box of forms. Bottom broke & forms fell out. Tried to catch with hand
## 14287 Carrying box of manuals/materials for training over the weekend left neck/shoulder pain
## 14288 Carrying box walking down hwy, lost balance, stumbled, fell forward, landed on box/r knee, painlower back & shoulder
## 14289 Carrying box with student files in them, hurt low part of back
## 14290 Carrying box, hurt back
## 14291 Carrying boxed lunch for 12-15 people, misstepped & the box of bottled water on top shifted, shifted suddenly to keep from dropping everything
## 14292 Carrying boxes and equipment
## 14293 Carrying boxes and when staff got box from employee the strings from hoodie hit right eye.
## 14294 Carrying boxes full of files and knee popped ()
## 14295 Carrying boxes into office and tripped into desk, jammed left thumb. ()
## 14296 Carrying boxes of files to relocate to storage area and injured back
## 14297 Carrying boxes of files. Lower back.
## 14298 Carrying boxes of state test materials from campus life bldg. To manor bldg. ()
## 14299 Carrying case of light tubes down south stairwell lt foot rolled under
## 14300 Carrying cases of paint and tripped
## 14301 Carrying cash register into processing room when it slipped out of hands & fell on right foot
## 14302 Carrying ceiling tiles from building, wind blew tile debris into eyes
## 14303 Carrying charts to ward. Felt pull in left flank area & upper back.
## 14304 Carrying coffee descending down spiral staircase in elliott center misstepped on final couple of stairs & fell, twisted lt ankle/foot
## 14305 Carrying computer monitor to state gov't station wagon
## 14306 Carrying consumer groceries into kitchen when she slipped and fell twisting her l ankle
## 14307 Carrying copier to second floor
## 14308 Carrying core drill, tripped over equipment in hallway & fell. Core drill fell on top of employee's right wrist.
## 14309 Carrying dinner trays to top of stairs for feeding. As he was walking up the stairs, felt something in lower abdomen pull causing pain. ()
## 14310 Carrying display from basement floor to elevator out of elevator over to annex bldg when picked up case w/both hands pull in back left neck muscle
## 14311 Carrying doors
## 14312 Carrying drinks to 2nd floor, got to cell door and prepped tray against the wall, tray slipped leaving all the weight on his arm. Neck/shoulder hurt
## 14313 Carrying equipment from field site, tripped on barbed wire and landed on ankle and knee. ()
## 14314 Carrying equipment through woods to field site. Missed step on stump & twisted right knee.
## 14315 Carrying files. Tripped over rubber cover on wireson floor. Keep files from hitting hand floor. Hand & files hit right hand
## 14316 Carrying food opening door with elbow and door closed on foot, and fell on right knee ()
## 14317 Carrying food trays at feeding on north side to inmates ()
## 14318 Carrying food trays down stairs and left foot slipped and fell on left kneee.
## 14319 Carrying food trays down steps slipped at bottom of steps felt pop in back.
## 14320 Carrying food trays up stairs on eassex unit when left ankle twisted. ()
## 14321 Carrying food trays up stairs. Felt something pull in my chest. ()
## 14322 Carrying food trays up steps on segment east side and his back popped. ()
## 14323 Carrying food trays upstairs, when the trays beganto fall. While holding cart up injuried lower backemp set to return 9/10/08 her sch. Day to work
## 14324 Carrying gun in a hoister on rt side causing pain
## 14325 Carrying heavy box of books from bldg, pulled groin muscle
## 14326 Carrying heavy boxes fm poarch to warehouse.
## 14327 Carrying heavy trash bag
## 14328 Carrying inmate after inmate stated he twisted his knee (inmate on the ground) ()
## 14329 Carrying inmate files to the bus. Picked up files and pulled shoulder and neck. ()
## 14330 Carrying inmate jackets to desk, stumbled and fellby cubicles, hit head & right knee & fell to floorco-worker helped to her feet.
## 14331 Carrying interpretive box onto the ship. Tripped going down the gangway steps & hit his tooth & lipon box knocking tooth out. Lip & tooth.
## 14332 Carrying items that client's family member brought for birthday party; came by door and stepped into a wet puddle on floor and fell on right knee.
## 14333 Carrying items up steps, foot slipped off step, hit knee on step and fell
## 14334 Carrying large cage, leg lost grip and log fell onthe middle of right hand smashing middle finger
## 14335 Carrying large wooden table in lobby, student set table down before I was ready and experienced a slight pull, felt slight tweak in lower back. ()
## 14336 Carrying loaded food rack up stairs, felt slight twinge 3/4 of way up ()
## 14337 Carrying mail and box to building.
## 14338 Carrying mail basket from master control, slipped and fell landing on his back. Tile floor was in process of having old wax stripped off. Slick floor.
## 14339 Carrying mail from car when lt foot slipped on thebricks in front of the cal. Fell on both hands & knees.
## 14340 Carrying med jackets to hospital floor, slipped and fell trying to open door ()
## 14341 Carrying mop bucket up stairs-when sitting bucket down injured middle part of back.
## 14342 Carrying old printer from quest lab down the hill for lab courier to pick up.
## 14343 Carrying out training objective, started lifting &other staff did not carry his weight, pain in lower back
## 14344 Carrying out trash bags, down steps when her wrist became numb also tingle in left wrist
## 14345 Carrying pan of biscuits slipped and fell on greasy/wet spot on the floor ()
## 14346 Carrying parts of weight machine and hit another piece while caring and heard a pop in left knee. ()
## 14347 Carrying patient out of van, wheelchair patient unable to support himself. Lifted patient.
## 14348 Carrying piece of equipment across street. Made bad step & slightly strained back
## 14349 Carrying poles to work site and one slipped and he caught it hurting his back
## 14350 Carrying portfolio w/flip charts. Felt pain in lower back & hip area on right side
## 14351 Carrying pt's laundry in to their bedroom, slipped on tube of toothpaste laying on floor, injured right wrist when bracing fall
## 14352 Carrying pump and water hoses to basement of building #12 at garner road complex when he slipped on steps and fell hitting his back on the steps
## 14353 Carrying rock wind blew debris from rock into left eye
## 14354 Carrying roughly 20-22 dinner trays upstairs ()
## 14355 Carrying sedated cat, employee coughed and cart reached out scratched no warning. The cat was very mellow – not agitated at all. ()
## 14356 Carrying several bags containing books to return to transportation building; left foot turned on rocks and leaves and EE fell forward onto knees, catching herself with hands. ()
## 14357 Carrying several boxed materials to storage area across the room, when I bent over to put one box on table, felt a strain in upper back
## 14358 Carrying shelves downstairs and missed the last step on stairs, twisted ankle.
## 14359 Carrying sink & faled to see drop front building to sloop. Lost his balance and fell down steps to sidewalk
## 14360 Carrying small bag up stairs-tripped at top-twist left side landing on left side
## 14361 Carrying some items down stairs to lower level- fell forward landing down 3 wooden steps to carpeted floor
## 14362 Carrying something, walking on wet steps, slipped, fell on bottom
## 14363 Carrying stack of 8 food trays up stairs to top tier to feed segregated inmates strap holding together came loose, went down on r kneed to keep from falling ()
## 14364 Carrying supplies into building to conduct a class. She stepped from parking lot onto walkway & stumped toe on small part of walkway and fell forward hitting both knees on concrete and her forehead and nose on the first step going into building. ()
## 14365 Carrying supplies to another building, she stepped off sidewalk into a hole in pavement and fell on her left ankle and knee
## 14366 Carrying supplies, unlock office door, bent over
## 14367 Carrying table
## 14368 Carrying the ladder on his shoulder. Pain and knot on right shoulder.
## 14369 Carrying trash liner full of dirty microfiber cloth, when return to building felt pain on finger of right hand that now has a contusion. ()
## 14370 Carrying trash out. Lifting trash to put in dumpster. Felt pain in back
## 14371 Carrying trash to dumpster & hit side of her leg w/trash bag
## 14372 Carrying trays through gate and medal trays jammed into left side of ribs. ()
## 14373 Carrying trays up stairs snd escorting inmate-- injured right thumb and right knee, reinjured right thumb and right knee
## 14374 Carrying tub of mail when turned knee popped ()
## 14375 Carrying, raising & lowering canteen order that weighted approximately 40 lbs
## 14376 Cart bumped into EE leg and dropped onto her rightfoot and twisted ankle
## 14377 Cart came loose and hit EE on the rt knee
## 14378 Cart flipped while loading into van and hand got stuck and could not get out ()
## 14379 Cart full of trays ran over emp. Left foot
## 14380 Cart moved twisted left ankle while holding large ice bag
## 14381 Cart stopped and EE got out to see why, the cart took off and EE tried to catch it. Cart dragged EE and bruised his lt knee, and hit a parked car.
## 14382 Carton of tomatoes slipped out of hand while trying to open carton - sprain rt finger
## 14383 Case of books fell on left hand which began to swell and become sensitive to touch.
## 14384 Cassie left the classroom and was walking down the stairs. She lost her footing and fell 3-4 steps. She caught herself on the railing to keep from falling to the floor. ()
## 14385 Caster of the chair popped off, tilting the chair forward. EE hit the floor face forward. Lower backknees and left ankle were affeted.
## 14386 Cat being anesthesized for treatment. Cat struggledand got loose. Employee tried to hold cat. Cat bit hand
## 14387 Cat bit EE on rt thumb during xray proceduce.
## 14388 Cat bit EE on the rt index finger while EE was intubation it
## 14389 Cat bit EE while restraining and returning to cage on rt hand
## 14390 Cat bite - during restraining for echo cardiogram ()
## 14391 Cat bite EE on rt hand
## 14392 Cat bite to rt forearm during physical exam of cat
## 14393 Cat jumped on his lap & clawed deep into right leg
## 14394 Cat jumped up and scrtched my eye lid
## 14395 Cat scratch while physical examination by employee. ()
## 14396 Cat scratched and bit EE while conducting home contact
## 14397 Cat was being restrained by student while EE pill-ed it, cat moved enough to bite fingers. Right thumb.
## 14398 Cat was being restrained to remove a catheter and he broke free scratching EE's hand severely.
## 14399 Cat was let out of carrier by owner. Sandy restrained the cat then it bit her on the right middle finger and scratched her left forearm. ()
## 14400 Cat was on table, not restrained. I had my arms losely around him. He was not being restrained, justbit
## 14401 Cat was startled by barking dog and bit billie on right forearm. ()
## 14402 Catch in lt hip while doing walking exercising w/patients at exercise mall.
## 14403 Catching a falling resident. Felt pain in lower back
## 14404 Catching falling resident, twisted rt foot
## 14405 Catching turkey by ahnd to load out. Turkey wrenched lt arm & shoudler. Pinched nerve in neck.
## 14406 Cathy slipped and fell on newly waxed floor. ()
## 14407 Caught against inside wall of moving van when display panel shifted striking him on right templearea.
## 14408 Caught between bar gate door, door closed as EE walked through it. Caught in several minutes untildoor opened - ag # 05-2286
## 14409 Caught between inmate arm and food passage door trying to restrain inmate. ()
## 14410 Caught between object being moved. Right hand small finger fracture ()
## 14411 Caught falling client-client stiffened. Noted pain in back
## 14412 Caught finger in door as it closed.
## 14413 Caught finger in door with injury to middle fingerrt hand x-ray revealed fracture to middle finger -referral to raleigh hand
## 14414 Caught finger in electric file stamp. Ripped off half of fingernail on 4th finger of lt hand
## 14415 Caught finger in flie cabinet drawer when closing it ()
## 14416 Caught finger in gatehouse door. ()
## 14417 Caught finger in housing unit for the monitor fall on finger ()
## 14418 Caught finger in ironing board and cut finger ()
## 14419 Caught finger in the door latch while walking into office. ()
## 14420 Caught fingers in door
## 14421 Caught floor mat and twisted ankle/foot ()
## 14422 Caught foot in hook on laundry bag and fell hurting left arm
## 14423 Caught foot in plastic bag that was left lying on floor. Hit right hand on wall and hit hip on floor.
## 14424 Caught foot on chart rack, started to fall, caught herself w/leg twisting back ()
## 14425 Caught foot on pavement as riding motorcycle. Twisted foot backwards causing left knee pain. ()
## 14426 Caught foot on steps outside of dst building ()
## 14427 Caught hand on steel while loading boat. EE was wearing work gloves. Cut left hand index finger-- two stitches required.
## 14428 Caught heel of shoe in broken pavement, fell onto street to knees, then fell straight forward hitting left rib cage
## 14429 Caught held patient to prevent falling on floor
## 14430 Caught his hand in a pugmill machine used for mixing clay.
## 14431 Caught his rt foot on floor board as he stepped to the ground with his lt foot and also twisted his knee before he could get on the truck.
## 14432 Caught in path of 2 running students. Raised her hand to protect herself when one of students ran into her bending hand back
## 14433 Caught in pneumatic door leading into 216 when door closed it struck his right elbow
## 14434 Caught left hand in cable of sewer machine. Bent fingers back.
## 14435 Caught left little finger on shelf bending it backwards
## 14436 Caught left middle finger in padding machine while moving it
## 14437 Caught monkey in investigation, monkey bit EE's thigh.
## 14438 Caught patient beginning to fall & felt pain in lower back
## 14439 Caught right 3rd/4th finger between chair and edge of desk ()
## 14440 Caught right hand in kitchen door injuring fingers on that hand
## 14441 Caught right ring finger between 2 chairs when loading items in a truck. Contusion right ring finger.
## 14442 Caught right third finger in door of dorm as it was closing & mashed it
## 14443 Caught right thumb in floor buffer. The machine twisted her right thumb
## 14444 Caught rt hand (third finger) in door as exiting room
## 14445 Caught rt pinky finger between shelf & the door inmaster control.
## 14446 Caught rubber glove in trap door while closing traps on the cell doors
## 14447 Caught shoe on top of stairs and fell down 1st flight of stairs hurting lt ankle
## 14448 Caught thumb in between puller and belt on exhaust fans.
## 14449 Caught thumb in medical door
## 14450 Caught toe of right foot on top step & fell forward striking head on floor
## 14451 Caught toe of shoe on corner of desk, fell on left side catching self on left elbow to avoid hitting head on door.
## 14452 Caught toe on the lip door threshold, causing worker to fall on right side. ()
## 14453 Caught toe, possibly on cement crack in basement &fell forward. No known injury, report of incident only.
## 14454 Caugth falling client under her arm pits and twisted rt. Wrist.
## 14455 Caulking gun fell off ladder while moving ladder to new location, caulking gun struck EE's head which resulted in a laceration
## 14456 Caused by breathing asbestos fibers
## 14457 Caused by having to physically separate two fighting trainees grabbed one trainee and twisted to the lt to attempt to pull them apart
## 14458 Caused by repeatitive heavy lifting of handicap inmates in & out of vehicle & carrying heavy medical/unit jackets.
## 14459 Cc was operating a motor vehicle en route to the wilkes office. Her vehicle was rear ended and she struck her head on the headrest causing pain and muscle spasms. Subro
## 14460 Cc was visiting juvenile's home, when ft Dr Was opened dog tried to jump out. Mary reached out to stop dog from running, dog bit her on inner right wrist. Skin was punctured, bleeding occurred, and some swelling. Mary applied pressure, cleaned wound. ()
## 14461 Cdoming down wet steps outside of building to take trash to dumpster. Slipped on steps, twisted her left ankle
## 14462 Cdt to both hands and arms**total owed $887. 16** ttd overpayment $409. 20 (3/26/02-3/31/02) also didn't apply wait period 3/7-3/13 $477. 96
## 14463 Ceburn mangum was lifting the loading ramp on a trailer after unloading it and strained his lower back. ()
## 14464 Cecil was working with another employee on a prv repair, they had to grind out bolts. While using grinder, debris hit cecil in the eye. ()
## 14465 Ceiling being opened up in bldg when piece of material came out of ceiling and went into EE's left eye.
## 14466 Ceiling tile and board w/ nail fell where EE was eating breakfast and EE put rt hand up over head to protect it-tile struck EE in rt hand
## 14467 Ceiling tile at nsg sta. Leaked on carpet. Carpet was cleaned & fan dried. EE felt tightness in chest & shortness of breath.
## 14468 Ceiling tile fell on employee's head
## 14469 Ceiling was wet, section of ceiling collapsed on head of the EE hitting head causing a lump, neck muscles strained
## 14470 Cell cleaning c - block () slipped on liquid on floor
## 14471 Cell cleaning open up a trap for a inmate; when I came to f13 cell and open his trap like he ask me to so he could throw some trash out while he did that he threw liquid substance smell like urine that he threw in my face. ()
## 14472 Cell door would not secure, began pulling & pushingon the door, trying to secure. Felt burning in lt shoulder, it became very painful to move.
## 14473 Cell door would not secure, began pulling & pushingon the door. Felt burning in left shoulder & it became painful.
## 14474 Cell extraction as shiekld operator went into cubicle lost balance and slipped on pepper spray ()
## 14475 Cell extraction entry training trying to control inmate ()
## 14476 Cell extraction in segregation scratches to the inside right elbow, left side of face
## 14477 Cell extraction left hand was hit with the sheild ()
## 14478 Cell extraction right hand caught under the inmates foot ()
## 14479 Cell extraction shield pressed down on her foot. ()
## 14480 Cell extraction training
## 14481 Cell extraction training - EE not sure what caused injury to left knee ()
## 14482 Cell extraction training - extracting sgt. Poole out of cell ()
## 14483 Cell extraction training EE was shield man and fell on floor, twisted left leg. ()
## 14484 Cell extraction training and injured right knee.
## 14485 Cell extraction training inadverdently slammed into wall with the weight (team) of five staff members ()
## 14486 Cell extraction training while holding shield bumped into other officer ()
## 14487 Cell extraction training, after training he noticed leg was swollen.
## 14488 Cell extraction training, floor caught behind door, fell backwards, hurting right knee ()
## 14489 Cell extraction training, got cut on righthand from edge of the sheild ()
## 14490 Cell extraction training.
## 14491 Cell extraction training. C/o kelley was hit by the shield ()
## 14492 Cell extraction training; says she fell over a c/o & landed on their foot ()
## 14493 Cell extraction, I/m grabbed hand jerked right hand back took off gloves noticed my right finger was crooked, felt sharp pain my my arm
## 14494 Cell extraction. Unsure what happened in a cell extraction. ()
## 14495 Cell extraction; bitten by inmate ()
## 14496 Cell extraction; inmate ellis hill hit right thumb ()
## 14497 Cell extraction; officer mccoy fell on my back during the cell extraction ()
## 14498 Cell extration training/ lifting and carring a body from the holding cell to the shower ()
## 14499 Cell search of single cell #c-1; searching under mattress and was stuck by peice of metal in his right hand thumb.
## 14500 Cell searches and injury during a use of force ()
## 14501 Cell searches and pat down inmates ()
## 14502 Cement planter was open door to rec'ving. Walking out door. Several people were standing outside door steped around people, hit planter w/lt leg.
## 14503 Central prison EE experienced chest pain/tightnesswhile participating in pert team physical trainingw/ dop admin. Ems took to hospital
## 14504 Centrifuge lid support stay failed and smashed employee finger ()
## 14505 Centrifuge rotor lid came off during spin. Rotor shattered the tops of culture tubes containing b. Abortus causing an aersol. Exposure b. Abortus.
## 14506 Certification school trainer grabbed forearm and gave front forearm lock bringing him to his knees in a twisting motion onto cement. Strain back.
## 14507 Certifying calves for feeder calf sale. Accidentlyinjected vaccine in left thumb
## 14508 Cervical strain-left shoulder and neck
## 14509 Chad was walking down steps between 200 and 300 building and slipped on icy steps. ()
## 14510 Chain caught her foot as she was crossing over EE fell on her elbow
## 14511 Chain saw accident - cutting log the chain saw with cutting chain kicked back and cut through safety chaps and individual pants. Cut lt leg.
## 14512 Chain saw change cut right index finger ()
## 14513 Chair
## 14514 Chair EE was sitting in broke and EE fell and hit her head, injured back and hand she recently had surgery on
## 14515 Chair bottom fell and EE fell through, injuring low back and l side of neck.
## 14516 Chair broke & EE fell to floor injuring back
## 14517 Chair broke -EE fell to the floor, inj back/knee salary continuance EE - prev knee inj/surgery/ppd?
## 14518 Chair broke and EE fell. "iw is working - nlt " rtn apt 2-10-2005 *no form needed-med only conversion-only 19 filed*
## 14519 Chair broke and employee fell to floor. ()
## 14520 Chair broke and she caught herself and strained her back ()
## 14521 Chair broke that employee was sitting in causing her to fall on floor.
## 14522 Chair broke that employee was sitting in. ()
## 14523 Chair broke while claimant was sitting, causing him to fall to the floor and a screw in the chair scraped him under the arm. ()
## 14524 Chair broke, EE hit another chair-to prevent fall rehab nurse- linda logan 919-772-0185 rehab-logan- pager 704-581-2819
## 14525 Chair collapsed causing employee to fall on the floor
## 14526 Chair collapsed when I sat in it. Hurt lower back
## 14527 Chair collasped, EE fell to floor, teaching
## 14528 Chair collasped, EE fell to floor.
## 14529 Chair fell from moving hand cart on left foot
## 14530 Chair fell from under him while monitoring inmate dining room ()
## 14531 Chair fell into lower position as I was pulling towards desk, hit left knee on shelf under desk. ()
## 14532 Chair fell off of desk that EE was standing besideand it hit her ankle
## 14533 Chair fell on foot
## 14534 Chair fell on right hand
## 14535 Chair fell onto right big toe ()
## 14536 Chair fell out from under EE and hit EE on the head.
## 14537 Chair fell over while EE was sitting in it, causingher to fall on her posterior and right hand.
## 14538 Chair flew from under her and she landed on her buttocks
## 14539 Chair flipped and threw her into the floor striking head on drawer ()
## 14540 Chair hit divide in hallway causing back of lower part of broda chair to hit lower left front side of leg causing redness and bruising.
## 14541 Chair in break room was out of place and shoe heel caught on roller. ()
## 14542 Chair in master control caught on coat rack and turned it over and it struck me on left side of head. ()
## 14543 Chair in office work station causes back pain
## 14544 Chair jerked by patient out of staff's hand
## 14545 Chair leg broke & EE fell backwards. Injured knee/back/pain in left hip replacement. Knee/back/lt hip.
## 14546 Chair leg broke---- while sittingon chair leg broke and employee fell and impacted metal floor with back of head and body. ()
## 14547 Chair legs collapsed underneath him causing him to fall on floor injuring back. Pl-atty; thomas fitzgerald- 336-599-0211
## 14548 Chair mat slid causing EE to twist her knee and lower back
## 14549 Chair rolled and staff fell on rt buttock on the floor. ()
## 14550 Chair rolled back and EE sat down hard on the floor. Chair fell on top of EE. EE was handling records and faxing reports.
## 14551 Chair rolled backwards when employee sat down causing her to fall to floor. Right arm, left arm, left buttock are bruised. ()
## 14552 Chair rolled from under me as I tried to sit down(diag. Unit) ()
## 14553 Chair rolled from under while attempting to sit
## 14554 Chair rolled out from under EE causing her to fall
## 14555 Chair rolled out from under EE, contusion to back and left arm
## 14556 Chair rolled out from under EE. EE tried to catch herself by grabbing desk, r wrist scraped edge causing bruise to wrist.
## 14557 Chair rolled out from under her while sitting down and missed the chair and fell and hit her head on a bookcase
## 14558 Chair rolled out from under her; back, head, buttocks
## 14559 Chair slid and employee fell and hit the desk ()f
## 14560 Chair slid out from under EE and she fell on her right hand and knee,
## 14561 Chair slid out from under EE causing EE to hit floor, contusions
## 14562 Chair slid out from under, causing her to fall to floor on buttocks. ()
## 14563 Chair slipped back while sitting down, put hand down to break fall, hurt wrist---right.
## 14564 Chair slipped from under EE & fell to floor. Pulled back an hit head on computer table
## 14565 Chair slipped out from under him. Hitting jis leg on the chair.
## 14566 Chair slipped out from under me. I hit my head on desk causing large bump with alot of swelling. Also bruised both arms and right shoulder. ()
## 14567 Chair slipped out from under the EE when she went to sit down and caused her to fall on her left hip and both elbows. Contusions.
## 14568 Chair slipped while EE participating in tx therapymeeting and fell on floor.
## 14569 Chair staff was sitting in collapsed causing her to hit her head on the floor.
## 14570 Chair started to tilt, she proceeded to fall from chair, striking head on right side... Falling to floor, contusion head, shoulder, waist, buttocks
## 14571 Chair threw her in the floor. Community immediate care center sent her to granvile medical center (hospital)
## 14572 Chair tipped over and employee fell to floor ()
## 14573 Chair tipped over when I began to stand
## 14574 Chair titled over and there was no where for me to grab hold to fell between the chair and desk ()
## 14575 Chair tripped over on side I hit head shoulder hip and chain and fell to the floor
## 14576 Chair went from out from under EE
## 14577 Chair went out from under EE as he was sitting down
## 14578 Chair with casters slipped out from underneath himand he fell against a copier and then on the concrete floor.
## 14579 Chair with roller, slipped from underneath me.
## 14580 Chairs have rollers on them. When EE went to sit down, chair rolled out from under her, EE fell on floor. Fracture coccyx, numbness/tingling left leg
## 14581 Chancellor was carrying some folders and paper, used the stairwell, slipped and fell backwards, bounced down the stairs and hurt his back & side.
## 14582 Changed cages, reaching up to remove cages from top of a rack. Injured lft shoulder.
## 14583 Changed patient and laid down-started to lunch and felt like going to be sick. ()
## 14584 Changed resident-sat resident down in chair to brush teeth-resident grabbed left arm with both hands and twisted-pain from l elbow into hand ()
## 14585 Changed work stations and increased typing and sitting 8 hours. Left arm, shoulder & neck.
## 14586 Changin client-experienced back pain
## 14587 Changing a broken chemical line, liq laundry cleaner. The line had some break in it when EE twisted the line around it came out and onto him
## 14588 Changing a patient & he was resistive. Patient wouldn, t stand up straight. Hurt my back assistingpatient.
## 14589 Changing a patient, and felt strain in lower rightextremities.
## 14590 Changing a resident-resident stepped on r foot. ()
## 14591 Changing a room of animal cages, right wrist and hand
## 14592 Changing air filters on ladder lots of overhead work. ()
## 14593 Changing an air filter and pulled the cage open getting a piece of metal in his hand
## 14594 Changing ballast & burned brittlewire insulation got in eye
## 14595 Changing battery on clock. Standing in chair getting clock down, chair slipped & employee fell on counter top & injured right shoulder.
## 14596 Changing belts on stocking truck
## 14597 Changing blade on floor machine to dry up some water that had spilled, slipped/fell on wet floor, contusion to rt leg, lt arm
## 14598 Changing blades on mower and wrench slipped and smashed finger to the floor
## 14599 Changing cages
## 14600 Changing ceiling tiles - a tile fell and hit him on the head, he lost his balance and fell off of the ladder.
## 14601 Changing chlorine cylinder @ vista point treatmentplant & and a small amount of chlorine leaked out of the cylinder and was inhaled by EE.
## 14602 Changing client in bed with rail lowered staff got foot caught in protective padding on bed rail ()
## 14603 Changing client in bed; turning from side to side felt pain in right wrist after turning client over. ()
## 14604 Changing client on bed and rolling client onto left side; felt a pop in lower back and hip area. Sore and tightening up; strain/pop in back/hip area.
## 14605 Changing client pulled adhesive off depends it popped off and sprayed stool on staff's face ()
## 14606 Changing client's diaper and adjusting her in chair
## 14607 Changing client's shoes-looked up & client poked emp in eyes.
## 14608 Changing client, client hit EE with diaper, EE leaned backwards to prevent client from hitting again and noted pain in neck radiating into buttocks
## 14609 Changing client- client kicked EE in left knee. Contusion left knee.
## 14610 Changing client-placing client back into wheel- chair when chair moved and ran over emp big tod, breaking nail
## 14611 Changing client. Cleint grabbed emp. Left thumb & bent backwards
## 14612 Changing client. EE opened up disposable diaper and fibers from diaper flew into face
## 14613 Changing client; started to move client from side to side. Cliented tighten up while EE trying to turn client, EE felt pressure or pop in chest. ()
## 14614 Changing co2 tank & had propped up counter when someone came by & bumped access door causing it tofall & hit his lt side
## 14615 Changing compactor on ac unit. Right leg touched what was behind wire conduit. It was hot
## 14616 Changing compresor was starting up unit something blew in eye was wearing safety glasses also using coil cleaner
## 14617 Changing dressing on resident. Resident bit her onher arm
## 14618 Changing filter on reverse osmosis unit when pipe wrench slipped off filter housing, stricking EE in jaw
## 14619 Changing fitting on steel hydraulic line, line sliced thumb
## 14620 Changing five gallon office water cooler all weight was being balanced by extended left arm
## 14621 Changing flat tire, picked up flat tire to put it in back and felt sharp pain in lowr back that wentdown into EE legs
## 14622 Changing hvac filter on joof of isnn bumped head on steel beam ()
## 14623 Changing individual and he snatched away from staff and pulled arm that had a surgery 6 mos ago ()
## 14624 Changing inmate's dressing. Stuck finger with metal clip from dressing, drawing blood. Inmate has infection in foot, draining on dressing being remove
## 14625 Changing irrigation hydrant heads with 4 ft. Aluminum pipe wrench. In order for hydrant head to break loose the pipe wrench has to be hit with a hammer causing silver of metal on wrench handle. When picked up the wrench silver went into his hand ()
## 14626 Changing lawn mower blades, blade slipped, cuttingthe right forearm
## 14627 Changing light bulb and it broke off in hand
## 14628 Changing light bulb glass cover cutting hand. Cuts on both hands.
## 14629 Changing light bulb in offcie
## 14630 Changing light fixture in hallway, felt a slight prickling sensation under left eye, swelling and hurting
## 14631 Changing linen pad, pt hit EE on the right side of EE's face (eyebrow area) scratching EE ()
## 14632 Changing mouse cage when got some cage bedding in eye.
## 14633 Changing oil on boiler and while removing gum fromboiler makde contact with replacement gum which was placed on cart and replacement - bruiseed foot
## 14634 Changing oil on leaf blower. Struck hand on sharp edge
## 14635 Changing out a bad capacitor, EE took capacitor off & a hot oil type substance came out & went into his eyes
## 14636 Changing out trash 3 yarder at jefferson apartment when 3 yarder was moved the wrong way. I pulled it back the right way when I felt a pop in my left shoulder. ()
## 14637 Changing over from rover 1 to tower 1 and when getting out of vehicle stepped wrong and twisted his lower back. ()
## 14638 Changing paper on exam table when table end fell on right middle finger ()
## 14639 Changing patient & patient jerked
## 14640 Changing patient and patient became resistive causing EE to jam his hand back
## 14641 Changing patient in shower room
## 14642 Changing patient scratched l. Forearm ()
## 14643 Changing patient-holding bottom half up to clean and felt pain in l. Side mid back. ()
## 14644 Changing patient-patient scratched l. Wrist and arm. ()
## 14645 Changing patient-scratched on r. Forearm. ()
## 14646 Changing patient-stepped back and slid on clothes-fell-pulling r. Mid back. ()
## 14647 Changing patient. Patient became resistant. Grabbed EE's wrist and twisted it
## 14648 Changing position of drying racks & back fell down. Rack struck top of right wrist
## 14649 Changing post from c2 to ghi and was coming out of c2 down steps to gate and missed 3rd step from bottom, slipped down on bottom and lower back. ()
## 14650 Changing pt diaper. Something bit leg.
## 14651 Changing pt's diaper, urine splashed in left eye ()
## 14652 Changing pump in 269 water burned arm
## 14653 Changing racks when a pain in rt wrist started to hurt.
## 14654 Changing resident & noticed bump on right wrist that was very tender
## 14655 Changing resident & pulled right shoulder
## 14656 Changing resident and felt sudden pain in back andshoulder.
## 14657 Changing resident and resident fell back on EE's hand
## 14658 Changing resident and somehow abraded r. Forearm. ()
## 14659 Changing resident when rolling him, staff felt pain in right shoulder.
## 14660 Changing resident's brief-bent down to pull pants up-felt burning pain in low back. ()
## 14661 Changing resident's diaper. Turned flat to fasten it. He took his left fist and punched my eye glasses which hit me in my right eye.
## 14662 Changing resident, in bathroom, resident gripped employee's r hand, tightly, for approx. 5 minutes-upon release note pain ()
## 14663 Changing resident, resident resisted and finger popped.
## 14664 Changing resident, rolled him toward me, he started to fall from bed. Tried to catch him and felt pull in right shoulder.
## 14665 Changing resident, trying to pull him over on back to change him. On positioning thumb pulled back & EE felt sharp pain up his arm
## 14666 Changing resident- resident kicked in r. Upper eyelid. ()
## 14667 Changing resident-became agitated-grabbed r. Forearm and scratched ()
## 14668 Changing resident-resident grabbed left hand and bent left thumb back. ()
## 14669 Changing resident-resident scratched/opened incision line on l. Wrist ( incision due to surgery, had healed) with nails. ()
## 14670 Changing residents clothes and resident jerked. Injured back-while transferring resident from sower from bed to bed
## 14671 Changing residents clothes-on left side of resident-jerked/slung employee resulting in pain in r. Arm/shoulder and neck. ()
## 14672 Changing rinse aid for dishes, solution splatteredin left eye & on face
## 14673 Changing scalpel blade & stuck old blade into leftthumb.
## 14674 Changing several resistive patients & started having sharp pains in her wrist
## 14675 Changing sprayer tire and put the tire rod on the sprayer platform and the rod fell and hit the head and shoulder. ()
## 14676 Changing struggling pt and felt sharp pain in lower back
## 14677 Changing the in floor paint booth filters, had a sharp pain shoot up right leg.
## 14678 Changing tire and removing lug nuts and felt a pain in lower back
## 14679 Changing tire on highway after visiting client with engineer ()
## 14680 Changing tire on state vehicle when right hand wascut.
## 14681 Changing tires, he was loosing the lugs with a breaker bare, he used excessive force to loosen the bolts thus causing pain to his right shoulder ()
## 14682 Changing trailer on liter squad van ()
## 14683 Changing trailers at cape fear valley hospital. Door on trailer hard to open. Felt back pull trying to open trailer door.
## 14684 Changing trailers at cape fear valley hospital. Door on trailer was hard to open. Felt back pull trying to open door.
## 14685 Changing transmission in vehicle when some debris fell off vehicle into left eye
## 14686 Changing trash bag and was stung by a bee, had an allergic reaction.
## 14687 Changing trash bag in men's restroom cut left arm on trash can (metal)
## 14688 Changing trash can liners outside of building & was hit by insect on right hand finger.
## 14689 Changing water bottles, they were stacked too highstrain to chest
## 14690 Changing wheel seals on lowboy back area began to sting and hurt. This requires lifting and pullingof the tires and drums.
## 14691 Changing wiring on ceiling light. Tried to hold light up and connect wires at same time, was picking up light, when felt sharp pain
## 14692 Changing/cleaning patient in bed, patient was pushing very hard against me, felt pain in lower stomach, went to bathroom and saw blood. ()
## 14693 Chaning oxygen tank and twisted arm while lifting tank
## 14694 Chaning saftey netural switch on tractor, rachet gave all at once hand hit flat metal bend cutting hand middle finger nail.
## 14695 Charles was cutting a downed tree out of the road. The tree had poison ivy vine all through it. Sawing tree, sprayed poison ivy all over charles's and clothes. List injury as: right and left arms ()
## 14696 Chart fell on head; patient threw hot coffee on EE
## 14697 Chased after resident and felt pain in back afterwards.
## 14698 Chased patient who was fighting & when he caught student his knee gave way. Was released on 4-9-96
## 14699 Chasing a inmate that ran from his dorm to keep from being searched, tripped over monkey grass ()
## 14700 Chasing a juvenile, after an escape and stepped in a ditch and injured her left knee
## 14701 Chasing a suspect on foot. Jumped ditch & ran across a plowed field into a wooded area.
## 14702 Chasing after inmate, employee twisted right knee.
## 14703 Chasing client who had run out of activity room. Fell on left knee in hallway
## 14704 Chasing escaped prisoner out of courthouse, arrested prisoner and broke rt hand while effecting arrest
## 14705 Chasing fleeing suspect in foot pursuit. Jumped ditch and injured right knee
## 14706 Chasing fleeing vehicle. Rounded a curve lost control of patrol vehicle and was involved in single motor vehicle accident
## 14707 Chasing parolee. Tripped over wire fence
## 14708 Chasing patient, trying to escape, twisted r leg
## 14709 Chasing resident that was stealing food, knee gave out. Pain & cramping left knee.
## 14710 Chasing runaway student when tripped over log causing injury to left shoulder when he fell
## 14711 Chasing running patient. Pulled right knee & groin & poison ivy on both arms
## 14712 Chasing suspect and fell into hole in wooded area where trees had fallen
## 14713 Chasing suspect and slipped on curbing, causing leg to fall across curbing
## 14714 Chasing suspect and tripped going up steps and struck edge or door
## 14715 Chasing suspect on foot, forcing him to ground. EE chin struck suspect in back, chipped tooth
## 14716 Chasing suspect on foot, tripped and fell catchingbody weight on left thumb. Left thumb sprained.
## 14717 Chasing suspect thru woods & fell in briar patch scratching face, arms, hands, legs and injuring wrist
## 14718 Chasing suspect, agent tripped & landed on r knee and r hand.
## 14719 Chasing suspect, fell & hit asphalt roadway & rec'dswollen elbow & arm
## 14720 Chasing violation on foot. Caught violator & was attempting to handcuff violator when violator broke free to grasp
## 14721 Chasing violator on foot. Tripped over piece of debris in yard & fell on ground as result of this fall EE received an injury to left knee & foot
## 14722 Chasse was preparing to use drillpress; curran cautioned him that material support deck was not properly secured; chasse proceeded to use drill; as press went down, support deck separated from machine and fell across toes of chasse's right foot. ()
## 14723 Check & change patient became aggressive grabbed around neck-scratching both sides of neck. ()
## 14724 Check & change patient-agitated-patient scratched lower back. ()
## 14725 Check & change-hit employee with closed fist in l. Jaw ()
## 14726 Check & change-patient agitated- pulled left thumb backwards. ()
## 14727 Check & change-patient elbowed in r. Breast ()
## 14728 Check & change-resident started hitting and hit employee in back and pulled hair. ()
## 14729 Check & chg. Resident holding onto hands=dropped to floor-pain in back ()
## 14730 Check animal cages in animal rooms & lifting bag of feed-strain right hip
## 14731 Check cages, moved rack over, felt wrist pop. **prev-paid ppd to iw for 27. 5%/hand on 2/28/08**
## 14732 Check washroom on yard near rec. Area where weightlifting equipment was located, ran into one of thebars on bench
## 14733 Check/change patient aggressive-pushed employee back onto bed -pulled l. Arm muscle ()
## 14734 Checked clients blood sugar, attempting to put lancet in sharp container it was too full and finger got stuck through the glove by a used needle. ()
## 14735 Checked inmates working in back of kitchen turned to walk into kitchen, stepped on a wet mat & slip-ped & fell backwards
## 14736 Checking & securing the motor pool bldg. Located in the cedar building. While trying to lock door had to squeeze between file cabinet & furniture; walking sideways to exit other doorr right knee ()
## 14737 Checking a hose that was leaking and it blew out spraying water on him ()
## 14738 Checking a logging job and walking down a skid trail and an object flew into EE eye. Tried to rubit out & wash it out--no success. Object in rt eye
## 14739 Checking a puntoon boot and the metal roof collapsed and started to fall on a child. He grabbed it & strained his back due to the position he was in.
## 14740 Checking a refrigerant line when brushed against a hot gas line casuing him to jerk and hand hit fan blade cutting fingers ()
## 14741 Checking and changing cages, pain in right & left hands/wrist/arms.
## 14742 Checking and processing cultures. Catalase testing done outside biological safety cabinet ()
## 14743 Checking around for e/f dormclosed right hand in the door. ()
## 14744 Checking behind metal in maintenance shop & something bit him
## 14745 Checking blood sugar of inmates. One of 3 checked known to be hiv positive. Container not taken on cell block for disposal. Pricked right finger
## 14746 Checking boating activity. Holding on and wind blew something from other boat. Felt sharp pain
## 14747 Checking boiler room doors heard a boom and steam particles blew in right eye ()
## 14748 Checking class roster went to sit and chair rolled from under EE ()
## 14749 Checking clearance when tractor blade dropped and smashed finger on right hand.
## 14750 Checking client's tube placement when client spit in right eye. ()
## 14751 Checking cultures - looked at a media plate which was growing brucella canis ()
## 14752 Checking curfew of probationer. Switched dimmer switch on steering column from dim to bright light& lights went out. Slammed brakes & hit ditch
## 14753 Checking curfews and deer ran infront of vehicle. Applied brakes but unable to avoid hitting deer. Pushed forward causing strain to neck and shoulder
## 14754 Checking curfews by vehicle ()
## 14755 Checking dampers on an opened dorr and something got in eye
## 14756 Checking dining hall floor and slipped & fell
## 14757 Checking dishwasher soap pump; soap splashed into right eye ()
## 14758 Checking doors to multipurpose bldg that were unlocked on backside of building
## 14759 Checking dorm doors and slipped on wet steps, land-ing on buttocks and straining wrist as she tried to catch herself.
## 14760 Checking driver's card in parking lot of weigh station. EE reached into driver's vehicle to obtain card, small dog jumped from backseat and bit EE
## 14761 Checking facility perimeter, doing door check, climbing stairs. While doing facility checks, did a lot of walking and climbing. Later that night noticed right foot started swelling. ()
## 14762 Checking fence on min. Yard stepped in a drainage hole from horseshoe pit and fell. Lt hip & lumbar region lower right.
## 14763 Checking fence on yard & finger accidently hit razor wire & cut ring finger on left hand
## 14764 Checking fire doors in 42 bldg., handle was stiff, pulled down, felt something pull in back ()
## 14765 Checking fisherman and had put on boots to wade tolocation, began to climb 4 inch piece of metal. E e slipped causing laceration to lt thumb.
## 14766 Checking fishing license of 2 males. Pit bull was tied to tree at shoreline. After taking a few steps dog lunged and bit EE on lt forearm
## 14767 Checking fishing license requirements EE was bitten by a dog on lower lt calf of leg
## 14768 Checking folder and dropped paper on floor. Bent over to pick up and hit chair. Chair pushed bifocal lenses into left eye
## 14769 Checking food
## 14770 Checking for ice on sidewalks. Slipped on ice and fell. ()
## 14771 Checking gates on the yard when a bug into his lt eye
## 14772 Checking gates, slipped on dry leaves, injured right knee
## 14773 Checking his equipment in wooden box, was reaching into box and lid fell on his head
## 14774 Checking in a truck at sally port gate #2. Popgate opened and hit his shin on lower gate hold
## 14775 Checking in truck cargo, stepped up and pull up onto steering wheel with left arm and injury shoulder ()
## 14776 Checking inmate after he had been in a fight and I got inmate blood on me near an open cut on my hand. ()
## 14777 Checking inmates in during 2nd shift and hurt backwhen he lost his balance against the wall while opening the door in the kitchen area.
## 14778 Checking leak in 4" valve, bumped insulation, particles fell on employee. Later employee rubbed his eye getting the particles of insulation in it.
## 14779 Checking load of clothing in dryer. Stopped dryer. Front panel to lint trap fell forward striking his lt lower leg
## 14780 Checking location of assets on facility. Walking on uneven ground; rolled left foot on loose gravel. ()
## 14781 Checking main breaker to restore power - breaker shorted and blew out. ()
## 14782 Checking manifold on wall where chemicals are pumped to washer & some chemical leaked from manifold onto wrist just above glove
## 14783 Checking meat in oven while cooking and juice popped onto hand and hand hit oven rack causing burn ()
## 14784 Checking north yard for contraband. Took hat off to wipe his face & when placed hat back on felt sting on right rear side of head
## 14785 Checking o/side perimeter & picking up tower logs from tower 5, slipped off sidewalk and fell
## 14786 Checking offender curfew, bitten by spider ()
## 14787 Checking offender curfews, exited vehicle lt side (driver)stepped on broken concrete near city watermeter. My foot was wedged between the meter an
## 14788 Checking on a cv pass monitoring activities with inmate and cv sponsor fell down steps
## 14789 Checking on an individual, door was closing and struck arm on door handle ()
## 14790 Checking on fume hood; it was turned off. EE was exposed to chemical fumes. Woke up that night withbreathing difficulties
## 14791 Checking on inmate. Inmate was crying b/c of loss of her father. Spit as coughed in EE's left eye
## 14792 Checking on inmates on hallway, slipped on floor. Inmates were striping the wax off floor. Trying to get towel to use on the floor next to inmate
## 14793 Checking on intensive and intermediate cases with curfews. Walking up the steps at the residence my left knee gave out and became very painful. ()
## 14794 Checking on staff moving weight equipment to new location and hit the right outside part of his knee on a piece of metal piping that was sticking out on one of the pieces of equipment. ()
## 14795 Checking on the aftermath of an amusement ride accident. Traumatized by what he saw. ()
## 14796 Checking operation of the air handler. ()causing rash
## 14797 Checking outside doors in industry area when wind blew sawdust from collector into my eye. ()
## 14798 Checking outside of bldg. Tripped over water meterbox that stuck up out of ground and was covered with grass, fell
## 14799 Checking overhead storage area in dorm, lost balance.. Used lt hand to break fall.
## 14800 Checking pack-out containers for enterprise laundry inmates. While turning to put one down, had a sharp stabbing pain in lower left abdomen ()
## 14801 Checking paint job, ran into door with ankle. Right ankle ()
## 14802 Checking paperjam on copier and lower tray tumbled out of foot. Bruised right foot, contusionor right foot.
## 14803 Checking pool temperature, moved cord and cover, spider bite to r. Index finger. ()
## 14804 Checking razor in shave prep kit. Removed top off razor and cut her right thumb
## 14805 Checking restroom to see if supplies were needed entered rest room turned corner & slipped on puddle of water on floor. Landed on knee cap
## 14806 Checking seal of caisson. Rip rap shifted under foot. Grabed caisson in order to prevent fall. Outer lip caisson cut fingers. List injury as: left hand pinky & ring ()
## 14807 Checking security doors and mashed finger on righthand
## 14808 Checking security doors. Attempting to secure door & thumb of left hand got caught between stair rail & tension bar. Thumbed pinched
## 14809 Checking service line in dining hall and hit wrist ()
## 14810 Checking shower, slipped on soap
## 14811 Checking staff id's at t-1 when I pushed the door open when I heard a small pop and sharp pain in my right shoulder ()
## 14812 Checking switch on sally port gate when his forearm got caught in razor ribbon
## 14813 Checking temperature on waterbed; bent over to see temp control and was unable to see it, EE got on the floor to see and set temperature at that time. EE was unable to get up, asked staff to help her up and they did. Later felt a pain in lower right back
## 14814 Checking the bottom of door, punctured finger
## 14815 Checking the canteen door to make sure it was locked. Pushed and hurt rt shoulder.
## 14816 Checking the fence bent down to check loose clamp on fence EE moved hand & cut middle finger on the razor wire.
## 14817 Checking the rover equipment and when checked hand gun serial, the slide went forward pinching right index finger. ()
## 14818 Checking to make sure vehicles were locked. Walkedtoward van parked under port, not realizing there was a step down & fell down on both knees/hands
## 14819 Checking to see if barber shop at multi-purpose building was locked when he turned door handle cut left hand between thumb & forefinger
## 14820 Checking to see if door was locked (it was not). As door was closing, caught left hand in door. ()
## 14821 Checking to see if there was enough product for the lunch meal. Stepped over a shelf in the middleof the floor and tripped over it
## 14822 Checking truck in the sallport, slipped off the step on her rt foot and twisted her ankle
## 14823 Checking vehicles in/out institution in direct sunfor 2. 5 hours- heat exhaustion
## 14824 Checking vm messages; turned to leave desk and lt foot struck desk and EE fell on lt side
## 14825 Checking window unlatched window and it fell on his finger due to no spring
## 14826 Checking yard and security of building slipped on chapel steps which was snow covered ()
## 14827 Checking yard for metal, stepped onto pavement, slipped on rocks and fell
## 14828 Checking yard gates and locks had completed checks and was returning to adm. Building while walking up the steps fell and caught self on rt hand
## 14829 Chef donatelli pulled his lower back when removing a large mixing bowl from the stand mixer. ()
## 14830 Chemcial spilled on hands whiel putting supplies up. Chemical contact on both hands.
## 14831 Chemical bottle fell off shelf and splashed EE in eyes. ()
## 14832 Chemical container tilted while replacing cap and applying tape around cap.
## 14833 Chemical contents of a bottle fell & spilled on her legs. Inside of her thighs were burned by the contact.
## 14834 Chemical exposure due to floor renovation, glue/solvent being used to remove flooring.
## 14835 Chemical from a bottle that the EE was handling dripped on his left hand causing a burn
## 14836 Chemical from air conditioning repair on floor, EE slipped and fell ()
## 14837 Chemical hoods were not working properly. After months EE noticed signs of respiratory infection caused by the chemicals used in lab.
## 14838 Chemical leaked out of bottle & soaked employee's pants, causing burn on right buttock.
## 14839 Chemical mist sprayed in employee's left eye ()
## 14840 Chemical reaction contact while unstopping a drain
## 14841 Chemical spill - injuries unknown
## 14842 Chemical splash, (bleach)a bottle of bleach droppedon floor from cabinet & the lid popped off causinga splash back.
## 14843 Chemical splashed in eye when cleaning
## 14844 Chemical splashed in eye.
## 14845 Chemical splashed in r-eye while initiating research plots
## 14846 Chemical splashed onto when applying acephate pe sticide
## 14847 Chemical splatter, right eye
## 14848 Chemical spray splashed in rt eye while spraying contact cleaner on equipment
## 14849 Chemical that was being sprayed by my supervisor was blown by the wind into my face
## 14850 Chemical went into both eyes when spraying shower
## 14851 Chemicals got into right eye off spray bottle fixing to clean. ()
## 14852 Chemicals leaked out of his backpack sprayer onto his lower back. He became ill that night.
## 14853 Chemicals splashed on EE while cleaning sink
## 14854 Chemicals splashed on employee while cleaning a window style air conditioning unit. ()
## 14855 Chemicals were released through the barrell openinas EE attempted to remove chemicals to another ???
## 14856 Chicken pox on body
## 14857 Chief probation parole officer was in crdt training when she went to get up off the floor, hurt leg ()
## 14858 Child accidently kicked EE middle finger at joint of right hand when child turned a flip/ cartwheel
## 14859 Child jumped out of seat while having nose wiped &hit EE in chin.
## 14860 Child pushed her into a door using his foot.
## 14861 Child student sitting in EE lap, child jumped up & backwards hitting EE in chin & lower jaw, mouth forced closed quickley
## 14862 Child was attempting to run from another teacher. EE attempted to stop the student from running, the student's arms were flailing and his elbow hit EE
## 14863 Child was behind donna when he bit her on the back of the leg ()
## 14864 Child was being evaluated for autism spectrum disorder and bit staff person who was sitting close to him. Injury to l hand below the index finger. ()
## 14865 Child was struggling during team control exercise began biting, kicking & pushing. Child bit thumb &caused EE to fall, hitting head on corner of table
## 14866 Child wstanding in swing, took ch by hand to sit in chair and child went all the way down inst of the chair, I heard my back pop. Cld nt straighten up
## 14867 Children and women who attend program have been exposed to scabies. I have had direct contact with some of the women. ()
## 14868 Chile reached out and scratched EE face.
## 14869 Chiller plants spew waste water and chemicals intothe air which are breathed in. Working on regular job in the areas around these plants.
## 14870 Chiller shutdown alarm system activated and employee responded to reset alarm and chiler. No hearing protection used. List injuries as: right ear ()
## 14871 Chipped front tooth, accidentally was struck by a flashlight
## 14872 Chk & chg. Patient upset-rammed employee's l hand into light switch ()
## 14873 Chk. & chg. Reached w l. Hand to get cream-braced self w r. Hand-client moved foot-resulting in r. Thumb bending under r. Hand ()
## 14874 Chk/chg. - redressing resident-supporting resident's weight-resident turned to sit in wc-emp. Supported- r hand caught btw. Resident and wc. ()
## 14875 Choked, hair pulled, pulling head back and back strained when trying to get away from patient.
## 14876 Chopping entrance to canal thru brush to gain access to canal fan boat launch to other side stuck thorns agaist 1st knuckle
## 14877 Chopping onions when the knife slipped off the onion and employee cut his finger. ()
## 14878 Chris attempted to pick up a small chemistry scale with 10-100 mg precision that was sitting on the back counter. He thought it weighed 5-10 lbs and tried to move it. It turned out to be 35-40 lbs because they have large internal mass to damp vibration
## 14879 Chris was walking towards the pool gate to allow campers ot of pool. Hit top left of head on window awning. ()
## 14880 Chronic and constant neck pain and numbness
## 14881 Chronic back and neck pain when sitting at workstation. ()
## 14882 Chronic heavy use of pipets and lab equipment has started some pain in hand and wrist
## 14883 Chronic lbp s/p partial diskectomy plus new onset l upper extremity weakness and paresthesias associate with cerfical disc herniation and some cervica
## 14884 Chronic over use of shoulder in carrying training material to and from office via park & ride lot
## 14885 Chronic repetitive computer work using mouse and keyboard ()
## 14886 Cien 321 was very dusty, contaminated w/chemical materials. EE felt very fatigue, coughing with sinus infections and itching eyes
## 14887 Cindy went into the far right bathroom stall in the 2nd floor of the orb ladies bathroom and slipped and fell. There was an oily residue on the floor due to someone spraying “air freshener” which contains oil. ()
## 14888 Circumstances surrounding injury unknown to EE or staff accompanying EE where conducting quality sampling, loosened cartilage in left knee
## 14889 Citing cars in caph lot; tripped on ground cover and put hands out to stop(lt hand).
## 14890 City of marion volunteer firefighter alleges whileassisting ncdenr on a fire, she injured her right knee when she slipped on rough terrain
## 14891 Claim is denied - ganglion cyst from arthritis
## 14892 Claimant alleges he was removing a nail from a piece of wood and grabbed the board causing the protruding nail to puncture his right thumb. ()
## 14893 Claimant alleges she cleared the steps at the visitors center and stepped wrong, causing her to twist her ankle and fall on her knees.
## 14894 Claimant alleges she was reaching for an item on the stock shelves and as she turned around she fell to the floor. ()
## 14895 Claimant alleges she was using a box cutter to cut-out props for an event. The blade went through the material and cut her left forearm. ()
## 14896 Claimant alleges she was walking in hallway of the administrative education building when she slipped on wet floor and fell on her left side. ()
## 14897 Claimant cut his ring finger on his left hand on the stainless steel wall surrounding a light switch he was working on.
## 14898 Claimant cut index finger of right hand when wiping around the sink area (after washing her hands) ()
## 14899 Claimant dislocated her right shoulder while participating in a three (3) legged race as part of a team building exercise). ()
## 14900 Claimant experienced intense pain and tingling sensations in her right and left wrists while using the computer for her daily responsibilities 6 to 7 hours per day.
## 14901 Claimant fell down a step while exiting a building with a lightweight box, resulting in a left foot and ankle that was bruised and fractured.
## 14902 Claimant fell down the stairs and reported pain in their knees leg and neck
## 14903 Claimant fell down wet steps that had just been cleaned. ()
## 14904 Claimant fell on a wet spot on the concrete floor resulting in injury to her left hip, right knee and back. ()
## 14905 Claimant fell on her face after making a wrong step. ()
## 14906 Claimant fell on wet steps and landed on her elbow, hip, and knee
## 14907 Claimant fell while walking from her car to her building resulting in a scraped foot, bruised arms, bruised knees and soreness in her body. ()
## 14908 Claimant had 3 home visits in August in a client's home that was dirty with flies and pet ferrett with fleas loose in the house. On 9/22/10 she was diagnosed with scabies that she attributes to these visits. ()
## 14909 Claimant hit head while clearing a paper jam in the copier/fax and injured the left side of her head (temple) ()
## 14910 Claimant lifted approximately twenty (20) trash bags from a truck bed and threw them into a dumpster and felt pain in lower back
## 14911 Claimant lost her balance and fell resulting in inflammation in her ankle. ()
## 14912 Claimant mcguire claims she experienced pain in right hand, wrist and arm while typing on computer
## 14913 Claimant missed a step, while going down steps and fell resulting in pain and soreness in her right ankle, hip and back ()
## 14914 Claimant slammed rt. Shoulder against a concrete wall while assisting campus security with a suspect.
## 14915 Claimant slipped and fell while getting into their vehicle ()
## 14916 Claimant slipped on wet grass on a steep slope & fell resulting in a sprained left ankle and a left knee contusion. ()
## 14917 Claimant slipped on wet tile in the women's bathroom and fell injuring her left shoulder, hip and leg. ()
## 14918 Claimant stated that during christmas break her thumb, index finger and middle finger became numb after patting her daughter's back. ()
## 14919 Claimant states she was weeding and stepped on a rake she had laid down, the rake hit her in the right eye. ()
## 14920 Claimant states that while stripping a floor with a buffer, he slipped and fell injuring his right shoulder, arm and wrist. ()
## 14921 Claimant states while performing road work during his incarceration he was injured by a chain saw causing injury to his rt foot
## 14922 Claimant states: ()
## 14923 Claimant stepped on a tack, which went through their shoe and injured their left foot ()
## 14924 Claimant stepped on uneven pavement and twisted her right foot. ()
## 14925 Claimant strained left shoulder while trying to arrest a fleeing suspect.
## 14926 Claimant suffered a second degree burn on his left hand from a hot muffler while starting a pressure washer ()
## 14927 Claimant sustaineed injury to chest/ribs
## 14928 Claimant walked into the back corner of a a gator utility vehicle and hit his knee cap.
## 14929 Claimant was adjusting the monitor height at computer station and it suddenly released causing the top to the monitor to hit my front teeth chipping the top left tooth. ()
## 14930 Claimant was being transported in a dept of corrections van when a tractor-trailer struck the van from behind. Lt arm/back/head
## 14931 Claimant was bit by what she thought May have been a spider
## 14932 Claimant was bumped by another person while carrying boxes to the third floor during student move-in causing her foot to slip resulting in a sprain to her left ankle and a contusion to her lower left leg. ()
## 14933 Claimant was covering gym floor with tarp and was injured when one of the mats came off a storage rack and struck the heel of his right foot causing swelling and pain. ()
## 14934 Claimant was en route to raleigh for work related meeting. I collided with a vehicle who ran a red light at the intersection of hwy 903 & hwy 50 in kenansville. I was taken by ambulance to duplin general hospital. ()
## 14935 Claimant was giving a fellow officer some equipment and was injured by the teeth of the k-9 officer next to him resulting in a scratch on his upper right arm. ()
## 14936 Claimant was helping to lift a trailer to a van tow hitch and felt a pop in his lower back and legs resulting in weakness and stiffness. ()
## 14937 Claimant was injured by a needle stick while vaccinating a goat subcutaneously resulting in a swollen middle right finger ()
## 14938 Claimant was jarred by the mower while driving on unlevel terrain. Claimant began to feel pain the next day in his left shoulder.
## 14939 Claimant was kneeling down, setting up a banner when he felt a tightness in his right knee.
## 14940 Claimant was making a forced entry into an apartment to apprehend a fleeting suspect and injured his left shoulder. ()
## 14941 Claimant was merging on to highway 56 and was struck in the rear by another vehicle. ()
## 14942 Claimant was moving and hauling computer server cabinets weighing 300 lbs and suffered a hernia in the groin
## 14943 Claimant was operating a gator motorized vehicle on campus and was struck by a pickup truck resulting in injury to the left side of her face, arm and leg.
## 14944 Claimant was performing data entry and noticed pain in her left wrist and thumb
## 14945 Claimant was restraining patient, right hand was slammed into equipment, injuring right hand
## 14946 Claimant was returning from a meeting when a car exited a parking lot and impacted the passenger side of personal vehicle. ()
## 14947 Claimant was struck by a baseball while coaching a out of state game resulting in a fractured arm.
## 14948 Claimant was stung by a yellow jacket while driving a work truck. The claimant is allergic to bee stings and began showing swelling on his face. ()
## 14949 Claimant was stung on his neck and right arm by a swarm of yellow jackets while leaf blowing at an unused house owned by the university. ()
## 14950 Claimant was walking down the stairs and missed a step resulting in a fall on her posterior. ()
## 14951 Claimant was walking to his vehicle and unknowingly stepped in a hole covered by pine needles. He lost his balance and twisted his right knee. ()
## 14952 Claimant was working under something & when he got out, he hit his head on a piece of plywood. Hurt head ()
## 14953 Claimantfractured his right ankle when he stepped on a a step that gave away
## 14954 Claiming stairs (stairwell) ()
## 14955 Claims bone spur in neck caused by repetitive motion
## 14956 Claims injury to nerves and ligaments left thumb to wrist from repetitive motion-tearing pill packages, opening zip lock bags, using keys to open doors,
## 14957 Claims that he contracted MRSA from patient ()
## 14958 Claims while patting down inmates, noticed a discomfort in his back. Was extreme in short time, he states. ()
## 14959 Clamp on paper stack holder came down on left ring finger
## 14960 Claustrophobia-like panic attack-uncontrollable breathing, elevated blood pressure, seizure-like symptoms, loss of consciousness
## 14961 Cleaining floor, bent down to pick up trash, head caught edge, laceration to head
## 14962 Clean isolation room, exposed to scabies
## 14963 Clean mats in men's shower when she stood up felt something pop in her back. Lower back
## 14964 Clean pipette broke in her hand, penetrating her right index finger
## 14965 Clean up for a staff meeting, while moving furniture, tables. Her left wrist was hurt, caught between two tables ()
## 14966 Clean weight room floor with scrubber machine & spin 20 upon completion while moving scrubber up ramp-storage noticed a slight pain in back muscle.
## 14967 Cleaner bottle fell off table caught it with left hand & weight made my upturned left hand slam against floor. Then tried to open bottle & had no sen
## 14968 Cleaner fell into mop wringer nad EE wrung out mopcleaner squirrted into eyes, mouth, face
## 14969 Cleaner had been sprayed on 9th floor around the bathroom floor and elevator perimeter. No signs were out and mary slipped when she came around the corner. ()
## 14970 Cleaner stored in janitorial closet caused asthma attack; extremely strong odor. ()
## 14971 Cleaner was poured into empty level-when trap was reopened vapers came out causing irritation to eyes, nose and lips.
## 14972 Cleaniing solution slpashed on chin and lip when staff was dispensing it ()
## 14973 Cleaning & rearranging boxes in freezer
## 14974 Cleaning 20 refrigeration--purple substance, later discovered substance was a heavy metal irritant. Chemical splash to eye and skin irritation.
## 14975 Cleaning a chair for mildew, mixed mildew cleaner with bleach, cause me to have difficult breathing ()
## 14976 Cleaning a desk ()
## 14977 Cleaning a hood and underneath the hood it is very sharp, slicing EE's rt hand
## 14978 Cleaning a refrigerator mistaken looked up and bumped eye on the corner of face. ()
## 14979 Cleaning a room filled with mortar dust. Left eye redness.
## 14980 Cleaning a rowboat on mechanical boat lift, while lowering boat she let go of crank, under weight of rowboat crank struck right hand twice
## 14981 Cleaning a window when I accidentally cut my right ring finger with the scraper ()
## 14982 Cleaning air/heat unit coils got coil cleaner on right leg causing chemical burn. ()
## 14983 Cleaning an inmates hands that had blood on them. Inmate washed her hands- fling hands in the air todry them off -fluid hit staff face. Eye, neck.
## 14984 Cleaning and fell about 2 feet from a ladder landed on r. Arm & ankle
## 14985 Cleaning and moving 55 gallon barrels full of oil.
## 14986 Cleaning and moving boxes in workspace and a protruding nail on the desk punctured lft hand ring finger.
## 14987 Cleaning and removing wtr frm floor slipped and fell and jolted back.
## 14988 Cleaning around dumpster, metal cut lt index finger
## 14989 Cleaning around log cabin exterior when bit on left wrist by fire ants. ()
## 14990 Cleaning around radiator & wrist accidently touched hot radiator
## 14991 Cleaning around scrubs, picking up trash, cutting limbs, grading. ()
## 14992 Cleaning around sink and lt pinky finger jammed into knob
## 14993 Cleaning aroung dryer, pulled dryer out to clean behind felt something pull in neck.
## 14994 Cleaning at old library spraying greased lightening cleaner; lost breath went to ross building still short of breath; worker called ems.
## 14995 Cleaning away metal shavings-safety glasses were worn but metal flake entered eye
## 14996 Cleaning bahtroom, cleaner went into my left eye
## 14997 Cleaning baseboards. Pain to right hand and elbow.
## 14998 Cleaning bathroom & started itching
## 14999 Cleaning bathroom, employee bent down to clean bottom of a toilet & felt a pulling and pinching in her back ()
## 15000 Cleaning bathroom, light fixture fell on employee's head. ()
## 15001 Cleaning bathroom. Something flew up her pant leg & bit or stung her pulling her hand & shoulder
## 15002 Cleaning bathrooms stepped on soap and slipped hitting her right knee on the partition very hard
## 15003 Cleaning bathrooms when her nose, chest, & throat began to hurt. Treated for chemical exposure.
## 15004 Cleaning bathrooms with chemicals- chest issues
## 15005 Cleaning bed rail. Came down & struck left thumb
## 15006 Cleaning bedroom-patient scratched r. Arm ()
## 15007 Cleaning behind control desk to kill ants w/comet-wiped right eye. Comet residue from hand in eye caused inflmation a few days later
## 15008 Cleaning blackboard and cut right hand and forearm ()
## 15009 Cleaning blower filters and piece of trash blew into eye
## 15010 Cleaning bottom bunk bed & raised her head to clean top & failed to move far enough to avoid bumping her head
## 15011 Cleaning brick sign w/ acid using brush, wind blew asid fumes into face burning mouth and tongue
## 15012 Cleaning brick wall with 707 and tile grout. Fumes of the chemical began to burn my eyes.
## 15013 Cleaning broken glass on window seal on chall by shower
## 15014 Cleaning brush along the fence line in bridge forestry service, came in contact with the poison oak/ivy
## 15015 Cleaning buergrouth at storm drain. Brushed against infectious plant (poison ivy/oak)?
## 15016 Cleaning bulletin board and when speaking to other staff, staple from board popped into her mouth.
## 15017 Cleaning cabinet in b-4 dormitory sharp silver metal object stuck underneath right index finger
## 15018 Cleaning cages in an isolator of mice, standing onstool. Stepped off stool to the floor and had painin rt knee. It twisted a little. Rt knee strain.
## 15019 Cleaning cages inside isolator-right wrist began hurting
## 15020 Cleaning canoes in boathouse when she stepped on broken tie-off cleat. Minor abrasion to bottom of her left foot.
## 15021 Cleaning cart, pushed cart back, caught hand between cart and refrig.
## 15022 Cleaning ceiling light fixture, splash in face. Face/eye
## 15023 Cleaning chemical containing lye accidentally fell into mop bucket containing water and bleach produced vapor that produced respiratory irritant ()
## 15024 Cleaning chemical splashed into EE's eye
## 15025 Cleaning classrooms & getting chewing gum from chair felt some pain & har back began to give her severe pain
## 15026 Cleaning client's finger with an alcohol pad when client bit EE's right arm. ()
## 15027 Cleaning client's teeth w/ ultrasonic scaler, client grabbed instrument and cut EE's rt thumb
## 15028 Cleaning client, changing attends, putting fittingsheet on bed right thumb struck sharp metal wire protruding from mattress.
## 15029 Cleaning client, client came up and bit employee on the rt breast.
## 15030 Cleaning cooking pot when stainless steel drain spout fell off top of pot hitting EE in foot. Fracture to right big toe
## 15031 Cleaning cooper pipe w/sanding cloth. Sanding cloth did not slide around pipe, right index finger cut on end of pipe
## 15032 Cleaning counter when EE pants caught on the counter, she fell and hit her forehead, nose and both knees
## 15033 Cleaning counters with solution with rubber glovesand rag/hand
## 15034 Cleaning dayroom-picked up chair to move under table. Chair slipped from emp. Hands and landed on right big toe
## 15035 Cleaning debris from a trail and debris entangled and snap back striking the right hand. Resulted dislocation of right middle finger. ()
## 15036 Cleaning dental area and reached for air/water syringe. Bur on hand, piece stuck in my left hand. ()
## 15037 Cleaning dog facility. Realized he had left door to treatment room open. Dog ran by, and he turned to catch her. Slipped on wet floor.
## 15038 Cleaning dorm rooms, picked up spray bottle with chemical, hand slipped, hit nozzle and sprayed lefteye
## 15039 Cleaning drain from under cabinet using hand auger machine when I felt a pull in the middle of my back.
## 15040 Cleaning duties (sweeping, vacuuming, spraying cleaning chemicals) has caused EE's right hand to go numb
## 15041 Cleaning exhausted fan when the belt cault the endof my finger. Then pulled the skin from around thefinger nail.
## 15042 Cleaning exhibit w/bleach on sprayer bottle. Nozzle became clogged and bleach splashed in eyes
## 15043 Cleaning exhibit. Fell bruising knee, right elbow and soreness in neck
## 15044 Cleaning feces from cell wall and door. The floorwas wet and slipped and fell catching arm on cell door. Fell on hip.
## 15045 Cleaning fence on vindo. Exposed to poison ivy
## 15046 Cleaning file room, tripped on file box, hit head on hand truck, broke glasses
## 15047 Cleaning film processor and lifted lid six times
## 15048 Cleaning floor trough in riddick labs when metal plate fell on right hand
## 15049 Cleaning garbage disposal when another EE turned it on
## 15050 Cleaning garbage disposal/dish machine, cut on right hand. Was not wearing gloves.
## 15051 Cleaning guest room. Guest moved phone & she tripped over the cord
## 15052 Cleaning gutters on top of chancellor house, slipped & fell on patio
## 15053 Cleaning horse, horse shifted his weight causing weight to hit shoulder
## 15054 Cleaning ice and snow off state vehicle walking around to other side slipped and fell landing more on his r hand/arm.
## 15055 Cleaning ice machine and when I stepped down I felt a pop in left knee behind knee cap. ()
## 15056 Cleaning in carpentry shop he got something in his left eye, which began to irritate about an hour later
## 15057 Cleaning in shower room-turned to go but right foot twisted and went under leg.
## 15058 Cleaning inmate's teeth when scaler went through glove breaking skin. I/m mouth slightly bleeding.
## 15059 Cleaning inmates wounds and was kicked in the groin and lower abdomen. ()
## 15060 Cleaning instruments after seeing a patient ()
## 15061 Cleaning lab area, bent over to remove metal tablebase, experienced sharp pain in lower back.
## 15062 Cleaning lab cabinets, bent down wiping off front when sharp pain was felt in lower back and down leg.
## 15063 Cleaning lab. Corner of sheet metal on shelf cut his inner rt forearm above wrist
## 15064 Cleaning leg of sofa, placed hand under sofa to wipe away a web, then was bitten
## 15065 Cleaning library and told need to get rid of green chairs - went to get one from my office and pushed it to the conference room - then took chair from library to my office, felt pain while pushing chair ()
## 15066 Cleaning limbs form falling tree. Was picking up limbs and stepped on a limb under the leaves and it threw balance off, struck elbow on object ()
## 15067 Cleaning men's bathroom, door closed on my left hand and wrist ()
## 15068 Cleaning microtome cutter, cut from blade. Cut left middle fignertip
## 15069 Cleaning mop bucket... Aftr mopping up spilled water in lab.... Cut left left thumb on glass sliver inmop bucket wringer
## 15070 Cleaning mouth of client with mirror & explorer inright hand, stuck left palm with explorer
## 15071 Cleaning nurses station & was bit on rt-side of face unsure of what bit EE. No treatment admisterd
## 15072 Cleaning off station desk with bleach which splashed into left eye ()
## 15073 Cleaning office after renovation, the date/time stamp fell off the stand falling on employee's left foot ()
## 15074 Cleaning oral surgery tray, stuck by needle ()
## 15075 Cleaning out a drain line and cut hand ()
## 15076 Cleaning out accounting files & put some on floor. Picked them up thumb & wrist came in contact w/ carpet & rash developed
## 15077 Cleaning out ash urns. Bee stung her on lft upper arm
## 15078 Cleaning out cabinets in work space, restocking necessary items. Turned around and stepped over trash cand and foot got caught in dental cords on cart. Fell to floor on knees. ()
## 15079 Cleaning out candle was from glass candle holder candle holder broke & cut middle finger on her right hand
## 15080 Cleaning out contraband cabinet & lifted a small trash bag with a tatoo device needle inside, as helifted the bag the needle stuck him in rt finger.
## 15081 Cleaning out file cabinets--bending, reaching, lifting. Left lower back sprain & muscle spasms.
## 15082 Cleaning out his room, was lifting file cabinet and twisted on him ()
## 15083 Cleaning out lint in dryer; got up to put in trash can; as EE got up hit head on the corner of the dryer. ()
## 15084 Cleaning out seat of chair w washcloth-r middle finger got hung in washcloth & bent backwards.
## 15085 Cleaning out steam funnel using large fan, dust blew I nface & ears
## 15086 Cleaning out windows in bathroom, dust or "trash" fell in left eye.
## 15087 Cleaning outside debris at the greenhouse. ()
## 15088 Cleaning oven in martin village sprayed oven cleanger in eye
## 15089 Cleaning pipe in engine room when rust broke off and fell into eye
## 15090 Cleaning poison ivy from playground ()
## 15091 Cleaning pope with drill brush and a piece of wire fm brush came off and went in to EE's right arm.
## 15092 Cleaning pots with scrub pad and ajax, slipped, something went in left eye
## 15093 Cleaning pt chair light collapsed on me ()
## 15094 Cleaning refrigerator out in segregation. Pain in shoulder, arm, hip & stomach
## 15095 Cleaning resident-resident twisted away causing eeto strain back
## 15096 Cleaning restroom and vacuuming using left hand to replace using right due to brace on right hand. ()
## 15097 Cleaning restroom and while opening door, jammed thumb between wall and door
## 15098 Cleaning return air grille in gym. Was cleaning w/brush on extension pole. Had arm extended, sweeping brush side to side. ()
## 15099 Cleaning room & was pulling map holder to roll back in it's case and map fell & hit EE on top of his head
## 15100 Cleaning room down & change mice's cages. Mice cage fell om drain hole. Was holding rack up to keep animals from falling over on her & to floor
## 15101 Cleaning room, stood up and hit head. ()
## 15102 Cleaning salad bar, bent over to put up food item and turned around toward kitchen area and tripped over a rubber mat on the floor. ()
## 15103 Cleaning shelves in mailroom
## 15104 Cleaning shower & feet were wet, stepped onto waxed floor surfece. Feet slipped & fell on back
## 15105 Cleaning shower and slipped on the hump in the floor
## 15106 Cleaning shower-went to throw water in shower feltpain on left finger
## 15107 Cleaning sink fixture in restroom when twisted her wrist it began to hurt
## 15108 Cleaning solution from carpet cleaning machine, fell back against his leg causing an abrasion
## 15109 Cleaning solution got into eye
## 15110 Cleaning solution splashed in employee's eye whileshe was cleaning top part of shower curtain.
## 15111 Cleaning spider webb from underneath the officer's station. EE stated she never saw spider but noticed a red spot on rt hand
## 15112 Cleaning spider webs outside colvard exit door. Noticed mark. Then small blisters
## 15113 Cleaning spiill microbiological media from under the autoclave, and discovered a previous spill that was not cleaned peroperly. She was cleaning spill. ()
## 15114 Cleaning stairs, pulled something in hand/arm
## 15115 Cleaning stariwell lost balance caught himself to keep his head from butting railing then felt some-thig on the back of head the next morning.
## 15116 Cleaning station; slipped on sheet metal and fell backwards onto bag rack and concrete pad
## 15117 Cleaning stove hood and dust or something fell into left eye.
## 15118 Cleaning strings from the laundry cart wheels and pulled one of the strings to hand
## 15119 Cleaning student move-out apts. Chemicals splashedin right eye.
## 15120 Cleaning student rooms lifting bedrails, head and foot boards and moving furniture hurting upper back
## 15121 Cleaning supply room got dust trash in left eye.
## 15122 Cleaning tables with cleaner, mozzle on the bottle broke and the cleaner sprayed into face and right eye.
## 15123 Cleaning the a/c unit from behind the science building I was bit by some type of insect ()
## 15124 Cleaning the bulletin board in personnel office lifted board off wall and it slipped out of my hand falling on top of great right toe. ()
## 15125 Cleaning the cells where the inmate set the cell on fire 06/17/2013, black ash was in the cell ()
## 15126 Cleaning the day room - she bent over to pick some trash off of the floor and could not stand up
## 15127 Cleaning the operatory after patient treatment. Turned while seated on assistant chair, hit right knee on moble cabinet edge. Right knee.
## 15128 Cleaning the pill cutter the razor in the cutter cut the index finger and thumb on the right hand ()
## 15129 Cleaning the shop when spider bit his left forearm
## 15130 Cleaning top of kettle pot-water on floor-slipped and fell-l. Wrist painful ()
## 15131 Cleaning tub after bathing patient-shoe got trapped in the brake on tub-floor wet-while trying to free shoe-fell backwards landing on r. Hip/buttocks- pain radiating down into r. Ankle. ()
## 15132 Cleaning under conveyor belts. Injury to r eye. ()
## 15133 Cleaning under furniture, stood up and struck head on tv cabinet resulting in headache and dizziness. ()
## 15134 Cleaning up a spill from around the washing machine- moved washer and the lid slammed on index lt index finger.
## 15135 Cleaning up after alumni day, tripped on ramp @ kirkman house back door entrance. EE fell & hit head, causing concussion and soreness/back pain. ()
## 15136 Cleaning up after cell search. While cleaning up trash by cell g-10, I was stuck by an object in the form of a needle. ()
## 15137 Cleaning up after lunck. Taking dirty table clothes out of laundry area. Turned around & fell
## 15138 Cleaning up after patient. Picked up paper bag explorer was sticking thru. Injury to right fourthfinger
## 15139 Cleaning up after student event, fell while going down steps, carrying a box. Left elbow.
## 15140 Cleaning up arboritum across hull. Tick bit leg
## 15141 Cleaning up around construction site and cut finger on metal
## 15142 Cleaning up bags of boxes stacked on desk extension flipped about lft hit right ankle ()
## 15143 Cleaning up debris from hurricane fran & came in contact w/poison ivy
## 15144 Cleaning up hurricane irene storm damage at office, employee came in contact with poison ivy. ()
## 15145 Cleaning up limbs around office. Found on right side. Became sick a few days later.
## 15146 Cleaning up programming area in classroom lifted a box of records - injured back.
## 15147 Cleaning up shop when soemthing stung my leg. So I hit my pant leg but didn't see anything. ()
## 15148 Cleaning up spill ()
## 15149 Cleaning up spilled water, slipped & fell. Injured rt hand & lt leg.
## 15150 Cleaning up the restroom. Backed out of stall her arm brace caught on the handle causing fall *** treating lbp on this claim only*** tricia roys
## 15151 Cleaning up tree debris, dragging brush when thorn stuck employee in right hand palmar, 4th finger. ()
## 15152 Cleaning up water and slipped and fell on right knee and twisted left knee ()
## 15153 Cleaning up work area placing material in boxes, lifting off table, placing container in bottom of closet. Felt pain in lower part of back
## 15154 Cleaning up, coming out of dishroom, slipped and fell on rt side-shoulder and arm.
## 15155 Cleaning upper h-con, inmate hit him with a broom handle in groin. ()
## 15156 Cleaning urine out of floor w/slipped & fell w/pain in low back
## 15157 Cleaning vacated patient stall tripped over floor mat while turning mat over for cleaning landing on rt knee
## 15158 Cleaning vent in client's room-vent would not opentrying to pull open and felt pain in back.
## 15159 Cleaning wall in hallway. Speedy spray mist got on face or EE rubbed her face causing a rash
## 15160 Cleaning walls in a leaning-over position with arms fully extended
## 15161 Cleaning walls, baseboards in dietary bathroom with a squeegy/rag. When leaving work for the day noted pain in r. Shoulder. ()
## 15162 Cleaning white boards, reaching up over head
## 15163 Cleaning window sills and turned away from window and hit the study desk top bookshelf fell over andhit against left elbow
## 15164 Cleaning windows hand slipped and hit door
## 15165 Cleaning windows outside & was bitten on left forearm
## 15166 Cleaning windows with a high pressure hose. Was pulling hose out dorm and felt pain in back. ()
## 15167 Cleaning with compounds, affected both lungs
## 15168 Cleaning with latex gloves
## 15169 Cleaning wood debris from around tree stepped in acast iron sewer cover, broke thru w/weight lt leg & torso fell in hole. Lt ribs/back/ankle/neck.
## 15170 Cleaning woodchuck cage when knelt down on piece of broken glass that was unseen
## 15171 Cleaning work area, moving tables, felt pain in his back
## 15172 Cleaning wound on pt, pt hit EE's glasses causing them to abrade EE's nose ()
## 15173 Cleaning wound with saline some of the fuild splashed into lt eye
## 15174 Cleaning-pushing machine-caused strain to back
## 15175 Cleaning. EE stood up and hit forehead on cabinet. Small cut on forehead.
## 15176 Clearing brush, watering and working in heavily cleared areas ()
## 15177 Clearing brush. Attempted to fling a large rhodoendrom branch but end struck on a tree jolting right hand. ()
## 15178 Clearing debris w/tractor stepped off tractor and rolled ankle over
## 15179 Clearing drain of blockage with chemical odor, breathing while clearing drain blockage, respiratory
## 15180 Clearing file out in office strained back carryingand or bending and filing client files.
## 15181 Clearing files from cabinet, putting in a file box. Lifted box from floor to desk top, strained low back
## 15182 Clearing fire line through poison oak - rash on lower legs and arms
## 15183 Clearing furnishings from floor to proceed cleaninit, moving bench that flipped - top rt foot
## 15184 Clearing furniture and picked up table & top fell off and landed on big toe
## 15185 Clearing limbs from trail & stepped into a stump hole which sprained rt ankle
## 15186 Clearing limbs/brush when slipped and fell on right side ()
## 15187 Clearing road way of debris rec'd spider bite and posion oak.
## 15188 Clearing trees & wood debris. Came into contact with poison ivy.
## 15189 Clearing trees and moving equipement and injured muscles in lt elbow/ arm.
## 15190 Clearing trees and wood debris EE came into contact with poison ivy. Rash from poison ivy on arms.
## 15191 Clearing trees downed by hurricane. Clearing tree limbs already cut off main trunk, antoher soldier cut off large limb, striking EE's shoulder.
## 15192 Clearing trees due to hurricane---poison ivy
## 15193 Clearing vent in cell air blew object in eye
## 15194 Clearing weeds and was stung by bees ()
## 15195 Cleint asked EE to take to bathroom and client ran over EE's rt foot with wheelchair.
## 15196 Cleint attacked EE while using pic hold had to bring client to floor bruising both knees.
## 15197 Cleint bit EE on rt index finger.
## 15198 Cleint grabbed EE's right arm and right leg while EE was driving golf cart.
## 15199 Cleint is known for trying to get soap. EE was trying to prevent client from getting soap and clinet threw herelf on floor pulling EE with her.
## 15200 Cleint rolled over on EE's arm during a restraint.
## 15201 Cleint started acting up. Client jumped up and slapped EE across right ear and face.
## 15202 Cleint stuck finger in EE's left eye.
## 15203 Cleint threw a bowl of cole slaw across table and hit EE-while EE placing EE in pic client headbut EE in rt eye and mouth
## 15204 Cleint threw chair at EE and started swinging at EE-EE put client in pic hold and client hit EE in ribs with elbow
## 15205 Cleint trying to attack EE-EE ran to get away and hit left shoulder on the door.
## 15206 Cleint went into behavior when asked to move to another room and grabbed EE's little finger on rt hand.
## 15207 Clerical - writing & typing on keyboard
## 15208 Clerical computer work - carpel tunnel - both hands.
## 15209 Clerk was placing paperwork in a file that was in a tub used to carry these files to court when the tub got off balance and clerk was unable to prevent it from falling. It fell on her front part of her foot. ()
## 15210 Clieng grabbed wheels of chair & spun chair around while displaying inappropriate behavior. Chair struck EE on left knee
## 15211 Client accidentally bit staff's finger while staff was brushing his teeth. ()
## 15212 Client aggitated - kicked EE x3 on r ankle
## 15213 Client aggitated in bathroom, EE holding client while 2 other dt's tried to change client, EE l arm was twisted in process
## 15214 Client aggression ()
## 15215 Client aggression, he kicked staff in the stomach. ()
## 15216 Client aggression-bite ()
## 15217 Client aggressive - pulled EE hair and headbutted EE in l side of face
## 15218 Client aggressive grabbed EE right arm and twistedcausing shoulder to pop out of socket tear to shoulder ligament
## 15219 Client aggressive-assisting another staff with client. Client was kicking and hitting. EE had to lift client and pulled something in lower back.
## 15220 Client aggressive-kicked EE in lt shin and punchedee in middle of back
## 15221 Client aggrevated - bit EE on finger
## 15222 Client agiated-hitting/kicking. Hit EE with rt hand/arm in chin.
## 15223 Client agitated and attacked EE - hitting EE in left wrist area
## 15224 Client agitated and combative-stomping and kicking- stomped on EE rt foot.
## 15225 Client agitated during oral care-scratched EE on both cheeks. Right cheek swollen w open area.
## 15226 Client agitated- redirecting-client hit employee (w hand) on left cheek (near eye)-jerked head/neck backwards.
## 15227 Client agitated-assisted to chair & client spit in EE's face (client hep. B+)
## 15228 Client agitated-assisting rn with am care-client hit in stomach.
## 15229 Client agitated-grabbed EE's right hand and twisted pulling back EE's 3rd finger
## 15230 Client agitated-hit EE in lip & bent rt ring finger backwards. Sprained ligament
## 15231 Client agitated-shoved/pushed EE causing EE to hit right hand against wall
## 15232 Client agitated/twisted EE'left hand/fingers
## 15233 Client agitated=grabbed EE left hand and twisted EE left ring finger
## 15234 Client agression ()
## 15235 Client agressive with EE-EE placed client in pic hold-client tried to get up from floor and slammedee's rt hand into wall.
## 15236 Client approached EE from behind in observation area, EE turned around and client began swinging hitting EE in throat
## 15237 Client asked to comply with search-became violent bitting EE on rt hand
## 15238 Client asked to sit down & client reached out & hit EE's hand, left hand.
## 15239 Client assaulted EE and altercations ended up in the floor-EE injured left shoulder, low back.
## 15240 Client assaulted EE while in dining room-resultingin bruised ribs on left side
## 15241 Client assaulted EE. Injured mouth and top head.
## 15242 Client att to bite EE on hand-EE jerked hand back in process clients teeth scraped EE on rt hand.
## 15243 Client att to go in nursing room-EE redirecting client when client hit EE in the face with fist
## 15244 Client attached EE by striking fist on rt cheek pulling hair and biting rt upper arm. Multiple contusion, face & wrist, human bite rt arm.
## 15245 Client attacked EE
## 15246 Client attacked EE - rt eye and neck injured
## 15247 Client attacked EE and kicked EE on rt hand
## 15248 Client attacked EE resulting in deep scratches to inside of rt arm.
## 15249 Client attacked EE with a broom, injuring both arms ()
## 15250 Client attacked EE, cut over left eye
## 15251 Client attacked EE.
## 15252 Client attacked staff and EE trying to assit hurt rt knee.
## 15253 Client attacked staff for no apparent reason while in laundry room. ()
## 15254 Client attacked staff, injuring her left wrist ()
## 15255 Client attacked staff, staff seen at physician's primecare and rtw with no missed time. ()
## 15256 Client attacking staff member
## 15257 Client attempted to bite EE and EE jerked rt arm away and struck couch
## 15258 Client attempted to enter smock room to harm EE and schuffle broke out-EE has injury to bridge of nose.
## 15259 Client attempted to go awol-EE assisted in carrying client back to pic-EE noted pain in rt wrist after process
## 15260 Client attempted to grab staff's hair, staff moved head and client brushed the side of staff's face. ()
## 15261 Client attempted to run from bedroom, ran into EE hand, bending left ring finger back.
## 15262 Client attempted to strike EE. EE blocked hit withright hand. Client grabbed right hand and bent it backwards.
## 15263 Client attempting to exit unit-hit employee in mouth-knocking head back against wall
## 15264 Client attempting to hide frm staff to keep from taking shots fighting EE-head, face, neck
## 15265 Client attempting to run past staff toward door & EE tried to stop client. Scraped right arm & injured right wrist
## 15266 Client backhanded employee in the lft side of the mouth- loosened lft upper #4 tooth.
## 15267 Client barricaded self in room, EE and 2 others pushing on door to get open-then client went into bathroom-EE and others pushing on door again.
## 15268 Client becam aggressive after tryng to redirect from bathroom to anther area/client tried to bikte I swung arm back & hit against wall
## 15269 Client became aggitated and repeatedly struck EE in the rt upper arm
## 15270 Client became aggitated. Staff attempting to con- sole client, client grabbed EE upper arm, ripping shirt causing abrasions and bruises.
## 15271 Client became aggressive and hit EE in eye and upper forehead
## 15272 Client became aggressive and scratched staff ()
## 15273 Client became aggressive and starting hitting EE. Hao to put pic hold on client with coworker's help
## 15274 Client became aggressive and struck EE in the nose
## 15275 Client became aggressive and struck staff with metal crutches hitting his rt knuckles.
## 15276 Client became aggressive nad head butted EE on theside of the face and chipped one one her bottom teeth.
## 15277 Client became aggressive pulled EE down & spit on her fell on both knees, contusion to both.
## 15278 Client became aggressive staff attempted to re- direct client, client grabbed left arm & bit wrist
## 15279 Client became aggressive while feeding-client grabbed EE rt hand and squeezed it.
## 15280 Client became aggressive while on arjo; nails dug into skin on left and right arm; client slapped EE a couple of times. ()
## 15281 Client became aggressive, EE attempted to place in a pic hold, when client bit EE on the right forearm
## 15282 Client became aggressive, trying to hit scratch while trying to intervene EE left pinky finger bent back at top joint, popped and was fractured
## 15283 Client became aggressive-EE tried to block hits and kicks and put client in pic.
## 15284 Client became aggressive-staff intervened, while waiting for assistance-cleint grabbed & hit staff in face loosening tooth.
## 15285 Client became aggressive-started to punch emp EE blocked with rt arm client grabbed EE arm and twisted and squeezed.
## 15286 Client became aggressive. Employee intervened and client tried to hit employee. Client's hand hit employee's glasses
## 15287 Client became agitated and ran into dining room- EE placed client in pic hold-client pushed EE intoa cabinet
## 15288 Client became agitated when asked to get up. Clientstarted swinging. EE stepped back & made awkward step, hurt left calf
## 15289 Client became agitated when redirected and struck me in the right eye. Redness and blurred vision resulted. ()
## 15290 Client became agitated when soda machine took money. During behavior the client grabbed right hand squeezed and twisted it causing bruises, cut and pain. ()
## 15291 Client became agressive and assaulted staff-clientplaced in pr-injury to arm and neck.
## 15292 Client became agressive and bent EE's lt little finger backwards
## 15293 Client became agressive trying to hit EE. EE fell in hallway
## 15294 Client became agressive, turned dresser over hitting staff in r knee
## 15295 Client became angry and threw a chair hitting EE in left knee.
## 15296 Client became argry and hit and kicked EE on the upper left arm.
## 15297 Client became combative. EE intervened and was poked in left eye.
## 15298 Client became frustrated and started grabbing and scratching employee with his fingernails. Client has asd and id. Right and left forearm.
## 15299 Client became mad and struck EE several times in the face
## 15300 Client became physically aggressive at EE and had to use p. I. C.
## 15301 Client became unbalanced when transporting to activity grp-EE att to break clients fall-feels pain in lower back.
## 15302 Client became upset and and EE was trying to escort client back to cottage and client hit EE in the jaw, eye.
## 15303 Client became upset and attacked EE injuring her lower back, right buttock and right finger.
## 15304 Client became upset and bit EE on left arm.
## 15305 Client became upset and hit EE on the face-EE fell on lt leg, ankle, and knee
## 15306 Client became upset and started to hit. EE was hit in mouth and bottom lip was cut
## 15307 Client became upset at EE an hit EE on left arm.
## 15308 Client became upset because he didn't have enough money and hit EE on rt side of head.
## 15309 Client became very aggitated. Tried to calm down verbally. Client bit EE on right third finger.
## 15310 Client began to fall out of wheelchair and EE grabbed her under arm to break fall and lowered her to floor.
## 15311 Client began to fall, EE tried to hold on to him but he continued to fall, jerking right arm and side
## 15312 Client began to head butt staff. In attempt to control behavior, EE felt pull in back and chest area.
## 15313 Client being placed in therapeutic hold, bit EE on chest.
## 15314 Client bent EE's thumb backwards
## 15315 Client bit 3 staff trying to restrain, bite to rt arm
## 15316 Client bit EE and scratched x2 on right upper arm
## 15317 Client bit EE in the right side of head. Cranial concussion
## 15318 Client bit EE on left arm.
## 15319 Client bit EE on left forearm, breaking skin.
## 15320 Client bit EE on left hand
## 15321 Client bit EE on left inside of hand
## 15322 Client bit EE on left lower arm
## 15323 Client bit EE on lt forearm
## 15324 Client bit EE on lt forearm - human bite
## 15325 Client bit EE on right forearm
## 15326 Client bit EE on right hand below pinky finger.
## 15327 Client bit EE on rt arm.
## 15328 Client bit EE on rt finger while undressing for bath
## 15329 Client bit EE on rt hand
## 15330 Client bit EE on the left forearm while being restrained - also kicked EE several times in the back
## 15331 Client bit EE on upper left arm
## 15332 Client bit EE on wrist when EE was attempting to prevent client from falling
## 15333 Client bit EE's left thumb during a dental procedure
## 15334 Client bit EE's rt middle finger while EE was trying to remove knife from client's mouth
## 15335 Client bit EE.
## 15336 Client bit emp left hand
## 15337 Client bit emp on right thigh- infection
## 15338 Client bit right arm below elbow and scratched left arm on right wrist area.
## 15339 Client bit staff ()
## 15340 Client bit staff on rt arm.
## 15341 Client bit staff on rt middle finger while being put in timeout for exhibiting behaviors. ()
## 15342 Client bit staff on the chest near his left nipple. EE treated at urgent care and returned back to work ()
## 15343 Client bit staff on the chest, EE sent to er rtw on 11/17/09 ()
## 15344 Client bit staff on the left hand. EE seen at urgent care and released back to work. ()
## 15345 Client bit staff on the lt thumb after blood draw
## 15346 Client bit staff, staff treated at er rtw 11/17/09 ()
## 15347 Client bit staff, staff was giving client bath. Injured chest.
## 15348 Client bit top of rt hand ()
## 15349 Client blood was being drawn was a hard stick and not sucessfulon 1st attempt other nurse then attempted and during the exchange of butterfly needle staff was stuck in finger ()
## 15350 Client bumped into EE's left knee w/wheelchair
## 15351 Client called EE into room and another client sat up in bed and swung at EE with a casted arm-clienthit EE in rt jaw breakin upper partial.
## 15352 Client called staff over as though he was going to whisper in staff ear and popped plastic paper in staff ear
## 15353 Client came and grabbed EE, EE was trying to put inthe erapeutic hold, slipped and fell on left knee.
## 15354 Client came behind employee and threw her on the floor, hitting her in the mouth and scratching her. ()
## 15355 Client came housekeeping room -grab bedspread, client became entagled in bedspread. EE tried to hold spread client pulled out hand rt hand swollen
## 15356 Client came in and sat on sofa upset-EE tried to calm client in process client slapped EE's glassesoff and scratched nose
## 15357 Client came into EE's office, EE asked client to leave, client bit EE on the nose.
## 15358 Client came into hallway to greet EE. While shaking hands, client suddenly kicked EE on the right leg.
## 15359 Client came into office, grabbed EE, as walking EE got l foot tangled up in telephone cord and fell on l ankle. L ankle contusion.
## 15360 Client came into records room displaying behavior, and grabbed EE hand squeezing it very hard. Sprain rt ring finger.
## 15361 Client came into restroom and attacked EE hitting in face, knocking off glasses, kicking in chest.
## 15362 Client came into the bathroom with a nosebleed. Before any staff member could be notified, I enter the bathroom. While I was using the sink to wash my hands, I accidentally touched the blood on the sink with my hand which had a cut. ()
## 15363 Client came out of room to greet EE, client bumped EE on nose and somehow bumped EE on left side try-ing to get away.
## 15364 Client came up and hugged EE-then client went limpcausing EE to fall against wall with client on top of her.
## 15365 Client came up behind EE and started choking, pull-ed EE to floor. Neck, throat, head injury.
## 15366 Client came up behind EE placing arm around EE's neck choke hold next am noted pain in neck.
## 15367 Client came up behind EE, EE turned & client hit in right jaw with fist chipping EE right upper tooth.
## 15368 Client came up to hug EE, client put arm around shoudler and pulled EE around. This resulted in a twist of rt shoulder
## 15369 Client caused EE to lose balance and fall over whirlpool onto floor
## 15370 Client charge EE in the hallway scratched EE upperlt eye and sprainds thumb puttingclient inpic hold.
## 15371 Client charged EE pushing EE to the floor hitting her head on filing cabinet.
## 15372 Client charged at employee; grabbed right hand pulling right second finger and scratched top of right hand. ()
## 15373 Client charged at staff member-while placing in pic client was fighting staff which caused them tofall to floor hitting head on wall
## 15374 Client charged into office threating and cursing staff member-EE intervened and both fell to the floor.
## 15375 Client closed door on EE's right index finger.
## 15376 Client closed door on EE's rt fingers
## 15377 Client combative-kicking & hitting EE, handling alone. EE not sure but feels pulled lt arm from elbow down.
## 15378 Client continued to slide out of chair onto floor. Helping client up from floor & re-injured his back. Felt something pull in back
## 15379 Client droophavinf seizure strain shoulder/ arm trying to prevent full.
## 15380 Client dropped to floor and staff caught him preventing fall. ()
## 15381 Client dropped to floor, causing EE to strain back and neck.
## 15382 Client dropped to ground. EE pulled muscle in backhelping client up from ground three times & clienttried to get cigarette butts
## 15383 Client engaged in sib- hitting head on floor. Staff put hand on floor attempting to prevent injury and her lt middle finger was sruck several times between the floor and the clients head. ()
## 15384 Client escaped from group home and EE ran after him and slipped and fell dislocating left third finger
## 15385 Client escaped from ward 238, while I was leaving with the canteen cart. I lost my balance, went downto one knee when the patient pushed the cart into
## 15386 Client exhibited sib during bath and while getting dressed she bit staff on arm ()
## 15387 Client fainted and EE hurt back lifting client off the floor and also while returning client to bed
## 15388 Client falling backwards-fell on EE's rt knee physician-Dr Bargas 802-775-2937 x 222 physician fax # 802-773-2204
## 15389 Client falling, EE stopped the fall, pulled neck and thigh.
## 15390 Client feet pushed EE legs causing EE to fall landed on rt arm.
## 15391 Client fell against EE and EE's right hand/wrist hit the side of the door
## 15392 Client fell and pulled EE down... Left side of her body... Back
## 15393 Client fell behind shower chair and EE had to assist client up. Left wrist hurts when EE lifts.
## 15394 Client fell during activity - EE attempted to prevent further injury- came in contact with blood-had open wound on hand
## 15395 Client fell hitting against EE. EE tried to break clients fall and EE was pushed onto floor falling on left knee and ankle
## 15396 Client fell into EE causing EE to fall backwards injuring back
## 15397 Client fell on EE's forearm, when she tried to break the fall.
## 15398 Client fell on a top of EE; injured his rt ankle
## 15399 Client fell on top of EE during behavior intervention bending EE's leg backwards
## 15400 Client fell to ground and EE bent over to bring client back inside and experienced pain in back
## 15401 Client fell to ground during transporting to class when client fell, EE dropped to ground causing discomfort in lower back
## 15402 Client fell while walking with staff; staff hurt ankle attempting to get client up from fall ()
## 15403 Client fighting on hall careteam called EE to secure clients arm-client scratched EE in several placeson rt forearm and upper arm.
## 15404 Client fighting with EE and kicked EE in abdomen
## 15405 Client fighting-EE placed client in pr-client weight was 294-EE noted pain in lower back
## 15406 Client flipped staff over a love seat
## 15407 Client from bone visit became aggressive. EE tried to console patient hurt shoulder, grabbed upper armripping shirt abrasions and bruises.
## 15408 Client gave staff a huge bear hug and started rocking back and forth, would not stop when asked to and continued until staff fellon floor. ()
## 15409 Client getting into wheelchair trying to leave bathroom ran foot rest into right ankle. Contusionto right ankle
## 15410 Client getting off elevator stepped too soon and began to fall-EE caught client and felt pain in lower back.
## 15411 Client getting undress became upset for unknown reasons began to come at EE client lost balance began to fall caught him, client bit him
## 15412 Client getting up out of office in classroom trying to keep client from falling, caught placed back in chair, felt popping in lower back area.
## 15413 Client got away from EE; EE tried to catch client & fell & hurt her left wrist and right side.
## 15414 Client got feel tangled in chair, EE caught clien t, injured r shoulder and neck
## 15415 Client got smog and was very stiff; pulled client up in bed; had to keep changing client over and over in bed from smog; at end of shift back hurting. ()
## 15416 Client got up and moved behind EE-EE got up started to turn client around-when client snatched back around-EE tripped over chair.
## 15417 Client got upset and started kicking and scratching EE on left hand, neck
## 15418 Client grabbed EE & began to twist & pull hands & arms. Client also pushed & pulled EE around. EE lost balance and fell
## 15419 Client grabbed EE arm and twisted it.
## 15420 Client grabbed EE around the neck and pulled EE toward him in an attempt to bite EE in the face--cervical strain
## 15421 Client grabbed EE by the neck & threw against wall
## 15422 Client grabbed EE hands, right wrist and pulled backwards.
## 15423 Client grabbed EE left wrist and forearm
## 15424 Client grabbed EE lt arm and scratched it- area became red and blistered
## 15425 Client grabbed EE lt hand and squeezed
## 15426 Client grabbed EE right middle finger and pulled sprain
## 15427 Client grabbed EE rt hand and twisted EE's rt finger. Rt hand - fingers swollen and painful
## 15428 Client grabbed EE rt wrist and pulled-client then leaned over to side causihng EE to twist back
## 15429 Client grabbed EE wrists and forearms and jerked and pulled
## 15430 Client grabbed EE's fingers and pulled apart
## 15431 Client grabbed EE's hair and pulled it back straining neck
## 15432 Client grabbed EE's hair from behind and pulled, popping EE's neck.
## 15433 Client grabbed EE's hand and bent it backwards.
## 15434 Client grabbed EE's hand and bent pinky finger backwards on rt hand
## 15435 Client grabbed EE's left arm and pulled. EE walkedaway, client ran toward EE, EE tried to block client, hit EE in chest, elbow hit wall
## 15436 Client grabbed EE's left hand & squeezed. Left wrist hand sprain
## 15437 Client grabbed EE's neck
## 15438 Client grabbed EE's neck when EE was trying to putclient in a hold to calm client down.
## 15439 Client grabbed EE's right arm. Force caused injuryto right little finger when hand hit clients face.
## 15440 Client grabbed EE's right hand & bent fingers backwards. EE's right ring finger snapped & became red & swollen. Right hand contusion
## 15441 Client grabbed EE's right hand and yanked arm, EE felt pain in right shoulder
## 15442 Client grabbed EE's right index finger and bent back
## 15443 Client grabbed EE's right little finger
## 15444 Client grabbed EE's rt hand and wrapped EE's key chain necklace around EE's rt pinky finger-squeezetightly.
## 15445 Client grabbed EE's rt thumb & twisted wrist in opposite direction.
## 15446 Client grabbed EE's rt thumb, hyperextending it
## 15447 Client grabbed EE's rt thumb.
## 15448 Client grabbed EE's rt wrist and dropped to the floor pulling EE hitting wrist.
## 15449 Client grabbed and pulled EE's shirt towards the back; EE reached with right hand to get control of client; client grabbed EE's right arm and scratched right arm. ()
## 15450 Client grabbed and pulled on EE's arm while redirecting him.
## 15451 Client grabbed and twisted EE right hand. ()
## 15452 Client grabbed and twisted EE's left arm and would not let go, causing EE to fall to floor.
## 15453 Client grabbed and twisted arm (right); dug in nails; behavior of client. ()
## 15454 Client grabbed and twisted end of lt pointer finger ()
## 15455 Client grabbed and twisted rt arm of staff ()
## 15456 Client grabbed arm and scratched staff ()
## 15457 Client grabbed artifical tree and hit EE with it on left elbow and wrist
## 15458 Client grabbed client around the neck with both arms and would not let loose
## 15459 Client grabbed client's rt little finger and twisted it
## 15460 Client grabbed emp. Injured right hand & squeezed
## 15461 Client grabbed employees r arm and twisted it
## 15462 Client grabbed hand and dug fingernail into right middle finger. Scratched finger
## 15463 Client grabbed hand of staff and twisted it
## 15464 Client grabbed her from the back and pulled her backwards down to floor
## 15465 Client grabbed her right wrist ()
## 15466 Client grabbed left hand and bit left ring finger.
## 15467 Client grabbed left wrist and forearm
## 15468 Client grabbed lt hand squeeze EE wearing 2 rings resulting lt hand pain. Pain lt pinky finger.
## 15469 Client grabbed picture off wall and threw it hitting staff on hand ()
## 15470 Client grabbed pill bottle from nurse and threw it then hit her in the nose with his fist. ()
## 15471 Client grabbed r. Forearm and squeezed.
## 15472 Client grabbed right wrist/hand and squeezed/ twisted simultaneously.
## 15473 Client grabbed rt thumb and pulled backward
## 15474 Client grabbed staff and bit forearm ()
## 15475 Client grabbed staff and bit thumb ()
## 15476 Client grabbed staff and scratched her arm ()
## 15477 Client grabbed staff and scratched her hand ()
## 15478 Client grabbed staff around neck in an attempt to choke her.. ()
## 15479 Client grabbed staff by the arm and bit EE on the right arm when EE tried to get client to sit back in his chair. ()
## 15480 Client grabbed staff by the hair and pulled forward and down causing neck and shoulder pain
## 15481 Client grabbed staff's hand in an attempt to bite it, then pushed staff's right thumb back
## 15482 Client grabbed staff's right arm, pushed her, she fell on her right leg
## 15483 Client grabbed to attempt bear hug staff backed upagainst wall for balance, staff tried to redirect client into letting go. Injury to neck.
## 15484 Client grabbed wrist and scratched left hand ()
## 15485 Client had been put in pic-client attacked EE scatching nose, face, knocking glasses off.
## 15486 Client had cna trapped in breakroom-EE att to assist to get cna out-client slammed door on EE's hand.
## 15487 Client had slipped out of chair-EE putting client back into chair and received a scratch on left hand thumb.
## 15488 Client had started a riot situation and in the process of securing the situation, EE was struck several times in the face, head, knee, hand
## 15489 Client had started fire on ward EE was working on. EE evacuating clients & inhaled smoke.
## 15490 Client having behavior problem, EE tried to stop client form hitting another EE, client hit EE on left wrist
## 15491 Client having behavior. EE intervened and client'sleg was injured
## 15492 Client having diabetic episode thought client was leaving ran out to catch him & lt-knee gave out
## 15493 Client having seizure broke fall twisted right wrist
## 15494 Client having seizure, tried to prevent client from injuring himself. Pull in back
## 15495 Client head butted EE in the face straining neck
## 15496 Client head butted EE in the nose
## 15497 Client head butted EE on left shoulder during disagreement.
## 15498 Client head butted in lip. ()
## 15499 Client head butted on right knee
## 15500 Client head butted staff ()
## 15501 Client head butted staff during behavior. ()
## 15502 Client head butted staff with staff wearing glasses ()
## 15503 Client head-butted EE in the face, hitting top lip and loosening rt front tooth.
## 15504 Client head-butted EE in the nose
## 15505 Client head-butted staff in the nose.
## 15506 Client headbutted EE, laceration to lt eye brow & over bridge of nose,
## 15507 Client headbutted in face & chect and punched in stomach. ()
## 15508 Client headbutted me in chapel while I was sittingbeside him and another client kicked me on the left leg while transporting.
## 15509 Client hit EE in face serveral times-injury to face and rt ankle.
## 15510 Client hit EE in face with fist.
## 15511 Client hit EE in left eye with hand
## 15512 Client hit EE in left eye.
## 15513 Client hit EE in left jaw with hand
## 15514 Client hit EE in mouth with fist, loosened teeth
## 15515 Client hit EE in rt jaw with fist
## 15516 Client hit EE in stomach with elbow. EE is 6 months pregnant.
## 15517 Client hit EE in the chest.
## 15518 Client hit EE in the head 2 times-EE has history of strokes
## 15519 Client hit EE in the left shoulder several times after client knocked sugar bowl lid on the floor and EE picked up the lid and placed back on table. ()
## 15520 Client hit EE on back with fist, grabbed rt arm, hit in mouth, grabbed glasses, and scratched forearm
## 15521 Client hit EE on left shoulder while trying to fight other boys.
## 15522 Client hit EE on lt side of face & kicked staff inleft knee.
## 15523 Client hit EE on lt side of jaw
## 15524 Client hit EE on right side of head during intervene of clients aggressive behavior.
## 15525 Client hit EE w/ the heel of shoe on the top pf emp. Left hand between thumb and index finger.
## 15526 Client hit EE while coming from the dinningroom, EE fell on rt arm, shoulder, knee.
## 15527 Client hit EE with closed fist twice-left side face
## 15528 Client hit EE with fist on left side of the head then grabbed left arm, tore shirt and spit on faceand broke necklace.
## 15529 Client hit EE with fist while they were talking.
## 15530 Client hit EE with open hand-EE att to block hit and hit tip of left pinky finger
## 15531 Client hit EE with straight right punch to the right chest.
## 15532 Client hit EE's right middle finger while placing client in therapeutic hold.
## 15533 Client hit EE, right arm sore
## 15534 Client hit and scratched staff aggressively ()
## 15535 Client hit employee in face/mouth w/ fist. Cuttingmouth, lips and gums. Pain in jaw
## 15536 Client hit employee in mouth (with fist) cut upper lip, pain in face/neck
## 15537 Client hit employee in the jaw w/closed fist.
## 15538 Client hit employee with closed fist in stomach. Employee is pregnant.
## 15539 Client hit in jaw x 2 and bit l. Shoulder ()
## 15540 Client hit staff 3 times on the left arm
## 15541 Client hit staff in face and eye ()
## 15542 Client hit staff in nose and hand got caught on chair ()
## 15543 Client hit staff in the eye with wet towel ()
## 15544 Client hit staff in the face/nose.
## 15545 Client hit staff in the left eye ()
## 15546 Client hit staff in the right shoulder area
## 15547 Client hit staff's hand(finger).
## 15548 Client hit/scratched face. R. Knee popped as going backwards to get out of way (slipped on something in the floor) r. Back and shoulder hurt/burned. ()
## 15549 Client hiting on chest, while hitting, client grabbed shirt nad during the grabbing pinched the chest area
## 15550 Client hitting display case-EE advised client to stop when client starting fighting EE causing EE to injury left knee on floor.
## 15551 Client hitting head on floor. EE went over to get him up. Client was pulling against EE, putting weight against left thigh
## 15552 Client holding onto EE. Right arm. Client was trying to sit down. Slid down onto floor. Pulling EE right shoulder
## 15553 Client hugged staff around the neck, EE complains of strained on left side of neck ()
## 15554 Client in activity room throwing things-EE placingclient in pic and client throw head back and hit EE on nose and forehead.
## 15555 Client in behavior attempted to turn table over. EE caught table with left hand. Strain
## 15556 Client in behavior; client charged EE; EE blocked the client's hit with chair & chair hit his right hand.
## 15557 Client in behavior; redirecting client; client bit left wrist. ()
## 15558 Client in electric wheelchair and lost control pinning EE between bars on sidewalk
## 15559 Client in office talking to doctor-jumped up and attacked doctor-EE tying to asst and strained leftarm/wrist
## 15560 Client in pic hold-client fell to floor causing EE to fall with client-client's shoulder hit EE rib cage
## 15561 Client in restraint-EE attempted to hold from twisting/jerking and strained rt wrist and arm
## 15562 Client indicated observing inmate feed; leaning against kitchen wall; noticed bumps on right arm; subsequent bumps on back, stomach, legs ()
## 15563 Client intervention-client bent EE's right wrist back
## 15564 Client jerked head forward and hit EE in the mouth. Loose tooth and bridge loose.
## 15565 Client jumped on EE's back and wrapped legs around EE's leg causing EE to fall and strain lower back
## 15566 Client jumped out of truck to get cigarette but; EE tried to stop by grabbing arm; client grabbed his right arm and snatched away by pushing right arm
## 15567 Client jumped out of wheelchair and attacked EE on rt wrist and hand
## 15568 Client jumped up & hit EE in head. Lft arm bite
## 15569 Client jumped up out of wheelchair and came after writer and hit EE on rt wrist and hand.
## 15570 Client jumping and yelling staff opened door and got hit in the rt cheek and eye ()
## 15571 Client jumping up & pulling EE by wrist-EE tried redirecting client but client continued causing strain to EE's right hip/neck & back
## 15572 Client kicked EE in back knocking EE to the floor
## 15573 Client kicked EE in face. Facial contusion.
## 15574 Client kicked EE in genital area and left knee.
## 15575 Client kicked EE in left knee several timnes
## 15576 Client kicked EE in left lower leg
## 15577 Client kicked EE in lft side while being carried to restraint room. Contusion of lft rib area
## 15578 Client kicked EE in lower back while placing in restraint.
## 15579 Client kicked EE in mouth w/shoe
## 15580 Client kicked EE in the back while EE trying to restrain him
## 15581 Client kicked EE in the left knee while she was redirecting him
## 15582 Client kicked EE in the middle of her back.
## 15583 Client kicked EE in the right knee.
## 15584 Client kicked EE on right ankle.
## 15585 Client kicked EE on rt knee
## 15586 Client kicked EE pointer finger on his right hand
## 15587 Client kicked EE x 2 in right knee
## 15588 Client kicked door catching employees head between the door and frame.
## 15589 Client kicked football and struck EE in the rt side of face
## 15590 Client kicked med cart and hit nurse in stomach as she was giving medication. ()
## 15591 Client kicked staff ()
## 15592 Client kicked staff in face ()
## 15593 Client kicked staff in knee while client was aggressing toward another staff. Knee pain
## 15594 Client kicked staff in the groin. ()
## 15595 Client kicked staff in the left jaw while EE was putting his shoe on.
## 15596 Client kicked staff on the chin ()
## 15597 Client kicked staff, EE rtw 12/13/09 ()
## 15598 Client knocked a chair onto the floor and it struck EE's rt foot
## 15599 Client landed on EE's leg. Contusion to left leg and calf
## 15600 Client leaded forward and bumped heads with staff; he was wearing a helmet on his head. ()
## 15601 Client leaned into staff causing her to get a knot feeling in her lt shoulder.
## 15602 Client leg's tripped staff while transporting client when other staff ley go of client's legs.
## 15603 Client lift was in use when the cord became unplugged & hit client in the eye
## 15604 Client lifted legs off floor and cna strained backholding client from falling
## 15605 Client lost balance and fell against EE's rt knee/
## 15606 Client lost balance and fell on employee's left leg ()
## 15607 Client lost balance and started to fall, EE tried to catch client. Client fell against EE right arm
## 15608 Client lt porch and ran across street EE ran to get client fell on knees
## 15609 Client on phone calling 911-EE asked client to getoff phone-client staring swining and cursing at eethen fell on EE's rt wrist.
## 15610 Client open front door and door hit EE's rt foot.
## 15611 Client opened door fast hitting employee's hand & wrist ()
## 15612 Client out of control and flipped a chair over hitting EE's rt leg.
## 15613 Client out of control, assisting staff to hold door shut when client hit door and EE turned r ankle
## 15614 Client out of control. Fire alarm went off client didn't want to go outside, started biting & fight-ing and pulling - twisted EE rt arm and wrist.
## 15615 Client picked up a bowl of screws & threw them at staff, one of the screws hit staff in the eye.
## 15616 Client picked up oject while lifting object the client stuck his finger into right eye.
## 15617 Client picked up walker and swung it at EE-hittingee in side of head (right temple)
## 15618 Client pinched EE rt forearm while EE was trying to change client.
## 15619 Client poked EE in left eye.
## 15620 Client preparing for bath, met client in hallway client began to swing violently and tried to bite, attempted to put client in pic, twisted lft leg/knee
## 15621 Client provided to in real world program with spmipopulatin - upper back. Cervical, thoracic and left elbow strain
## 15622 Client pulled EE's arm and fell, pulling EE's arm.
## 15623 Client pulled EE's hair and pushed EE into door
## 15624 Client pulled EE's left arm while she was interacting with another client-which resulted in pain to her left shoulder.
## 15625 Client pulled EE's rt arm straining it
## 15626 Client pulled chair out from under EE and EE fell
## 15627 Client pulled downward on EE shoulder while EE wasassisting client from wheelchair.
## 15628 Client pulled tube out of his lungs, EE grabbed client's arm & client pulled EE's right arm causing pain in shoulder
## 15629 Client pulling EE towards activity room to have someone to turn radio on for him-lacerations to lt arm
## 15630 Client pulling and trying to bite inside and outside classroom, neck hurts
## 15631 Client pulling cart and stopped, I ran into cart abrasion both legs
## 15632 Client pulling on EE because of drink-EE lost balance and felt something pull in ankle.
## 15633 Client punched EE in left jaw knocking tooth loose.
## 15634 Client punched EE in left side of face-complainingof neck pain.
## 15635 Client punched EE in top of head
## 15636 Client punched employee in the left side of neck &lower ear. Contusion.
## 15637 Client punched in r brest.
## 15638 Client punched staff in eye when denied more food ()
## 15639 Client punched staff in right eye and in mouth.
## 15640 Client pushed EE & broke ehr fall by reaching for handrail. Right thumb backwards
## 15641 Client pushed EE against door, EE hit head on door.
## 15642 Client pushed EE down causing her to hit the back of her head on the floor.
## 15643 Client pushed EE then struck him in the mouth thenbegan choking EE. EE was freed from choke hold, and client kicked EE in the side of the head.
## 15644 Client pushed EE to floor - EE strained back
## 15645 Client pushed back from table, looked as if she were going to fall; EE reached out to grab client and in process twisted left knee. ()
## 15646 Client pushed books off table in small dayroom; client bite staff's left elbow. ()
## 15647 Client pushed emp causign emp to fall hitting right knee
## 15648 Client pushed employee and stepped on left big toe ()
## 15649 Client pushed hand into door causing to jam lft ring finger.
## 15650 Client pushed into dining room door-hit left shoulder on metal piece. ()
## 15651 Client pushed staff down to floor ()
## 15652 Client pushed staff from behind injuring her l shoulder & l knee. She went to the er on 4-1-09 & she has an appt today 4-6-09 at goldsboro ortho.
## 15653 Client pushed wheelchair on left foot
## 15654 Client pushing another client in wheelchair-came out of elevator and ran over both of EE's feet.
## 15655 Client pushing back on EE's hand-EE was holding client's head waiting for head rest to be placed.
## 15656 Client put EE in headlock. EE felt back pop
## 15657 Client put her head through window. EE tried to get clt out & place her hand around clt head to keep clt from getting hurt. Cut rt arm & hand.
## 15658 Client putting feet in front of wheelchair causingstrain on employee when moving chair.
## 15659 Client ran by and tried to grab pudding. EE got it before client and client pushed her, causing her to hit rt arm against wall
## 15660 Client ran into EE's rt leg with electric wheel- chair
## 15661 Client ran into staff and knocked her down ()
## 15662 Client ran out dining room-EE called client back to room-client knocked EE's hand against door
## 15663 Client ran out of courtyard-EE redirecting client when client hit EE in the face with glasses on and broke them.
## 15664 Client ran out of unit and staff ran out calling after him in an attempt to stop him staff ran after him and fell down. ()
## 15665 Client ran outside EE ran out to catch her. EE caught client & fell client slapped EE in face facial contusion.
## 15666 Client ran over EE's left little toe with wheel- chair.
## 15667 Client ran over staffs r foot with a wheelchair, staff seen at lmh er and diagnosed with a contusion. ()
## 15668 Client ran over to the table that she was sitting at and grabbed her by the whistle, pulled her out of chair that she was sitting in and tried to take
## 15669 Client ran up hallway and EE ran after - EE hit spot on floor and fell on rt elbow and shoulder
## 15670 Client reached out and grabbed arm. ()
## 15671 Client receiving injection jerked, causing needle to flip back and stick EE in right 4th finger.
## 15672 Client refused helmet and hit EE with helmet on lt hand straining lt thumb
## 15673 Client refusing to take medication; EE strained lt shoulder and lower back
## 15674 Client rolled wheelchair into cart twice; another staff redirected; when EE turned around client hit EE on right hand hitting right 5th finger. ()
## 15675 Client rush at staff hitting him in rt eye with fist breaking glasses and making a bruise and a scratch by rt eye ()
## 15676 Client scratched EE in the eye.
## 15677 Client scratched EE in the left eye
## 15678 Client scratched EE while trying to stop client from hurting self.
## 15679 Client scratched EE's face
## 15680 Client scratched employee on right palm
## 15681 Client scratched staff on arm ()
## 15682 Client scratched staff when getting out of bed ()
## 15683 Client scrathced EE on the arm while walking down the hallway.
## 15684 Client seizured, during post seizure state client requires to be placed in wheelhcair, EE felt some-thing pull in lower back
## 15685 Client set his shirt on fire, trying to put fire out and burned hands
## 15686 Client shoved EE against the wall... Fell.. Injuringhead, knees, cut on hand
## 15687 Client shoved her head against the door and hit side of face with fist ()
## 15688 Client showed aggression towards another client and staff, EE attempted to block & bite in the process and turned pulling rt shoulder.
## 15689 Client showing jcc dogs, jcc asked client if dogs were friendly and okay to pet. Client said yes and client and jcc approached dog. Approx 15 seconds
## 15690 Client sitting in chair his crutch hit staff on finger as he sat down in chair. ()
## 15691 Client sitting on floor, EE tried to pick client uppain in lower back, leg, groin.
## 15692 Client skating & ran into EE. EE was knocked backwards on floor.
## 15693 Client slammed EE into door causing EE to strike left arm on door knob
## 15694 Client slammed a door on EE's right hand.... Injured fingers
## 15695 Client slammed door on EE fingers
## 15696 Client slammed door on left hand
## 15697 Client slammed door on staff's hand ()
## 15698 Client slammed left foot in door
## 15699 Client slammed locker door on EE's right arm and hand.
## 15700 Client slapped EE on face and bit her right ring finger
## 15701 Client slapped EE on face and pulled EE's hair outcausing EE's head to pull back, EE has discomfort in neck.
## 15702 Client slapped another cna-EE placed client in picand strained lower back. Bulging disc l4-5
## 15703 Client slid and EE caught her. Client landed in floor
## 15704 Client slid chair from dining table striking staff and pushing her belly against counter ()
## 15705 Client slid out of harness lift while EE was transferring client, EE caught before client hit floor and rt hand was caught between client and lift.
## 15706 Client slid to floor and I assisted hct to lift him up to get in the wc. I went to cart and reached for liquid med.
## 15707 Client sliding out of wheelchair-EE grabbed clients legs and placed back into wheelchair-felt pain later in rt wrist.
## 15708 Client slipped in urine started to fall EE caughtclient strained back
## 15709 Client slung arm and hit EE w/elbow in ribs.
## 15710 Client spit in EE's face during medication pass. ()
## 15711 Client spit in EE's lt eye.
## 15712 Client spit in attorney's eye intentionally while talking about case. ()
## 15713 Client squeezed EE's finger between seat of chair when EE went to sit down.
## 15714 Client stamped on foot that she had just had surgery on. Contusion/bruises.
## 15715 Client standing on scales and started leaning and client let go of scales causing scales to hit EE on left foot.
## 15716 Client started hit EE-client proned while trying to get client to floor EE injured felt pain in back.
## 15717 Client started running away from EE then client fell on EE's rt foot/ankle
## 15718 Client started to drop (to floor)-employee attempted to catch/hold-so client wouldn't hit floor. Supported clients weight. R. Gluteal strain.
## 15719 Client started to fall - EE caught - pain in back & groin
## 15720 Client started to fall - EE leaned over to catch EE felt pain in back
## 15721 Client started to fall - EE went to assist anotheree hold - reached over client wheelchair to hold client - strained back.
## 15722 Client started to fall and EE assisted client and hurt rt neck, back and arm
## 15723 Client started to fall and EE caught client and noted pain in low back.
## 15724 Client started to fall out of chair and EE caught the client and twisted arm in the process of tr ying to catch the client
## 15725 Client started to fall, I caught client by his gait belt and prevented the fall, but twisted my left ankle
## 15726 Client started to fall-EE attempted to catch client and both fell onto bed-clients elbow struck EE in chest.
## 15727 Client started to grab everything off the wall. Asked client to stop, client grabbed and pulled on EE's left arm and wrist. This occurred twice within 5 minutes ()
## 15728 Client started to pull EE's hair. EE raised right arm to block. EE felt arm pull out of socket.
## 15729 Client started to run and stepped on staff's foot ()
## 15730 Client started to slide down into the tub-EE bent over of tub and pulled client back up onto the seat, felt a pinch in middle of back.
## 15731 Client started to strike EE. EE blocked hit. In process hurting her right wrist & index finger
## 15732 Client started to stumble employee reached to stedy him, client turned and punched the employee on right cheek bone
## 15733 Client stated she was entering her supervisor's office and she ran into an arm chair with her left knee. Client stated it hurt immediately.
## 15734 Client states walking outside around post 8 fence, knee gave out ()
## 15735 Client statrted to drop to her knees. EE caught client to keep her from hitting the floor and noted pain in her back.
## 15736 Client stealing, (trying, ) employee intervened and was pushed by client, lost balance and fell
## 15737 Client stepped down in wheelchair, client attempted to get out of wheelchair. Client was hanging by head on lap tray. Attempted to pull up
## 15738 Client stepped on employee's foot while being aggressive ()
## 15739 Client stepped on left foot
## 15740 Client stepped on staff foot
## 15741 Client stepped on staffs foot. EE seen at er, rtw 12/13/09 ()
## 15742 Client stomped lt foot. Lt foot contusion
## 15743 Client stood and fell backwards both EE/client fell to the floor client landed on top of EE's shoulder.
## 15744 Client stood up grabbed around EE's waist; client sat down on bed; EE lifted client's legs up on bedand slide client over to middle of bed
## 15745 Client stood up-started to fall back, EE turned tocatch client and felt a pull in the right side of her back.
## 15746 Client striking head against wall-emp. Placed lefthand btw. Head and wall-clients head hit hand-mashing ring into finger.
## 15747 Client struck EE in head several times
## 15748 Client struck EE in the ear
## 15749 Client struck EE in the face while EE was restraining client.
## 15750 Client struck EE in the face with a full can of soda which was in a plastic back-contusion & laceration
## 15751 Client struck EE in to nose
## 15752 Client struck EE on right side of face. Loosened lower tooth.
## 15753 Client struck EE on the back with his fist, causing EE to jerk, pain in back.
## 15754 Client struck EE w/fist to right lower jaw.
## 15755 Client struck at EE, then grabbed EE's rt index finger. Rt index finger sprain
## 15756 Client struck at EE. EE blocked hit. Right index finger was hit by client & finger jammed
## 15757 Client struck employee (forcefully) between breasts
## 15758 Client struck employee when he entered room to confiscate contraband from client.
## 15759 Client struck staff with a bucket, staff went to urgent care and is still out of work
## 15760 Client stuck out foot and EE almost fell entended knee.
## 15761 Client stumbled over box in EE's office, EE kept client from falling and in the process felt pain in left rib area.
## 15762 Client stumbled, EE was holding clients hand, client fell and when client fell EE twisted left wrist.
## 15763 Client suddenly became aggressive and attacked staff, scratching staff on right arm
## 15764 Client swung and hit EE in the face hard (between the eyes). ()
## 15765 Client swung arm struck staff on rt thumb bending it backward ()
## 15766 Client swung at EE and scratched left side of neck
## 15767 Client swung open door; caught EE's left 3rd finger on the end. ()
## 15768 Client taking punch off shelf. EE proceeding to take punch away. Client grabbed EE's left thumb & bent it back causing severe hyextension of thumb
## 15769 Client that EE was assisting had conjunctivitis
## 15770 Client that could not swim jumped into the pool. Lifguard pulled client to side of pool. EE pulled client up & out of pool. Strain back.
## 15771 Client threw a box at EE--blocked it with hands. Rt hand ring finger base knuckle/ lt hand index finger.
## 15772 Client threw barstool striking staff on the arm while staff was assisting another client's meal. ()
## 15773 Client threw bowl striking staff in forehead at snacktime ()
## 15774 Client threw cahir atee and EE tried to block thechairfrom hitting her in the face and the chair struck EE on the lt hand.
## 15775 Client threw chair at EE, EE placed client in pic hold, when EE was taking client down onto the floorthe client fell on EE. Right arm/wrist
## 15776 Client threw drink at EE-client attempted to leavebldg & punched EE in nose 3 times
## 15777 Client threw food on floor and EE slipped and felltrying to clean it up. Back & neck pain.
## 15778 Client threw iron @ employee.
## 15779 Client threw pillow on floor EE walking backward to keep client from running out of door, feel overpillow hitting rt shoudler, hio, head on floor.
## 15780 Client threw toy monitor and struck EE in the left shoulder
## 15781 Client throw a potted plant at EE-EE att to move out of the way and twisted left ankle.
## 15782 Client throwing objects at staff, order obtained for restraints, client hit staff on rt eye & lt
## 15783 Client tightened up legs on EE's right hand and wrist while EE was putting attends on client. ()
## 15784 Client to hospital for catscan, medicated, non ambulatory-emp. Lifited from w/c to table & w/c into van-back pain
## 15785 Client to the buildng walking up the ramp.. She pulled away and employee's hand hit the handrail
## 15786 Client took belt off & hit staff on face knocking glasses off breaking frame and scratching lens. Scratch to rt side of face & lip.
## 15787 Client took pirn and hit EE on lower rt leg.
## 15788 Client tried to grab staffs arm, staff snatched itback and it began hurting
## 15789 Client tried to hit EE - EE extended his lt arm toblock.
## 15790 Client tried to hug EE; EE would not let client doso; client twisted right arm and hit her in the right check.
## 15791 Client tried to run almost pushing employee down.
## 15792 Client tried to sit down while holding up rt hand caught between chair an client. Bumped hand on flip up trash can. Injured rt hand.
## 15793 Client tripped EE and EE fell on left knee
## 15794 Client tripped and pulled staff down as he fell ()
## 15795 Client tripped over another clients foot and started to fall-EE caught client and placed in chair-strained back in the process
## 15796 Client tripped over wheels on wheelchair and fell landing on employee. Injuring low back.
## 15797 Client trying to get in nurse station, attempted to phy. Assist client, placed in a therepeutic hold, client hit rt eye and nose before helped arrived
## 15798 Client trying to push past EE & while EE was trying to stop him she hurt left pinky finger
## 15799 Client trying to put head in commode-EE trying to get client to stop-client caused EE to fall
## 15800 Client turned and hit staff in face. ()
## 15801 Client twisted EE elbow
## 15802 Client twisted employee's right thumb. Hx of priorinjury to r thumb due to mva
## 15803 Client twisted right hand.
## 15804 Client upset and hit EE on nose.
## 15805 Client upset because too close to hwy-he was askedto move-client started charging at EE-tried block him hitting her & EE's rt hand was hit
## 15806 Client upset by fire drill bit staff ()
## 15807 Client upset over card game- EE att to calm clientwho struck EE in face.
## 15808 Client upset pulled EE into office and pushed EE over desk and chair-for 10mins client hit EE in chest, face and other arears.
## 15809 Client upset with EE for coming in late, EE began fussing & kicked EE on left leg twice (2), then threw bedroom shoe at EE hitting left arm
## 15810 Client upset with EE while being escorted ot itd when leaving room client grabbed EE and jerked herdown.
## 15811 Client urinated on floor-EE att to keep client frmfalling backwards and felt pain in lower back.
## 15812 Client uses belt to walk, assisting w/ client, client dropped in hallway, felt pain in lower back
## 15813 Client walked into staff jamming lt ring finger ()
## 15814 Client walked out of bedroom and hit staff in the nose with her fist.
## 15815 Client walked out of living room, EE went to get client, client turned around and hit EE in the nose.
## 15816 Client walked passed EE and hit him in the back
## 15817 Client walked past EE client punched EE with fist in face injury to nose, mouth
## 15818 Client walking down the hall and grabbed EE's rt arm at elbow twisting it.
## 15819 Client walking to van and stepped on gravel rocks and fell-EE att to stop client from falling and fell injuring rt ankle
## 15820 Client wanted to get up but refused to wear helmet, client grabbed right wrist and pushed EE away straining right wrist. ()
## 15821 Client wanted to get up; got angry and spit in EE's eyes. ()
## 15822 Client was about to fall - she came up from behind& caught her under the arms & around waist. Otherstaff assisted standing her upright.
## 15823 Client was about to fall and grabbed EE's neck left shoulder
## 15824 Client was about to slide out of chair onto floor; holding onto client and getting client back into chair strained left shoulder blade area on back. ()
## 15825 Client was acting up, EE tried to calm down. Another client pushed EE down, head hit wall and elbow hit floor.
## 15826 Client was advise she could not smoke-got upset and started throwing a book against the wall-EE att to assit client who kicking, scratching EE.
## 15827 Client was aggiatated & went after another client EE intervened and client then grabbed EE's thumb forcefully.
## 15828 Client was aggressive and kicked EE in left shlderand shoe
## 15829 Client was aggressive and needed to be restrained staff injured rt hand while attempting to restrain client as client fell to floor. ()
## 15830 Client was aggressive to another EE-EE assisted inplacing client in therapeutic hold injuring left side of shoulder, neck and arm.
## 15831 Client was aggressive toward employee. Client kicked up in air and kicked EE in the throat. ()
## 15832 Client was aggressive, intervened and client twisted rt arm while being placed in a personal restariant.
## 15833 Client was allowed out of seclusion to use the restroom. The client became agitated and began to attack EE.
## 15834 Client was angry threw pot at EE, hitting her on right shoulder. Contusion of shoulder
## 15835 Client was asked to brush teeth and put on underwear. Client began fighting and hit EE in nose
## 15836 Client was asked to put on underwear and brush teeth. Client started swinging hitting, scratchingkicking, knocked glasses off, hit left arm, eye
## 15837 Client was assaulting staff when EE was breaking up fight everybody's wght went backwards and EE fell against wall injuring back.
## 15838 Client was attempting to stand up and lost balancehitting the EE on the left wrist
## 15839 Client was bathing client and client became aggressive and struck EE - EE was bent over and strained back
## 15840 Client was behving badly when EE tried to ensure the safety of the client.
## 15841 Client was being aggressive and staff came to intervene and the client grabbed her shirt pulled her back/forth and staff fell backwards.
## 15842 Client was being combative. Client was kicking and hit EE on left knee.
## 15843 Client was being non-complient to EE and another staff-EE picked client up to move and felt pain in left side of back and knees.
## 15844 Client was being placed in therapeutic hold and bit EE's left upper arm
## 15845 Client was being put int pic hold by other EE's client started kicking and kicked EE in left knee.
## 15846 Client was being transported to work on golf cart and became aggressive toward staff. Bit staff on arm. ()
## 15847 Client was brought to playroom took helment off nad threw it, helmet hit nose
## 15848 Client was coming out of office and client was coming through hallway door and tripped. He began to fall and EE caught him.
## 15849 Client was coming out of restroom and EE tripped over client and injured rt foot and ankle
## 15850 Client was excited; tried to involve client in an activity. Client went into behavior pulled EE's hair and jerked EE's neck causing a strain to head and neck. ()
## 15851 Client was exhibiting aggressive behaviors-client kicked EE in the abdomen and caused EE to fall backwards onto floor-left elbow bruised
## 15852 Client was falling - EE tried to beat fall and turned and hurt back and left ankle
## 15853 Client was falling to floor, EE caught-client against employee rt knee.
## 15854 Client was falling to the floor and EE broke her fall and injured her right shoulder.
## 15855 Client was falling, reached out to stop the fall, pulled back
## 15856 Client was falling, staff tried to prevent fall and injury to client, caught right hand between desk and client
## 15857 Client was fighting EE while trying to give rx client pulled EE and hurt left hand and pinky finger
## 15858 Client was fighting with staff down hall and stafffell on the floor striking knee.
## 15859 Client was getting into van, started falling back on EE. EE held client up so would not fall. Felt funny in chest and left shoulder.
## 15860 Client was getting up and almost fell-EE grabbed client to keep from falling-EE pulled left shoulder
## 15861 Client was having a behavior EE went to help, client hit employee w/his head right hand
## 15862 Client was having a seizure EE tried to keep client from falling and slipped in water strainingback
## 15863 Client was having a seizure when staff member tried to catch client. Afterwards EE noticed a burning aching in back of neck & shoulder
## 15864 Client was having a seizure. EE intervened to protect client from hurting self, EE's left thumb was jammed back.
## 15865 Client was having seizure. EE grabbed hold of resident to keep from falling. Had pain in lower side when lowering resident to floor.
## 15866 Client was helping with laundry and slammed lid down on EE's rt wrist
## 15867 Client was hitting and bittin EE. EE put client in pic.
## 15868 Client was hitting and kicking another client-EE att to stop client and pick client up off floor- felt a pain in back.
## 15869 Client was hitting himself when EE tried to intervene. EE was head butted by client which snapped neck back.
## 15870 Client was hitting his head on the floor EE grabbed him up off floor & went backward with him & was hit in the head.
## 15871 Client was holding EE's left hand when he squeezedee's hand. EE tried to remove hand from client's and in the process she pulled her left thumb.
## 15872 Client was in a behavior and threw a flower baskethitting EE's hand
## 15873 Client was in a behavior pattern prior to dinner hour (known to happen daily). Client ran to her bedroom and tried to get under bed. EE was asked to help her up. Later that eve, EE noticed pain/strain in affected areas noted. ()
## 15874 Client was in a behavior, threw chair, striking eeon r leg and foot. Also bit EE on rt hand.
## 15875 Client was in behavior outburst of head banging. EE intervened in behavior hitting head against table and leg was struck by chair.
## 15876 Client was in behavior then became aggressive. Client ran down hall. EE blocked client, client dropped to floor landing on EE's lt foot, causing strai
## 15877 Client was in behavior. Assisting staff by intervening b/w client and staff and received strain to rt shoulder and arm
## 15878 Client was in behavior; head banging; EE attempted to put pillow behind client's head; right hand caught under pillows. ()
## 15879 Client was in frt of EE going down stairs-client fell back on EE left knee knocking knee out of socket
## 15880 Client was in hallway cursing EE-EE trying to get client to stop when client attacked EE and both fell to the floor causing EE to fall on rt knee.
## 15881 Client was in pain. Client began kicking, fightingand falling to the floor. EE tried to calm client down causing pain in back.
## 15882 Client was in shouwer, and confused non compliant behavior and client threw all her weight on EE's right shoulder.
## 15883 Client was jumping & pulled out iv tube causing blood to spray on EE hands
## 15884 Client was kicking and grabbing staff as the staff attempted to dress client injuring her lt thumb and her lt knee ()
## 15885 Client was kicking, fighting, spitting and scratching EE as being escorted to room.
## 15886 Client was moving from one chair into another and started to fall and EE caught and placed back in chair- noted pain in low back.
## 15887 Client was out of control and hit EE on left breast
## 15888 Client was passenger in work van that was struck by another vehicle - lower extremities
## 15889 Client was passing out, EE caught client and lowering him to the floor, felt something pull in back
## 15890 Client was placed in time-out and as EE was leaving the rm client kicked EE between the legs into the left testicle.
## 15891 Client was playing with keyboard. EE put his hand on client's shoulder to prompt client to leave. Client stood up and twisted EE's right middle fing
## 15892 Client was pulling away from EE and EE was reaching to put on client's shirt. Pain in right side of lower back and middle of right side. ()
## 15893 Client was pushing another client in wheelchair- rolled over emp. Left foot
## 15894 Client was pushing on EE's arm and pushed the arm backwards and in an akward position straining rt shoulder
## 15895 Client was reaching on tv cabinet. EE got up to to get toy for client. Client dropped toy on ees left knee
## 15896 Client was running toward kitchen. While attempting to run down hall to try to get in front of client, lost footing, fell on right side on floor hurting right ankle, right knee, shoulder, neck, wrist and 5th finger. ()
## 15897 Client was running. Client fell, trying to preventfall client fell back on left wrist
## 15898 Client was sitting on EE's lap and pushed EE's head back causing pop in neck
## 15899 Client was sitting on EE's lap when client pushed EE's head back straining EE's neck
## 15900 Client was sitting on bed had a drop seizare-EE reached to keep client from falling and felt pain in neck.
## 15901 Client was sitting on couch in dayroom and client reached up and pointed finger into EE's left eye.
## 15902 Client was sitting on floor. EE pulled client up several times. Client would fall back to floor
## 15903 Client was sitting on toilet when he stood up and lunged like he was trying to head butt EE. When EE stepped back, a sharp pain was in right foot and ankle. ()
## 15904 Client was sleeping and hitting his head and EE shocked the hitting and slapping causing bruise to back of right hand.
## 15905 Client was sliding off wheelchair. While lifting the client, felt a sharp, throbbing pain on lower back. ()
## 15906 Client was stabbing EE in the back with a pen right shoulder/back
## 15907 Client was taking out trash and client slipped and EE went to catch client and slipped and both fell straining wrist and rt leg
## 15908 Client was trying to fight & bite employee--client bit staff & staff tried to pull away causing hand to hit door facing ()
## 15909 Client was trying to get into bed, in the process client pulled EE toward him causing EE to spin around andpull EE back resulting in pain.
## 15910 Client was trying to get on elevator when EE was advised not to let client get on elevator-in process EE injured back.
## 15911 Client was trying to get out of wheelchair, EE was trying to help her but client grabbed EE r wrist and pulled it
## 15912 Client was trying to hit EE when EE tried to blockpunch. Client hit left thumb
## 15913 Client was trying to leave unit and EE was trying to restrain client, client moved away causing wristto be injured
## 15914 Client was trying to steal sodas he shoved EE poking EE in rt eye causing EE & client to fall EE hit knee and elbow.
## 15915 Client was upset and scratched EE on both hands and arms
## 15916 Client was upset grabbed EE by the wrists, trying to sign that something was wrong.
## 15917 Client was upset with deer, client turned around and pinched staff on stomach.
## 15918 Client was upset. EE tried to cam client down. Client took a step back, then came forward and struck EE on the nose.
## 15919 Client was upset.... Struck EE... Right thumb
## 15920 Client was walking & knees gave away, EE was holding client's belt & pulled lt shoulder.
## 15921 Client was walking down hallway and swung at EE scratching left shoulder then client pushed EE over a love seat causing neck and back to twist.
## 15922 Client was walking in kitchen client started to fall EE caught client
## 15923 Client was walking on bed, began to fall, EE tried to catch him, hit EE in face and caused him to fall hitting floor w/ head and breaking glasses
## 15924 Client was walking past, hit staff in nose with fist for no apparent reason
## 15925 Client was walking toward door; EE placed hand on gait belt; client stiffened up; client lost balance, EE held onto belt guided client in a seated position on floor, straining right wrist. ()
## 15926 Client was walking with walking belt; started turning around and around; client started to fall, EE grabbed client's walking belt and felt pain in left hand. ()
## 15927 Client went into behavior and grabbed staff's arm ()
## 15928 Client went into behavior and hit EE in eye.
## 15929 Client went into behavior and started swinging and kicking; hitting EE in the center of the chest and kicking EE above right knee. ()
## 15930 Client went into behavior, and began kicking & slapping, tried to get out of wheelchair & startedto fall. EE tried catch client and strain mid back
## 15931 Client went into behavior; grabbed EE's hands and arms. Client's finger nails dug into EE's both hands and arms and broke the skin. ()
## 15932 Client went into behavior; started head butting, scratching and attempting to bite. Scratched right arm amd right side of neck. ()
## 15933 Client went to door and was told to come back in and sat down in stairway and had to be removed from w/2 other staff members strained back.
## 15934 Client went to lay down in the street and EE ran to get client and fell abrading knee and shoulder
## 15935 Client wrung rag with bleach on EE - bleach in eyes
## 15936 Client wzas lifting the basket down from the con- trol tower, the basket hit EE on the top of head. Contusion.
## 15937 Client's child climbed on couch. EE tried to help child and child bit EE on elbow
## 15938 Client's wheelchair hit EE's rt ankle.
## 15939 Clients and staff were roasting marshmallows around campfire. A client accidentally poked employee in the eye. Employee eye was open and then began to water. Employee rested with an ice bag for 10 min. Right eye. ()
## 15940 Clients children became assaltive after told fostecare, stomped on EE left foot, kicked in thigh and shins and fell and jumped on EE. Lumbar strain, con-
## 15941 Clients elbow struck staff in the nose causing it to bleed. ()
## 15942 Clients full body weight on EE left wrist
## 15943 Clients were fighting-EE assisting to separate in process kicked in stomach, fell on rt knee, injured rt shoulder and arm
## 15944 Clients were fighting. EE intervened. One client grabbed EE causing EE to fall on back. Client rolled on top of EE
## 15945 Clients wheelchair tipped forward, EE's leg caught in wheel causing her to fall. Back strain/knee contusion.
## 15946 Climb down on ladder foot slipped and fall down
## 15947 Climbed an extension ladder to get onto shelf in warehouse where electrical supplies are kept in inventory. Fell to floor
## 15948 Climbed down ladder from top of other exhibit after ?? Snack. Pulling hatch overhead & hatch fell in right hand.
## 15949 Climbed ladder to make sure roof hatch was secure, slipped and fell
## 15950 Climbed on rear of planters using drive wheel as step. Wheel not securely on ground, when EE put weight on wheel, it spun causing him to fall
## 15951 Climbed on top of 2 stacked laundry baskets to observe the unloading process when he slipped & fell to the floor of the clothes truck trailer.
## 15952 Climbed tree to prune and slipped-att to catch self and cut hand on pruning shears.
## 15953 Climbed up on a step stool to reach certificates and injured back. Leg numb & tingley on the left side form knee down.
## 15954 Climbing aluminum ladder, ladder folded up causingee to fall & stirke face on joint in ladder, EE fell unconcious to the ground
## 15955 Climbing control tower with another officer, stepped back to give officer room and grabbed handrail, felt pain in l shoulder
## 15956 Climbing down a ladder and missed step and twistedlower back.
## 15957 Climbing down a ladder/working on a ladder, strainto left knee
## 15958 Climbing down a wall ladder, missed the last step and fell to the floor ()
## 15959 Climbing down from ladder- pullinghatch overhead and hatch fell on my rt hnad.
## 15960 Climbing down from scaffold. Grabbed kick board toclimb down with and board pulled loose. EE fell & injured ankle EE neighbor - 341-2914 ********
## 15961 Climbing down ladder & her foot slipped off secondto last step at bottom of ladder, twisted her foot
## 15962 Climbing down ladder from roof. Ladder slipped & EE fell onto back hitting rib cage then fell onto brick step causing head injury
## 15963 Climbing down off a bench, left knee buckled when EE touched the ground
## 15964 Climbing down off of ladder and stepped in a hole in the floor injuring rt ankle.
## 15965 Climbing down off trailer when EE felt pain in neck & some in upper shoulder
## 15966 Climbing in bus to do inmate count, hit head goingin back door.
## 15967 Climbing into boat, lost footing and caught right foot between boat and piling and fell, twisting right knee ()
## 15968 Climbing into truck bed and knee popped out up place
## 15969 Climbing ladder and hit his head on metal access door. ()
## 15970 Climbing ladder to life support buoy. Lost balancefell 8' to pavement.. Landed on feet.. Crushed rt heel
## 15971 Climbing ladder, she hit her left knee on the hand rail
## 15972 Climbing off of a truck and slipped and fell to the ground and caught himself with his left hand breaking his left arm.
## 15973 Climbing on & off full track to spray hot spots onwildfire. By mid-day right hand became sore & begin to swell.
## 15974 Climbing on flatbed truck to inspect bulldozer, lost footing, broke fall by hanging on with left arm, felt tear/pop in upper left bicep
## 15975 Climbing on the bars to retrieve a letter from theupper mezzanim and left arm became tangled & dislocated.
## 15976 Climbing on to roof top reaching out to open security door jammed left knee. ()
## 15977 Climbing onto loading dock when back started hurting
## 15978 Climbing out of boat hatch; placed knee on deck and inadvertently placed full weight on bolt
## 15979 Climbing out of van & right foot caught in space between door. Fell on ground onto left hip. Was in process of delivering made to bldg
## 15980 Climbing out of window onto roof and foot slipped causing leg to be lt suspended on window sill
## 15981 Climbing over duct work in a building he pulled his lower back
## 15982 Climbing stair case ()
## 15983 Climbing stairs and put foot down wrong way, twisting left ankle. ()
## 15984 Climbing stairs and tripped falling on her right knee cap
## 15985 Climbing stairs and walking for clinicals at waynecc. Walked up stairs toured several bldgs for clincal purposes. Burning & friction left knee.
## 15986 Climbing stairs between offices on 10 and 11th floors, slipped and fell onto left wrist. ()
## 15987 Climbing stairs to get the 3rd floor while carrying tools, pain in abdomen. Dx with inguinal hernia. *** umbilical hernia is pre-existing & not related
## 15988 Climbing stairs to second floor for orienttion for new postion; upon climbing somehow one foot slipped on one step causing a fall and slip of body down 4 steps to the floor. List injuries as: hand, arm, knee, side of body, leg, feet, hip ()
## 15989 Climbing stairs with mail tripped and fell bruising knee and leg.
## 15990 Climbing stairs, lost balance, mis-judged step. Started to fall, caught self to prevent fall, painin left shoulder and neck.
## 15991 Climbing stairs.
## 15992 Climbing steps to attend classroom, foot caught lip of top step. EE fell, caught herself with her r hand
## 15993 Climbing steps to enter trailer when her foot slipped & she fell, bracing herself w/right arm & her left knee hit step
## 15994 Climbing steps to parking area when he stepped on small stone and his foot twisted around causing left knee to twist & pop
## 15995 Climbing steps, her foot hit the base of the step she then lost her balance, and fell on the loadingdock
## 15996 Climbing the stairs b/w basement and the first floor with food in her hands. Missed step and fell forward onto steps, banging rt knee, hip, hand.
## 15997 Climbing though rhododendron thicket. After field work, while showering to remove debris from head/face/hair, washed foreign body into eye, scratching rt eye ()
## 15998 Climbing through roof hatch, cut head
## 15999 Climbing tractor trailer frame to install radio antenna, slipped and fell 5-6 feet to concrete fall. ()
## 16000 Climbing tree while in bucket truck, holding branchhand saw slipped through & grazed lt thumb knuckle
## 16001 Climbing up & down the ladder for several months, painting begin to feel pain in lower back (l. Side) ()
## 16002 Climbing up a ladder, he felt and heard his knee pop. ()left knee
## 16003 Climbing up and down steep terrain, my right kneew became swollen. ()
## 16004 Climbing up into vehicle, hit side of head on doorframe.
## 16005 Climbing up ladder to adjust water level, slipped on the way down & hit right ear on ladder steps.
## 16006 Climbing wall. Finger popped and experienced pain
## 16007 Climbng up stairs after pulling file in basement, tripped on step and lost her ballance ()
## 16008 Clinet bit on left hand. EE was taking client to bathroom. Bite to left hand.
## 16009 Clipping pt's nails, nail went in EE's right eye ()
## 16010 Clm't driving bus. Buzzard flew into and broke windshield. Clm't got foreign bodies in eye.
## 16011 Clmt involved in auto acc.
## 16012 Clmt was walking to office when she was pushed by a student and injured left hand
## 16013 Clock hanging above the chalkboard fell on EE's neck when the EE bumped against the chalkboard tray.
## 16014 Clock out of work, walking to car, step off sidewalk and twisted my left ankle ()
## 16015 Clorox and water bounced into EE right eye
## 16016 Clorox poured into buckett - didn't know somethingwas already bucket. Eyes burning, nose effective
## 16017 Close contact with resident with scabies.
## 16018 Close door on my hand-bathroom, 3 east
## 16019 Closed a cell door on ring finger. ()
## 16020 Closed door & didn't move hand fast enough contusion left hand
## 16021 Closed door on 2nd digit on right hand.
## 16022 Closed door on finger, caught between door and frame
## 16023 Closed door on left middle finger.
## 16024 Closed door on lft thumb
## 16025 Closed door on right finger ()
## 16026 Closed door on rt thumb of work van
## 16027 Closed door with his thumb in the door jam
## 16028 Closed dormitory door on rt thumb.
## 16029 Closed entrance door to the tower and finger was slammed in door ()
## 16030 Closed finger in between door and cage releaseing inmate ()
## 16031 Closed hand in door - lt hand palm region and distal phalnx of middle finger.
## 16032 Closed heavy door on index finger.
## 16033 Closed her right thumb in the security van door.
## 16034 Closed in 1b vlock glass door
## 16035 Closed in a door, as going into a dorm in tillery. ()
## 16036 Closed in sally port (slider) door & allegedly injured lower back when she pulled the (air compressed) slider door
## 16037 Closed in sally port door/ lt hand/lt shoulder/elbow and hand sore ()
## 16038 Closed l thumb in low rator
## 16039 Closed ladder on his finger
## 16040 Closed right hand in door of ward 491. Caught right 2nd, 3rd and 4th finger causing pain and swelling.
## 16041 Closed rt 5th finger in door
## 16042 Closed rt hand up in door
## 16043 Closed state car door on right index finger - finger was caught between car door and car frame ()
## 16044 Closed the door catching her pinky finger on her right hand in the door.
## 16045 Closed the door on hand (right) ()
## 16046 Closed truck door on right middle finger while getting out.
## 16047 Closed window in dorm and the window fell open & hit back of head. ()
## 16048 Closing a cage door. Pcv tube on index card on cage. Pcv tube went through hand and broke off possibley in hand.
## 16049 Closing a cell door and injured right shoulder/upper arm ()
## 16050 Closing a cell door in cpod right hand slipped andpinched middle finger
## 16051 Closing a food trap door, inmate tried to grab baton, officer frazier blocked the inmate from grabbing his baton
## 16052 Closing a student't room door when the student became upset and hit him lip and lft jaw.
## 16053 Closing a window, window broke, cut wrist. ()
## 16054 Closing bedroom door, slammed lt thumb in door
## 16055 Closing cell door, inmate spit into & onto EE's face going in his eyes & mouth
## 16056 Closing cell wicket door, turned head to speak with other staff. Closed wicket door on finger.
## 16057 Closing classroom door and caught finger in the door. Contusion tip of rt index finger.
## 16058 Closing cupboard box full of pasteur pipetts for disposal & was cut by tip of pipe sticking out of box
## 16059 Closing door & swung shut sooner than anticipated. Catching 2 middle fingers of left hand
## 16060 Closing door employee slammed his own lt middle finger in door ()
## 16061 Closing door on 2e and hand was caught in the door
## 16062 Closing door on vehicle hand slipped off handle, finger got caught in door
## 16063 Closing door she accidently closed her hand up in door
## 16064 Closing door to cell inmate grabbed door & slammed it on his left hand at the wrist
## 16065 Closing door to kitchen and smashed right hand in door
## 16066 Closing door, finger got caught inside groove of door ()
## 16067 Closing entrance gate rod struck her right hand causing injury
## 16068 Closing fence gate while reaching for one side of fence outer gate hit lower right heel
## 16069 Closing fire door and handle fell on hand. ()
## 16070 Closing folding ladder and pinched finger on the right hand causing severe fracture with displacement.
## 16071 Closing food passage door. Caught left forefinger in food passage door
## 16072 Closing food passgae door on c-block c-7 in scb injured rt wrist.
## 16073 Closing food traps after breakfast meal. Closed trap door on her finger
## 16074 Closing frame mounting bracked under automobile to prepare metal for welding. After completion noticed irritation of left eye
## 16075 Closing garage door at the maintenance shop and got fingers caught between the door panels and it smashed fingers.
## 16076 Closing gate after getting dot gas, caught heel onpiece of fence.
## 16077 Closing gate at the 1042 bldg, & left fingers (#3 & #4) were caught between the gate. ()
## 16078 Closing gate back smashed finger gate/fence/lock. ()
## 16079 Closing gate caught r thumb between two sides of gate. ()
## 16080 Closing gate to ball field when center bar slid down and caught his thumb
## 16081 Closing gate to north unit and accidentially slammed door on his right fourth finger
## 16082 Closing kitchen door & her hand got caught while closing it.
## 16083 Closing lock when locking mechanism allegedly pinched her left hand
## 16084 Closing med cart and locking cart, last finger of right hand got caught between hinge and drawer
## 16085 Closing med. Door, left middle finger closed between door.
## 16086 Closing metal drawer and hyperextended right thumb ()
## 16087 Closing metal gate in radiology when locking mechanism fell onto my wrist ()
## 16088 Closing of tailgate on dump truck and crushed rt. Thumb
## 16089 Closing open window--latch did not catch. Window popped open, reclosed with right hand, window paneshattered cutting right eye lid.
## 16090 Closing outer sally port gate got hand caught between gate & the gate post which holds the chair
## 16091 Closing outside mediation door, door closed on index and middle fingers of left hand.
## 16092 Closing overhead door on one foot, slipped, injured back
## 16093 Closing pad lock on security fence and pinched left finger, causing a cut
## 16094 Closing patrol vehicle door, top portion of right index finger caught in door.
## 16095 Closing red gate to alternate driveway passages. I lifted the gate out of the cradle; gate slipped out of my hand; gate struck the inside of my right knee. ()
## 16096 Closing segregation door he got his small finger caught in it.
## 16097 Closing sliding van door and hand got caught inside the door ()
## 16098 Closing supply closet, thumb got caught in way
## 16099 Closing the car door on left thumb while taking an inmate to rex hospital. ()
## 16100 Closing the door and hit left side of face
## 16101 Closing the door of the tower scrapped my right thumb on lock latch ()
## 16102 Closing the front of beaverdam, inadvertently smashed her lt thumb
## 16103 Closing the gates & felt a sharp & painful pinch to her left forearm & found a ant biting her.
## 16104 Closing the lid on tar kettle and it closed on right thumb. Cut right thumb and turned thumbnail black. ()
## 16105 Closing the pass through for the cell door and pinched hand in the door. ()
## 16106 Closing the sally port gate & the pole between thegate slipped & wedged EE's rt thumb between the pole & the connecting hasp of the gate
## 16107 Closing the sliding door of the van. Gloved hand was caught and couldn't get hand out of the way. Crushed thumb.
## 16108 Closing trap to prevent inmate from further throwing liquid and hit right hand on the trap door as it closed.
## 16109 Closing valve, walked away, slipped on wet grass and fell down hill
## 16110 Closing van door & struck right ankle
## 16111 Closing window & glass shattered
## 16112 Closing window at prison. Injured back.
## 16113 Closing window in office. Book feel off counter & landed on his left big toe
## 16114 Closing window when he pulled up handle his right thumb got caught between handle
## 16115 Closing window-window was tight hand to pull mashed finger. Lt little finger.
## 16116 Closing wing door when inmate called her. Looked back & accidentally closed her left middle & ring finger tips in door
## 16117 Clothes house dryer caught on fire and officer inhaled smoke and fire extinguisher discharge. ()
## 16118 Clothes house dryer caught on fire and officer inhaled smoke. ()
## 16119 Clotheshouse departed off yard into salleyport & when completed search on truck while closing gate right thumb got jammed
## 16120 Club car was making a turn, started to roll over. Employee (passenger) tried to brace himself with his hand as the cart tipped.
## 16121 Cna assisting others in placing client in Mr For procedure-client was struggling causing injuries to cna
## 16122 Cna helping pt get dressed, pt took her fist and hit EE with her fist on left jaw
## 16123 Co EE and EE putting out trash disposals, in diff locations, while trying to get one off pallet EE lost leverage and felt pull in lower back
## 16124 Co best pulled the desk draw out to put papers in desk, and the draw fell out on my large toe, right foot. ()
## 16125 Co byrum was in central control when he passed outin the chair and fell in his right side onto the floor.
## 16126 Co moore was conducting a curfew check when offenders dog bit him on the right ankle/leg area.
## 16127 Co worker accidentally activated the door catching finger in door
## 16128 Co worker fainted, employee caught the co worker and lowered to floor, jammed thumb
## 16129 Co worker moving filing cabinet; things leaning against filing cabinet; falling and hitting lower leg
## 16130 Co-employee flipped a metal stool onto courtroom clerk's foot while standing at front counter in the civil division on the first floor of the courthouse. ()
## 16131 Co-responding to a code in I/m dinning hall coming down stairs from operations, lt foot slipped on stairs landing on both knees.
## 16132 Co-workeer dropped ramp before EE was ready causing the ramp to bounce mashing EE's ring and middle fingers.
## 16133 Co-worker accidently dropped his end of timber as it was being moved for loading on a pickup truck pulled back, arm, shoulder & dropped to knees.
## 16134 Co-worker and EE were lifting a gel mattress.
## 16135 Co-worker and EE were pulling a client up in bed when injury to right side occurred.
## 16136 Co-worker and EE were pulling a client up in bed with a sheet when EE's rt shoulder popped
## 16137 Co-worker backed into her knocking her down face first.
## 16138 Co-worker closed door hitting EE in left arm
## 16139 Co-worker exited door while EE entered adjacent door, finger was caught between doors
## 16140 Co-worker fell and EE helped pick her up. Middle lower back.
## 16141 Co-worker grabbed EE's wrist, later causing problem with left wrist
## 16142 Co-worker left razor blade in their lab coat pocket. Coat was drapped over office chair. Went to sit down on chair & blade stabbed on buttock
## 16143 Co-worker let go of wrench and it hit hand. ()
## 16144 Co-worker put a leaf on hair. After EE touched leafthen rubbed eye & face, reaction occurred swellingthe skin
## 16145 Co-worker ran into struck r rib area with employeeelbow
## 16146 Co-worker set off indoor insect fogger & did not EE aware of that. Fumes affected eyes/nose/throat, coughing, sligh headache, burning throat.
## 16147 Co-worker set off indoor insect fogger & did not make EE aware of that. Fumes affected eyes/nose/ throat.
## 16148 Co-worker shut EE's rt middle finger in van door
## 16149 Co-worker sprayed highly concentrated air cleaner in office, EE's throat & nose began to burn, & trouble breathing. Via ems
## 16150 Co-worker sprayed lysol in the hallway to rid offcie of potential germs due to her just diagnosed throat virus
## 16151 Co-worker stepped backwards on to EE's right foot, fell backward on to EE, EE tried to keep fm falling, neck popped and immediately felt pain in left shoulder ()
## 16152 Co-worker stopped quickley which caused EE's neck and shoulder to pop forward and backward.
## 16153 Co-worker threw chemical mixture from upstairs which poured onto the back of EE below, causing her to burn on back
## 16154 Co-worker tossed ball to EE and it struck EE's rt small finger
## 16155 Co-worker trying to hit an acorn w/screwdriver which flew out of his hand striking Mr. Fisher on his head.
## 16156 Co-worker was cutting iron pipe, dust from pipe got in hands and was rubbed into EE's eyes.
## 16157 Co-worker was cutting pipe with a torch, steel slay balls got down EE's gloves burning left hand ()
## 16158 Co-worker was letting handcart down & EE was bend-ing down to put mail on the cart. When EE bent down, EE's head collided with hand cart.
## 16159 Co-worker was running the grinder and grinder cameapart and pieces of metal flew and cut right hand laceration right hand.
## 16160 Co-worker was running to a pit and accidnetaly ran into employee knocking her to the ground striking her left elbow and shoulder
## 16161 Co-worker was sitting 1:1, pt attacked began to attack co-worker, helping co-worker, both landed on EE ()
## 16162 Co-worker was taking books off a shelf, one book fell and hit sherie in the nose.
## 16163 Co-worker windshield was fogged when EE was approaching his vehicle. Co-worker drove fwd knocked EE to the ground, ran over foot & stopped veh on it
## 16164 Co-wrkr closed van door on EE's right 3rd finger
## 16165 Coaching basketball, doing revounding drill, movedto ball and fott became stuck, shoulders twisted but hips stayed
## 16166 Coaching football and grabbing player in congratulations, tore right bicep.
## 16167 Coaching/playing basketball, came down and landed on right foot.
## 16168 Code 4 disturbance - running to c yard. Ankle popped
## 16169 Code 4 on union in hallway. An inmate was assaulting staff. ()
## 16170 Code blue drill - clotheshouse hallway - she was pulling the stretcher and when she turned the corner her knee popped ()
## 16171 Code blue in parking lot carried crash cart down steps injured shoulder and back
## 16172 Code blue was called and officer was running to scene and felt something pop in her right upper thigh. ()
## 16173 Code yellow fight one of the inamtes attacked me when I asked her to stop
## 16174 Code4 was called EE hit head on I/m cell door doing take down and hit face on cell door. ()
## 16175 Colander was stuck in dish machine and employee was trying to get it out and his hand slipped cutting his finger. ()
## 16176 Cold air was blowing on EE's face while operating reserrch vessel. Bells palsy, loss of muscle movement to left side of face and eye lid
## 16177 Collecting and putting up inmate breakfast trays and slipped and fell injuring chest, back and left hip. ()
## 16178 Collecting blood on 3 wk old when finished, pickedup lancet to put in sharps box and was stuck in underside of finger
## 16179 Collecting blood samples from a cow, cow raised her head and hit Dr. Whisnant in the head. ()
## 16180 Collecting cats to be removed from unit. Cat bit to right index finger ()
## 16181 Collecting documents from box in copy room tripped and fell ()
## 16182 Collecting field information on big alamance co crossing wire while standing in stream. Wire turned to be an unmarked electric fence
## 16183 Collecting lunch trays and inmate threw yellow substance on correctional officer wall's left side of her body ()
## 16184 Collecting metal files used to sharpen squad's bush axes. Walked into corner of one of tool visesmounted to front bumper of road squad bus
## 16185 Collecting milk samples from dairy plant cooler, leaving cooler carrying samples stepped on pipe and twisted ankle and knee
## 16186 Collecting sediment samples from a lake at a remote research site
## 16187 Collecting stallion for artificial insemination & stallion dismounteed on to EE left foot & knocked EE to ground, fracture to left foot.
## 16188 Collecting traps in creek with dive booties and stepped on sting ray, stung on top of foot. Right foot between big toe and next little toe. ()
## 16189 Collecting trash from I/m and I/m spit in left eye ()
## 16190 Collecting/carryting mail, EE twisted or strained her back while opening the door to exit
## 16191 Collectting cardboard placed around dumpster to berecycled. A sharp pain occurred in lower back, when placing boxes in truck hamper. Low back pain.
## 16192 Collided w/door while trying to enter courthouse person on other side exiting of building did not see employee entering. Doors swing both ways.
## 16193 Collided with another employee, wanda fortner and was knocked into a cubicle, cutting left forearem on metal rim. ()
## 16194 Collision on left side of vehicle caused severe pain in neck and back. ()
## 16195 Collision with a male deer while driving 55mph on hwy 86 north to present a program for caswell co. Library. Stiff arms/neck/shoulders.
## 16196 Collison with a student while teaching a basketbaldrill.
## 16197 Collison with vessel caused EE to be thrown from patrol boat
## 16198 Cologne slipped from hand, fell and broke, EE step- ped in cologne accidently, sending client out and EE's right foot slipped, right knee popped.
## 16199 Combative client grabbed EE and another staff jumped in to help and all fell to floor-EE hit rt elbow and cut rt finger
## 16200 Combative client kicked EE in the eye.
## 16201 Combative client pushed EE into doorway causing EE to twsit back and abrasion to left shoulder.
## 16202 Combative resident attempted to bite employee-employee raised head away from resident-resident's teeth cut/scratched forehead. ()
## 16203 Combative suspect. Suspect struck EE on lt side offace with fist. Foot chase EE fell--lt leg hittingsidewalk. Contusion lt leg/lt side of face/jaw/tem
## 16204 Combination of above equipment set up an audio feedback loop that caused loud reverberation in head phone
## 16205 Combination of bleach and cigarette smoke inhaled made chest and back hurt
## 16206 Combination of physical fitness training and/or defensive tactics classes--May have caused injury. Low back strain.
## 16207 Combine was clogged ith straw. EE used a long pipewrench to try turn the main cylinder back. The pipe wrench slipped causing EE to fall on combine
## 16208 Combining records & walked across room to put empty pot in box & stumped foot in hydrolic lift
## 16209 Come in contact with patient who is being treated for scabies. Back, abdomen, arms, legs all started itching.
## 16210 Comes from repetitive motion doing word processing
## 16211 Comiing out of the restroom, right pinky finger got caught on an object causing the nail to pull away from the skin
## 16212 Coming back down a metal ladder from trap door hit right elbow ()
## 16213 Coming back from cafeteria and fell down on left side. Left--hand/arm/side/hip.
## 16214 Coming back from lunch it was raining my foot went out from under me and I fell
## 16215 Coming back from off-site meeting stopped for gas. Stepped over gas hose to put credit card in car heel caught hose tripped & fell. Lt shoulder/teeth
## 16216 Coming back into building to pantry slipped as right foot went back, fell forward on left knee, right knee and right hand hit wall; water along the floor. ()
## 16217 Coming back into building; opened door and hit right big toe with the door. ()
## 16218 Coming back into office with stack of envelopes, tripped over boxes; hit left arm on brick wall causing skin tear below elbow. ()
## 16219 Coming back into the unit slammed fingers in the door
## 16220 Coming back up hallway; slipped in water that had seeped from under wall; fell on left side; left leg went behind EE (folder under). ()
## 16221 Coming down a eight foot ladder he missed the bottom step and fell to the floor
## 16222 Coming down a ladder ()
## 16223 Coming down back steps, turned to pick up box. Left foot slipped. Twisted foot and fell
## 16224 Coming down from ladder, foot slipped, fell 3 feeton rt hip/leg
## 16225 Coming down hill on side of building from education wing
## 16226 Coming down hiss and fell on left knee & left shoulder
## 16227 Coming down inside stairs, missed last step and left elbow hit wall ans injured left ankle/foot. ()
## 16228 Coming down ladder and turned knee on debris on floor.
## 16229 Coming down ladder missed last step, fell about 2 feet on right side. Contusion rt knee.
## 16230 Coming down ladder missed ring & fell causing injury to knee
## 16231 Coming down ladder, thought he had another long step, but had a short one, put all weight on rt foot and obtained strain to big rt toe
## 16232 Coming down ladder. Coworker handed EE a bucket of tools from above when a foreign body fell into his lt eye. Caused redness and irritation to eye
## 16233 Coming down off ladder & foot slipped fell off ladder
## 16234 Coming down off ladder slipped and fell off secondround of latter rt ankle. Sprain rt ankle.
## 16235 Coming down sb side of weigh station, when EE got to the bottom of stairs, turn portion of body while keeping feet in place. Strained right knee.
## 16236 Coming down sidewalk and tripped. Fell on sidewalk
## 16237 Coming down stair holding the rail on the right side; turned off light; started down; thought EE was on the last step but was not and fell to the bottom of the stairs; left knee hit on door and floor. ()
## 16238 Coming down staircase and missed last stair, rolled foot ()
## 16239 Coming down stairs and floor was damp with water. Slipped and fell on lower back and right arm.
## 16240 Coming down stairs and tripped and fail. Scraped my back on the way down. ()
## 16241 Coming down stairs and when he placed his right foot on the floor, slipped in a puddle of water. Left knee hit floor and slid in concrete.
## 16242 Coming down stairs at courthouse annex, twisted lt knee
## 16243 Coming down stairs in alumni house-went to make a step heel ht edge of top step causing EE to lose balance causing multiple injuries
## 16244 Coming down stairs in tower 2, his right foot slipped off the stepts and he caught himself with his left arm using all his body weight. ()
## 16245 Coming down stairs of master control to lobby came down the stairs wrong and hurt left knee ()
## 16246 Coming down stairs on way to do a group and fell down the last two steps ()
## 16247 Coming down stairs when he slipped on water ()
## 16248 Coming down stairs, I slipped and fell down the stairs, twisting my right knee and ankle.
## 16249 Coming down stairs, boot heel caught in pants, fell down 4 to 5 steps, was carrying art books. Rt shoulder sore from breaking fall.
## 16250 Coming down stairs, knee gave way/buckled causing to stumble and tumble down stairs injuring rt shoulder, rt arm, rt wrist, rt side/hip and rt kne
## 16251 Coming down stairs, left foot slipped and turned over. ()
## 16252 Coming down stairs, lost balance & fell down steps& hit the floor
## 16253 Coming down stairs, noticed wet floor sign. Thoughtshe was stepping carefully, feet slipped out from under her and landed on buttocks, lt hand
## 16254 Coming down stairs; fell on left leg and ankle
## 16255 Coming down stairwell and finger jammed into railing
## 16256 Coming down steps & slipped. Tried to catch self to break fall & twisted left knee
## 16257 Coming down steps from the control room slipped and fell ()
## 16258 Coming down steps in tower and hit her right elbow on exit door. ()
## 16259 Coming down steps of intake building, stepped intoa hole that was hidden by tall grass. Fell to leftknee & hurt left ankle.
## 16260 Coming down steps slipped & fell injurying both shoulders.
## 16261 Coming down steps to enter office. Ran into spider webs that covered face & head. Was bitten on the face by some kind of insect ()
## 16262 Coming down steps, fell injured r hand and buttock w/left employer and moved to colorado Jan 2009 claim re-opened *** represented by james snow
## 16263 Coming down steps, lost footing, grabbed handrail to keep from falling, twisted & felt pull in back, leg pain & tight feeling in chest. Back/chest/leg
## 16264 Coming down the stairs felt pain in rt knee ()
## 16265 Coming down the stairs from oriental control & slipped & pinned her lt leg between the bars & the gate.
## 16266 Coming down the stairs from the control room stepped dowm on her right ankle the wrong way. ()
## 16267 Coming down the stairs in tower 2 and slipped and fell down the stairs; as she was falling, took lefthand to catch pole to try and catch fall. Steps
## 16268 Coming down the steps and I twisted my right knee. ()
## 16269 Coming down the steps and twisted left knee ()
## 16270 Coming down tower #4 stars and slipped on about the 3rd stept from top and ended up on bottom hurting his left sholder, left leg and neck. ()
## 16271 Coming from 2nd floor & missed a step came down onright ankle kind of hard with a twist.
## 16272 Coming from an office and slipped on water, and hit the wall as he fell fracturing elbow; injuring face/head.
## 16273 Coming from client's home, stopped at a stop sign on highway 301 and was hit in rear by an 18 wheeler truck. ()
## 16274 Coming from court b to office up concrete stairs, EE fell forward hit forehead on edge of stairs & left little finger on concrete. Contusion/lacerati
## 16275 Coming from gazebo to steps coming into building, stepped on limbs in grass. Injured right ankle & foot.
## 16276 Coming from lab building - tripped over sewer cover and fell on pavement. Injured rt leg/hand/ leg/knee/thumb.
## 16277 Coming from nurse station to the conference room to retrieve a medical jacket. She tripped and fell, on right side, right side face with abrusrion. ()
## 16278 Coming from stairs in unit 4 after getting to last step I began to fall to the floor ()
## 16279 Coming from stock room and was sprayed by a skunk that offset asthma. Was seen in the emergency room for evaluation of dyspnea, asthma, acute exacerbation. ()
## 16280 Coming from tower and lost balance, slipping on steps, hit hand on bottom of steel stair. ()
## 16281 Coming in from parking lot, when EE slipped on iceon sidewalk & fell forward on both hands & knees. Knees/hands/shoulder/upper & lower back.
## 16282 Coming in from yard area-door closed on left ring finger
## 16283 Coming in off yard and the lower east wing door shut on 3rd finge of left hand ()
## 16284 Coming in office door, hit foot on the door as EE was trying shut alarm off. Left foot.
## 16285 Coming in office, keys fell off desk and stepped on them; left foot slipped and fell and twisted back ()
## 16286 Coming in the door slipped and hit the door frame, door hit right ankle ()
## 16287 Coming in the entrance at work left foot got caught under gate.
## 16288 Coming in to work, fell up the steps ()
## 16289 Coming into back door to work site stepped up on walk way, left ankle turned over and she fell to the ground. ()
## 16290 Coming into building EE's foot slipped on wet surface and fell forward into the door hitting lftside/shoulder.
## 16291 Coming into building for work-outr vestibule to office was wet & slick & ankle folded underneath me
## 16292 Coming into building to relieve staff with client; stepped in to the building; slipped falling to floor. It was raining outside. ()
## 16293 Coming into courthouse, after mail run, slipped on the cement floor landing on her knee, injuring back
## 16294 Coming into side door of avery, slipped/fell landing on both knees ()
## 16295 Coming into the front doors of prison opened second set of doors and the lt side door caught my lt foot
## 16296 Coming into work 8-14-08 walking up first set of steps btwn back of bldg tripped & fell down hurt rt-ankle
## 16297 Coming into work on a rainy day; foot slipped on water that had been tracked in by others at the enterance. ()
## 16298 Coming into work stepped into a dip in the pavement in front of the sgt's office ()
## 16299 Coming into work, EE stepped on a brick in the parking lot, twisting his left ankle & falling on his left knee.
## 16300 Coming into work, about halfway to the door, EE's prosthetic leg gave way and he fell and hit his left knee on the concrete sidewalk ()
## 16301 Coming into work, came up the step and dropped purse, turned around to go back down steps, slipped and fell on butt.
## 16302 Coming into work, toe of shoe caught on curb, and EE fell forward. Bruises to right eye, forehead and knees.
## 16303 Coming into work, walking down hill and slipped on sidewalk. Fell face 1st. Got up, picked up bag, lost balance and fell backwards. ()
## 16304 Coming on duty slipped on black ice in parking lot and fell
## 16305 Coming on duty to work, parked vehicle & proceeded to step across highway from gravel lot crossing over standing water, twisting left ankle. Caught my traction before not falling all the way to the ground. ()
## 16306 Coming out of a dorm to lock the dooer & steps missed the step ()
## 16307 Coming out of bathroom and slipped on wet floor twisting back.
## 16308 Coming out of bathroom, opened door with left hand using a tissue-turned to throw tissue away and door handle hit the back of her wrist. ()
## 16309 Coming out of bathroom. Foot slipped in spot of fluid in floor causing fall.
## 16310 Coming out of building stepped on clear ice and fell back with heavy door hit me on left side of face
## 16311 Coming out of building. Dropped can soda. Bent over to pick up soda can when he stood back up, he struck his head on wooden box mounted on wall
## 16312 Coming out of building. Stepped off platform felt pain in left leg
## 16313 Coming out of control room stepped down on next step wrong & his left knee gave way w/him
## 16314 Coming out of copier room and hit slick spot on floor. Feet went out from under him and he hit coccyx and pulled muscle in left rib
## 16315 Coming out of daycare after dropping off daughter. Slipped on black ice while walking to car. Fell on left elbow and back. ()
## 16316 Coming out of door when another EE asked her aboutmeds & metal. Door slammed on hand
## 16317 Coming out of dorm steeped on the edge of the sidewalk and turned lt ankle foot over
## 16318 Coming out of driveway hit bumps knock my foot offbrake and I kept going too fast
## 16319 Coming out of elevator with a moving file cart when elevator door opened & cart went towards doorsmashing hand. Rt hand
## 16320 Coming out of er, inmate was cleaning walls in hallway with floor cleaner, fan in hallway blew cleaning solution into EE's eyes
## 16321 Coming out of file room, hit right arm on door ()
## 16322 Coming out of jury box in courtroom, somehow beganfalling down the two steps. EE fell to floor and hit a chair. Burn on lt arm, sprain lt ankle.
## 16323 Coming out of lab, into hallway. Slipped & fell on wet floor. (no wet floor sign) landed on her left side
## 16324 Coming out of ladies restroom walking down the hallway when she fell
## 16325 Coming out of library going down step carrying mop& fell down steps.
## 16326 Coming out of living room turned lt client with helment bumped into med hitting upper rt eye causing swelling.
## 16327 Coming out of mailroom & floor was wet where inmates were mopping floor. EE fell on left knee
## 16328 Coming out of master control with condiments to put in the break room and flipped on water and flipped down the steps ()
## 16329 Coming out of pharmacy, tripped, falling on key which became lodged in back of r thumb
## 16330 Coming out of recration building & his right foot slipped off steps. Landed on his right knee & twisted his right ankle
## 16331 Coming out of restroom and slipped on wet floor landing on back and rt arm
## 16332 Coming out of the bathroom, force of door opening struck EE on thumb of her right hand
## 16333 Coming out of the business careers bldg missed thebottom step and twisted rt knee. Had arthroscopic surgery on rt knee 12-20-06.
## 16334 Coming out of the chemical room the door closed quickly and hit top of left hand. ()
## 16335 Coming out of the cooler and fell into drain hole. ()
## 16336 Coming out of the office where the printer is located & tripped on the carpet, landed on rt side& right lower back
## 16337 Coming through acute hospital and cords of the fanwere across from wall to doors. Feet got tangled and fell on right hand.
## 16338 Coming through door and door fell against employees back, side and arm
## 16339 Coming through slider & left arm got caught when door closed & then it open & caught left hand in slider also
## 16340 Coming through the door entering the building and the door swung shut on foot before could get safely into the building. ()
## 16341 Coming through the sallyport, ofc. Tripped and fell injuring his right knee ()
## 16342 Coming thru doors, door hit back of foot
## 16343 Coming thru front sliding doors of hospital. Door opened then abruptly closed on her foot. Broke two toes. ()
## 16344 Coming thru sally port, master control officer closed door before sgt. Harris was completely through the door. ()
## 16345 Coming to facility to report for work, slipped on ice on sidewalk & fell ()
## 16346 Coming to work EE got off the bus and stubbed her toe against the step.
## 16347 Coming to work after getting off bus, walking down stairs w/a box in my hand, thought I was on bottom step but wasn't, missed step and fell down
## 16348 Coming to work and fell at entrance of murphy hall injuring knee, hands and thigh
## 16349 Coming to work and fell in the parking lot of noble hall. Fall was not witnessed. Was able to walk into the building. Injured low back/shoulder.
## 16350 Coming to work parked car on the side of the street crossing over to other side of street slipped and fell on ice
## 16351 Coming to work with cast on lt hand and was carrying purse etc., slipped on wet marble floor hurtingrt hip and lower back.
## 16352 Coming up ramp (outside of moore wing) slipped on ice -fell-hitting left knee. ()
## 16353 Coming up sidewalk when he stepped off side of walkway and turned rt ankle.
## 16354 Coming up stairs, foot caught under top step, EE tripped and fell, hitting head
## 16355 Coming up stairs, missed and slid on step; caught self with left hand. ()
## 16356 Coming up steps about half way up felt something slip in lower back. Causing sharp pain in lower back
## 16357 Coming up steps entering work ()
## 16358 Coming up steps from the parking lot to the sidewalk between schools and fell up the stairs. Lt handand rt knee.
## 16359 Coming up steps her rt knee buckled
## 16360 Coming up the outside stairway, tripped & stammed foot into concrete step. Left foot, 2nd toe.
## 16361 Communicate with one staff member using tactile sign language, noticed a soreness in my elbow and shoulder along with tenseness in my neck and back near my shoulder blade. Soreness in my arm, continuing pain in elbow, continuous stabbing pain in back ..
## 16362 Community service worker had mopped the floor in district office & EE slipped because a significantamount of water was left on the floor.
## 16363 Compacting trash on the yard, line busted and sprayed employee in the face and on arm ()
## 16364 Competitive motion - computer keyboard.
## 16365 Competitive use of computer of finger, palm, and trigger finger over 4 weeks.
## 16366 Complained of being too hot and weak after pert training
## 16367 Complained of moderate pain while performing nvci training-increased pain when putting on jacket afterwards. ()
## 16368 Complaint of increased secretions, sob, tightness, scratchy throat and hoarseness.
## 16369 Complaint wheezing, chest congestion, headaches, sore throat, nose burning, coughing and hoarseness.
## 16370 Complaints of cough, hoarseness, heachache and watery eyes.
## 16371 Complaints of lower back pain during physical training. Strained l back even before while participating in martial deve drills
## 16372 Complaints of shortness of breath after exposure to fumes being used by renovation crew.
## 16373 Complete rounds - escort inmate () right middle finger closed in gate.
## 16374 Completed bathing/ dressing resident-rolled resident to the right to place sling (for mechanical lift) under-resident started to slide off the arjo tub-caught and held while waiting for assistance-felt muscle pull in upper back. ()
## 16375 Completed celbration of numerous ?, powered off & removed power plug from power recepticle. Then lifted wind tunnel to its normal storage position
## 16376 Completed grinding piece of steel & inadvertently touched wheel while it was coasting to stop
## 16377 Completed night fire qualification stepped over railroad ties to get my target; foot slipped on pvc piping on ground behind ties; fell on buttocks on
## 16378 Completed patients care-patient started to leave bedroom- when opening door lost balance -tried to steady patient resulted in both falling-landed on r. Side: knee/hip/elbow/shoulder ()
## 16379 Completeing a checking an empty locker when he reached inside to get a piece of paper when his finger hit the metal front of the locker and jammed his finger ()
## 16380 Completeing rech in dorms, then proceeded out backdoor, down hill toward ef dorm, slipped and fell, landing on back
## 16381 Completing a cell extraction when left thumb was injured between cell bars ()
## 16382 Completing a search in the laundry room, checking vents and ceiling areas and had a bodily reaction. ()
## 16383 Completing basic care for an individual when I was repositioning her pillow and she heard her left arm pop in the muscle area. ()
## 16384 Completing cell clean at cell c-14, while trying to retrieve the mop, my rt hand was struck by an unknown object on inmates trap door by inmate in
## 16385 Completing data entry of various forms. Repetive motion involved. Experienced pain and discomfort in her shoulder & forearm
## 16386 Completing home contact. Defendant opened front door & dog ran out of home and bit me on the back of right knee. Bite punctured skin.
## 16387 Completing jugular notch manuever at crdt precertification at sandhills community college. Excuting jugular notch manuver on officer emanuel harrington (my partner during class) ()
## 16388 Completing repetition on tricep extension machine during required weight training at weight trainingfacility
## 16389 Completing security yard check by checking door & locks on the grounds. ()
## 16390 Compression fracture back
## 16391 Computer analysis with keyboard and mouse-rt forearm pain
## 16392 Computer area too narrow-had to stretch to use mouse causing right arm strain
## 16393 Computer arm support was on top of monitor. Tried to lift off so monitor could be tilted and felt something pull under right shoulder area
## 16394 Computer data entry. Injured rt shoulder.
## 16395 Computer editing of manuscripsts. Injured neck, right shoulder, right upper arm.
## 16396 Computer fell on EE's rt ankle while sitting at desk
## 16397 Computer keyboard & mouse pad use on daily basis also back & hip position in dest chair while sitting at computer
## 16398 Computer keyboard and mouse usage ()
## 16399 Computer keyboard tray was changed during buildingrenovation - began having pain/stiffness in both arms/hands/wrists
## 16400 Computer keyboarding and conducting on line classes.
## 16401 Computer operation repetitive stress injury.
## 16402 Computer operator and paperwork
## 16403 Computer shelf dropped down on her left leg and ankle of left foot when she sat down to enter lab work in computer for patients.
## 16404 Computer typing, putting up supplies, loading copier,.
## 16405 Computer usage over use - strain rt wrist
## 16406 Computer use casued cts in right wrist.
## 16407 Computer use caused left rotator cuff tendonitis and pain in left shoulder, arm and hand
## 16408 Computer use due to higher desk than needed.
## 16409 Computer use has caused pain in left thumb and wrist
## 16410 Computer use thru out the workday, began spring 2004, greatly increased mid Dec 2004, right hand, forearm, upper ar, shoulder, thoracic nerve/chest
## 16411 Computer used was too high and resulted in injuries to wrist
## 16412 Computer work gradual
## 16413 Computer work or mouse, repetitive motion fo clicking nad typing.
## 16414 Computer work using keyboard and mouse over several days ()
## 16415 Computer work, right shoulder
## 16416 Computer work-mouse position is injuring rt shldr, work on computer all day
## 16417 Computer work. Shoulders, wrist, and elbows.
## 16418 Computer working and keyboarding - tendonitis in both rt/left elbow.
## 16419 Computer/desk strain right shoulder blade/shoulderneck/upper back.
## 16420 Comsumer was falling forward, staff reached out to keep consumer from falling, felt pulling in mid low back, no pain or tenderness
## 16421 Comsumer was tranferring to chair, begin to strike EE. EE tried to get away twisted l hip area
## 16422 Comulative trauma done to at fitting computer station
## 16423 Concrete at base of steps leading out of building is in poor condition and goes down hill. EE fell
## 16424 Concrete truck backed up and caugh hand between concrete chute and steel beam, crushing hand
## 16425 Condensation from the air conditioning unit(a/c had stopped working) had formed a slippery surface on the floor at wendover. My legs went in the opposite direction as I tried to grab a door knob, I twisted my arm, but managed to land on my left knee. ()
## 16426 Condiment tray slipped-lacerating l. Index and middle finger. ()
## 16427 Condition has been escalating over past year. Back neck, arm, wrist & hand pain related to position when treating pts in dental chair. + low back.
## 16428 Condition is pain in right hand. No specific injury. Pain first noticed approximately 11/1/95. Became severe 1/10/96. Medical attention 1/11/96
## 16429 Conducint home contact/serving violation report. Dog jumped out door and bit left thigh. ()
## 16430 Conducted a locker search, reached hand into locker and felt a prick on her finger.
## 16431 Conducted home health visit on 4-15-97. Notified on 6-5-97 that patient she saw had tested positivefor TB
## 16432 Conducting a curfew check, approaching front door, dog attacked ()
## 16433 Conducting a drug scree w/offender; tripped by an individual at work ()
## 16434 Conducting a facility fence test, was stung by a wasp. Hand swelled up considerably next and and went to urgent care. ()
## 16435 Conducting a home visist; offender ws not home, as officer turned to leave offender approached officer. Another person struck officer with car.
## 16436 Conducting a home visit offender's dog bit l anklethrough jeans causing a bruise & scratches & teethmarks
## 16437 Conducting a home visit on jonathan lewis. Their was a small dog on a leash who was acting very aggressive, but it was on a leash. The dog got off of its leash and bit my knee on right leg leaving teeth marks. ()
## 16438 Conducting a home visit when a dog bolted from the house, knocked him down to the ground and bit his lower leg.
## 16439 Conducting a home visit, was bit on the right ankle by the homeowners dog. Dx: puncture wound rt ankle
## 16440 Conducting a home visit. When leaving residence, slipped on wet steps, fell forward & stumbled down steps. Both ankles rt--hip/hand/arm/lt knee.
## 16441 Conducting a hostage situation, was hit in the knee with a chair ()
## 16442 Conducting a locker search in c dorm. Stuck a piece of wire found in locker in rt thumb near nailbed. ()
## 16443 Conducting a locker search of an inmate he was cuton the left thumb by a razor blade that had been taken out of a disposable razor
## 16444 Conducting a locker search. Ankle turned the wrongway when turning around.
## 16445 Conducting a mop up operation on christian creek fire. Neat lightning strike experience. Numbness in right arm.
## 16446 Conducting a perimeter check and walked off the sidewalk sprained his rt ankle.
## 16447 Conducting a perimeter check of the sparrow unit when stepped in a trench and the weight was forced on the rt knee and causing knee to attempt bending
## 16448 Conducting a road test when, rear-ended at the stop sign. List injuries as: sprain back and knee, knee has a contusion ()
## 16449 Conducting a search. Inmate refused to comply with a direct order to cuff up and threw a punch and struck me in the forehead--doctor's report indicated knee injury
## 16450 Conducting a vehicle check stepped off the crub and slipped on ice landing on lower back. ()
## 16451 Conducting a weekend home visit on an offender. When I was attacked by the offender's two dogs. ()
## 16452 Conducting amusement ride inspection - climbing up pole - bodily reaction strain right shoulder muscle. ()
## 16453 Conducting an a exam when EE slipped on the floor, causing injury to right side of body. Rt leg, rt side of body.
## 16454 Conducting an elevator inspection when climbing out of confined space bodily reaction of left knee popped. ()
## 16455 Conducting an inmate locker search & cut right forearm on homemade clothes hanger
## 16456 Conducting an inspection in a tobacco blending plant -reaction to dust - hypersensitive reaction.
## 16457 Conducting an inspection on two passenger elevators when in motion twisted body to pull door leverage. ()
## 16458 Conducting arrest in which offender resisted. During confrontation EE received back strain
## 16459 Conducting boat electrofishing, boat struck a rock and caused EE to shift weight and injure his wrist ()
## 16460 Conducting bunk and locker searches ()
## 16461 Conducting bunk search on bottom bunk. Stood up & hit top right side of her head on rail
## 16462 Conducting call check in 40/13 & touched electrical receptacle cover that was loose. Was shocked by strong surge of electricity
## 16463 Conducting cell cleaning trying to get broom from I/m and I/m hit me in lower abdomen with broom. ()
## 16464 Conducting cell cleaning when inmate sprayed feces from a bottle in my face. ()
## 16465 Conducting cell extraction training during the process of being removed from the cell EE was injured unknowingly
## 16466 Conducting cell extraction training when left leg slipped on the blue protective mat flooring then team member wrapped both legs pulling them together securing for restraints to be applied when a sharp pain was felt on the outside of left knee ()
## 16467 Conducting cell extraction training. During the practical execercise, left pinky finger was caughton mat and was dislocated.
## 16468 Conducting cell search & inmate assulated officer.
## 16469 Conducting cell search in s/k block; inmate struck EE with broom in upper chest & punched in left side of head & face. ()
## 16470 Conducting cell search on inmate, the inmate became combative and force was needed to gain control.
## 16471 Conducting cell search. Attempted to exit cell. Inmate stepped in front of him & refused orders to move. Inmate then raised cuffed hands & struck
## 16472 Conducting class and demonstrating the cable bicepcurl machine when a clip holding the weights brokethe handle causing force to hit him in the head
## 16473 Conducting clothes exchange & inmate forcefully knocked open window and hit her hand
## 16474 Conducting clothes exchanges, lifting clothes cart up the stairs & cart nit me on the head. ()
## 16475 Conducting count () tripped going up the stairs and hit her right knee
## 16476 Conducting count - going up steps and fell, hit mouth on the concrete. ()
## 16477 Conducting count coming down the steps and was on the last two or third step became dizzy and fell to the floor. ()
## 16478 Conducting count in dorm 4 and slipped and fell in the hallway where the inmates were stripping the floor
## 16479 Conducting count, slipped and fell on wet floor
## 16480 Conducting crime scene search of vehicle in fenced in area near woods. Conducted search and later at home found tick attached to lower back. On monday started to feel weak and ached all over, might be something related to the tick bite. ()
## 16481 Conducting crime scene where victim had been shot to death. Helping coroner place victim in body bag. Coroner flipped bag and blood from top of the bag was accidentally splashed onto the agent's face and eyes. ()
## 16482 Conducting curfew check, slipped on ice fell. Injured wrist & arm in fall.
## 16483 Conducting curfew check. Offender fought arrest & EE suffered numerous deep gashes & cuts on right hand. Left knee, and left arm.
## 16484 Conducting curfew checks - leaving a building - fell onto drive in a poorly lit area with uneven ground. ()
## 16485 Conducting curfew checks traveling down hwy 62 & acar at intersection pulled out in front of her & hit her strain to neck & back
## 16486 Conducting curfew checks/new address verification. Officer was leaving address and stepped on slick steps due to rain and fell off the steps to the ground ()
## 16487 Conducting door check around outside of building. Stung on right side of neck multiple times.
## 16488 Conducting feeding; opened inmates wicket door, inmate used bottle filled with urine to spray on EE
## 16489 Conducting fence check and walked into concertina wire fence. ()
## 16490 Conducting fence when he went to set off an alarm & cut hand on tie that holds fence
## 16491 Conducting field contacts on probationers, upon arriving at residence, exiting car, walking acrossbackyard, 5 dogs came out, small bite right calf
## 16492 Conducting field inspections, walking through tall grass on site; discovered ticks at home during pose-eork ()
## 16493 Conducting field inspections, walking through tall grass on site; discovered ticks at home during post work ()
## 16494 Conducting fire watch while walking slipped on wet floor. ()
## 16495 Conducting firearm training. Injured back while unloading ammunition from trunk of car
## 16496 Conducting formal count. Floor was wet and not marked as being wet, c/o waters slipped and fell face first onto the floor injuring right wrist & left hip. ()
## 16497 Conducting frieght elevator inspection - when pulling/pushing doors close-felt sharp pain in lower back.
## 16498 Conducting geologic field mapping/rock study, slipon rock, fell face forward, bumped forehead and sprain right wrist
## 16499 Conducting handgun weapon retention practice exercises. Co worker accidently struck lower jaw causing teeth to hit together chipping front tooth
## 16500 Conducting her security check on north yard hit her right side of her head on an open window
## 16501 Conducting home contacts. Employee states that she developed a rash under her breasts after wearing her state-issued body armor for 8 hours in hot weather. Rash became worse and spread to her abdomin after wearing her vest the following day. ()
## 16502 Conducting home visit on offender, got out of vehicle and was dog bitten by dog on right leg. ()
## 16503 Conducting home visit, dog ran up to him and bit on rt hip ()
## 16504 Conducting home visit. Bitten on foot/leg by dog at the residence. ()
## 16505 Conducting inspection when squatted to check chemicals on floor felt pop or twitch on top of right thigh ()
## 16506 Conducting institutional count when an inmate tookliquid he had heated in microwave & threw liquid on EE. Liquid struck him on lt side of face & head
## 16507 Conducting inventory when a box fell on head/nose breaking glasses
## 16508 Conducting mop up on wildfire. Wind was blowing causing debris to go into right eye.
## 16509 Conducting offender home visit slipped on steps with both feet landed on back/right hip on sidewalk ()
## 16510 Conducting officer survival training. Walking backwards and fell and struck back of his head on weight bench
## 16511 Conducting perimeter check on external fence line. Stepped wrong & twisted ankle.
## 16512 Conducting perimeter check, turned around and stepped off the sidewalk and twisted ankle. ()
## 16513 Conducting physical fitness training and got a knot in left calf. ()
## 16514 Conducting police training, during a simulation, shot with a sims round fell down on knee on concreted floor. Bruised knee cap badly. ()
## 16515 Conducting probationer home visit; pulled vehicle in driveway inside chainlink fence; halfway to doorof residence when dog came from right rear and b
## 16516 Conducting random cell search, paper covering ventinstructed inmate to remove the paper, inmate removed the paper & accidently struck him in head
## 16517 Conducting random drug testing on inmates. Noticed inmate had container tied to his boxers. EE reached for it, inmate pushed EE into wall with force
## 16518 Conducting rec and rolled foot on uneven pavement ()
## 16519 Conducting road test, during turn customer lost control of vehicle, I reached to correct and keep customer from leaving road, and customer grabbed steering wheel catching little finger on right hand. ()
## 16520 Conducting room searches. Reached inside of inmatemattress cover to retrieve contraban. Stuck right index finger by homemade tatooing device
## 16521 Conducting rounds in housing unit when left littlefinger got hung in the door handle
## 16522 Conducting rounds in quad when left hand started burning ()
## 16523 Conducting routine cell searches, bent down resting on knee, when stood knee popped. On 04/28 went up steps, pain returned
## 16524 Conducting routine checks stepped in a hole - injuinjury to left side & back
## 16525 Conducting routine curfew check. Was chasing probationer through wooded area. Swelling in both knees
## 16526 Conducting routine patrol of her assigned area when she was involved in a motor vehicle accident. She struck another vehicle while driving. ()
## 16527 Conducting routine search of gatehouse after visitation she bumped her head on air conditioningunit
## 16528 Conducting search and was picking up razor blades in a window lodge and another blade was behind it and it cut through the latex glove
## 16529 Conducting search at the residence of offender antoine gause. Left ring finger was struck against a fan which then got caught in the fan blades. ()
## 16530 Conducting search inside of inmate steel locker. During search he struck his head on inside of locker
## 16531 Conducting search of inmate mattress for locker search and was stuck in the right palm with a needle used for tattoing ()
## 16532 Conducting search of inmate personal property. Stuck hand in shoe. Scratched by a needle of a home made tattoo gun
## 16533 Conducting search of inmate's locker reached for plastic bag. Tattoo gun with needle was hidden. Reached for bag and got stuck with needle ()
## 16534 Conducting search of wooded area during night hours. All members of pert team using paint guns & was hit on lips w/one
## 16535 Conducting searches in duplicating plant & banged foot on a desk. Injuring his right foot/arch.
## 16536 Conducting searches of inmates in the search room & something bit him. Rt-forearm
## 16537 Conducting seatbelt rollover simulator. Stepped uponto ramp of simulator & poece of metal caught his jacket & twisted upper part of body around
## 16538 Conducting security check of all entrance & exit doors & caught finger in handle of door
## 16539 Conducting security check of fire doors and mechanic rooms, he felt a pull in his left calf muscle while pulling the door latch bar ()
## 16540 Conducting security check on yard fell in manhole ()
## 16541 Conducting self defense warm-up. During stretchingfelt tightness in rt hip. Pain in thigh, lower back area. Sometimes radiates in lt side
## 16542 Conducting shaves, an inmate threw urine in the officer's face ()
## 16543 Conducting short baton training. While holding strike bag, a blow to the bag was deflected off the bag and hit her in the back of lower lt leg
## 16544 Conducting showers and an I/m stabbed EE in the face ()
## 16545 Conducting showers, inmate through bleach in my eyes. ()
## 16546 Conducting smoke breaks for inmates, when break was over, inmates began to return back inside, group of inmates jumped & assaulted employee
## 16547 Conducting snorkel survey when a leech attached ()
## 16548 Conducting strip search of inmate when inmate suddenly swung his fist and struck EE in mouth
## 16549 Conducting textbook inventory in basic skills classroom, lifted stack of books to place them on a bookcase and twisted lower back ()
## 16550 Conducting the 11:45 p. M. Count in fore unit a-block. Employee indicates she stepped in something slippery causing her legs and back to stretch out and go down on her left knee.
## 16551 Conducting traffic stop, suspect fled on foot, during foot chase, crossed a chain link fence and suffered laceration right hand
## 16552 Conducting training in crdt (unarmed self defense) sprained left shoulder ()
## 16553 Conducting unarmed self defense, performing a throw& roll he landed on his lt side & felt a sharp pain in upper lt rib cage
## 16554 Conducting warm-up exercises, jump-n-jacks, when EE turned right knee--acl tear.
## 16555 Conducting warrantless search at offender's residence. When she walked into residence, dog bit her. ()
## 16556 Conducting weapon retention practical exercise when another trainee flipped EE over onto the mat making impact with left shoulder
## 16557 Conducting weekend home contact on probationer walking to the appartment fell face forward over the curb prior to reaching apartment door ()
## 16558 Conduction an pressure vessel inspection, EE was sprayed by high pressure air which fogged the EE (ppe) safety glasses and deposited trash in (r) eye
## 16559 Conduction cell search, felt right hand itching when she removed latex glove she noticed what appeared to be an insect bite on top of rt hand
## 16560 Conduction searches felt like something pinched the crease in thumb. Nothing there on 6/27/10 thumb swollen ()
## 16561 Conduit fell striking me under my left eye. ()
## 16562 Configuring a scanner and replacing toner cartridges ()
## 16563 Confirmed case of MRSA here at bcci, EE was probably exposed while trating inmate
## 16564 Confiscated glass marijuana pipe, employee cut his left index finger on pipe after it was distroyed.
## 16565 Conflict with inmate.
## 16566 Conflicting statements from employee and supervisor ()
## 16567 Confrontation with inmate during a search ()
## 16568 Conjunctivitis in lt eye possibly contracted it.
## 16569 Conjuntivitis from patient ()
## 16570 Connecting 6" pump trailer hitch to a pick-up truck trailer ball. Trailer hitch fell pinning EE finger to ball & hitch. Lt hand ring finger.
## 16571 Connecting trailer to vehicle rear bumber by self. Immediate pain in groin area which disappeard quickly
## 16572 Consistant lifting of heavy water bottles in caseswithout assist-injury to rt and left hand.
## 16573 Consistant walking on knees laying floor tile.
## 16574 Constant coughing since thanksgiving. Body systems
## 16575 Constant heavy typing daily
## 16576 Constant moving of heavy bodies (200 lbs. +) from table to table multiple times a day. ()
## 16577 Constant repetitive motion on computer caused knot to appear on right hand
## 16578 Constant repetitive motion on computer, noticed knots on hands
## 16579 Constant typing and ergonomically unsatisfactory work station-diagnosed with cts rt wrist
## 16580 Constant typing and use of computer has caused nerve damage to forearms, shoulders, neck and upper back.
## 16581 Constant use of computer keyboard, carpal tunnel in r wrists/arm
## 16582 Constant use of hands and fingers on computer
## 16583 Constantly cutting bread, hands numb fingers using scissors, lifting pots and pans, moping
## 16584 Constantly types and files at least 6 hrs each day, currently is having problems getting her deskergonomically correct
## 16585 Constructing a fire line in heavy root mat, also lifting and moving downed snags to extinguish fire
## 16586 Constructing fireline around wildfire using fire rake. Complained of chest pain & numbness in left arm. Employee had been operating chainsaw earlier
## 16587 Construction fumes from dental research building came into office through fresh air intake 2 days- varnish odor ()
## 16588 Construction was going on in building, and EE states that she developed a headache, stomach ache, and became disoriented and dizzy.
## 16589 Construction was going on in normal work area for weeks. Sat on a dust filled chair in office and had an asthma attack. ()
## 16590 Construction work going on in library. EE states that eyes became irritated and started to swell.
## 16591 Construction yard supervisior over inmates, stepped backwards & fell over ladder ()
## 16592 Consumer aggressed toward staff, staff blocked consumer, right elbow hit against wall.
## 16593 Consumer attacked staff attempted to choke and poked finger in right eye.
## 16594 Consumer backhanded EE in face while he was trying to dress him. Hit his right eye
## 16595 Consumer became agitated and EE went to intervene and consumer struck EE in rt hand
## 16596 Consumer became extremely aggressive attacking EE.
## 16597 Consumer became upset in dayroom and hit EE on right side of upper back near shoulder blade
## 16598 Consumer became upset, EE was escorting consumer, consumer struck EE across eyes.
## 16599 Consumer became upset. Was struck by EE
## 16600 Consumer bit EE. Left pointer finger.
## 16601 Consumer bit hand while EE was assisting lpn.
## 16602 Consumer had jumped up from chair and started to fall and EE tried to catch consumer hitting left hand on dayroom wall
## 16603 Consumer had seizure in bathroom and knocked water on floor. EE came to his aid and slipped on floor where water had fallen.
## 16604 Consumer had spit water on floor. EE slipped and fell on right side and then consumer slipped and fell on EE's left leg and knee
## 16605 Consumer kicked staff in lower abdomen and hip
## 16606 Consumer pulled EE's rt index finger hard while EE was trying to keep consumer from falling
## 16607 Consumer sat down in front of door, asked another staff to assist EE with getting consumer up and toanother place.
## 16608 Consumer seizuring & staff tried to break fall twisting back
## 16609 Consumer snatched a glass of juice and EE grabbed glass away from consumer and jammed right index finger.
## 16610 Consumer spit in right eye
## 16611 Consumer trying to stick head in commode. EE trying to prevent this. Consumer slammed her hand up against wall
## 16612 Consumer was agitated and struck EE on the left wrist with a chair
## 16613 Consumer was having behavior problems and hitting himself against wall, EE intervened and was pushed against wall. Injury to right elbow.
## 16614 Consumer was pushed by another consumer and EE tried to catch consumer and jammed her thumb
## 16615 Consumer was starting to sit in chair and didn't get close enough, EE caught her, but EE's finger was caught between consumer and chair
## 16616 Consumer was trying to pull EE outside and scratched EE on rt hand
## 16617 Consumer was trying to shut door. EE tried to shutdoor and consumer slammed door on staff's hand.
## 16618 Consumer's husband had conf. Room chair tipped forwarded. I was standing behind the chair when the consumer’s husband place the chair on all legs. My (r) foot (second toe) was under the chair when he sat it back in correct position. ()
## 16619 Consumer's wheelchair was tipping over. EE grabbedwheelchair and part of wheelchair pushed into EE's knee cap.
## 16620 Cont use of keyboard mouse. Weakness in rt hand pinky, elbow, shoulder.
## 16621 Contact dermatitis from wearing latex gloves
## 16622 Contact dermatitis of hands due to use of rubber gloves
## 16623 Contact dermatitis while doing hygiene round and possible infected areas on patient
## 16624 Contact dermitis to both hands
## 16625 Contact dermititis on hands
## 16626 Contact of rash that could be syphilis to his r hand and l hand. ()
## 16627 Contact w/MRSA client-eye red & discharge present
## 16628 Contact w/co-worker who had scabies
## 16629 Contact w/resident w/conjunctivities in past 2 wks& EE's right eye red & drainage
## 16630 Contact while doing physician exam on infant - exposure to newborn infant with syphilis.
## 16631 Contact with child in daycare center where infected child ()
## 16632 Contact with poison ivy
## 16633 Contact with poison ivy plants w/ resultant rash on face, & behind knees
## 16634 Contact with poison ivy while pulling weeds
## 16635 Contact with resident with scabies. Red rash on chest with itching
## 16636 Contacted employee he states that he was signing dorm log took glasses of and something blew in his left eye. Fan mounted a b dorm blowing directly at a dorm desk. ()
## 16637 Contacted poinson ivy on abdomen, legs, arms, neck
## 16638 Contacted possible ringword from a patient-locatedon staff's right forehead
## 16639 Contacted possible scabies from a patient.
## 16640 Container was resting on the counter and I put trash bag in it when I hit my head on the bottom corner and hinge of the wall cabinet ()
## 16641 Contaminated EE inhaler box with blood, blood camein contact with an open area... Thumb
## 16642 Contaminated water splashed into EE right eye.
## 16643 Contaminents from the inside of the state truck entered into the inside of c/o davis' eye. Investigation revealed a fire extinquisher had discharged.
## 16644 Continous dermatitis from continous washing and drying hand
## 16645 Continous lifting mechanical parts on semi-trailor; performing preventive maintenance
## 16646 Continous lifting of many different heavy objects has resulted in ingunal hernia.
## 16647 Continous repetitive motion on computer keyboard to compose draft or transcribe documents caused injury. Carpel tunnel syndrome rt hand.
## 16648 Continous use of computer keyboard & mouse made wrist progressively painful to point that doctor needs to be seen
## 16649 Continoususe of the keyboard computer terminal andwriting
## 16650 Continual cutting and pasting text bewtween computer applications pain in wrist/thumb.
## 16651 Continual reptitious movement daily use of power sprayers, shovels, pitchfork, brooms.
## 16652 Continual use of computer over a long period of time has made EE's palms, thumb, and two fingers of right hand go numb.
## 16653 Continual/repetative motions in crdt brought aboutintollerable pain in right knee
## 16654 Continued use of a keyboard & mouse constant pain in the wrist, forearm, elbow & upperarm, some pain in lt side of neck
## 16655 Continued use of kb. Has cts
## 16656 Continued use of keyboard. Tendonitus l arm.
## 16657 Continuos squatting has led to osteophytes in rt big toe. Happened sometime in 4/2005. Please contact michael mcfarland regarding denial.
## 16658 Continuos use of keyboard for computer pain in left wrist.
## 16659 Continuosly typing on keyboard and adding machine right thumb.. Left thumb
## 16660 Continuous excessive keyboard use - pain in rt elbow
## 16661 Continuous exposure to contaminated air.... Skin and ear irritation
## 16662 Continuous hand movement---cleaning toilets, sinksurinals, sweeping & mopping. Right hand.
## 16663 Continuous keyboarding at pc required of job.
## 16664 Continuous keying on computer. Pain in right wrist.
## 16665 Continuous lifting & lugging of computers up & down stairs from office to office
## 16666 Continuous motion of typing & writing as required for job performance.
## 16667 Continuous problems with back and bursitus in hip related to old chair
## 16668 Continuous prolonged use of computer keyboard and sitting at desk causes right shoulder pain, also wrist & elbow pain, back hurts when sitting long.
## 16669 Continuous pulling on clients, lifting trash.... Pain in right arm
## 16670 Continuous repetitive motion while performng daily activities ()
## 16671 Continuous sitting, entering and siting in vehicle.
## 16672 Continuous turning neck to avoid eye strain while making copies; injured neck
## 16673 Continuous typing... Right hand
## 16674 Continuous use of computer mouse - right hand and arm burning & sore.
## 16675 Continuous use of computer mouse and keyboard over a long period of time - rt shoulder
## 16676 Continuous use of her hands
## 16677 Continuous use of keyboard and mouse. Constant pain in left wrist and left arm. Numb left index finger
## 16678 Continuous use of keyboard in an improper positiontelephone elvated causing EE to reach up to ans itstrained rt shoulder
## 16679 Continuous use of right hand to stamp numbers on files. No ergonomic chair to it in. Injury to right arm and neck
## 16680 Continuous use of wrist caused carpal tunnel.
## 16681 Continuous work on calculator and computer. Carpal tunnel syndrome
## 16682 Continuous work with computer and data input require constant repetitive use of mouse. ()
## 16683 Continuously exposed to environment in work area ()
## 16684 Continuously using keyboard for classroom & preparation of classes. Pain right hand & elbow.
## 16685 Contract EE (rn) states pulled needle from entry sight, w/l hand placed gauze over & needle tip punct. Glove & skin on lt hand/thumb area/drew blood.
## 16686 Contract EE reported that the floor on the 2nd floor was wer and that she slipped in water as she was going to the elevator to go to the 3rd floor
## 16687 Contracted chicken pox, most likely at home.
## 16688 Contracted conjunctivis from patient ()
## 16689 Contracted conjunctivitis from client
## 16690 Contracted hepatitis b July 1979 due to exposure to clients who were active hepatitis b positive. Diagnosed with cirrhosis of liver
## 16691 Contracted pharyngitis and cunjunctivitis while caring for contagious patients ()
## 16692 Contracted poison ivy while clearing trees & branches from hurricane damage
## 16693 Contracted poison ivy/oak while cutting weeds ()claim deleted - not state employee
## 16694 Contracted primate fecal contamination
## 16695 Contracted rocky mtn spotted fever from tick bite EE 252 482 1069
## 16696 Contracted temporary employee was hit in the rt. Knee and shin while directing traffic. ()
## 16697 Contractor working in manhole lost balance, and eetried to keep him from falling. Injured back when grabbing contractor. Low back.
## 16698 Contractors were working outside the bldg and fumes went into vent systme and created a fire haze causing EE to inhale fumes and carbon dioxide.
## 16699 Contractual EE was adminstered flu shot by bcbs - had possible anaphylactic reaction (swelling)
## 16700 Control booth operation. Attempted to sit down in a chair, bottom of chair wasn't stable (broken) and I fell out of chair onto the floor. ()
## 16701 Control officer - foot slipped when stepping down from dorm control chair hit back on second step ()
## 16702 Control restraints defense training, training partner fell on officer reynolds. ()
## 16703 Control walking with patient-kicked in groin ()
## 16704 Control, cutody and welfare of inmates to which injury resulted in staff infection from exposure ()
## 16705 Controlled restraints defensive techniques training; during training for a take down technique I felt soreness and a pulling sensation in my left wrist. ()
## 16706 Controlling a self injurious inmate (suicide) ()
## 16707 Controlling an inmate who was assaulting another staff member EE was scratched on her left index finger by inmate
## 16708 Controlling e-1 area. Inmate approached EE got in her face and was asked to back off twice. Inmate started to walk off then turned around and spit.
## 16709 Controlling the flow of people coming into gatehouse harrassed & threaten by 2 sergeant
## 16710 Contusion of left shoulder by angry patient attackcontusion left shoulder/chest discomfort.
## 16711 Contusion to back and neck, sitting at stop light at intersection, rear ended by another vehicle
## 16712 Contusion to back, neck, rt hip and lt elbow, felldown while loading canoes on overhead racks
## 16713 Contusion to hand
## 16714 Contusion to head, neck, both eyes, skin, lt arm, rt hand and knees, removing hostile inmate from unit
## 16715 Contusion to her right eye, from fight in the dining hall-- inmate struck her in the right eye with closed fist. ()
## 16716 Contusion to knees, slipped in liquid substance onfloor, fell on knees
## 16717 Contusion to left chest (ribs), training/defense, learning technique on how to get inmate off of youby tossing them off, landed on lt arm, left side
## 16718 Contusion to left hand, sorting coats, was attempting to open the window when the entire window framfell out onto left hand
## 16719 Contusion to left knee, struck against trailer
## 16720 Contusion to left leg, knee, hip and back, co emp loyee hit release button to open cover on dump truck, cover caught leg which flipped him in the air.
## 16721 Contusion to left thumb/indicates closed desk drawer on right thumb
## 16722 Contusion to left wrist and left shoulder, busted lip, going to lunch, tripped in parking lot, face hit cement
## 16723 Contusion to lower back, right hip and pain in right knee, chasing defendent, fell down, causing injury to back, rt hip and knee
## 16724 Contusion to lt hand and both knees, walking on sidewalk outside of courthouse, fell, scraping knees and landing on left hand.
## 16725 Contusion to lt knee in a tripping incident. Tx atueohc revealed neg x-ray for fx. No lost time.
## 16726 Contusion to neck, rt/lt shoulder, back-center andlower, rt hip and rt ankle, passenger in a vehicleanother hit.
## 16727 Contusion to r great toe, r/o fracture
## 16728 Contusion to ribs, EE was hit in the ribs with a baseball while giving an individual hitting lessons
## 16729 Contusion to right hand, coming out of occupation therapy office, accidentally shut door on hand.
## 16730 Contusion to right shoulder and arm, fire shotgun and injured shoulder and arm.
## 16731 Contusion to right shoulder and thigh
## 16732 Converted to positive TB ()
## 16733 Cook from 6-4 stopped to say hello to cook 3-4, threw up hands, cook 3-4- moved back and hit 3-4 in rt eye with fist
## 16734 Cooking breakfast - sharp pain and swollen
## 16735 Copying evacuation route stored in frame, sharp glass around frame cut finger ()
## 16736 Cord was around her ankle, when she stepped forward she came down hard on l knee
## 16737 Corncob bedding got in employee right eye. ()
## 16738 Corneal abraisons to left eye.
## 16739 Corneal scrape from tree branch while walking stream bed for env compliance visit
## 16740 Corner of box scratched right forearm, skin brokenapprox 1 - 2 inches
## 16741 Corner of file cabinet fell on EE hand and foot
## 16742 Corr officer states he was hit in the face by an inmate ()
## 16743 Corr. Officer stated that inmate was unruly and threw a chair hitting c/o thomason in the lft upper part of his arm-upper lft arm red and swollen
## 16744 Correction enterprises provided a chair for trial use by EE-size and curvature of chair was wrong for EE and caused undue strain on left hip
## 16745 Correctional off. Was making rounds in dorm h whenexiting an inmate called her name & as she turned around she twisted her right knee.
## 16746 Correctional officer attended crdt training on 11-18-10. At 21:30 pm he began to feel his left elbow throb. ()
## 16747 Correctional officer jant was assulted by inmate, went to medical on site, they observed open lip area, scratches and reddness area in the face, and head. Officer complaining of rt leg hurting. ()
## 16748 Correctional officer matthews was escorting inmates from segreation recreation cubicles when a cuffed inmate assaulted him. ()
## 16749 Corrie was returning from a field trip, lifting children and car seats off the van when she stepped off of the van and felt a muscle pull ()
## 16750 Costley crossing street in marked pedestrian crossing with a stop sign. Car rolled through stop and hit her and a co-worker. Right foot, tail bone, left hip. ()
## 16751 Cough
## 16752 Coughing and breathing problems. Fatigue, repeated sinus infections, itchy & burning eyes, sneezing.
## 16753 Coughing, headaches, light headedness upon entering the mall.
## 16754 Couirier delivery to ncciw and slammed finger in car door. ()
## 16755 Couldn't do warm up exercise for training, had back problems & stepped down from doing exercise at own request. Exercise was walking in place.
## 16756 Couldn't see where I was stepping on stairs, foot missed a step and I fell down 3-4 steps onto landing leaving class ()
## 16757 Counseling an inmate, he became aggressive and assualtive, while gaining control of the inmate, was hit on the arm by a baton
## 16758 Counseling clients in dorm, telephone call came through, phone kept in a "locked" box, in rush to open, keys fell, bent to pick them up, twisted
## 16759 Count time - walked back down the stairs in hatteras ()
## 16760 Counting florescent light using uv light leading ti eyes.
## 16761 Counting inmates and was closing dorm door and caught her fingers in between door and door jam
## 16762 Counting inmates. Was walking and felt a pop in leg causing pain. ()
## 16763 Counting inventory and reached for a box when bitten by something. ()
## 16764 Counting retraints in cabinet hit head on top of cabinet as he started to exit the cabinet. Back of center of head.
## 16765 Counting supplies & crutch board fell on her head
## 16766 Counting the weights during the nightly inventory weights were stacked on top 2-100 lb, while moving45 lbs pulled muscle in rt lower back, buttocks
## 16767 County put in new work station w/keyborad and theposition of the keyboard was too short. Causing pain in hand and elbow.
## 16768 Court clerk position required repetitive motion ofhands which caused cts or aggravated her prior injury from 6/28/07
## 16769 Court counselor was in pursuit on foot of a juvenile who ran while in custody
## 16770 Court counselor was stopped at a stop sign and wasstruck from behind by another car. Counselor was driving the vehicle.
## 16771 Courtroom clerk who processes large number of court files such as pulling files apart for processing & getting ready for court
## 16772 Coutner top fell on head causing a contusion on forehead and cutting head.
## 16773 Coved consumer form bed to chair and felt pain on upper lft side in breast area
## 16774 Cover of a light fell and came accross hand cutting my right hand ()
## 16775 Covering merchandise with painters plastic. Cornerof plastic went into rt eye
## 16776 Cow bolted cuasing large brad chain EE was holding to be jerked against rt middle finger causing laceration
## 16777 Cow stepped on foot ()
## 16778 Cow was in bovine hydraulic chute, the cow's leg was stuck on the side and EE pushed cow's leg down and struck his hand on the side of chute.
## 16779 Coworker grabbed EE by the throat and caused trama to the larynx.
## 16780 Coworker passed out, and iw caught her from fall- to the ground.
## 16781 Coworker trying to use pocket knife to pry batteryon radio loose while EE was holding it & knife slipped cutting EE's lt thumb
## 16782 Coworker was cutting down tree and EE approached from the rear to tell coworker the tree was fallinchainsaw kicked bakc and hit EE in the knee.
## 16783 Coworker was putting chair under table using his body weight to secure chair & accidentlay set it down on the employee's recently injured right foot.
## 16784 Coworker went into a seizure, EE saw emergency andinserted his finger into coworkers mouth to keep him from swallowing his tongue.
## 16785 Cows got out of fence-EE was trying to cut them off and tripped over heat gates, EE fell and a cowstomped on him
## 16786 Cppo assisting with transport of offender, offender. Struggle began with offender ()
## 16787 Cppo pace was with po lauren pittman attempting to arrest an offender with an active parole warrant. He ran from the officers and cppo pace gave chase, injuring his hand while climbing over a fence. ()
## 16788 Cppo walking rapidly across parking lot attempting to make contact with offender and stepped on something ()
## 16789 Cpr dummy was placed on a desk; instructions for practice using a repetitive motion were followed--injury to rt arm causing muscle strain
## 16790 Cpr initiated using mouth to mouth resesitation.
## 16791 Cpr on victim in src courts ()
## 16792 Cpr on victim, exposing himself to bbp
## 16793 Cpr training felt something pop in left hand while doing compressions ()
## 16794 Cpr/faiaed care in hallway outside src racquetball courts; player collapsed face first on floor causing bleeding; player also vomited and urinated; wearing gloves & using mask to give breaths; when walked away from scene was still and limping; had left ()
## 16795 Cramp and pain in left lower back after helping a client up from floor and into her wheelchair
## 16796 Crank on bed was left sticking out, EE tripped over it and fell to floor, landing on left knee and left shoulder
## 16797 Cranking a chainsaw-the saw kicked back yanking rope out of hand fracturing finger & wrist (right)
## 16798 Cranking up bed; hit bed with right thumb. ()
## 16799 Crates fell on finger while pulling pits in chicken house. ()
## 16800 Crates of milk fell onto left arm and leg
## 16801 Crawled under desk to repair phone jack & injured his back
## 16802 Crawling around on knees, swelling in lt leg.
## 16803 Crawling in attic to check exhaust dust, slipped and twisted right knee
## 16804 Crawling into boiler manway to make tube repair, twisted body causing injury to back. Lower back & hip
## 16805 Crawling under belk dorm to cut off water to dorm rooms trap door closed and he jerked his leg
## 16806 Crawling under building tracing stream line; injured left knee
## 16807 Crawling under desks, connecting computers, lifting boxes & moving furniture. Lower back, rt side pain, right buttock pain.
## 16808 Crdt (self defense training) wrist was twisted under another officers leg. Severe sprain to right wrist.
## 16809 Crdt - jammed right thumb while guiding partner tothe ground
## 16810 Crdt -doing low block with baton as coming up knee popped causing EE to fall ()
## 16811 Crdt basic training partner pulled legs before I was ready and I fell improperly ()
## 16812 Crdt in-service; running in place and while doing bent wrist take down: left knee
## 16813 Crdt recert training- performing technique with partner which involved laying on the floor and tossing officer over the left shoulder causing her right shoulder to jam into the floor. ()
## 16814 Crdt recert training; weakside arm bar procedure; over extended l shoulder ()
## 16815 Crdt refresher training - implementing the control techniques ()
## 16816 Crdt self-defense class, breakfall onto a matt & return into a stance position
## 16817 Crdt training
## 16818 Crdt training - EE states that he fell backwards on the mat an his left hand was under him.
## 16819 Crdt training - arm bar take down - him and his partner were doing the arm bar take down move, and he fell on his left rist to catch his fall ()
## 16820 Crdt training - completing the mount escape move and she threw co worker off and pulled a muscle in right shoulder ()
## 16821 Crdt training - guard in/guard out procedure - knee twisted while trying to prevent partner from standing during maneuver ()
## 16822 Crdt training - leg twisted with another officer'sleg, employee fell on the floor. Immediate pain inleft ankle
## 16823 Crdt training -placed both arms around c/o p. Sawyr upper torso and lock hands together. C/o sawyer bent over alittle this lifted his feet up off the floor, at that point he felt pain in his rib and turned loose. ()
## 16824 Crdt training and sprained ankle doing a fall back to the floor
## 16825 Crdt training at montgomery comm coll. While performing a "guard escape" a popping noise was heard. Employee did not complain until the week-end.
## 16826 Crdt training exercise--was thrown hiting shoulder/left.
## 16827 Crdt training then shortly after started having severe chest pains ()
## 16828 Crdt training while falling on mat & twisting knee; in the afternoon repeated twisting of right knee and falling on mat ()
## 16829 Crdt training, EE unsure how injury occured. EE continued training & returned to work the next day
## 16830 Crdt training, attempts to break fall during upper takedown. Fell with body weight on rt. Hand on rt. Side of rib cage area.
## 16831 Crdt training, during breakfalls going down and getting up employee felt something pull
## 16832 Crdt training, while practicing two man take down an officer hit me from behind in the left leg and knee whith his shoulder and tackled me to the mats
## 16833 Crdt training- EE was practicing with partner the ()
## 16834 Crdt training- had a knee injury apprx 3 weeks andit flared up again last week then yesterday hurt it worse and made it swell up.
## 16835 Crdt training-instead of rolling, I slid off my partner injuring my rt shoulder in this exercise.
## 16836 Crdt training-interacting with another corrections staff on a take down move tactic.
## 16837 Crdt training. Demonstrating a take down, stepped back with left foot to complete move and got right foot caught on seam of mat. Felt pain in right knee
## 16838 Crdt training. Doing a takedown technique. Done at least 10 times going down on knees. One of the mats was thin and rt. Knee hit concrete floor. ()
## 16839 Crdt training. EE was performing the high mount technique, his arm became trapped under his trainin partner causing severe pain in lf shoulder.
## 16840 Crdt training. Injuried was the foward officer in the take down. The officer pushed forward on the suspect and he fell directly toward him. As he was
## 16841 Crdt training/conducting cell extraction exercise, while trying to restrain instructor's r hand, EE's l leg was hit on l side going inward. ()
## 16842 Crdt training; during crdt training on 12/12/12, my previous injury was irritated. ()
## 16843 Crdt training; excercise w/partner. On knees attempting to relieve partner of weapon. Partner twisted arm behind back to hand cuff positon and he heard a pop in his left shoulder. ()
## 16844 Crdt trng. Class was doing forward break falls. As a result of the falls, upon getting up from mat, knee cap area shifted.
## 16845 Crdt-low block with baton when coming up right knee popped causing EE to fall ()
## 16846 Crdt; after being taken down during aim bar quick take, felt muscle pull while recovering ()
## 16847 Creating a buffer solution and some sodium dodecy/sulfate got into rt eye.
## 16848 Crew of four employees were lowering the lift when Mr. Lockhart shoulder popped out of place.
## 16849 Crew sprayed into eye when replacing the top
## 16850 Crew was setting out work zone signs to remove some trees. Employee removed a sign rack and placed it on the shoulder; as he raised up he turned and twisted his lower left back area. List injuries as: lower back area ()
## 16851 Crew was working on vent hoods or something & EE inhaled fumes while working in office. Fumes were not continuous
## 16852 Crewman on fire, wind picked up, jumped the line. Blackline was burned over he had no where to go, he laid low in the plow line and right ear burned.
## 16853 Crews were cleaning equipment after snow event; employee was pumping the sprayer; top of the sprayer seal that allowed the lubra seal to blow into his face and eyes while still under pressure. List injury as: both eyes ()
## 16854 Criminal justice standards was going to pull his certification and this resulted in a stroke from worry and stress. ()
## 16855 Crossed cable in parkinglot. Foot didn't clear thecable. Fell against right hand. Struck face on railroad tie.
## 16856 Crossed over broken pavement & partly turned lt ankle. Hit on hands & knees. Rt elbow hit ribs
## 16857 Crossing hwy 91 and meadow road (greene county), mike's vehicle was struck in the rear passenger wheel, it spun and rolled over completely. The car was totaled. ()
## 16858 Crossing in pedestrian crosswalk. Walked into uneven pavement and turned right foot.
## 16859 Crossing intersection on way to work in morning & tripped & fell on sidewalk
## 16860 Crossing manning drive going to work tripped on construction netting fx left ankle.
## 16861 Crossing martin l. King jr., Dr. In a cart, to check on a building the light changed employee was hit by a car on the right side ()
## 16862 Crossing median to let vehicle in lot, lost footing& slipped on sandy portion of median twisting rt. Knee.
## 16863 Crossing medical drive, tripped & fell landing on left wrist. Fracture left wrist
## 16864 Crossing over some conduit in mechanical room, lost balance.
## 16865 Crossing parking lot; vehicle backed up not seeingemployee hitting employee
## 16866 Crossing st in front of admin bldg; hell of right shoe caught in crack; fell on pavement
## 16867 Crossing street at crosswalk, tried to stop for approaching car as precaution, lost footing and fell
## 16868 Crossing street in middle of block and was hit by a car between craige north and morrison south dorms
## 16869 Crossing street to parking lot, lt foot stumbled on pavement & turned over. EE fell
## 16870 Crossing the street at pasq. Courthouse, dawn stepped on large rock, twisted foot and fell
## 16871 Crossing yard while escorting inmates. Was stung by bee
## 16872 Crouched down to meet & stop a child from running down the hallway, child ran into me with full weight, stopped him & turned him in direction of room, twisted lower back
## 16873 Crowd shoved her against a fence while she was attempting crowd control injuring her rt. Shoulder
## 16874 Crushed fingertips when leaning on a perch in the eagle exhibit ()
## 16875 Crushed left shoulder/cracked left knee cap/ fracture humerus-broximal open wound/concussion
## 16876 Crushed right small finger while working with wood splitter at boston heights fire department.
## 16877 Crushing can and lid of can cut right ring finger ()
## 16878 Crutch hit some water that was on the floor in therestroom; EE lost balance and fell
## 16879 Crystal turned a resident ()
## 16880 Cts due to repetitive motion of typing and mouse usage-left/right hands
## 16881 Cts from repetitive use of hand, opening meds
## 16882 Cts in both hands as the result of clerical work for twenty years.
## 16883 Cts in both wrists and hands.
## 16884 Cts rt hand and arm.
## 16885 Cts to both wrists
## 16886 Cts was aggraved by keyboard use while typing during assignment to beacon project. Lt & rt handswrist/forearms. EE informed osp when hired of cts.
## 16887 Cubicle wall fell and hit EE on the right wrist.
## 16888 Cuffing an inmate and cut his rt pinky finger and wrist
## 16889 Cuffing inmate during use of force and hit his hand on shield
## 16890 Cuffing inmate, inmate pulled the cuff back into the cell and cut EE right hand
## 16891 Cummings hit the rear end of another vehicle, causing air bag to deploy
## 16892 Cummulative - cts - reoccuring - first report in 2001
## 16893 Cummulative effect from years of typing
## 16894 Cumulative drama sitting at computer station sincefeb. 15, 1995. Pain & numbness both hand & wrists.
## 16895 Cumulative effort of typing; first notice of symptoms in 3/2009; dealt with pain until 1/25/10 when she went to the doctor; doctor diagnosed pain and numbness in fingers as carpal tunnel; currently being treated ()
## 16896 Cumulative injury, continual pain upon typing, handwriting, using computer mouse, gripping telephone or other objects
## 16897 Cumulative pain in shoulder/wrist from repetitive computer work and loss grip strength in right handmultiple.
## 16898 Cumulative trauma due to design of work area
## 16899 Cumulative, repetitive, work-related activities such as typing, computer work, and collating over the last 15+ years ()
## 16900 Cup of brown liquid thrown on one officer and it splashed onto EE left arm, hand and both legs.
## 16901 Currently using trutouch vinyl gloves and soap provided on wards
## 16902 Cushman began steering irratic and threw EE from vehicle and rolled down a steep incline injuring left knee/hip and arm
## 16903 Cushman turned over, hit tree, broken glass. Cut left index finger.
## 16904 Custodial staff was mopping the floor; EE turned corner on way to restroom, slipped and fell
## 16905 Customer dumped toner inside of the copier machine, and EE was trying to clean it out by using canned air while doing so toner particles blew back into his face. ()
## 16906 Customer ran into light pole in parking lot. Employee was admministerings a road test when he felt pain in his back. (
## 16907 Customer was performing the 3pt turn, when backing up a taxi approaching from the other direction caused driver to panic. Customer pressed the gas instead of the brakes and crashed into a pole. Employee list injury as: cervical sprain of the neck ()
## 16908 Cut 2nd finger on left hand, after opening #10 can.
## 16909 Cut finger - van door
## 16910 Cut finger and left hand on glass from motor vehicle side glass windows when extracting subject from a vehicle
## 16911 Cut finger on cabinet
## 16912 Cut finger on edge of metal while trying to open lock
## 16913 Cut finger on exposed razor blade on floor of truck ()
## 16914 Cut finger on left hand while moving waste lines ()
## 16915 Cut finger on piece of metal on wreck while diving
## 16916 Cut finger on right hand
## 16917 Cut finger on right hand while cleaning a knife
## 16918 Cut finger on rusty metal while putting up a shooting target during firearms training. Cut to distal end of left ring finger.
## 16919 Cut finger right hand
## 16920 Cut finger when breaking up a fight with two juveniles. ()
## 16921 Cut finger while slicing bread. Lt pointer finger.
## 16922 Cut finger while teaching farmer how to castreate a calf, calf jerked suddenely and scaple stuck into finger
## 16923 Cut finger while trying to cut dick tape off a key ring.
## 16924 Cut finger while using razor to open box.
## 16925 Cut finger while working on electronic equipment. Laceration right index finger.
## 16926 Cut finger with exacto knife while cutting out labels -left index finger
## 16927 Cut finger with razor while cutting open a 5 gal bucket
## 16928 Cut finger with scissors while breaking down a box. ()
## 16929 Cut fingers on hand cuffs and scraped elbow against wall controlling an inmate ()
## 16930 Cut fingers on left hand while opening box of tinfoil
## 16931 Cut fingers on left hand with a circular saw.
## 16932 Cut fingers with scissors while opening calculatortape
## 16933 Cut forearm on cable basket at jobsite during jobsite inspection ()
## 16934 Cut gash in left hand while cutting cables with a knife
## 16935 Cut hand on a piece of steel
## 16936 Cut hand on piece of glass as he was pushing glass cabinet. Left hand ()
## 16937 Cut hand while sectioning tissues
## 16938 Cut hand with razor blade while cutting off inspection sticker off of windshield on c 440 car
## 16939 Cut her arm on a surgical instrument when walking near them. Cut rt arm
## 16940 Cut her finger when she was throwing away scrap metal.
## 16941 Cut her finger while using razor blade to cut tubing
## 16942 Cut himself while paring a callus in inmate foot.
## 16943 Cut his finger on wire screen
## 16944 Cut his finger while cutting a sign ()
## 16945 Cut his right middle finger while working above the lay in ceiling
## 16946 Cut index finger on jagged edge of table. ()
## 16947 Cut index right index finger on medication cart.
## 16948 Cut knuckle above r pointer finger on the teamakerwhen changing out the tea bags.
## 16949 Cut l. Middle knuckle on sharp object in biohazard bag. ()
## 16950 Cut l. Ring finger on used razor when picked up to discard. ()
## 16951 Cut left 2nd finger when unpacking.
## 16952 Cut left 5th finger with knife while cutting a coconut.
## 16953 Cut left finger index on handcuffs
## 16954 Cut left finger on clasp on back of manilla envelope
## 16955 Cut left hand while preparing tissue samples.
## 16956 Cut left hand while slicing frozen bait w/knife. Bait was used for sampling gear
## 16957 Cut left index finger moving picnic table
## 16958 Cut left index finger on divider when filing
## 16959 Cut left index finger on file cabinet ()
## 16960 Cut left index finger opening a can of peaches.
## 16961 Cut left index finger when removing lodged bowl from back of dish machine. ()
## 16962 Cut left index finger while changing dryer filter
## 16963 Cut left index finger with exacto knife while cutting roll paper. ()
## 16964 Cut left middle finger on a ()
## 16965 Cut left middle finger while positioning a door frame into position. Frame slipped and caught finger between door frame and end of metal stud plate. ()
## 16966 Cut left pinky finger on picture in hallway while attempting to stop individual from running down the hallway. ()
## 16967 Cut left pointing finger while process food ()
## 16968 Cut left shin on exposed metal duct work. ()
## 16969 Cut left thumb on desk
## 16970 Cut left thumb w/razor while trimming plastic scraper prior to harvesting cells from tissue culture experiment
## 16971 Cut left thumb while cutting plastic tubing with utility knife
## 16972 Cut left thumb while trimming exhibit work with exacto knife
## 16973 Cut left thumb with kitchen knife while preparing animal's food.
## 16974 Cut left thumb with pocket knife.
## 16975 Cut left thumb with razor
## 16976 Cut left thumb with saber saw working with a narrow space on an exhibit component, ()
## 16977 Cut left thumb, with scissors, while cutting papers furing ral activity
## 16978 Cut leg on rusty metal
## 16979 Cut lft thumb when removing wheelchair from truck of car
## 16980 Cut lt hand index finger while using hedge trimmer
## 16981 Cut lt ring finger sore upper back area and lower back
## 16982 Cut metal banding from lumber. Metal sprang back & hit his left arm cutting it about half way between wrist & elbow
## 16983 Cut middle finger l hand as I was taking hand out of neck area on broken blade ()
## 16984 Cut middle finger of left hand while placing razor wire at top of fence. ()
## 16985 Cut middle finger while sectioning paraffin block using rotary microtome. Forgot to engage locking mechanism.
## 16986 Cut on end of finger (middle) on left hand
## 16987 Cut on left arm by razor ribbon while taking down razor ribbon off fence ()
## 16988 Cut on left finger when trimming out signs; xacto knife jumped sign edge & cut left finger which washolding sign down, out of blade's intended path
## 16989 Cut on left forearm by I/m while reaching through trap door
## 16990 Cut on left hand by disruptive inmate kicking while c/o attempting to remove personal property ()
## 16991 Cut on left thumb
## 16992 Cut on lt forearm with object by I/m while taking up meal trays
## 16993 Cut on rt hand & scraped rt knee, loss balance & fell on sidewalk. Ok now, no lasting injury
## 16994 Cut palm of lt hand with of a pair of scissors. Laceration.
## 16995 Cut r. Index finger with scissors while working on a craft project with patient. ()
## 16996 Cut r. Middle finger on scrapper on side of mop bucket. ()
## 16997 Cut r. Ring finger when discarding resident's used razor into sharps container. ()
## 16998 Cut right fingers removing scalpel blade.
## 16999 Cut right forearm on metal ceiling tile hanger- 2 ()
## 17000 Cut right index finger on door lock while putting inmate back into cell. Both inmate and officer fell against the door. ()
## 17001 Cut right index finger on inside wire of lid on charcoal kiln.
## 17002 Cut right index finger on sheet metal ()
## 17003 Cut right index finger with knife during instructional lab
## 17004 Cut right middle finger on sharp sheet metal edge on unit housing
## 17005 Cut right thumb in meat slicer.
## 17006 Cut right thumb on broken glass in dishtub while clearing tables
## 17007 Cut right thumb while twisting together metal center of pool stick
## 17008 Cut right thumb with knife while cutting zip ties
## 17009 Cut rt ring finger.
## 17010 Cut through piece of tape, hit left index finger. Cut left index finger
## 17011 Cut thumb by scalpel while doing placement of percutaneous endoscopic gastostomy in patient. Scalpel contaminated by patients blood
## 17012 Cut thumb on jagged edge of light bulb that broke.
## 17013 Cut thumb when removing cable tie from wireless computer bridge antenna ground wire with knife.
## 17014 Cut tip of left 2nd finger when attempting to put razor in sharps container. ()
## 17015 Cut tip of left index finger with prunning tool ()
## 17016 Cut to left pinky finger while examing wall mounted exhaust fan. ()
## 17017 Cut top of hand on tool box
## 17018 Cut top of her left hand when getting cans out from under coffee counter
## 17019 Cut with knife during kitchen preparation. Chef instructor working with students to prepare food for an event. ()
## 17020 Cut with scapel- during autopsy.
## 17021 Cut wrist while working on tennart floor scrubber while testing a electric motor, wrist was cut.
## 17022 Cut/punctured right thumb at nail
## 17023 Cutaneous numbness occured after a period of time from Dec 04-Feb 05 but has not resovled and worsens when doing microscopy
## 17024 Cutaneous numbness occured over a period of time from 12/04 to 2/05
## 17025 Cuter slipped and cut EE on l thumb
## 17026 Cuting tress out of highway
## 17027 Cutitng rubber
## 17028 Cutting & scoring table tents, using exacto knife hand slipped while trimming
## 17029 Cutting a lock off inmates locker with bolt cutters and while pressing down cutters snapped down and hit me in the face. ()
## 17030 Cutting a piece of metal when a silver of metal came in contact with his right eye, EE was wearing safety glasses
## 17031 Cutting a piece of trashcan with knife went in fast as cutting it an hit me in the wrist. ()
## 17032 Cutting a piece of wood 0n the band saw. Lt hand slipped and hit the blade of the band saw cutting middle finger and top of hand
## 17033 Cutting a top (plastic) with a kitchen knife, knife slipped off top and cut EE's hand
## 17034 Cutting a zip tie with a knife and knife punctured the left forearm ()
## 17035 Cutting an animal skull w/ an autopsy saw when EE felt like something cold and wet splashed into his lt eye. Wearing eye protection
## 17036 Cutting and pulling tree limbs from power lines after hurrican
## 17037 Cutting apples for children snacks, had on gloves, knife slipped and EE cut finger. Laceration left thumb
## 17038 Cutting band on lumber rack releasing particles that entered the left eye
## 17039 Cutting bill of cost forms to size, sliced side index finger on left hand off
## 17040 Cutting board and saw slipped. Laceration to lt thumb required 4 stitches.
## 17041 Cutting brush along side of building & was stung by bee
## 17042 Cutting buckeye, over extended and cut lt thumb with scissors
## 17043 Cutting burned edges off money pouch to salvage for client, scissors slipped and cut end of left 2nd finger. ()
## 17044 Cutting cabbage and cut tip of right thumb.
## 17045 Cutting cantaloupe for lunch when knife slipped cut left thumb
## 17046 Cutting cardstock out light table using square knife. Knife slipped off square
## 17047 Cutting copper line sawzall kicked back punctured left wrist 2 cuts. ()
## 17048 Cutting down a tree during state duty & wood chip struck him in the eye
## 17049 Cutting down log, log dropped and landed on end and flipped onto foot. Fracture left toe
## 17050 Cutting down trees and did not notice poison oak which was there
## 17051 Cutting edges of her planner with scissors, cut lt pointer finger knuckle
## 17052 Cutting electrical tape off cable, knife slipped cut left hand/thumb. 1 stitch needed
## 17053 Cutting fish for aging, grabbed spine of the fish and it went into hand through glove.
## 17054 Cutting gill net knife in pocket bend & knife struck arm
## 17055 Cutting grass and debris flew back in face, safetyglasses where being worn.
## 17056 Cutting grass and grass landed on face. ()
## 17057 Cutting grass and wind blew debris into left eye
## 17058 Cutting grass around shrubs and received tick bite to neck
## 17059 Cutting grass at barbee hall when rear tractor struck drainage ditch causing pain in low back
## 17060 Cutting grass on a stand-up/stand-behind lawn mower on an inclinded/uneven surface, hit a bump throwing employee from mower.
## 17061 Cutting grass on hill, mower tractor rolled over
## 17062 Cutting grass push mower -moving heavy objects ()
## 17063 Cutting grass when finished employee noticed bumbson skin
## 17064 Cutting head off mouse. Cut rt index finger.
## 17065 Cutting hole in ceiling, debris got in eye ()
## 17066 Cutting hole in ceiling-debris from ceiling fell into l. Eye (wearing safety glasses) ()
## 17067 Cutting honey bun for client. Cut thumb on left hand
## 17068 Cutting iece of wood on table saw. Pulled guide stick out, piece of wood hit EE on left hand, EE reacted & twisted or pulled back
## 17069 Cutting in wall. Tried to keep a piece of metal from falling. Reached with left arm and felt pain in left shoulder. ()
## 17070 Cutting insulation on roof of bookstore w/knife knife slipped cutting hand
## 17071 Cutting kydex (door protector material) with a square and box cutter knife snagged on square came across and hit thumb and cut front side of thumb. ()
## 17072 Cutting lettuce when cut down on right thumb
## 17073 Cutting limb with pole saw, limb slid and struck right hand-wrist area ()
## 17074 Cutting limbs & sawdust got in eyes osver glasses. Right eye.
## 17075 Cutting limbs and debris flew in right eye
## 17076 Cutting limbs from trees and a backhoe truck a tree limb causing it to hit tim on the head ()
## 17077 Cutting limbs off tree stacking on pickup truck tohaul away when spider bit him. After getting home discovered bite on lower stomach. Reported
## 17078 Cutting limbs. Something hit eye.
## 17079 Cutting lumber band when it got loose and hit his knee
## 17080 Cutting lumber bands; when pulled down, the band popped back and cut top of rt hand
## 17081 Cutting lumber, sliver of wood passed under safetyglasses into EE's left eye scratching the cornea.
## 17082 Cutting machinery off and door to machine fell onto right foot
## 17083 Cutting masonry with diamond saw. Metal in eye ()
## 17084 Cutting metal band off stack of timber when band was cut timber shifted and fell. Fell on EE's left foot.
## 17085 Cutting metal strapping & it popped striking EE on right thumb causing laceration
## 17086 Cutting metal studs with snips, hand slipped off handle and cut rt thumb ()
## 17087 Cutting molding. Finger struck blade cutting his ring & little finger on left hand
## 17088 Cutting notch out of a dead oak tree, wood chip flew up, bounced off of face and went into left eye
## 17089 Cutting of plastic box w/cutter when piece of plastic flew into eye
## 17090 Cutting off water supply to water fountain in hallway when hand hit the fan 3 stitches on rightmiddle and ring finger
## 17091 Cutting onions & cut end of left 3rd finger
## 17092 Cutting onions and knife slipped cutting pad of left pinky finger
## 17093 Cutting open an evelope with knife knife slipped cutting EE on rt index finger
## 17094 Cutting open box, knife slipped and cut her finger. This caused her to jerk away and now she is having back spasms. ()
## 17095 Cutting open cat head and scraped finger
## 17096 Cutting overgrown vegetation with a pole saw on state road 1001 ferrells bridge road when, he was stung by yellow jackets/wasps. List injuries as: right hip ()
## 17097 Cutting paper and a piece fell on floor, I bent down to pick it up and swung around grazing my right hand/ring finger on the blade. ()
## 17098 Cutting paper on table using metal straight edge & razor. Razor slipped and lacerated left thumb
## 17099 Cutting paper w/carpet knife. Cut left hand thumb
## 17100 Cutting paper w/paper cutter & cut thumb
## 17101 Cutting paper w/right hand when went to look down at paper. Scissors scratched above right eye in eyebrow area
## 17102 Cutting paraffin blocks without stopping for 6 + hours repetitive motion ()
## 17103 Cutting part on milling machine, hot metal chip flew off into edge of left eye
## 17104 Cutting patches off old uniforms, hand slipped & cut left thumb ()
## 17105 Cutting patches on old state uniforms
## 17106 Cutting piece of line for his weed eater cut his finger
## 17107 Cutting piece of metal when cutting torch had piece of melted metal blow back from tip of torch & went into right eye
## 17108 Cutting pipe, knife slipped cut hand ()
## 17109 Cutting pipe, stepped on small piece of pipe onfloor, foot slipped out from under EE (did not fall), pulled something in back
## 17110 Cutting plaster to put on floor. Imjured lft finger.
## 17111 Cutting plastic rims off tops of 3 litter bottles. Knife in rihgt hand slipped off of rim & laceratedthumb of left hand holding bottle
## 17112 Cutting plastic splint with carving knife-knife slipped and cut left thumb.
## 17113 Cutting plastic tie from telephone lines when knife blade cut palm of left hand
## 17114 Cutting posterboard for display. Knife slipped andsevere laceration to left index finger
## 17115 Cutting price tag off of item. Knife slipped & cutleft thumb
## 17116 Cutting rags with utility knife. Employee lacerated his r index finger. ()
## 17117 Cutting right of way on mcdowell rd. Was reaching to catch bus keys when caught his left leg on guard rail
## 17118 Cutting right of way w/bush axe. Tree started falling & EE ran under tree. Tree fell on EE fracturing & dislocating his left ankle
## 17119 Cutting sewer line with saw, wast water & metal savings while cutting stroke face & left eye ()
## 17120 Cutting sheek back-blade hit wook block & popped blade out of wall hitting left index fing-cut to bone
## 17121 Cutting shrinking wrap to be put on boxes & cut rt thumb ()
## 17122 Cutting shrub with torms and thorn hit him in the left calf. ()
## 17123 Cutting sign. Tool slipped and cut finger
## 17124 Cutting small trees & shrubs with chainsaw & he slipped & struck left side against culvert ()
## 17125 Cutting some wire & wire cut EE finger. Left middle finger.
## 17126 Cutting steel wire at a traffic collision scene, felt slight pull in groin area
## 17127 Cutting step thread, knife slipped cutting EE lefthand.
## 17128 Cutting styro foam board and piece got into his right eye
## 17129 Cutting the road using a pavement saw & another employee was cutting a tree when a limb from the tree fell & pinched Mr. Gray's left ring finger against the handle of the saw ()
## 17130 Cutting thru a door with saws all, hand slipped & EE was pinched.
## 17131 Cutting tile with utility knife, the knife slipped and cut his left hand. ()
## 17132 Cutting toenails of inmates with dremmell tool per doc training. ()
## 17133 Cutting tomatoes for salad and cut r. Thumb. ()
## 17134 Cutting top of boxes, box fell & when tried to catch box, blade cut left arm
## 17135 Cutting tree limbs in support of hurricane fram chain saw blade kicked & cut right leg above knee
## 17136 Cutting tree limbs with pruning sheers
## 17137 Cutting trees on state road 1140; pulling trees out underneath with a chain hooked to a trackhoe on one of the trees, the chain came undone, tree started toward jeff, and he blocked tree with his hand, therefore, jammed his left wrist. ()
## 17138 Cutting up cabbage and cut a piece off side of left index finger with knife. Laceration left index finger.
## 17139 Cutting water off to cell and inmate gassed right side of face with an unknown liquid that struck my eyes and face. ()
## 17140 Cutting weeds. Dismissed suggestion to put on protection from the poison weeds.
## 17141 Cutting wood and chain saw kicked back grazing leg. Minor laceration to left knee
## 17142 Cutting wood and piece got in eye ()
## 17143 Cutting wood on table saw when wood kicked back onsaw & cut left thumb
## 17144 Cutting yarn scissors slipped, cut right little finger.
## 17145 Cutting zip tie with pocket knife. When the zip tie cut through cut right hand in between thumb and index finger. ()
## 17146 Cyst dev approx 10 yrs ago; cyst gotton larger, approx 3-4 times larger; believe cause is due to keyboard typing. Back of r hand near wrist.
## 17147 Daily cleaning sweeping mopping taken out trash cleaning hand towel bowls
## 17148 Daily computer input, heavy writing, answering phones, holding documents in hand while micro- filming, filing-pain in rt neck, elbow, wrist
## 17149 Daily computer key-entry. Pain is in shoulder downto the her fingers in her right arm. Numbness in fingers. Mi. Referral to pt & ortho.
## 17150 Daily data entry over long period of time caused injury.
## 17151 Daily duties - pain in wrist of rt hand and arm run into shoulder and neck.
## 17152 Daily job duties
## 17153 Daily key board entry.
## 17154 Daily repetitive turning actions of wrist caused by hand tools use in repair and installing two way radios. Cts in both wrist
## 17155 Daily usage of equipment, over long period of timeprobably caused injury. Pain & numbnes in both shoulders/arms/hands.
## 17156 Daily use of computer keyboard and mouse. ()
## 17157 Daily use of computer. Upper back and neck. ()
## 17158 Daily use of mouse on computer has cause pain in middle and ring finger of rt hand.
## 17159 Daily work done on computer keyboard
## 17160 Daily work. Both wrists and thumbs.
## 17161 Damp enclosed office space while performing dutiesair conditioning unit used as temperatures increased all leading to illness.
## 17162 Dancing around, fell on floor
## 17163 Dancing with client in dayroom, felt as if some- thing was pulled in right knee.
## 17164 Daniel blakemore was talking with a visitor in the stamp mill building, turned his ankle on a rock and fell. The visitor assisted him back up. After a short while, the ankle began to swell. ()
## 17165 Darrell walked out the door in front of the shop and slipped on the ice build up in front of the door. ()
## 17166 Data entry - repetition of screwing and unscrewinglids on specimen cups
## 17167 Data entry and keyboarding during normal job duties has caused pain in rt hand and wrist.
## 17168 Data entry and typing resulting in carpal tunnel/repetitive motion rt hand
## 17169 Data entry everyday aggrevated her cts
## 17170 Data entry of information into computer system- pain in rt & left hands, wrist, fingers.
## 17171 Data entry. Injured wrist.
## 17172 Data entry.. Right shoulder pain, numbness in righthand
## 17173 Date entry activities causing pain in wrist, arm and elbow for EE.
## 17174 David lennon was driving and did not slow down going over speed bump causing EE's neck to jerk.
## 17175 David was sandblasting curb and gutter in ashley woods subdivision when, the sandblasting material got into his eye. David was wearing all of the required safety materials. List injury as: eye ()
## 17176 David was stepping into a doorway with heavy box and tripped which made his body twist
## 17177 Davie hall undergoing asbestos abatement, smell, etc-has caused sore throat-nausea-diarrhea-taste of bleach-headaches-burning eyes
## 17178 Day after crdt training, felt like he had pulled muscle in lower calf on rt leg.
## 17179 De-accessing port-a-cath, safety device on needle failed to employ & was stuck with needle. Lt indexfinger.
## 17180 Dead limb fell from tree striking employees shoulder; causing a deep scratch. Employee refused medical treatment. ()
## 17181 Deadline oriented with constant use of computer inorder to meet deadlines-left arm and hand
## 17182 Dealing with aggressive resident and injured wristwhile moving chair out of the way. **do not call - iw has obtained legal counsel**
## 17183 Dean was lifting a box in the usps section, felta pull in his rt wrist, his rt wrist is swollen & the pain radiating up to his rt shoulder
## 17184 Dean was trying to get the attention of EE with back pack blower on. EE backed up, dean put up his had to keep EE from backing into him/burn to hand
## 17185 Deb tripped over a floor mat being used for cpr training class. As she fell her left forearm hit a table. She then fell to the floor hitting the inside of her right knee. She had bruises on her right knee and left forearm and her left shoulder is sore
## 17186 Debilitating anxiety and depression resulting in low energy, sleep difficulties, poor consentrationdaily crying, rapid wgt loss.
## 17187 Debilitating stress associated with supervisor/ work environment
## 17188 Deborah was using the bleach on friday and her head started hurting. She mopped all of the floors in horton and wiped half of the railing in bleach. Respiratory.
## 17189 Debra was leaving work, tripped on a wooden chip in the parking lot, and fell. She injured her rt hand, rt ankle, rt knee & chest. ()
## 17190 Debris blew in eye while hanging wall pack. ()
## 17191 Debris blew into eye as riding on forklift toward warehouse on a windy day
## 17192 Debris fell in employees eyes when removing ceiling tiles
## 17193 Debris fell into EE's left eye while closing roof hatch.
## 17194 Debris flew hit EE under eye on eye lid
## 17195 Debris from door entrance being enlarges fell intoeye causing cornea abrasion
## 17196 Debris from ladder fell in right eye ()
## 17197 Debris from weed eating machine went into eyes while weed-eating
## 17198 Debris got blown into EE's eye when helicopter waslanding.
## 17199 Debris got caught under rt eyelid. Tried to flush out before going to urgent care.
## 17200 Debris got into eye causing eye irritation.
## 17201 Debris got into left eye while weed eating causing swelling and redness ()
## 17202 Debris puncture the calf of EE's left leg
## 17203 Deceased employee's representative claims Mr. Lander developed asbestosis while employed with agency.
## 17204 Decedent died in airplane crash participating in an. C. Wing-civil air patrol drug eradication mission in conjunction with chowan sheriff dept
## 17205 Decedent infected with mycobarterium tuberculosis )pulmonary) unbeknownst to ocme. Autopsy examination of said decedent. ()
## 17206 Decedent was working at the national undersea research center in key largo, fl as a scientific diving specialist for the university of nc wilmington. He was working to set up a concrete structure when his breathing apparatus malfunctioned, he drowned. ()
## 17207 Decontaminating student who had been exposed to pepper spray. Student shook his head & slung mucus/saliva onto EE's face from the corner of the EE's mo
## 17208 Decsending ladder when ladder moved away employee fell striking right hand on table
## 17209 Deep scrubbing bathroom. As EE was coming out of door, slipped down and fell and hit back on bathroom step down. Lt arm hit the wall
## 17210 Deer obstructed driver's side of car. EE had glassin hair. Left pinky finger cut. Severe muscle achein back & neck. Hit head on steering wheel
## 17211 Deer ran into car as driving on property causing pain on left side - neck down thru left hand.
## 17212 Deer ran out in front of car while making curfew checks. Swerved to Miss Deer but hit deer, lost control of car, when into a ditch ..
## 17213 Deer tick bites during field research in virginia. Employee continued to work.
## 17214 Defective tube containing pherol cracked and contents spilled during performing pherol choroforextraction
## 17215 Defendant bite officer on upper back left arm.
## 17216 Defendant came in w/note from health dept stating was under obervation for TB.
## 17217 Defendant pushed employee out of the way with both hand, pushing back against the wall
## 17218 Defendant resisted arrest and situation turned into a serious altercation, EE injuried lower back
## 17219 Defendent attempted to resist arrest and pushed employee to the ground ()
## 17220 Defensive training practice, lower back injury.
## 17221 Deferred prosecution review day--taking files back to office from court. Fell forward on ramp outside courtroom. Foot bent into ()
## 17222 Degenerative disk disease caused by clerical duties
## 17223 Delete as duplciate - another patient approached staff who was doing 1:1 with a patient and punched her in the stmach x 3. ()
## 17224 Delete as not state employee- county paid. EE was lifting, moving, and stacking boxes of ceiling tiles when he felt strain in his left shoulder.
## 17225 Delievering paperwork to master control and tripped over push cart ()
## 17226 Delivering books in golf cart. Golf cart flipped going down hill. Left elbow, right hand cuts. ()
## 17227 Delivering client equipment, minivan pulled out ofside street into path, hit brakes & hit the vehicleon driver's side, air bag deployed
## 17228 Delivering equipment to college, EE was hit by a truck that made a left turn in front of her. Resulted in employee having a sore neck. ()
## 17229 Delivering eye pathology slides to dept when he slipped on a wet floor in lobby of main hospital.
## 17230 Delivering food carts, one falling off truck, EE reached to grab it ()
## 17231 Delivering food to the kitchens. Picked up a box off the truck floor onto a cart and pulled lower extremity.
## 17232 Delivering food trays to residential unit-resident punched employee in back ()
## 17233 Delivering items in clinic, EE went around corner, tried to avoid person in w/c on her rt side, slipped and fell
## 17234 Delivering legal mail in kitchen and walked on wet floor. When I stepped into hallway I fell. ()
## 17235 Delivering mail and when he exited the vehicle, wind blew door shut on his arm
## 17236 Delivering mail to post office in her personal car making a lt hand turn when a car collided into th rear of her car
## 17237 Delivering mail to post office, pulling the hand truck up stairs, 6 buckets of mail. Injured lower extremitess.
## 17238 Delivering mail, walking through the door, and storm door accidentially caught right foot, tripped and fell ()
## 17239 Delivering medications, was leaving, slider door was fully opened, as started through the door, the slider strick left wrist, shoulder & thigh
## 17240 Delivering nourishments unlocked door w/right hand& pulled door open w/left hand causing his left wrist to hurt.
## 17241 Delivering personal tv & vcr to show tape. Carrying27" tv. Tried to open door. First w/hand then heldit open w/foot. Sharp pain in lower back
## 17242 Delivering supplies & rubbed side eye not realizing cleaing solution was on hand
## 17243 Delivering supplies for evening class, tripped on sidewalk joint near top side entrance of lrc, scrapes and bruises on left face/knee/hand.
## 17244 Delivering trays to wards. Elevators closed on arm as coming out w/trays
## 17245 Delivering vigorous chest percussion of patient's upper torso w/cupped hand on patient
## 17246 Delivery person broke bottle of nitric acid duringdelivery. EE was clening up spill and was exposed to nitric acid fumes.
## 17247 Delivery, errand on campus, stepped off curve injuring both knees and rt elbow
## 17248 Delta dorm patrol officer. Chest pain.
## 17249 Delusional client attacking staff. EE ran to assist. Client hit EE in chest with his knee during restraint. Rt chest/thoracic.
## 17250 Demarco was informed by examinee that he had the tuberculosis germ was on medication for 6 months demarco was in confined area w/examinee.
## 17251 Demo of boxed-in furniture when a piece of wood tore into elbow that contained asbestos. Body systems.
## 17252 Demo squat. Right knee.
## 17253 Demolition of old box using crowbar-bar slipped & EE felt sharp/hot pain in rt bicep & shoulcer
## 17254 Demonstating the correct way to enter thru doorwaydoor jam and hinges when student on the other sidedoor pushed closed, left pinky finger was closed
## 17255 Demonstrating a defensive tactic technique, calledguard. Injured right knee.
## 17256 Demonstrating a drill running in a straight line and felt a painfull pop in left knee.
## 17257 Demonstrating a knee spear to the common peroneal right knee struck mose cannon directly on knee
## 17258 Demonstrating a soccer move at practice and while trying to kick the ball his left planted sustaining left acl repair
## 17259 Demonstrating a stage combat technique, partner accidentally hit EE's ribs with his unusally large trcips and elbow
## 17260 Demonstrating an arm lock technique in crdt training class
## 17261 Demonstrating cpi trng position when felt pulling/grabbing in left shoulder
## 17262 Demonstrating ground defense techniques, when he rolled over neck & shoulder area rolled
## 17263 Demonstrating how to break off a lock, hand slipped on the axe handle, cut right hand index finger
## 17264 Demonstrating how to use a sheet metal roller. Metal was stuck. Came out abrutly and stuck left hand
## 17265 Demonstrating knife to supervisor in anticipation of purchasing them for patrol officers. Closed knife across tip of middle finger
## 17266 Demonstrating on floor a technique, tried to get up from floor and strained upper back
## 17267 Demonstrating pic technique to class-restraint in chair - lt side of back - lower back hip
## 17268 Demonstrating specical event trampoline jump, injured left arm when it was caught behind his back.
## 17269 Demonstrating unarmed self-defense technique (koto-gaeshi) to some trainees & injured some muscles in lower back
## 17270 Demonstrating use of epi pen, accidentally discharged contents of pen into rt thumb
## 17271 Demonstration of crdt technique, while performing a crdt technique with another staff member, I did move in a way that caused a pop in the upper left rib area. ()
## 17272 Demonstration with nci instructor on how to free yourseflf if pt attacks--involves bending & twisting. Strain back & neck
## 17273 Demonstrations of an inertia ball.
## 17274 Demostraiting officer assist take down during inservice training at mcdowell tech. Jammed right shoulder into the mat.
## 17275 Denine was leaving a meeting at dss, when she stepped outside the door she missed a step and fell. She turned her left foot and it hit the concrete. The (left) foot immediately swelled. ()
## 17276 Dental school 5-6 parking lot, slip and fell.
## 17277 Dental tools were stuck together EE attempted to pull apart when her 4th finger on her rt hand punctured the dental tools were used on an inmate
## 17278 Departed consumer's home in canton in route to the dss office in clyde. Driving on champion Dr., Vehicle entered champion drive directly in my path. My vehicle hit other motorists' ()
## 17279 Departing line-up room located by old cafeteria, fell on uneven sidewalk causing injury to her leftankle
## 17280 Departing visiting area through receiving area door. Turned his left foot.
## 17281 Deploying/retrieving nets on boat during teaching ()
## 17282 Depression arising from accident and continuing pain.
## 17283 Depression brought on by severe stress
## 17284 Depression, stress brought about by a hostile management based on a lack of job description and direction
## 17285 Depression, stress from supervisors ()
## 17286 Depression; occupational disease/stress disorder, ptsd, transfer with prolonged exposure to physical assault depravity and abuse, resulting in mental breakdown. ()
## 17287 Deps black was traveling from his work site to office. A car changed lanes to get in front of him and then braked suddenly when the driver encountered unexpected traffic, causing Mr. Black's vehicle to collide with the other vehicle. No injuries noted ()
## 17288 Dept was doing team building activities & employee overextended her back causing pain. (low back- lumbosacral)
## 17289 Dept was having ganization day/cookout. We selected teams to play badminton. I moved to hit the birdie& when I came down twisted ankle, couldn't walk
## 17290 Dequeruains..... Repetitive injury.. Right hand, andwrist
## 17291 Dermatitis from seating and wearing gloves. Left & right hands.
## 17292 Dermatitis reaction right hand
## 17293 Descending a bluff and placed left hand into a fire ant hill ()
## 17294 Descending deck stairs at gateway mountain. Top step was slippery due to damp weather. EE fell several steps onto his mid to low back and buttock
## 17295 Descending fr ladder, right knee hyperextended
## 17296 Descending ladder and stepped onto exhibit cover which flipped up and hit employee in groin
## 17297 Descending motorized scaffold when foot missed foot stirrup. Trying to maintain balance pulled muscle in neck
## 17298 Descending outside stairs my high heel shoe got caught in the pants leg. EE fell from the 3rd step from the bottom onto the concrete. EE injured... ..
## 17299 Descending staircase in auditorium, slipped on the stairs loosing balance and fell.
## 17300 Descending staircase, lost footing and fell down flight of stairs. Floors had just been waxed and EE believes she slipped on floor at top of stairs
## 17301 Descending staircase. Bruise/rug burn on chin, bruise on wrist & knee.
## 17302 Descending stairs and tripped from 2nd step in lumbee hall stairwell and fell. ()
## 17303 Descending stairs in building # 5. Tripped & fell. Foot doubled up underneath me, knee twisted.
## 17304 Descending stairs to attend meeting; slipped and missed a step.
## 17305 Descending stairs to begin work
## 17306 Descending stairs. Was 1 step from the bottom step and fell landing on rt. Knee.
## 17307 Descending stairwell and missed step
## 17308 Descending steps on l. Side of g1 porch-fell on last step-hitting concrete on l. Side and twisting both ankles. ()
## 17309 Descending steps to trailer on way to class. Slipped off bottom step, twisted lt ankle
## 17310 Descending steps, employee missed the third step and fell landing on hands/knees and eventually landing on stomach.
## 17311 Descending steps, slipped and missed last step hurting rt knee & great toe
## 17312 Description not given
## 17313 Desk chair arm had turned in & was difficult to move, when twisted out, finger got caught & was cut.
## 17314 Desk chair screws and base broke, throwing EE to floor
## 17315 Desk drawer fell on right ankle and foot
## 17316 Desk dropped on rt big toe.
## 17317 Desk fell on right foot. Fx. 2 toes
## 17318 Desk had pull out typewriter table. EE pulled tableout, spring loaded, table crushed rt thumb against desk
## 17319 Desk is in a awkward position causing a strain when using mouse
## 17320 Desk is not set up properly-pain has continued andworsened with time in shoulder, back, neck
## 17321 Desk lamp was bumped off table and landed on top of EE's left foot.
## 17322 Desk size & placement caused neck to be turned to the lt from 3/06 to 11/06. Desk height forces shoulders to be raised causing neck strain.
## 17323 Desk was lose and fell on her leg making her fall to the floor and hitting her irght lega and bruising her left leg
## 17324 Desk was lowered per ergo eval. It was too low and created strain on thumb/wrist/elbow/shoulder/ back
## 17325 Desk was seperated from side of table used for typewriter. Loading papers on top; shelf board would not support colloapsed on leg. Multiple leg injury
## 17326 Desk-sitting at work low grade to high grade back pain. ()
## 17327 Detachable arm of wheelchair fell-hitting EE's left pinky finger
## 17328 Detaining a probationer. Offender was fleeing, I ran toward the offender and made contact with the offender with my right shoulder in his chest and with my head in his upper torso. ()
## 17329 Devaney was assigned to the east yard, she felt something crawling on the left side of her neck, when she went to smack it off, it bit her. She stated she felt fine at first, then around 8 pm she started to feel pain in the area where she was bit. ()
## 17330 Developed a double hernia caused by repetitive bending and heavy lifting as much as 2000 -3000 pound per day ()
## 17331 Developed a heat injury while a move in.
## 17332 Developed a rash after rabies vaccination that is required for animal keepers upon employment. Rash on face/neck, joint pain in hands/fingers.
## 17333 Developed allergies to rats over period of time.
## 17334 Developed carpal tunnel syndrome due to repetitive motion injuries from repetitive use of upper extremities for typing/data entry while working as an administrative assistant at the school of law. ()
## 17335 Developed cts after 13 yrs progressive typing and computer work - rt/left hands
## 17336 Developed double hernia while lifting computer from front seat of car in order to lock it in trunk of car
## 17337 Developed ear infection following multi-day repetitive undersea diving
## 17338 Developed ear infection following scientific divertraining-subsequently caused sinus & inner ear problems
## 17339 Developed ear pain after scuba diving in exhibit. It did not develop immediately after dive, but a while later.
## 17340 Developed numbness of fingers and pain in the right hand/wrist and arm over a period of 3 years.
## 17341 Developed pain and swelling in rt pinky finger due to 10 key calculator and computer
## 17342 Developed phlebitis post blood drawing
## 17343 Developed rt knee pain immediately after running with blet students during pt instruction. Rt knee stiffness and pain.
## 17344 Developed sharp lumbar pain while in talking with coworker. Fell and unable to stand afterward
## 17345 Developed shingles
## 17346 Developed shingles which is an infective process with potential exposure to patient. Thoratic 7 nerve
## 17347 Developed skin lesions, which cultured out to be MRSA. Lesions on rt/lt hand & rt hip.
## 17348 Developed soreness in left hand due to repetative use of forceps to grip tissue
## 17349 Developing an ifsp, child playing with a toy gun accidentally poked in my right eye ()
## 17350 Development of carpal tunnel syndrome due to hoursof time spent on mouse-operated programs, typing, and extensive handwriting.
## 17351 Device slipped & cut EE's right palm while removing slice from cork
## 17352 Devleoped scabies after being exposed resident who had scabies.
## 17353 Diabetic EE felt unknown insect bite her rgt foot. Top of foot is now swollen
## 17354 Diabetic EE was bitten repeatedly on legs & anklesduring flea infestation. Large open sores & red rashes.
## 17355 Diagnosed cts. Typing, holding documents in hands while micro filming, filing documents in rapidprintime clock, answering phone and heavy writing.
## 17356 Diagnosed has having carpel tunnel extended use of computer over period od years
## 17357 Diagnosed with carpal tunnel syndrome - 6/7/07 - left wrist - clerical duties/repetitive motion
## 17358 Diagnosed with carpal tunnel syndrome in both ha nds from repeitive motion- dx in 2001
## 17359 Diagnosed with cts on 11-17-18 by Dr. Richard, repetitive movement while using computer, rtand lt hands/arms
## 17360 Diagnosed with lyme disease while performing site visits in tick infested areas.
## 17361 Diagnosed with tendonitis in August 06 Dr. Asked about repetitive activity. EE thought of raising and lowering 3ring binders. Lt hand.
## 17362 Did inspection in cloths house truck. Reached up to grab handle on truck. Back of hand touched exhaust pipe
## 17363 Did not see median. Rode up on it. Hit brakes just before median & tumbled over handle bars. Landing on hands
## 17364 Did not see plastic carpet runner which was foldedin half and tripped/fell on it injuring legs/rt f oot/toe.
## 17365 Did not see road sign indicating sharp right turn unable to slow down enough to make turn. Hit brakes, went off road & hit embankment
## 17366 Did not use keyboard tray since moved into cubicle. Started having forearm pain in 2011. Having tendonitis like symptoms in June or July of this year in both arms. Seeing occupational therapist, six more appointments, recommended by Dr. Richie. ()
## 17367 Didn't hold gun correctly when I shot first round, gun jerked back and hit my hand. ()
## 17368 Diesel fuel sprayed out of return line at the injector pump due to back pressure and purging out air causing diesel fuel ingestion to mouth. ()
## 17369 Dietary is required to bleach food trays every other weekend in hot water and bleach, this takes approx 2 hrs, this is done in the scullery room and the ventilation is not good. Near the end of the day the employee's head began hurting. ()
## 17370 Diffculty breathing when operating forklift
## 17371 Different gloves used by jirdc regardless of name brand or color are breaking her hands out
## 17372 Digging a fireline in rough terrain using a swing-ax, twisted wrong, felt sharp pain in lower left back
## 17373 Digging a hole to plant apple tree, EE felt a sudden, sharp pain in his lower back
## 17374 Digging dirt to lay pipe then felt sharp pain in lower back. Listed injury as: lower back ()
## 17375 Digging experimental cages into sandy bottom of sound. Finger cut by razor clam
## 17376 Digging holes for planting plants while on my knees, when I stood up to put plant in the hole on the embankment, my right leg slipped
## 17377 Digging plants, shovel hit some bricks undergroundcausing it to slip from under his feet and he fellacross asphalt curb on his back
## 17378 Diluted formula splased in right eye. Working at table reading bear reproductive tracts.
## 17379 Diming lights for movie night. Recieved an electric shock and was burned on tips of hands
## 17380 Dining room chair slipped out of hand striking left side of foot.
## 17381 Diong roll after choke hold rolled the wrong way and pulled lower back
## 17382 Directed client back to bedroom. Client sat down on bed and kicked EE in face with shoe, breaking glasses. Eye.
## 17383 Directed visually impaired students hand to where bloody cloth was for applying pressure and blood got on hand
## 17384 Directing inmates into dorm 2a. Placed hand insidedoor frame and control officer closed dorm door to secure it. Left thumb was caught in door
## 17385 Directing inmates to stop altercation, fight ocurred got a hit from inmate. And spit in eye ()
## 17386 Directing play at memorial hall. Stepped up on stage and fell back 8 ft. Into pit hurting back.
## 17387 Directing students where to stack drywall. One student knocked stack over in error, EE attempted to catch stack. Injured left wrist.
## 17388 Directing traffic & turned suddenly to right. Feltsharp pain in right foot. Foot rolled over causingfall to pavement on right knee & hands.
## 17389 Directing traffic in area that the tornado hit. Bending over talking to people in vehicles for approximately 10 hours. Neck strain from repetition. ()
## 17390 Directing traffic in sun for extended period; suffered effects of heat exhaustion
## 17391 Director was attempting to open door located in her office which leads to outside and the door was stuck. She pushed on it with her left side and when the door finally opened she flew out hitting the sidewalk. ()
## 17392 Diring a work assignment EE injured her left anklewhile walking on loose sand.
## 17393 Dirt flying around on yard & went in eye.. Startedto tear up & hurt.
## 17394 Dirty needlestick injury to left index fingertip while attempting to place butterfly needle into biohazard box.
## 17395 Dirty needlestick to left hand palm area.
## 17396 Dirty water entered ear canal during scuba diving which May have contributed to swimmer's ear. ()
## 17397 Dirty water splashed into eye when cleaning out a p. R. V. Station in the physical plant mechanical equipment room. ()
## 17398 Disagree with an imate, punched steel door, injury right hand ()
## 17399 Disassembling bed frames when he leaned frame against wall. Turned around & bed frame fell, striking him in lower back
## 17400 Disbursing inmates out of hallway. Accidentily placed hand on bar door. Closed door while hand was on door
## 17401 Discard dirty linens and face broke out in rash.
## 17402 Discarded light bulb taken from light fixture in office exploded in hand of maintenance worker at secretary's desk. Injury to eyes
## 17403 Discarding boxes into the dumpster, wasp stung her under the right arm(upper)
## 17404 Discarding iv needle stuck rt index finger throughglove. Rt index finger.
## 17405 Discarding needle-needle prick to l. Middle finger. ()
## 17406 Discharged firearm. Left hand was struck on first joint
## 17407 Discharging subsequent from a needle employee punctured her finger ()
## 17408 Discomfort/pain in right shoulder, associated withusing mouse while at the computer
## 17409 Discoverd original design of ventilation system was not implemented. Ventilation system in place was disconnected one year ago.
## 17410 Discovered fully engaged tick on stomach in late afternoon after spending workday in gardens and fields. Rash, headache, blurred vision, and achy.
## 17411 Discovered hard object while conducting search of inmate's property ()
## 17412 Discovered spider bite around 3pm
## 17413 Discussing problem w/inmate when inmate got mad and spit in EE's face
## 17414 Dish machine door fell on l. Hand when attempting to remove a jammed tray. ()
## 17415 Dish machine was loaded with soap and EE did not know when she lifted the top out of it and the water shot out on her left foot
## 17416 Dish soap foam in eye allergic reaction which became apparent days later. ()
## 17417 Dishwasher door slammed on rt 2 middle fingers ()
## 17418 Disinfecting arjo tub-bolt fell into tub. EE bent over tub to retrieve bolt and felt pop in left side in ribs and arm
## 17419 Dismissing patient from dental chair, EE's right middle finger cam in contact with dental bar. ()
## 17420 Dispenser opened and top fell downward hitting EE on right temple. Bruising and swelling to right side of head
## 17421 Dispensing medication at med pass. Opening and closing several medicine bottles repeatedly on a daily basis (at least 100+ bottles). ()
## 17422 Displaying iris in display pond, when saw slipped & punctured finger. Wound healed, but infectiong got worse.
## 17423 Disposing files
## 17424 Disposing of blood drawn needle when it popped back and pricked right index finger
## 17425 Disposing of bottles/lids in trash can. Dropped 2 lids on floor; picked up one; backed up to look for other one and stepped on it and twisted my ankle
## 17426 Disposing of surplus/junk computer accessories an attached power cord "whipped" and hit face
## 17427 Disposing of trash & cut her third finger on righthand on sharp place on trash can lid
## 17428 Disruptive inmate pulled ofc hands into cell as he was removing restraints ()
## 17429 Disruptive inmate swung at me and hit me in left side of my mouth. Thumb hurt while getting control of inmate. ()
## 17430 Dissecting animals needle stick-ed to the left hand, below the thumb. ()
## 17431 Dissection of neck during autopsy w/scalpel when tip of blade poked through 4 layers of gloves breaking skin on left thumb knuckle. ()
## 17432 Distributing lunch trays to single cell inmates, opened tray flap, inmate reached out and grabbed him scratching him with fingernails
## 17433 Distributing testing materials on tables. When turning heard a pop and pain in right knee making it difficult to apply weight and stand. ()
## 17434 Disturbed a yellow jacket nest and was stung on the left forearm
## 17435 Disturbed fire ants while trimming grass, fire ant bites on both legs
## 17436 Diving collecting biological samples, after diving started having vertigo, nausea ()
## 17437 Diving for staff ball during physical training and landed on left knee & twisted over
## 17438 Diving to 20-24 ft, on ascending to surface suffered reverse squeeze causing rupture. ()
## 17439 Dixie grading burning poison oak brush near shed where class was working. Toxic fumes caused rash. Face, neck, eye, and wrist area.
## 17440 Dizziness reported and emt called, per request of EE was transported to er, all vitals reported normal by emt ()
## 17441 Dizzy, nausea, burning eyes, hyperventilative, red face, arms, headache, neck, back of arms, circulat-ion, humidity, etc
## 17442 Do not know cause
## 17443 Doa car 05339 was hit from behind twice. EE was a passenger in the back seat of this vehicle.
## 17444 Doc trucks exhaust entered the ventilation system
## 17445 Doctor was stuck by needle ()
## 17446 Documenting a conservation easement solation for the pather creek easement, received a tick bite that was noted and later signs of inflammation
## 17447 Dodging pt assault when his right thumb struck theboard and popped. Sprain rt thumb
## 17448 Does not know of specific injury. Back pain as result of client behavior over long periods of time
## 17449 Doesn't knot how after confrontation with inmate noticed right finger swollen on 8/9 went to Dr Office Dr Has bee stings as of 8/9/09 along with sprain from fight on 08/06
## 17450 Dog bie
## 17451 Dog bit EE on lower left shin when EE walked behind house to get equipment.
## 17452 Dog bit employee on the rt. Leg while he was testing chickens. ()
## 17453 Dog bit her through the muzzle.
## 17454 Dog bit officer on lt calf while making home visits
## 17455 Dog bit rt hand during routine care/transfer of patient from floor to cage.
## 17456 Dog bite - employee petting dog ()
## 17457 Dog bite at offenders home wile out doing a home visit.
## 17458 Dog bite laceration to skin on back of left leg
## 17459 Dog bite on right thigh ()
## 17460 Dog bite on rt thumb while trying to muzzle dog to sedate
## 17461 Dog bite to her right hand.
## 17462 Dog bite to left index finger
## 17463 Dog bite to left thumb while restraining for radiographs. ()
## 17464 Dog bite to lower left leg breaking skin and causing a bruise. Incident occured at offneder's residence.
## 17465 Dog bite while doing a curfew check. Arrived at house walking up stairs, knocked on storm door, knocked door open and bit the lft forearm.
## 17466 Dog bite while working 1:00 to 10:00 shift to verify offenders address, the next trainer to the resident had a dog on rope. Dog chain was longer than thought and dog bite him on left calf. ()
## 17467 Dog escape from pen into cow posture. People were closing. This student caugh dog and was bitten.
## 17468 Dog looked at EE and then tasted EE nose, lip, and cheek.
## 17469 Dog ran out of pen, knocking employee backwards employee grabbed onto the fence that's when employee heard shoulder pop and felt tingling down left arm to the tin emp was trying to let another dog out and his roommate was trying to get out ()
## 17470 Dogroom washing fecal, material down floor drain, standing on one of the dog floor panels when it gave away. Ankle was cut on metal bar. Rt ankle.
## 17471 Doing 141s and making rounds and giving showers ()
## 17472 Doing a blood draw needle punctured finger.
## 17473 Doing a control strike, accidently kneed in the right knee.
## 17474 Doing a crdt technique; ofc. Locklear straddled herpartner & was thrown over his head. Landed on her shoulder in an awkard position, causing pain
## 17475 Doing a fence test, slipped on ice, twisted knee and struck elbow. ()
## 17476 Doing a ground escape manuver was thrown over another officers shoulder and landed on right shoulder and heard it crunch and pop
## 17477 Doing a ground mount escape technique during crdt, landed on left shoulder.
## 17478 Doing a home check on eha equipment. The dog came up from behind and bit her right calf. ()
## 17479 Doing a kneeling brake fall, on my left knee whichdid not cease immediately and contineued. Instr uctor honeycutt provided me with an ice pack.. ..
## 17480 Doing a locker search, recieved a small puncture wound on left index finger from an unknown source. ()
## 17481 Doing a lot of bending, lifting & twisting pulling on different items. ()
## 17482 Doing a mount escapte, fell on right side. Right ribs sore breathe knocked out.
## 17483 Doing a roll after a choke hold and rolled wrong and pulled lower back
## 17484 Doing a safety check when he was pushed by another officer
## 17485 Doing a search and had a reaction on skin and legs ()
## 17486 Doing a security check on the yard when he stepped on a rock/uneven groun and wrenched rt knee
## 17487 Doing a site inspection, fell on logging debris & twisted ankle.
## 17488 Doing a take down in crdt training ()
## 17489 Doing a take down technique c/o landed wrong on l. Shoulder.
## 17490 Doing a techique, laying on her back, her opponent grab her left leg and pulled inward and her knee popped.
## 17491 Doing a two man lift on a client when something pulled in the rt side of EE's back.
## 17492 Doing activites when client became aggressive and hit EE in l eye
## 17493 Doing activities with client, client started kicking EE on rt knee. Also scratch on back of rt hand
## 17494 Doing an elbow strike to a training bag ()
## 17495 Doing an inmate's personnal property inventory when she tripped over a rain coat cuasing her to injure her rt hand & rt ankle
## 17496 Doing an locker search c/o adams was stuck in the hand with a sharpened piece of wire ()
## 17497 Doing an nci procedure (2-person walk) with individual from classroom to unit, when coming down the hall employee a felt sharp pain go through center of back like she was stretching something apart. ()
## 17498 Doing an outside activity with young children on playground
## 17499 Doing an upper endocsopy w/ biospsy, nurse handed over an open biopsy forceps and EE probably got a bite from it when she closed it through the gloves
## 17500 Doing asphalt patching about halfway through; started getting light headed, dizzy, chest pains, trouble breathing, arms and shoulder going numb. List injury as: chest pain ()
## 17501 Doing ause of force on an inmate in segregation.
## 17502 Doing body work and small piece of glass fell in eye and cut left wrist.
## 17503 Doing break falls during crdt training ()
## 17504 Doing canteen to let anmate in the gate from aumen. Locking gate coming into edward abd turned around at the front door tipped over the ramp and fell in the door. ()
## 17505 Doing car screening stepped on a bottle causing him to loose balance inuring l-knee ()
## 17506 Doing cell extraction training, was shield man, when he pushed the officer with the shield and injured his 3rd finger on his left hand ()
## 17507 Doing check & change-rolled resident away from to check and felt sharp pain in lower l. Side of back ()
## 17508 Doing check & change-turning and repositioning residents. L. Shoulder began to hurt. ()
## 17509 Doing clean up employee slipped and fell splashingchemicals in her eyes
## 17510 Doing clothes exchange and tripped over shower mat. ()
## 17511 Doing construction work, moving and swinging blockwhen back started hurting
## 17512 Doing control, restraints, defensive techniques. Fell on right knee doing rifle/shotgun training.
## 17513 Doing count in dorm. Inmate refused to get on bunk. Inmate hit me in face, left eye & right forehead. ()
## 17514 Doing crdt training excercise when he fell backwards from a standing position.
## 17515 Doing crdt training, performing the ground defense technique, getting up off floor & twisted her knee
## 17516 Doing curfew check on offender stepped out of vehicle and step in hole and twisted ankle. ()
## 17517 Doing curfew checks for intensive caseload and ran over a large tree stump in the middle of the road in a dark area
## 17518 Doing curfew checks it was dark & snowing very hard. While going up defendants front door, slipped onfirst step hitting rgt foot hard almost falling
## 17519 Doing data entry at a very close range to the keyboard(file cabinets directly behind chair had to swivel chair to enter or exit work station no room
## 17520 Doing deep knee bend in nci and felt pop in knee
## 17521 Doing defensive tactics EE did a backwards fall to the mat causing fatigue to his neck muscles. --pulled neck muscle
## 17522 Doing defensive tactics at gym injured rt groin area.
## 17523 Doing dips on pull up bar lost balance and hit bar with mouth breaking left front tooth ()
## 17524 Doing drills and felt sharp pain in elbow and shoulder
## 17525 Doing end of year cleaning when debris blew into reye
## 17526 Doing evening home contacts. While walking back to state car, left ankle turned over on wet thick grass and employee fell to the ground. ()
## 17527 Doing exercises during unarmed self-defense & thatwhile doin stretching exercise his right knee snapped
## 17528 Doing exterior inspecting in field at cbc, centennial and main campus when stung or biten.
## 17529 Doing fence check on sidewalk on ballfield, stepped off sidewalk and twisted back. ()
## 17530 Doing fence check on yard 1-walked into razor wire. Cut top of my head. ()
## 17531 Doing fence test inmate threw rock hitting officer on right foot
## 17532 Doing firearms training
## 17533 Doing float preparation and was cutting cardboard, scissors slipped and cut rt thumb in half-circle about one inch
## 17534 Doing floor exercises with class and fell on the gym floor on her left arm
## 17535 Doing foot trim on 1600 pound client. Foot partially restrained, moved & cut hand by metal
## 17536 Doing hall check walking out of room and door closed on lt middle finger.
## 17537 Doing her duties as lpn. As painted started she whent into an asthma attack from fumes
## 17538 Doing herbicide spraying from back of full track carrier, tree limb cam in behind cab vehicle where claimant was standing & hit claimant
## 17539 Doing high mount in training, officer rolled me toside and my elbow went into rib cage on left side
## 17540 Doing home check on offender, dog jumped up and bit officer in scrotum ()
## 17541 Doing home check on offender, when getting out of state vehicle, dog seized arm and bit. ()
## 17542 Doing home check, dog came up behind her and bit her right leg ()
## 17543 Doing home visit & stepped onto some leaves which covered the hole.
## 17544 Doing inmate count upstairs removed bedsheet off shower blocking view of upstairs shower--had to step up, when stepped down, the mat slipped, fell and twisted ankle/knee ()
## 17545 Doing intervention patient kicked EE on left knee.
## 17546 Doing landscaping, digging & planting shrubs. He bent over & picked up 50 lb bag of manure & felt sharp pain in back.
## 17547 Doing laundry. While flipping laundry basket to dump clothes on table, heard wrist pop. Woke with pain in wrist when bending. Left wrist.
## 17548 Doing layout on a woodland tract via woods road onatv. Road was overgrown w/vegetation. Atv hit a rock and threw him off and atv part punctured leg.
## 17549 Doing leg exercise & felt something pulling in herback
## 17550 Doing lifeguard training. Hit water tube slung arm up out of water w/alot of force on upper rightarm
## 17551 Doing lung test, passed out and fell, contusion toneck and left elbow
## 17552 Doing mail run slipped on black ice and fell in cse parking lot
## 17553 Doing maintenance around office w/weedeater. Came in contact w/poison ivy-oak & sumac. Washed off showered that night. Eye began to swell shut.
## 17554 Doing med call observing inmate taken meds. Felt something stinging ()
## 17555 Doing morning basic care of clients was bending over assisting client with getting dressed staff had sharp pain in lower back. ()
## 17556 Doing mount escape variation, EE was thrown on the mat and landed on his rt shoulder
## 17557 Doing mount/escape routine training. When I flippedoff I landed on my upper right side. I immediatleyfelt pain in my right ribs.
## 17558 Doing my rounds hit my hand on the door in jenkins ()
## 17559 Doing nci class and lt knee popped while doing three person carry.
## 17560 Doing nci on individual, we fell on my right hand.
## 17561 Doing nci on resident, lowered her to floor and heard a pop in my back. Later it became painful.
## 17562 Doing nci on resident. She curved her back & liftedher feet causing me to hold all her body weight. Felt a pull in my back.
## 17563 Doing nci procedure, going down on knees to floor and hurt l knee
## 17564 Doing nci recert, I strained a muscle in my left hip joint area, doing a lift.
## 17565 Doing nci recertification and hurt back while lifting from floor
## 17566 Doing nci refresher training employee dropped to floor hard injuring her left knee. ()
## 17567 Doing nci, I got down on the floor & as I came up, something pulled in my left leg.
## 17568 Doing nci, I was securing residents lower back. Hetried to raise up in resistance to the p/r which jarred my back.
## 17569 Doing nci, felt pain in left chest. Sent to er to rule out cardiac.
## 17570 Doing necropsy duties on domesticated cows
## 17571 Doing nightly med nurse duties when eye started hurting and throughout the night it got worse. ()
## 17572 Doing normal duties big toe & bunion began to swell. He was determined to finish out the day. Rtfoot/leg began to swell also. Skin was tight.
## 17573 Doing outside fence check slipped on ice. ()
## 17574 Doing p/r with client. My right knee made a hard contact with the floor. It became sore and stiffedup over night.
## 17575 Doing paperwork at desk and felt a sting on right foot and ankle. Looked down and saw a spider on top of shoe. ()
## 17576 Doing paperwork at desk. Tried to open the drawer on right side. Drawer was partially opened, but it got stuck. When EE tried to get it from being stuck, the drawer closed on right fourth finger. ()
## 17577 Doing paperwork, reached to answer phone, chair tilted forward, causing her to fall, chair swung around and hit her on back of neck and shoulder
## 17578 Doing personal care of peers when peer went into behavior and bit staff
## 17579 Doing pic excercises; therapeutic hold & walk; when moved to change position, EE right leg was hit on outside of knee by pic instructor,.. ..
## 17580 Doing project work- removing waxy build up from corner- when she got complained about her chest hurting.
## 17581 Doing push ups & strained muscle causing tear
## 17582 Doing push ups during training.
## 17583 Doing rdc exam, tmj, 3 lb. Of pressure on participants right side injury to left index finger
## 17584 Doing regular duties & on several occassions, was pulled to the side & hugged once another EE tried to kiss her.
## 17585 Doing regular duties(bending side/bottom of med. Cart & moving it, handling patients)went to toilet/sink and felt spasms in back
## 17586 Doing repetitive chores such as tearing paper, use of the calculator, and picking up some books.
## 17587 Doing repetitive work on the computer.
## 17588 Doing research on image quality improvement for obese pt. Acrylic block to emulate tissue fell from cart landing on rt foot, inj. 3rd & 4th toes.
## 17589 Doing research out at feast when tick bit
## 17590 Doing research received 100+ tick bites
## 17591 Doing roof repairs to the hvac unit when roof was wet with snow. Came back in building with feet wet and slipped on the hall floor ()
## 17592 Doing rounds while walking, knee gave out. ()
## 17593 Doing routine check employee pricked his right hand 5th index finger on what appeared to be a homeade tatoo tool
## 17594 Doing routine daily room searches EE handled the personal belongings of an inmate who had a skin infection
## 17595 Doing routine leaf removal in campground using pitchfork to pickup leaves. Upon arrival home, right wrist begain hurting ()
## 17596 Doing routine searches felt face get hot and then broke out in hives, no apparent bite marks. ()
## 17597 Doing routine water sampling collection. While getting out of the boat, EE was holding on to the grabrail and felt something pop in rt shoulder.
## 17598 Doing routine yard check near tower #4. Turned around & twisted his right ankle
## 17599 Doing sanitation bent down to pick up a piece of plastic and slipped on it and fell.
## 17600 Doing search on inmate bent down something in knee poped
## 17601 Doing security check of back door & stumbled down steps injuring rt hand
## 17602 Doing security check. Had to go under pipe. Left foot got caught on stone & frozen mud causing EE to fall
## 17603 Doing security checks, walking up stairs in east wing on falkland and pulled something in left leg behind knee. ()
## 17604 Doing seedling survival count on property when hisfoot got tangled in vines & fell into tree laps & punctured leg
## 17605 Doing segregation check on unit 1. Going down the stairs on cell block 1c west side and fell down hitting her rt side on concrete.
## 17606 Doing self defense. Bent wrist technique and heardright wrist pop. Have had pain in right wrist
## 17607 Doing several arm bar take downs ()
## 17608 Doing sports activity with players and hurt right leg and ankle ()
## 17609 Doing sprinting exercise while participating in srt training. EE planted rt foot & turned felt & heard rt knee pop and fell..
## 17610 Doing squats during pt, felt a stabbing pain in right knee cap, unable to continue. ()
## 17611 Doing standing break falls, returning to defensivestance position, felt burning pain in left knee.
## 17612 Doing the daily fence test
## 17613 Doing the shotgun training and the butt of the shotgun hit her in the right shoulder, she had a small mark on her right shoulder ()
## 17614 Doing trash detail. While trying to close and lockgate back, scraped her arm
## 17615 Doing treatment on residents foot, resident bent down on EE's hand. Pain shot up her arm to her upper arm
## 17616 Doing treatments, putting ointment on lesions whenthe mouse turned around and bit her middle finger.
## 17617 Doing unarmed self defense class. When officer put EE down on the floor, felt sharp pain at top of rt arm.
## 17618 Doing venipuncture on inmate; placed discarded needed in bio-hazzard box; stuck thumb on open needle ()
## 17619 Doing vital signs, reached down to pick up object from floor, pulled muscle in lower left back.
## 17620 Doing warm-up exercises on break fall from a standing position when his hip started hurting. He has a pin in it
## 17621 Doing warm-up exercises, performing jumping jacks.
## 17622 Doing work at front of desk on keyboard felt pain in rt palm, wrist and elbow.
## 17623 Dolores cut her index finger with an exacto blade when trimming banners. ()
## 17624 Donald devane was driving a bobcat east on lawson st near residential halls when a car ran into the back of the bobcat.
## 17625 Donating blood injured left arm.
## 17626 Donna was walking in the parking lot to her car and stepped on a rock, twisted right ankle, fell to ground on her left knee. Knee is scrapped and bleeding and ankle and begun to swell. ()
## 17627 Donnie was reaching down to pick up a mop bucket when he felt a sharp, tingling pain in his lower back. ()
## 17628 Door accidently closed on right middle finger when bringing patients in from smoking.
## 17629 Door began to close, EE put hand out to stop door and it slammed on her hand. Injured right middle finger.
## 17630 Door closed and caught EE's left ring finger
## 17631 Door closed on EE's hand
## 17632 Door closed on EE's right hand on ward.
## 17633 Door closed on EE's rt wrist when entering elevator.
## 17634 Door closed on EE's thumb
## 17635 Door closed on employee while transport inmate at cdp-contusion to shoulder
## 17636 Door closed on employee's left hand crushing fingers. ()
## 17637 Door closed on finger while closing the door ()
## 17638 Door closed on hand ()
## 17639 Door closed on her hand. ()
## 17640 Door closed on left finger
## 17641 Door closed on left hand while EE was conducting shake down in unit
## 17642 Door closed on rt little finger
## 17643 Door falling off hinges striking person on head
## 17644 Door handle was broken and EE couldn't get out. Hurt hand trying to get out. Was stuck in bathroom for 3 hours. Used hand to try to loosen doorknob.
## 17645 Door in infirmary wa pushed outward by an inmate hitting rt side of the head and ear
## 17646 Door jammed in the ladies bathroom (stall door). Employee pushed to open door and the door fell on her foot. Foot was crushed and fractured toe.
## 17647 Door of breakroom slammed on finger
## 17648 Door of vehicle hit lft knee
## 17649 Door on dish machine slipped, hitting EE on head and rt hand
## 17650 Door opend and hit EE in hand where he was holdingthe handle.
## 17651 Door opened and EE was going down steps, heavy dust was blowing. Now rt eye is red and a little swelling.
## 17652 Door opened hitting right knee
## 17653 Door shut on EE as EE was walking through. Hit on left lower back.
## 17654 Door shut on EE right hand.
## 17655 Door shut on EE's right arm
## 17656 Door shut to the seclusion room, EE & agitated pt were in room, EE couldn't get out, pt grabbed EE around collar bone area, pulling EE to ground with her ()
## 17657 Door slammed back on EE's left middle finger.
## 17658 Door slammed finger while use of force was being conducted
## 17659 Door slammed on EE left hand/middle finger
## 17660 Door slammed on EE's thumb
## 17661 Door slammed on fingers
## 17662 Door slammed on left ring finger. Laceration and crush to finger
## 17663 Door slammed on pinky finger of left hand while exiting the recreation yard ()
## 17664 Door slammed on staff's right hand by a patient.
## 17665 Door slammed shut on EE's rt elbow and wrist
## 17666 Door slammed shut on rt hand-hand got stuck betwn door and frame-broke pinky finger
## 17667 Door smashed top of pinky finger
## 17668 Door swug back toward her she caught it with her rt hand that is when her finger got bent back
## 17669 Door swung back and hit EE in rt elbow.
## 17670 Door swung back hitting him in the back causing him to fall down steps face first ()
## 17671 Door swung close on EE's left elbow
## 17672 Door to a cell closed on his thumb of his left hand that was in the door
## 17673 Door to bathroom stall closed and mashed staff's finger ()
## 17674 Door was accidentally slammed on nurses finger before the door could be stopped. ()
## 17675 Door was beginning to close so EE stepped through and turned quickly to get through. Felt pop in calf
## 17676 Door was being closed. Bolt to lock hit her arm scratching and breaking skin.
## 17677 Door was closed on EE's finger - contusion lt ringfinger.
## 17678 Door was closed on rt side of her arm and elbow
## 17679 Door was closing and I didn't have my hand completely out of the way from the closure of the door and it slammed shut on my fingers.
## 17680 Door was hard to open, allied pressure and opened door and fell over a cement cigarette/trash can cuts and bruises on legs and fell on chest
## 17681 Door was jammed and EE kicked door to close it and strained rt hip
## 17682 Door was opened and steam escaped. Autoclave shut off because of low water level; door was opended to refill water level w/o regard of temp. Reading
## 17683 Door was stuck and attempte to push the door open it and didn't open caused finger (pinky) to bend &injuried
## 17684 Door was stuck on pot machine, staff went to lift up, felt shoulder pull and machine door came down on right hand.
## 17685 Door was wedged open on curb. Air pressure pulled door in catching EE's arm
## 17686 Dorm 3 pod fixing a leak in the drain line possible allergic reaction
## 17687 Dorr throught the hall way of school to put on work truck, pulled muscle ()
## 17688 Dot truck pulled off the side of the road to put out signs and hit a hole. List injuries as: back/left shoulder ()
## 17689 Dot was installing a cross line and employee was helping to assemble the pipe to be placed in the hole. Employee was not present at the meeting, so not for sure how it happened (employee does not have a history of back problems). ()
## 17690 Dot worker backed up into another truck which caused EE neck to jerk & pull something in lower back.
## 17691 Doublelocking handcuffs on inmate and inmate pulled up. Hit r calf on cubicle ()
## 17692 Down stair clearing the meal cart & tip the cart over to let the water out & the wheel went in the drain hole & I was trying to keep it from falling on me. ()
## 17693 Downloading greenhouse frame, cut bands and frame fell on lower leg
## 17694 Downstairs in basement, ? Away slipped on rubber band
## 17695 Dr Broadhurst 3/25/9 rated 12% ppd l arm/shoulder form 26a completed left shoulder
## 17696 Dr Diagnosed EE as having carpal tunnel syndrome as result of repetitive motion. Damage to right wrist.
## 17697 Dr Potocki 828 580 4220 - back becky early ncm on file
## 17698 Dr States that her work station May be a significant part of her clinical presentation.
## 17699 Dr Took mouth prop out of client mouth while holding canitran in hand. Tip went thru glove and punctured top of EE's left hand
## 17700 Dr. And employee were walking back to office from a meeting at lineberger bldg slipped on wet walkway. Fell forward on to elbow while carrying charts. Rt. Elbow, rt. Arm shoulder, neck.. ()
## 17701 Dr. Brouwer was entering the first floor of beard hall parking lot through the north entrance of kerr hall and slipped and fell on tile. Twisted left shoulder, back and hip. ()
## 17702 Dr. Crawford states she exited her vehicle; took one step, slipped and fell on black ice, refrozen from previous snow. She said she could not move for several minutes, fearing her left elbow was broken. ()
## 17703 Dr. Hill was treating an inmate when he received a needle stick ()
## 17704 Dr. Lance was performing and I & d abscess on an inmate when he accidentally stuck his finger with the used needle ()
## 17705 Dr. Wang fell and cut finger ()
## 17706 Dr. Yeom was trying to disassemble a part of the equipment provided by the company when he pushed the wrench to loosen the bolt, the tool slipped and he cut his wrist on the metal edge. ()
## 17707 Drain cleanter and acid exploded in drain hitting EE in face, chest, arms and hands. Scarring from acid burns.
## 17708 Drainage catheter punctured thumb
## 17709 Draining hot water into air void when rubber tubing dislodged and caused water to spill onto right foot/ankle.
## 17710 Draining hot water storage tank, refilling, filled faster than expected, hot water blowed out top getting on EE's back and shoulders ()
## 17711 Draining oil from fryer-had cleaning brush pushingdown in drain hole-hand slipped off brush handle into oil. Had gloves (rubber) on
## 17712 Drank 2 cups of coffee with saliva in them.
## 17713 Drawer fell out onto the floor, onto EE's foot causing mild swelling & tenderness. Contusion to right foot.
## 17714 Drawing blood & was in process of disposing of needle in biohazard container. Upon inserting needle in container punctured right hand
## 17715 Drawing blood and went to away the needle when the needle stuck in left thumb ()
## 17716 Drawing blood fm pt, pushed safety button, stuck EE in left 2nd digit ()
## 17717 Drawing blood from an inmate, holding needle, it flipped out of her right hand and stuck into her left finger
## 17718 Drawing blood from inmate placed needle into sharps sustain needle prick to rt index finger
## 17719 Drawing blood from patient and was disposing needle in sharps container missed the container and needle stuck index finger
## 17720 Drawing blood from patient when needle removed from vein reaised hand and accidently pricked lt thumb with used sharp
## 17721 Drawing blood from patient when upon removing needle it flipped out of vein and punctured her finger
## 17722 Drawing blood from patient, needle in barrel brokesome how blood came pouring out pass glove
## 17723 Drawing blood on inmate & entering vein, blood sprayed & splashed on open lesion
## 17724 Drawing blood, punctured right middle finger with butterfly needle. Larry roediger (pa) called stated was a clean needle, nothing to be done.
## 17725 Drawing blood. Had finished task. Getting off stool to place # 21 fluids. Struck left thumb
## 17726 Drawing insulin from bottle and got stuck with a clean needle
## 17727 Drawing labs client pulled hand back and needle stuck staff in rt thumb ()
## 17728 Drawing perasitic acid from bottle with syringe, acid sprayed out of crack in the cap
## 17729 Dressed out for cell extraction training capt. Perry fell on top of EE's chest ()
## 17730 Dressed resident- assisted to sit up-in process resident pulled employee, by right arm, over and onto resident-pain r. Shoulder to neck. ()
## 17731 Dressing a resident during 8:00 am rounds, lower back started hurting
## 17732 Dressing client, pull something while helping client transfer to wheelchair
## 17733 Dressing client-bending over clients bed and turn-ing client-felt pull in lower back
## 17734 Dressing client-pulled shower chair out of way-turned around to get wheelchair and l. Leg went out from underneath, fell on bottom. On 10/17/11 added to incident report, standing water on the floor. L. Arm/shoulder/hand/wrist pain. ()
## 17735 Dressing patient- scratched r. Forearm ()
## 17736 Dressing patient. Severe pain to lower back
## 17737 Dressing resident after bath-floor slick-right foot slipped back pulling groin muscle ()
## 17738 Dressing resident-became agitated pushed employee backwards hitting wall with head and back. ()
## 17739 Drill bit bound up - jerk in drill
## 17740 Drill bit broke while EE, drilling puncturing indexfinger
## 17741 Drill box fell off rack onto EE's rt foot.
## 17742 Drill fell and landed on left thumb ()
## 17743 Drill slipped
## 17744 Drill slipped amd the bit went through between two fingers. ()
## 17745 Drill slipped off screw and went through EE's left middle finger
## 17746 Drill was accidentally kneed into wrist causing puncture wound
## 17747 Drilled hole in concrete. Bit hit piece of ? & twisted his wrist
## 17748 Drilling a hole in 2x4 plate. Plate twisted and cut thumb on left hand.
## 17749 Drilling a hole in a steel beam above a suspended ceiling and some how some of the metal fell into EE's eye
## 17750 Drilling a hole through a dark grey colored piece of plastic(move to slow); increase speed on drill and damaged finger while holding the plastic. List injury as: left hand 4th finger ()
## 17751 Drilling a piece of metal when the drill got caught and spun the metal into his hand causing a deep gash.
## 17752 Drilling broken screw, took goggles off to inspect work. Spring slipped propelling dust into eyes ()
## 17753 Drilling completed, removed glasses & hard hat to wipe brow & concrete grit got into the eye
## 17754 Drilling hole for lock and jerked arm back and hitedge of door with rt elbow. Injured rt elbow.
## 17755 Drilling hole in 1/4 in metal w/a 1/2 in drill bitbit grabbed & took drill out of hands & it took finger & pulled it to one side
## 17756 Drilling hole in cover plate for light fixture. Drill bit caught in cover and turned cover causing laceration to l hand ()
## 17757 Drilling hole in furniture. Drill cut lt middle finger
## 17758 Drilling hole in panel box. ()
## 17759 Drilling hole through metal sheet which got caught on drill bit and rotated into hand causing injury
## 17760 Drilling hole, feet slipped on ladder
## 17761 Drilling holes in the ceiling of avery dorm for anchored supports and something got under my glasses. ()
## 17762 Drilling large hole through brick wall, bit lockedup in hole, drill body turned inside handle causing laceration to neck
## 17763 Drilling metal door going through second set metalplate the bit broke through & snapped & twisted the drill around.. Right wrist twisted
## 17764 Drilling overhead hole for a 1/4 inch anhor in the basement of reese and concrete dust and debris fell into ly eye.
## 17765 Drilling phillips bit into wood/screw fell over and the phillips bit pentrated the left index finger
## 17766 Drilling thru wall to install new dryer in wash rmat unit 1. Squatted down on rt knee, and a piece of brick stuck into knee cap.
## 17767 Drilling w/hand drill on metal piece. Drill bit stuck & turned causing handle/drill to turn & quickly makng wrist turn & wrench
## 17768 Drilling wall dust blew in eye
## 17769 Drilling, bit broke and drill my hand, broke a nearby piece of glass
## 17770 Drinking @ water fountain, turned suddenly due to inmate behind him and hit upper left front tooth on water fountain - broke tooth in half
## 17771 Drinking soda & realized something was in his mouth. Spit it out and was stung on tongue by one of bees as they exited his mouth
## 17772 Drive north on us 19 when car in front stopped; stacey stopped car; car behind failed to stop hitting stacey in rear end. No injuries or body part specified ()
## 17773 Driver backed vehicle into a stationary pole positioned in the center of a daycare parking lot
## 17774 Driver became unconscious and vehicle hit guard- rail. ***do not pay any more bills after d/s 2/26/02****
## 17775 Driver did not see oncoming car and pulled in front of it
## 17776 Driver of auto in at intersection of wardblvd. And herring ave. When another auto tried to cross over into EE's lane, hitting on driver side
## 17777 Driver of truck had to make sudden stop which slide & got my right foot caught between truck & dog box
## 17778 Driver picked up box that contained extremely strong unidentifiable smell, forehead and right side of face and neck became irriated
## 17779 Driver stopped for directions, as he re-entered traffic he turned into the rear bumper of a movingtruck and dented his front bumper
## 17780 Driver training at ncshp at high speed, driving lost control went off into wwooded area ()
## 17781 Driver was backing out of a parking space and backed into an employee ()
## 17782 Driver was pulling the pallet down the trailer when the handle of the pallet jack jerked out of his hand. Pinned him between jack and trailer.
## 17783 Drivers of ford van ran stop sign and hit EE's car. Wrists/chest/back/right hip are sore.
## 17784 Drivers side rear-end was hit by on-coming train resulting in rear-end damage to vehicle
## 17785 Driving & car/boat were rear-ended
## 17786 Driving 21 s toward elkin for home visit. It was raining really hard, I was in front of circle l restaurant, I went to turn on windshield wipers on higher speed when I noticed the vehicle in front of me with brake lights on. A car was turning l. I went ()
## 17787 Driving I/m to another facility; stopped at stop sign; looked both ways; pulled out in intersection& struck by another vehicle
## 17788 Driving a 4x4 post into ground with post driver, missed post and hit head. Head injury, 2" gash in scalp.
## 17789 Driving a hole in a small piece of metal. Drill bit stuck causing the metal to spin and cut EE thumb. Laceration left thumb.
## 17790 Driving a state car to apex for osdt and was hit from behind by another vehicle
## 17791 Driving a state truck, and a vehicle hit EE from behind. Strain neck and back.
## 17792 Driving a state vehicle
## 17793 Driving a state vehicle and ran through a red light collided with another truck ()
## 17794 Driving a state vehicle and was a complete stop in traffic. Was rear-ended by another car and pushed into the vehicle in front of him
## 17795 Driving a state vehicle on hwy 43 north and struck a deer. Wearing seatbelt and was not injured
## 17796 Driving a utility vehicle (john deere gator) droveoff the curb and the steering wheel hit him in thepelvic area
## 17797 Driving and was struck on rt rear wheel which caused the van to turn into curb then landed in best buy parking lot. *** cm shirley poland 7909 **
## 17798 Driving as passanger in van to tower 4, sitting sideways, van sliding door cracked, van took sharpturn, struck pool, van door closed on toes
## 17799 Driving back from raleigh, nc (had attended a conference for naeyc accreditation) at or around exit 100 judy was in the right lane and an 18 wheeler truck moved over into her lane, forcing her into the guard rail, causing her car to spin around. ()
## 17800 Driving back from raleigh, nc (had attended a conference for naeyc accreditation) at or around exit 100deborah was in the right lane and an 18 wheeler truck moved over into her lane, forcing her into the guard rail, and causing her car to spin.
## 17801 Driving back to office from home visit in state vehicle, car was stopped and was bumped on the back bumper passenger side. ()
## 17802 Driving back to office from inspection when she was either stung or biten by flying insect ()
## 17803 Driving back to raleigh other vehicle claims responsibility.
## 17804 Driving camp van when child threw football at EE's head
## 17805 Driving company van returning w/ individual from a day trip, following another company vehicle, when she went to stop, hit brakes, rearended other veh
## 17806 Driving crash attenuator truck pov hit attenuator. Listed injuries as: left forearm, left knee, left side lower back, left side rib area, and neck. ()
## 17807 Driving dodge ram van while transporting inmates a grey honda hit van in rear which caused van to jerk to left. Felt stinging sensation
## 17808 Driving dot truck to project to perform an inspection when (fell asleep and over turn the vehicle) scratch occured on right forearm. ()
## 17809 Driving down hillsborough rd conducting field contacts when a second vehicle pulled into oncoming traffic and ran into the passenger side of EE's vehi
## 17810 Driving down hwy 158 and crossed center line ran under a tractor trailer and came to rest at edge of road
## 17811 Driving down road and driver side window shattered
## 17812 Driving down st to barricade off ditch
## 17813 Driving drill machine, struck by briar bush in face. Scratched eye. First aid only at this time. No time lost. ()
## 17814 Driving evening shuttle when back, neck & arm became tense and spasmed, EE realized it when he wouldopen and close the doors of the bus.
## 17815 Driving farm tractor mowing corn stalks. Drove tractor across drain and bumped his elbow on tract-or console.
## 17816 Driving for home visit, vehicle collided with another vehicle @ intersection of thomas & atlantic st. In rocky mount
## 17817 Driving from morganton to ashville EE stated he experienced chest pains
## 17818 Driving from raleigh in state vehicle after staff meeting. He was stopped waiting for accident ahead to clear. A large truck struck him from behind.
## 17819 Driving from winston salem local office to lexington local office
## 17820 Driving gator (grounds vehicle) and car in parkinglot backed into gator. EE states not injured
## 17821 Driving golf cart when foot slipped off and got roll up underneath front tire ()
## 17822 Driving home from a meeting when a car EE was driving hydroplaned & wrecked. No injuries released by Dr.
## 17823 Driving home from clemson sc. Slowed due to accident and semi-trailer rear-ended vehicle
## 17824 Driving home from training in greenville, neck felt stiff and tight ()
## 17825 Driving home from work site, slowed to make right turn and was struck from rear by another vehicle. Whiplash to neck & upper back.
## 17826 Driving home in state vehicle; stopped at redlight; rearended by suv ()
## 17827 Driving in eden, nc. An oncoming car crossed over center line causing me to swerve & strike trash cans set along both sides of road.
## 17828 Driving in low lighting checking the perimeter, ran across a trench and right front tire fell in the hole. ()
## 17829 Driving in personal vehicle going to a community forum in jacksonville nc. EE was involved in a auto accident.
## 17830 Driving in tpost with a tpost driver to install silt fence around soil pipe. The tpost driver was pulled out and scraped top of head. ()
## 17831 Driving inmate transfer bus, bus struck another vehicle and overturned.
## 17832 Driving iron pin in hard ground using 8 pound maul to make a pilot hole for survey stake. List injury as: lower back ()
## 17833 Driving issued vehicle. Adverse weather conditionscaused vehicle to strike construction, barells, concrete wall & tractor trailer.
## 17834 Driving motor cycle across lawn paralle to closed parking lot. Motorcyle hit hole in ground. Lacerated lip & fractured left cheek cavity.
## 17835 Driving motor pool vehicle from raliegh to belmont car was defective--more pressure was required on accelator than other cars. Rt leg/blood clot/knee.
## 17836 Driving nail w/hammer. Nail was positioned near metal hinge. Driving nail, hammer missed nail catching EE's thumb between hammer & hinge
## 17837 Driving north on garner rd. Car merged over. Officer moved to left. Officer car and another car side swiped each other ()
## 17838 Driving old 5 ton military from raleigh to butner EE experienced discomfort which became painful in upper back area.
## 17839 Driving on 43 south, car pulled out in front of his truck ()
## 17840 Driving on I-40, a car loss control of her vehiclethe vehicle struck his truck three separate times driving EE into concrete wall
## 17841 Driving on I-77 when lost control of vehicle & swerved into guard rail
## 17842 Driving on hwy 13 s, black truck pulled out from road, truck hit car on the drivers's side.
## 17843 Driving on roxboro rd., was rear-ended ()
## 17844 Driving out an axle with sledge hammer and hand hit a metal guard puncturing hand. ()
## 17845 Driving p2p express bus and hurt his back while driving
## 17846 Driving pain truck w/air seat; bouncing off seat caused cyst ()
## 17847 Driving patrol car on duty began to make lt-turn onto rp-1400 another vehicle going east ran red lite struck EE's car. Inflamation sciatic nerve\\hi
## 17848 Driving personal vehicle enroute to meeting. Made left turn into parking lot & collided w/oncoming pick-up truck
## 17849 Driving personal vehicle from meeting on central campus to office at west campus
## 17850 Driving personal vehicle west on varsity drive. Ncsu police vehicle exited parking lot and colided with lassiter's car right rear. ()
## 17851 Driving personel vehicle to training
## 17852 Driving pickup truck, vehicle ahead of employee slammed on brakes causing employee to hit the vehicle. Employee was also hit from behind by vehicle. List injuries as: neck & both shoulders ()
## 17853 Driving ppv I vehicle: fell asleep while driving, hit another vehicle and hit leg under dashboard of truck. ()
## 17854 Driving returning from training in a marked patrolcar, he swerved to avoid deer lying in the roadwayand collided with curb in median
## 17855 Driving school vehicle on I-85 when accident occured. **iw does not have ph#- er has given msg to call**
## 17856 Driving south on us 1 to rockingham for complaint investigation. Van ran off road due to wind force van hit sign and broke windshield
## 17857 Driving state car and was rear ended while stopped at light while performing field contacts ()
## 17858 Driving state car to the balden office, when a car ran red light & hit state car. Chest swollen, rt ribs broken, bruise lt knee, rt toe next to pinky.
## 17859 Driving state car, was struck from behind by another vehicle subro
## 17860 Driving state car. Sitting in front of bldg waiting for a person to cross street at crosswalk when other car slammed on brakes but hit EE in rear bump
## 17861 Driving state issued veh. Stopped at a red light, when car hit him from behind, causing his veh. To impact veh. In front of him. Forehead/neck/lw back
## 17862 Driving state van to museum. Stopped at stop light. Vehicle behind could not stop and hit van in the rear. Experiencing soreness and stiffness due to whiplash. ()
## 17863 Driving state veh EE hit in rear by other veh at stop sign.
## 17864 Driving state vehicle and was stopped at stop light. Was hit from behind by another vehicle
## 17865 Driving state vehicle clients, stopped at light, rear ended.... Injury head
## 17866 Driving state vehicle for long period of time. Left side of back muscle spasm
## 17867 Driving state vehicle from prison. Put on brakes to stop & heard squalling tires & looked in rear view mirror & watched red van hit her
## 17868 Driving state vehicle on the way back to the facility from checking road squad. Sitting stationary in state vehicle at intersection of us-19e ward st when the vehicle I was occupying was struck from behind by another vehicle. ()
## 17869 Driving state vehicle to be fueled when EE was hitfrom behind by another vehicle and the lt side of back was hurt
## 17870 Driving state vehicle to facility for survey, deerran in front of vehicle, and deer was struck left front and drivers side of vehicle.
## 17871 Driving state vehicle to training in marion, nc when the car in front of me stopped suddenly and I had to brake. When I came to a stop a car in the rear struck my car and caused my head to ship and then it knocked me into the car in front. ()
## 17872 Driving state vehicle traveling south on hwy 117. School bus ahead stopping to unload children, slowed down to stop - was hit hard from behind.
## 17873 Driving state vehicle when another vehicle hit back of state vehicle. Upon impact his neck was jerked back.
## 17874 Driving state vehicle when another vehicle turned across traffic causing accident. Plt bob lucas/jennifer gudac 919 965 8184
## 17875 Driving state vehicle while performing duties was rear-ended by another vehicle knocking her vehicleforeward. Abdominal pain
## 17876 Driving state vehicle, leaving site visit, pulled out in front of another car ()
## 17877 Driving state vehicle, south on salisbury st. EE was traveling through intersection of salisbury & lane, vehcile struck driver side of EE's vehicle
## 17878 Driving state vehicle, waiting to make left turn when oncoming vehicle crossed center line & struckstate care, EE went to right over console
## 17879 Driving state vehicle. Other vehicle failed to stop & clm't hit other vehicle on driver's side
## 17880 Driving straight ahead and another vehicle pulled into his path from a side road and there was a collision. Pain in neck, back, hip & headache
## 17881 Driving the inmate transfer bus, with inmates records and medical charts, lifting inmates medical charts and records, feels he hurt his back. ()
## 17882 Driving the van traveling on us 1 then rear ended by another vehicle while stopped in traffic ()
## 17883 Driving to a home visit in state car. Bitten by a brown recluse spider near by backside pants belt line on the left side. Co-worker had brushed spider off of her arm while in the car. ()
## 17884 Driving to a work related meeting and car was struck by another vehichle.
## 17885 Driving to basic, lost control hit telephone pole
## 17886 Driving to bus terminal to provide medical services, pouring rain, car hydroplaned, hit by 18 wheeler ()
## 17887 Driving to client house, t-boned by another vehicle while driving. Approached whati thought was a 4-way stop intersection, but it wasn't when I continued through, the other vehicle was coming and hit my car on the driver side. ()
## 17888 Driving to gbso to attend a meeting, tire blew outcar shook & swerved. At meeting stood up from chair & fell--legs were numb. Chest/upper back.
## 17889 Driving to meeting, EE's car was hit from back
## 17890 Driving to pick up new keys for units new office space when he was involved in a car accident
## 17891 Driving to the post office when a truck ran a stop light ()
## 17892 Driving to uncch for statistical course offered throughirss' when an elderly lady rear ended back of her car
## 17893 Driving to work from home(duty violation) in fletcher nc to temporary assignment in black mtn injured neack/back.
## 17894 Driving tractor on morrill drive with gloves on and hand slipped off steering wheel and finger got caught in steering wheel. ()
## 17895 Driving tractor when large cled of soil was hit causing steering wheel to spin back & catch his finger in spokes of steering wheel
## 17896 Driving transfer bus when automobile ran stop signand struck bus in front of rear wheels on drivers side
## 17897 Driving truck in a cramped cab for a long period of time and the top of right foot went sleep and became numb
## 17898 Driving truck picking up cardboard around the market, went to get out of truck, put left leg down, felt left knee twist
## 17899 Driving utility cart, hands got twisted and caught thumb in steering wheel.
## 17900 Driving utility vehicle, ran over bump in sidewalkthat jerked steering wheel of vehicle. Wrist popp ed due to violent motion
## 17901 Driving van & heard inmate creating noise near side door. Twisted around to check on inmate. Backstarted hurting after turned around to drive.
## 17902 Driving van on courier run, spider bit him in van while on route
## 17903 Driving veh when another veh came into my lane making me swerve to avoid hitting it. Ran over patch of ice & went off road into a ditch
## 17904 Driving vehicle that was involved in an accident. Small bruise on left knee. Right foot sore--hurts flexed, back
## 17905 Driving vehicle to client's lady ran a stop sign and ran into the side of my vehicle. She hit her and pushed her into a billboard and the air bags deployed. ()
## 17906 Driving vehicle when something bit employee me 2 times ()
## 17907 Driving vehicle. Rocks fell from passing concrete truck and broke front passenger door window. Shattered glass hit his passenger.
## 17908 Driving west on us64, hit curb, struck hwy sign, struck utility pole, struck fence post, then came to a stop.
## 17909 Driving when hit from behind by truck
## 17910 Driving wooden stake in ground to tie caution tape around in a work zone are. Left hand on wooden stake approx. 8 inches down on stick and was driving it in the ground with a hammer when it spentered off and went in hand. ()
## 17911 Driving work vehicle, & was stopped behind anotherveh. When she was rear ended by a truck causing her to hit veh. In front. Neck/shoulder/back/head.
## 17912 Driving--passed out while taking inmates to work ()
## 17913 Driving-then was involved in a motor vehicle collision. Arlen had a very deep laceration on his head above his left eye that required 34 stitches. He had several other minor lacerations. ()
## 17914 Driving. Slowing down to make a rt turn and was rear ended by a company van. Was wearing seat belt injured neck, back, and head.
## 17915 Driving/private vehicle rear ended state vehicle. List injuries as: neck & right shoulder ()
## 17916 Drop filing and purging of records. Continously, repetitive keying number into computer system.
## 17917 Drop in blood pressure with heart palpitations. Extreme dehydration causing fainting. ()
## 17918 Drop of inmate's blood fell on board & EE inadvertently touched blood droplet w/lt thumb & forefinger
## 17919 Droped equipment bent over to pick them up lower back popped ()
## 17920 Dropped 30 gal mixing bowl & injured wrist
## 17921 Dropped a bookcase on toe ()
## 17922 Dropped a glass jar onto a rolling cart, jar brokecut rt hand that was holding cart
## 17923 Dropped batch of time cards, bend down to pick them up, lost balance, fell to floor
## 17924 Dropped bottle of dab. Spill on right hand middle finger ()
## 17925 Dropped bottle of virex 256disinfectant-deodorizer& it splashed in eyes.
## 17926 Dropped box of four one gallen bottles of cleaningfluid on left foot
## 17927 Dropped breaker screw into panel area. Reached in w/screwdriver and made contact w/live portions
## 17928 Dropped cell phone at her locker. When she reached down to pick it up and come back up her head hit the corner of her locker.
## 17929 Dropped computer tray on foot.
## 17930 Dropped countertop on finger
## 17931 Dropped dance floor peice on foot.
## 17932 Dropped duty belt and as she bent to pick it up knee popped and sharp pain went through knee ()
## 17933 Dropped form in cell walked past floor in front of shower, slipped on wet floor, no wet floor sign down ()
## 17934 Dropped glass bottle containing acetonitrile and ammonium acetate. Bottle broke splashing chemicals on both legs. ()
## 17935 Dropped ice chest on toe & top of foot. Bruise to right foot
## 17936 Dropped large heavy box onto handcart. The metal handle of the cart flew forward and hit the rt side of EE's head
## 17937 Dropped letter on floor, bent to pick up & struck right hand on counter, bruising right hand.
## 17938 Dropped mail on floor, bent down to pick the mail up when she came up she hit bottom of metal table injured head
## 17939 Dropped nail, reached down to pick it up. Put his hand on chair & it rolled out. He fell & caught weight on elbow
## 17940 Dropped paper pocket templates on floor. Stepped on one of them and slipped hitting left knee cap on concrete floor. ()
## 17941 Dropped paper shredder on foot
## 17942 Dropped piece of paper. Bent over to pick it up & felt pain in back
## 17943 Dropped plywood sheet on right foot while moving from one truck to another truck
## 17944 Dropped ramp of large utility trailer on rt foot in preparation to load a piece of equipment
## 17945 Dropped solution of acetic acid ()
## 17946 Dropped syringe after use & picked it up without paying close attention. Needle punctured skin on right forearm.
## 17947 Dropped trash can bruising right toe.
## 17948 Dropped travel log and bent down to pick it up. Heard a popping sound from right shoulder & arm went numb for a few seconds.
## 17949 Dropped writ, bent down to pick it up he put his hand on the door casing and the door slammed on his right middle finger
## 17950 Droppomg off some broken down equipment. Getting out of truck to proceed to bed of truck. Stepped on drain & fell into drain
## 17951 Drops of nitric acid brushed across face.
## 17952 Drove approximately 1, 200 miles in three days to complete five teen groups. The continuous driving irritated my visceral neuropathy causing extreme pain. Based on my history of bilateral pulmonary emboli my physician recommended that I go to the er. ()
## 17953 Drove to tower 8. After leving tower 8, parked the vehicle in the parking lot & was walking toward post 6 began to get dizzy. Passed out at tower 1, beside the flower bed close to post 6. Transported by ems off the unit for medical attention. ()
## 17954 Drowning. (death claim)
## 17955 Dryer had been pulled for cleaning, while pushing dryer back pinky fgr caught between dryer & woodendivider
## 17956 Dryer shocked EE when pushed button to start- numbness in lt shoulder and hand
## 17957 Drying hand with paper towels slepped back ward and stepped on tic -tac (candy) which caused me to fall and hit the sink with my back. ()
## 17958 Drying off client, another client came in, tried to get out of his way, he clawed at my face, blocked his hand grabbed hair & scratched my neck.
## 17959 Drying resident and resident was pulling and holding on to EE and his bed. I tried to pull away
## 17960 Drying water up in bathroom, slipped on water and fell
## 17961 Due heavy fog EE missed step when walking into vocvocational bldg. Lt hand wrist shoulder back & lt knee
## 17962 Due to accusations of sexual harrasment & being advised he could not perform his duties EE is suffering from traumautic emotional shock.
## 17963 Due to broken door handle, van door closed on employee's finger
## 17964 Due to car accident EE's back does not give him support to be able to do masonry work, lower back.
## 17965 Due to carbon monoxide exposure suffered severe heheadache, ringing in ears, dizziness, & difficultybreathing.
## 17966 Due to catching foot on mat, EE fell sustaining strain to rt knee and foot
## 17967 Due to computer being on desk type table, she is experiencing wrist pain from typing notes for patients seen.
## 17968 Due to constant use of finger, EE has developed carpal tunnel and tendonitis in her wrist and fingers
## 17969 Due to construction at bldg employee suffered fromheadaches, dizziness, and weakness as a result of carbon monoxide exposure
## 17970 Due to construction at building employee suffered from carbon monoxide poisoning.
## 17971 Due to construction in bldg, suffered from acute allergies causing mucous build up in the eyes & swelling of the eyes. Severely allergic to dust.
## 17972 Due to construction in building employee suffered from carbon monoxide exposure
## 17973 Due to construction in building employee suffered from carbon monoxide poisoning.
## 17974 Due to construction in building employee suffered from headaches, nausea as a result of carbon monoxide exposure.
## 17975 Due to construction in building employee suffered from severe headaches, dizziness, tearing of the eyes, and weakness, disoriented.
## 17976 Due to construction in building exposure to carbonmonoxide
## 17977 Due to construction in the bldg employee suffered from carbon monoxide poisoning.
## 17978 Due to construction in the building EE suffered from carbon monoxide poisoning.
## 17979 Due to construction in the building, EE suffered from carbon monoxide exposure
## 17980 Due to continous typing, right arm became sore.
## 17981 Due to continual exposure to harmful fumes in work location coming from a vent located directly above the employee's desk the employee has begun to have excessive coughing and chest pains to the point of hospitalization. ()
## 17982 Due to continual walking on the cement floors employee has developed pain in feet and legs. Swelling and sharp pain through out legs and feet. ()
## 17983 Due to exsessive wet weather, office was flooded with standing water. EE was opeinging outside door to dry carpet and lacerated her right finger.
## 17984 Due to full time use of computer, EE has gotten cts
## 17985 Due to heavy rain he was running from front door of defendant's home to state car, slipped in mud, hyper extending right knee. Right knee and right a
## 17986 Due to high winds, employee attempting to close windows at the batthouse. To reach windows employee sat on counter top & hopped of counter and landed flat footed on cement floor. Employee felt a jolt up left knee causing pain. ()
## 17987 Due to icy conditions, EE slipped and fell, hittingher head on the cement in the parking deck.
## 17988 Due to improper ergonomics at workstation-EE claims carpal tunnel symptoms noticed a couple months ago
## 17989 Due to infestation EE was bitten several times by unknown insect. Bites are causing scars & blisters.
## 17990 Due to lifting & pulling residents, back has hurt since she started the job(came to murdoch center from whitake school
## 17991 Due to lighting anomily of shade, EE missed step on new sidewalk
## 17992 Due to low water couldn't back boat all the way soi pushed boat off the trailer in doing so popped my back. Injured lower back.
## 17993 Due to mental stress he had a heart attack
## 17994 Due to mold in office it has triggered severe asthma attack
## 17995 Due to poor lighting conditions, joann fell down north steps of riddick hall. ()
## 17996 Due to prolonged exposure to pool (chlorine and unable to wear dry clothes between client's attendance) a reaction occurred causing an infection. ()
## 17997 Due to prolonged exposure to pool (chlorine and unable to wear dry clothes), reaction occurred causing an infection. ()
## 17998 Due to putting on brakes to avoid aother vehicle and the seat belt tightened up around her neck causing some pain.
## 17999 Due to repetative clerical work, she developed numbness in hands, right shoulder pain
## 18000 Due to repetitive load bearing pivoting around knee, he has developed ache in right knee accompanied by occasional sharp pains in right knee. ()
## 18001 Due to repetitive nature of sign language interpreting caused ganglion cyst on rt hand
## 18002 Due to snow/ice, was checking on equipment and maintenance area and slipped on ice and fell. ()
## 18003 Due to temperture, he got sun poison, red rash on both arms and legs, blister, red rash on chest, back and neck
## 18004 Due to the demands of the job from manager EE states he became highly emotional
## 18005 Due to the excessive walking and climbing while touring cargill plant for job development, pulled muscles in leggs making it difficult to walk. ()
## 18006 Due to the over flowing tolilets I stepped in water and slipped on tile flooe and fell
## 18007 Due to uneven pavement, I twisted my ankle and fell on the ground ()
## 18008 Due to use of force EE came down on lt knee - bruised rt arm also..
## 18009 Due to way work area was set up EE was suffering from multiple injuries; pain in neck, back & shou lder area. An ergonomics study was done.
## 18010 Due to weather condition from hurricane floyd, EE was killed in a auto accident while trvlng to wrk truck went down in washed out area of road
## 18011 Due to writing, lifting, opening heavy objects and janitorial duties have caused a carpal tunnel syndrome in both wrists.
## 18012 Duing a use of force with an inmate, inmate grabbed the baton the EE was holding. When inmate let go, EE fell on her right hand
## 18013 Dump truck hit road squad bus
## 18014 Dump truck was on wrong side of road & got too close to road crew, both mirrors hit & glass from bus mirror broke & flew in his left eye
## 18015 Dumping sewage from a transfer bus and dropped manhole cover on his foot. ()
## 18016 Dumping trash from a barrel I felt a pain in my lower back ()
## 18017 Dumping trash into dumpster, sheet metal sticking through box caught arm causing cut. Left forearm inside area deep laceration.
## 18018 Dumpster was full and was packing garbage down to make room for more
## 18019 Duplicate claim of claim#01056483. Duplicate claim. Do not pay any bills under this claim. *************************************************
## 18020 During 2 man carry, patient fell forward causing staff to lose her footing and trip, falling to floor, striking her left knee on the floor ()
## 18021 During 3 man carry to quiet room, patient kicked staff directly under the nose and on the left shoulder.
## 18022 During 3 person carry left wrist twisted.
## 18023 During I: I intervention, patient became aggitated and kicked staff in the left knee
## 18024 During Mr, Pt/EE fell to floor, twisting left arm/shoulder ()
## 18025 During a 2 person carry of a patient, the patient turned and bit staff on her right thumb.
## 18026 During a 2 person walk with client, client droppeddown and when I tried to catch him, I felt catch in right shoulder.
## 18027 During a behavior interview staff jerked to prevent injury- lt neck - shoulder - arm pit area.
## 18028 During a behavioral intervention/ardirection, trip-ped over consumer's legs and fell to floor. Caughtself from falling and lt arm.
## 18029 During a cell extraction a tweak in his knee while placing an inmate in restraints ()
## 18030 During a cell extraction fellow officers fell on his leg ()
## 18031 During a cell extraction fellow officers fell on the officer causing him to hurt his knees ()
## 18032 During a cell extraction he was struck in the left eye ()
## 18033 During a cell extraction officer and inmate fell against the sink causing the officer to injury his right forearm ()
## 18034 During a cell extraction officer feels she pulled a muscle in her right leg and hurt her arm (did not specify what arm) ()
## 18035 During a cell extraction officer fell to the floor injuring his right wrist and left knee ()
## 18036 During a cell extraction officer was hit with a baton on the right arm and 3rd and 4th fingers of his right hand ()
## 18037 During a cell extraction training, c/o entered thehcon cell hitting her left elbow on the frame of the door.
## 18038 During a cell extraction, officer fell on the inmate then another officer stepped on officer smith's l knee ()
## 18039 During a cell extraction, while trying to gain control of the inmate, officer bridges injured his right thumb. ()
## 18040 During a cell extration pinned inmate & hurt shoulder & right upper forearm
## 18041 During a cell search, an inmate became disruptive and it was necessary to use force. During struggle, EE's right hand was injured
## 18042 During a cell search, inmate became aggressive and kicked officer in elbow.
## 18043 During a chemistry experiment glass was broken. Right arm ()
## 18044 During a class change students began to fight, employee injured rt arm separateing the students
## 18045 During a code 4 force was used on an inmate, Mr. Furlow slipped and fell on top of the inmate, hurting back and right pinky finger
## 18046 During a code 4 officer bowers was placing a resistant inmate to the floor and the inmate struck my hand and knee. ()
## 18047 During a cook-out event EE lit grill and it blew up burning left arm and neck.
## 18048 During a counselor staff meeting, EE began laughing at a humorous comment. EE laughed so hard he fell out of his chair and his head on the floor
## 18049 During a curfew check EE states he stepped off porch onto ice twisting his rt ankle.
## 18050 During a custody hearing, a juvenile ran from the court room. EE was injured trying to subdue the juvenile. Neck sprain from being jerked around.
## 18051 During a fight b/t two inmates that were bleeding EE was exposed to blood
## 18052 During a fight btwn tow inmates in buildng 4 was standmg btwn imates and was scratched on right hand and blood from one inmate on right forearm
## 18053 During a fight with intoxicated subject., EE injured third finger right hand. Fractured right 3rd finger, abrasions, r hand, swelling soreness-rib area
## 18054 During a fire drill evacuation, employee was coming back into the building with an individual and when she stepped in the doorway, she slipped and fell on her left wrist, left side and on her back. Her shoes were wet from dew on the grass. ()
## 18055 During a foot pursuit of a violator, EE lost balance while jumping a chain link fence causing a puncture wound to lt hand and finger scratch
## 18056 During a foot pursuit, EE turned his right ankle, causing sharp pain
## 18057 During a hearing, defendant reached across dest & hit EE in lt eye & cheek with fist
## 18058 During a home visit of juvenile #685758 employee was approached by 4 dogs. 1 of the dogs bit employee on the left causing a knot on the left leg but did not break skin.
## 18059 During a leisure outing, client went into behaviorclt hit EE & pushed him to the ground hitting EE. Head/neck/chest/back both shoulders, arms & hands
## 18060 During a live burn training event, instructor was observing an outside crew when a backdraft occurred, causing the fire to come through a window and set the roof fire and debris to catch on fire. Smoke overcame him causing him to retreat. ()
## 18061 During a live fire training eval - fire got out of hand and heat fomr fire burned EE's rt cheek
## 18062 During a locker blade, EE observed tape on back side of locker. Pulled tape off, razor was behind-EE cut on left index finger.
## 18063 During a locker search, I bent down to check locker when I overly extended my lower back. ()
## 18064 During a maneuver at basic training the officer injured his knee
## 18065 During a meeting to discuss an hr action danny had a spell where he began sweating, his eyes rolled back, his tongue rolled out. He seemed to faint and was unresponsive for a few minutes. 911 was called and responded ()
## 18066 During a monthly team meeting, some staff chose to play volleyball as a wellness activity. Employee fell backwards landing on her lower back. When she attempted to get up, became faint anc c/o of back pain. Ems transported to hospital. ()
## 18067 During a motor vehicle violation arrest, EE stepped into a hole in the ground at a private residence & strained his left foot.
## 18068 During a move to a new office, EE was lifting, moving furniture, unpacking.
## 18069 During a normal lab experiment as part of a class, the instructor and a student had a reaction to the uv light being used. ()
## 18070 During a patient carryout on the stone mountain trail employee injured their left shoulder. The weight and stress on employee's arm from carrying the patient from the trail in a stokes basket caused pain employee's left shoulder. ()
## 18071 During a performance EE tripped on an elevated platform.
## 18072 During a performance EE was stabbed by a sharp sewing needlt in thigh.
## 18073 During a personal restraint of an individual, employee fell on table in the dayroom and hit back area and was scratched on the both forearms. ()
## 18074 During a photo shoot for the college, during the heart walk, he tripped on a concrete slab and fell causing a contusion to his right elbow and lacerations to his right knee and right hand. ()
## 18075 During a physical confrontation with immate EE injured his rt elbow when taking immate to the floor EE rt elbow and forearm came in contact w/ floor
## 18076 During a physical fitness class, EE particpated inpatrol vehicle test. EE pulled a male subject from front passenger veh. Strain low back.
## 18077 During a physical restraint Ms. Mclean injured her right hand and pinky finger. She thinks it May have happened when she was kicked. ()
## 18078 During a physical restraint of a student, Ms. Scriven fell on her right wrist and both knees. She had brusing on both knees and her right arm and a strained right wrist. ()
## 18079 During a physical restraint procedure, another employee fell on his right ankle and twisted it. ()
## 18080 During a physical restraint, Ms. Gunn fell to the floor with a student, staff and supervisor on her left leg.
## 18081 During a pic major kenneth fell into a chair and received a midstemal scratch.
## 18082 During a pic, EE's wrist was bent backwards and later in the evening it began to swell.
## 18083 During a pic, pt was fighting while attempting topit. Pt jumped on EE and slammed his head into the wall.
## 18084 During a prone intervention the resident's leg got caught between the EE's leg causing EE to fallon her right knee.
## 18085 During a restraint a students blood came in con- tack w/ a cut on wrist. Cut was caused by the resident.
## 18086 During a restraint of a client, other staff let go of client's legs and staff was kicked right lower back.
## 18087 During a restraint of a student, the staff was bitten on her left forearm.
## 18088 During a restraint procedure, employee fell down and bumped left forearm. ()
## 18089 During a restraint was bitten on his left forearm by a student.
## 18090 During a restrant of a juvenile the juvenile and the school rescource officer fell on Mr. Hickeys shoulder
## 18091 During a riot employee was trying to gain control of juveniles, injured rt hand, left side in the rib area
## 18092 During a riot on campus a student was assaulting another student, trying to restrain student employee was wrestled to the follr and then pushed
## 18093 During a routine cell extraction EE's rt thumb wascaught and twisted in the shield
## 18094 During a routine liquid flushing procedure, a leak was observed. Applied pressure was off for inspection. Attempting to tighten the fitting with a wrench, the cap was loose, the cap shot off about six inches causing a laceration to her right index finger
## 18095 During a run in complience with sbi training, EE'sfoot started to hurt.
## 18096 During a scheduled home visit with a family enrolled in the infant toddler program, the mother informed me that three out of five members of her family had received a positive screening for tuberculosis. ()
## 18097 During a search 5 razor blades were found in the block & placed in a folded paper. He was smoothing out paper when razor came through and cut left thumb.
## 18098 During a search an offender put up a struggle. Theoffender and officer fell over a locker and a desk
## 18099 During a search praticum, officer truitt and instructor tripped casuing officer truitt to injure his left arm.
## 18100 During a search-inmate became combative and scratched EE's left forearm
## 18101 During a self defense take down maneuver with officer rodney smith, he jammed his left shoulder while trying to stop his head from slamming into the m
## 18102 During a shake down of the unit, assigne to e & f dorm her right hand got pinned between the wall & cabinet area while searching for contrabands.
## 18103 During a snow event the employee was assisting in a operatoin to put a salt spreader on a dump truck. Employee stepped backwards and fell onto a traffic conte that was behind him. List injury as: right side under the right arm ()
## 18104 During a staff basketball game EE jumped up and smashed his right elbow on a flat top post as he came down.
## 18105 During a staff basketball game, EE stepped on someones foot and turned his left ankle.
## 18106 During a struggle in attempt to handcuff suspect, EE rt middle finger impacted suspect teeth, which broke skin. 2 cuts on rt middle finger.
## 18107 During a struggle with a student, EE sprained her right ankle and right wrist twisted.
## 18108 During a struggle with inmate, inmate and sgt fell then inmate spit bloody saliva in sgt eye ()
## 18109 During a student restraint Mr. Metellus was hit in the face. He and the student fell to the floor and Mr. Metellus strained a muscle in his neck. ()
## 18110 During a study abroad trip to turkey, employee washiking with students in a national park, fell and injured finger.
## 18111 During a subject control arrest technique ground defense with a student employee pulled on a resistance/counter resistance with hands and felt a pull in his shoulder ()
## 18112 During a t-hold on an individual, employee injured her back. ()
## 18113 During a takedown move landed on left side. Elbow dug into left side rib cage below the nipple line. ()
## 18114 During a takedown move, I was slammed down on rightshoulder
## 18115 During a team run felt something pop in my right knee ()
## 18116 During a therapeutic restraint of a student, staff was bitten on the side of his neck, head butted and slammed against wall and to the floor.
## 18117 During a theraputic hold, patient swung behind and struck me under my left eye ()
## 18118 During a tornado drill, a patient sat down on floor on top of employee's right knee, causing it to hyperextend.
## 18119 During a training class on 01/14/12, during the last burn of the day, employee was on the second floor of the residence. Employee stated there was a flash over and he used his right forearm to break out a window. He fell onto a canopy on the porch. ()
## 18120 During a training exercise a student pushed EE's arm too far behind his back and dislocated it
## 18121 During a training exercise called "lifeboat", wheneveryone in the circle turned loose of each other, I slipped & fell.
## 18122 During a training exercise--consist of fall & takedown technique. EE landed on right knee and heard a loud pop knee cap & lower leg went outward.
## 18123 During a training session employee was injuried in hand cuff take down ()
## 18124 During a two man lift to change a client, a strain occurred in the upper right back and shoulder area ()
## 18125 During a use of force EE was attempting to controlan assaultive inmate when she was steuck inadvertently with a baton
## 18126 During a use of force his right elbow was forced in the wrong direction, pain in right elbow and shoulder
## 18127 During a use of force on inmate, EE got his left hand caught between the inmate and the door jam left index finger laceration
## 18128 During a use of force restraining an inmate
## 18129 During a use of force right hand got caught between objects ()
## 18130 During a use of force, an inmate kicked him is the left knee popping it backwards ()
## 18131 During a use of force, exposed to blood from the inmate
## 18132 During a use of force, inmate kicked me on my lt wrist and left knee when she was being picked up and placed into a vehicle
## 18133 During a use of force, inmate spit in her face -- striking her near her bottom lip.
## 18134 During a use of force, officer struck inmate in the head area w/ her right hand.
## 18135 During a use of force, the inmate hit him in the face left eye, causing blood to get on him from the inmate
## 18136 During a use of force. Alleges struck in left eye by inmate fist ()
## 18137 During a veh search EE discovered mobile meth lab in rear seat of veh, while searching veh inhaled caustic fumes
## 18138 During a vehicle chase the suspect hit a pole & backed up & hit the front of employees vehicle at a high rate of speed. Suspect traveled away from employees vehicle and attempted to flee and eventually struck employees vehicle head on. Back & neck sore.
## 18139 During a vehicle search EE discovered a mobile meth lab on the rear seat of vehicle, while searching vehicle, inhaled caustic fumes.
## 18140 During a wrkshop presentation participants(which EE was one)were asked to engage in a grp activity showing the need for cooperation. There (see notes)
## 18141 During acl client became aggressive-jerking/ pulling/kicking hitting employee- employee noted back pain.
## 18142 During activities with patient, staff was tripped by patient, causing him to fall on his left knee
## 18143 During activity in an occupational therapy lab class EE fell to floor on rt hip
## 18144 During adjustment of a grain drill a pin slipped due to rash conditions ans caused rt hand to come in contact with catter pin causing lac. To rt hand
## 18145 During adl rounds, client pulled away-hitting EE in mouth, scratching gums with finger nails
## 18146 During adl's, client attempted to bit EE. Placed rt hand between client and rn (block bite). Client grabbed EE rt hand and squeezed
## 18147 During adl, client twisted and bent right hand
## 18148 During adls-resident started to fall backwards-caught w r. Arm-arm was bent and felt pop in r. Elbow. ()
## 18149 During afternoon inmate count she stepped into a hole when right foot twisted and fell on left knee
## 18150 During aggressive and required 4 point restraint, patient bit staff on left upper arm tearing his shirt & breaking the skin.
## 18151 During ais training crdt breakfall felt popping in left shoulder ()
## 18152 During altercation & nci w/ patient, staff injuredhis right shoulder.
## 18153 During altercation EE/pt fell to floor, EE landed on left shoulder ()
## 18154 During altercation w/inmate EE came in contact w/pepper spray burning left eye
## 18155 During altercation with inmate, EE was struck in head and shoulder. Left lip laceration and separated shoulder (right). Attny rep claire campbell
## 18156 During altercation with inmate. Per med. Staff, EE sustained knot near l temporal area, blurred vision in l eye.
## 18157 During altercation with inmates, EE was struck in the head and back by inmate. Sm. Abrasion to r inner elbow, headach, and back pain, oc pepper expos.
## 18158 During altercation with patient was pushed into door frame
## 18159 During altercation with patient, EE was struck and went to the ground.
## 18160 During ambulance ride to hospital with immate having seizure immate coughed blood and saliva on EE aface and shirt
## 18161 During an activity group the client grabbed EE right wrist, twisted it and pulled it down
## 18162 During an altercation with a patient trying to attack him, ths employee and patient fell onto a desk causing employee to strike his left knee against
## 18163 During an altercation with an client, sherry was scratched and bit
## 18164 During an altercation with an inmate he had to be placed on his bed and her knee went into the bed and then hit right lower leg on table in the cell. ()
## 18165 During an anticipated use of force alleges injuredhis right forearm & knuckle & complained of lower back pain
## 18166 During an anticipated use of force was bitten on left arm several times by inmate.
## 18167 During an anticipated use of force was bitten on right arm by inmate
## 18168 During an arrest attempt, EE was exposed to suspect blood and o. C. Spray in both eyes, injuredboth knees, and abrasions to right hand.
## 18169 During an arrest of a probationer, a scuffle ensured and EE was bitten, right index finger
## 18170 During an arrest of a suspect, suspect resisted and was wresteled to the ground where ees rt hand was scraped on concrete causing scrapes & possible injury to rt wrist. ()
## 18171 During an autopsy I went to grab an instrument and accidentally stabbed my finger with my blade ()
## 18172 During an emergency fire evacuation drill, employee was pushing a wheelchair in hallway and another staff behind hit employee's ankle. ()
## 18173 During an emergency situation a student passed out, EE assisting moving the student as she was in a chair.
## 18174 During an enforcement contact she closed the car door on her right hand injuring her three middle fingers on her right hand.
## 18175 During an episode of pt aggression EE attempting to stop a pt from attacking another pt. Injured rt shoulder.
## 18176 During an eri, EE was trying to break up a fight between 2 pts, EE went to the floor with pts twisting left knee/injured right bottom of foot ()
## 18177 During an evaluation at client home, went to sit down in a chair in kitchen, chair slid/moved several inches backwards causing her to lose balance and twist her neck, back and shoulder on the right side of her body. ()
## 18178 During an evaluation with a child, the child raised a toy in excitement and unintentionally struck the examiner in the face, resulting in a bruise and knot on the bridge of the nose ()
## 18179 During an excerise his partner pushed his chest area while practicing a technique and he heard something pop in his left chest.
## 18180 During an exercise opening mouth wide, jaw cracked. Lower jaw infected taking antibiotics ()
## 18181 During an exercise she feel on her back and had her leg under the other leg hurting her left knee.
## 18182 During an incident, a student was swinging a wooden board from a chair and hit the employee on the left arm. ()
## 18183 During an injection, staff was distracted by another patient
## 18184 During an inmate altercation was struck on the left side of head by inmate ()
## 18185 During an inspection, EE was attempting to remove a very tight fuel cap from a truck. After cap suddenly broke free, EE completed inspection. When EE returned to his car & raised his arm, he felt pain in left shoulder. ()
## 18186 During an interaction with a student-EE was infested with head lice
## 18187 During an nci refresher while doing gun rack for bear hug, employee felt a catch in left wrist just as her thumb went up and at that moment couldn't move the thumb. ()
## 18188 During an office move EE hand was jammed between file cabinet and desk.
## 18189 During an office relocation, she alleges lifting desk drawers, file folders and supplies on and off, a wheeled cart later she felt back pain.
## 18190 During an ot evaluation in child's home. Child threw a ball & EE moved to avoid ball & injured neck. Pain down neck, rt shoulder & rt spine.
## 18191 During animal exam, injured back lifting animal and returning her to recovery area
## 18192 During annual clean-up boxes were moved. Temporarywall shifted and struck EE in back of head. Contusion
## 18193 During annual crdt refresher training, an officer was on top of po carter conducting the guard in/guard out manuever. The officer was on top trying to get out of guard in and was using knuckles in officer carter's ribs to get out. ()
## 18194 During annual firearm training, EE injured right shoulder from recoil of rifle and/or shotgun.
## 18195 During annual training dropped on right shoulder. ()
## 18196 During apprehension of subject who was under arrest a scuffle ensued. Injured shoulder while struggling with subject. Pulled muscle & sprain l shoulder
## 18197 During apt training in staff development, staff injured her right wrist ()
## 18198 During arrest pat-down search revealed razor blade& crack pipe. Pricked by razor blade as he attempted search parollee
## 18199 During assistance with the restraint of a client, staff was kicked on the left side in her ribs. ()
## 18200 During autopsy exam, EE was taking out the neck organs, she cut herself with a scalpel blade. She was wearing 2 set s of gloves at the time
## 18201 During autopsy, knife slipped and cut her lt thumb
## 18202 During autopsy, while cutting skin on chest of corpse, EE accidently lacerated his left thumb.
## 18203 During bacis training-EE was simulating hand- cuffing -the other EE kneed EE in the face breaking her jaw
## 18204 During basic care, client bit EE on left elbow
## 18205 During basic law enforcement training student stepped on EE's little finger causing splinter fracture
## 18206 During basic training EE states partner grabbed him injuring his neck.. (works @ harnett corr)
## 18207 During basic trng - when rising from kneeling position - felt a pop on the outside area of lt ankle accompanied by sharp pain & burning sensation
## 18208 During basket ball game EE and student went down for ball on floor-while bent over the EE was hip on top of head by students.
## 18209 During basketball game involving staff & clients and EE fell on his palm of her hand
## 18210 During basketball game with students, student stepped on grate over manhole and broke it. Student handed grate to staff, who did not have a grip on it
## 18211 During basketball practice ball hit EE on rt side of hand causing hand to twist and turn
## 18212 During basketball practice the basketball jammed the tip of her right middle finger on her right hand. ()
## 18213 During basketball practice, EE lost balance when bumped by another player and fell back on outstretched left arm. Fracture to left arm
## 18214 During bath time, pushing client out of stall into shower chair, shower rod/curtain rod fell on top of head. ()
## 18215 During bathing procedure of client EE began to fell pain in groin area
## 18216 During baton drill EE was struck several times in the lt arm by a padded practice baton-lt arm became bruised and swollen
## 18217 During baton training employee was doing two hand forward strike against redman & twisted his right foot between mats and injured his ankle
## 18218 During baton training sgt. Blake performed a shin kick to the instructor in the redman suit (martie wilson)
## 18219 During baton training struck by student with batonin an area that was not covered by red man suit, protective glove slipped due to sweating by instru
## 18220 During baton training, he was bag holder, partner struck the bag missing & hitting his pinky finger.
## 18221 During baton training, rt knee popped when hitting the mat
## 18222 During batting practice EE's right hand was struckby the ball.... Broken
## 18223 During battle sene in play accidently hit in mouth w/butt of prop gun
## 18224 During bcot while participating in a one leg take down to do a break, fell and heard something pop ()
## 18225 During bed change, assisting to move resident up on a draw sheet and felt sharp burning pain from neck down back and upper leg (left side). ()
## 18226 During bicycle training for police officers cyclindown steps the jostle irritated his wrists causingpain.
## 18227 During bicycle training for police officers, employee fell from bike while executing a high speed tactical exercise.
## 18228 During block inspection when he confiscatted two pens that were unauthorized upon destruction of the pens his rt thumb was cut
## 18229 During block instruction EE somehow injured lt knee - doesn't know how/when
## 18230 During board walk pile driving operation an eyebolt of a logging mat with a chain attached to the boom of an excavator came out of the wood. Struck EE in chest ()
## 18231 During boxing EE injured his right wrist
## 18232 During boxing exercise EE sprained rt wrist when threwing a punch at opponent.
## 18233 During boxing injured head & neck
## 18234 During boxing practical - EE threw a punch and injured rt wrist
## 18235 During boxing practical - EE was struck in the face causing nosebleed
## 18236 During boxing practical - EE was struck in the face injuring his nose
## 18237 During boxing practical-EE struck another cadet and sprained rt thumb
## 18238 During boxing practical-EE threw a punch and dislocated lt shoulder
## 18239 During boxing practice EE injured left shoulder
## 18240 During boxing sustained an injury to her right shoulder. Noticed stiffness & soreness in her right shoulder & had trouble raising right arm
## 18241 During break falls, his neck hit the mat, he had a sharp pain in lower neck ()
## 18242 During cadet trainging EE was hit on the hand witha expandable striking bag
## 18243 During camping trip while riding bus, bus hit stump causing it swerve to side. Resident chair rolled back and struck EE in shoulder/neck area
## 18244 During car trip to washington dc to pull costumes for teahtre, the car EE was riding in hit a slickpatch, turn 180 degress, went into ditch
## 18245 During cell entry, another employee stepped on Mr. Gothorps right foot causing him to twist his ankle. He said he heard it pop. ()
## 18246 During cell extraction helmet came off forehead and hite inmate () ****contusion to forehead
## 18247 During cell extraction hurt arms as upper right flank pinning of inmates arm ()
## 18248 During cell extraction inmate gased employee by throwing feces ()
## 18249 During cell extraction inmate punched officer in the face. ()
## 18250 During cell extraction inmate pushed hands underneath face shield and scratched face
## 18251 During cell extraction inmated scratched right forearm with fingernails. Assault by inmate.
## 18252 During cell extraction of two inmates, no physical force was used. The next morning, EE had dull pain in let shoulder and lt arm was sore
## 18253 During cell extraction team member fell on left leg ()
## 18254 During cell extraction trainig had panic attack due to heat and nervousness. ()
## 18255 During cell extraction training EE hurt neck & lt middle finger
## 18256 During cell extraction training EE playing part ofinmate. Other officers were trying to remove EE from cell, EE's chest area under arm was injured
## 18257 During cell extraction training EE was subdued by fellow trainees-causing contusion to rt shoulder
## 18258 During cell extraction training EE's rt knee was over extended
## 18259 During cell extraction training another officer stepped on my left ankle trying to get to the other side. ()
## 18260 During cell extraction training employee was wearing the red man suit (acting as inmate) and was struck on the left side falling to the ground and hitting his head jarring his teeth. ()
## 18261 During cell extraction training noticed a red bump on left hand, started to swell and itch. ()
## 18262 During cell extraction training pulled muscle ()
## 18263 During cell extraction training, EE was in line & got struck; fell to mat. Officer behind EE in linefell on EE's left ankle.
## 18264 During cell extraction training, EE was inside cell underneath fellow EE. Extra weight was on herright foot.
## 18265 During cell extraction training, fell to the floor, staff fell on top of me. ()
## 18266 During cell extraction training, several participants feel on right foot, crushing it in the concrete
## 18267 During cell extraction training, went into mock cell at community college. During training shoulderand neck injured.
## 18268 During cell extraction training-EE walked into bunk striking right knee
## 18269 During cell extraction training-EE was pushed in the chest and fell on metal bed frame
## 18270 During cell extraction training-co-worker fell on EE's right ankle
## 18271 During cell extraction training; blocked instructor w/shield and felt pain in right hand. ()
## 18272 During cell extraction while trying to gain control of inmate, right arm was hit against hard object. ()
## 18273 During cell extraction, EE slipped on substance on floor. Then tried to gain control of inmate and fell again on his lt forearm
## 18274 During cell extraction, inmate tried to pull my riot helmet off. ()
## 18275 During cell extraction, shield on face helmet lost a screw causing the shield to come loose striking EE in mouth, loosening teeth and cutting gum/lip
## 18276 During cell extraction-inmate hit EE in left knee
## 18277 During cell extractions, inmate resisted EE. EE hit wall during struggle.
## 18278 During cell extration inmate scratched employee's right arm.
## 18279 During cell inspection, inmate stepped thru cuffs, bringing hands to his front, and swung at EE, hitting him in the lt ear with the cuffs
## 18280 During cell search checking bed area and got stuck by a tattoo needle. ()
## 18281 During cell search got stuck by needle on right hand- first finger ()
## 18282 During cell search the search dog lunged at me and bit me on left arm and leg. ()
## 18283 During cell searches several inmates became agitat-ed and aggressive and they began to assult staff
## 18284 During cell searches several inmates became agitated and aggressive and they began to assult staff - soft tissue injury back and neck
## 18285 During cell searches several inmates became agitated and aggressive and they began to assult staff- injury to left wrist
## 18286 During change of shift, cut left arm on carner of file cabinet and cut right arm when door of pharmacy was opened. ()
## 18287 During check & chanage resident became upset and hit employee on r. Wirst with fist. ()
## 18288 During check & change holding resident up by gait belt-resident began to fall-assisted to chair- felt pain in l. Mid to lower back. ()
## 18289 During check & change holding resident's hand to keep from hitting and resident bit 2 middle fingers on r. Hand. ()
## 18290 During check & change patient became aggressive-bit on l. Wrist ()
## 18291 During check & change patient became upset and kicked in left knee. ()
## 18292 During check & change resident jerked knees upward connecting with right jaw. Later noted pain in neck. ()
## 18293 During check & change resident kicked in nose. ()
## 18294 During check & change resident pushed employee into door-resulted in hitting back on edge of door. ()
## 18295 During check & change, patient headbutted in forehead-above l. Eye ()
## 18296 During check & change- turned resident onto their side resulted in feeding tube becoming detached-fluids splashed in emp. Face, mouth and corner of l. Eye. ()
## 18297 During check & change-assisting reposition a resident in bed-felt pull in low back ()
## 18298 During check & change-bent down to place resident's foot on foot rest of w/c and punched in l. Side of lower back. ()
## 18299 During check & change-patient became aggressive an elbowed in r. Breast. ()
## 18300 During check & change-patient kicked leg up hitting on l. Outer eyebrow and breaking glasses. ()
## 18301 During check & change-patient pushed into corner of wardrobe-pain r. Mid-back. ()
## 18302 During check & change-patient unsteady-fell backwards into emp. Emp. Caught and fell hitting back against wall and shower chair. ()
## 18303 During check & change-resident grabbed r. Upper arm and scratched. ()
## 18304 During check & change-resident kicked in l. Knee. ()
## 18305 During check and change resident aggressive-slammed emp. Into box mounted on wall-hitting l. Shoulder ()
## 18306 During check and change resident hit employee in face (left jaw, eye, and ear). ()
## 18307 During check and change resident kicked in nose and l. Lower lip-cutting lip ()
## 18308 During check and change turning resident and repositioning up in bed-noted back pain ()
## 18309 During check and change while trying to change resident, resident kicked at my left hand and made contact with left thumb. Jamming thumb back into my hand. ()
## 18310 During check and change, a resident got away from a coworker (hct) and hit employee in mouth. ()
## 18311 During check and change, resident grabbed employee's left wrist/hand and squeezed/twisted. ()
## 18312 During check and change-resident shoved arm into ribs ()
## 18313 During check change patient aggressive-kicking while attempting to dress-kicked in mouth/chin area ()
## 18314 During check/change resident became aggressive and grabbed right hand and squeezed. ()
## 18315 During check/change resident became agitated, grabbed r. Hand/fingers bending backwards, bending r. Forearm backwards. ()
## 18316 During check/change resident ran over l foot with wheelchair. ()
## 18317 During check/change, attempted to roll resident toward emp-felt pop/pain low back. ()
## 18318 During check/change-rolled resident toward wall to remove wet bedding from underneath- when rolled back towards employee felt pain in low back. ()
## 18319 During chemical reaction. The reaction exploded with huge sound. After that my right ear was something wrong. ()
## 18320 During child care safty exercise-EE was adjusting seat and injured left thumb.
## 18321 During child nci re certification employee felt a pop in her left knee area. ()
## 18322 During chk. & chg. -resident headbutted in r. Forehead. ()
## 18323 During class (laboratory) employee inserted funnel into glass column, column broke and cut near knuckle of middle finger on right hand.
## 18324 During class break student became aggressive toward staff and m/r had to be used. EE & student fell to floor in the process. EE hurt lt shoulder.
## 18325 During class performing movement using the hands on the floor, EE felt pain shoot up in left arm.
## 18326 During class podium had broken bottom ledge & EE'sfoot struck extending screw which is rusted causedlaceration of right foot
## 18327 During clean up day, EE was lifting and carrying various supplies and felt a pull in her right lower leg near her ankle
## 18328 During client intervention EE felt her ribs pop on right side
## 18329 During code blue I helped with bagging patient. I placed hand under neck needle was stuck in lt hand.
## 18330 During combat shooting, shoot gun recoiled hitting left hand against barricade.
## 18331 During combat training EE was running a course andslipped twisting rt knee.
## 18332 During complaint survey of facility employee was bitten by small white bugs which were in the facility.
## 18333 During compliance inspection EE was possibly exposed to asbestos-EE not in immediate area and length of exposure less than 2 hours
## 18334 During confrontation with inmate, EE was kicked and punched in the face and upper body ------------ atty represented ----------------
## 18335 During constructioin waste removal, the EE was as carrying wood scraps to the dumpster when a needlein the scraps puntured his left wrist.
## 18336 During construction of a wooden sign, the top board had not yet been permanently secured, upon relocating the sign the top board fell and hit employee on top of head. ()
## 18337 During controls, restraints, defense techniques training (crdt), head & neck was trapped & neck was strained.
## 18338 During cots initially injured in crdt training, then again during firearms training for certification as c/o
## 18339 During count, slipped on wet floor. Twisted lower back and right knee. ()
## 18340 During course of cell search came in contact with something that caused rash on right lower arm. ()
## 18341 During course of insturction in escape from mount techniques, felt sharp pain down lower back on rt side
## 18342 During course of job EE exposed to asbestosis which developed into mesothelina
## 18343 During cpi training course, knee buckled and employee fell to floor
## 18344 During crdt (bcot), performing arm take down when left foot got caught in the mat causing his left knee to twist.
## 18345 During crdt basic training officer required to execute breakfall technique falling backwards. ()
## 18346 During crdt employee injured left thumb ()
## 18347 During crdt employee twisted shoulder during a ground defense move. ()
## 18348 During crdt in-service training, practicing a combat technique when the officer he was wrestling with took him down and he land on the mat wrong and hurt his shoulder. ()
## 18349 During crdt training
## 18350 During crdt training - he was the aggressor duringa knife attack. The other person blocked & attem-pted a take down and twisted my elbow.
## 18351 During crdt training EE injured lt wrist EE doesntknow exactly how/when she injured it, either durinfalls, strikes or blocks in unarmed self defense
## 18352 During crdt training c/o jones was performing outside forearm to radial nerve accidently hit my forearm causing her right wrist to pop and swell
## 18353 During crdt training employee was demonstrating a 2-man take down procedure. As he was falling he caught himself on the way down with left hand, jarring left shoulder. ()
## 18354 During crdt training employee was participating inan exercise and when she was pushed to the floor she hit her left side chest areas and heard a pop.
## 18355 During crdt training employee was thrown by coworker who then landed on emp. Right leg and knee ()
## 18356 During crdt training fell on ribs during traingingin break falls
## 18357 During crdt training injured left knee, when she turned right and came (fell) down on her left knee
## 18358 During crdt training mount escape, rolled asst instructor off of employee, his heel struck the inside of right ankle
## 18359 During crdt training the employee was injured during a guard-in technique. While being thrown the employee heard a popping noise near his ribs and they began to hurt. ()
## 18360 During crdt training was thrown by fellow officer & landed on lt knee
## 18361 During crdt training while doing mount escape technique employee sustained hairline fracture of left ankle.
## 18362 During crdt training while executing the guard technique she was tossed & landed on her rt arm causing right arm to push into her right rib cage
## 18363 During crdt training, EE's foot got caught in the gap in the mat, causing foot to twist
## 18364 During crdt training, cppo powell was performing adefensive move to block a kick & was struck on lt hand by co-workers shin bone.
## 18365 During crdt training, mount escape. Christopher wasthrown off his opponent & landed on his shoulder.
## 18366 During crdt training, partner grabbed hand.
## 18367 During crdt training, w/ two officer assist take down, EE heard a pop in left shoulder when he landed on the mat.
## 18368 During crdt training, when advised to tuck the knee he injured rt knee & leg
## 18369 During crdt training, while perfroming a techniquemy partner grabbed me around my neck. I felt my neck pop and my face got hot.
## 18370 During crdt training--while practicing the mount escape crdt technique. EE was rolled off onto leftshoulder. Injured left ribs.
## 18371 During crdt weapon retention class the rt hand wasrolled toward the body while trying to maintain control of the weapon
## 18372 During crdt while being taken down to the mat her arm was pulled hard and her neck was pulled when she hit the mat ()
## 18373 During crdt, employee fell to floor with arms behind her and partner's knee in her hip ()
## 18374 During crdt, employee was performing a break fall and when going down on the mat, stated that she felt something popping in her stomach. ()
## 18375 During crdt, hit mat with shoulder blade & began to hurt
## 18376 During cri training, transport board w/co-wkr was dropped on EE's right thigh ()
## 18377 During crime scene investigation in the woods, emp was bitten by chiggers ()
## 18378 During crot training left knee popped
## 18379 During crt officer walker was doing the break fallroutine while recovering to a standing position, she attempted to stand & fell back onto the mat.
## 18380 During crtd inservice training, injury to rt elbow& cut to right middle finger. Involved in a self defense move
## 18381 During curfew checks for intensive caseload felt what seemed to be insect or spider bite on his head
## 18382 During daily work activities employee was exposed to an inmate with tuberculosis
## 18383 During defensive tactic training EE fell to groundand injured his left shoulder and rib.
## 18384 During defensive tactics EE was kicked in left ribby another agent
## 18385 During defensive tactics drill EE landed wrong and felt pop in lower back
## 18386 During defensive tactics noticed pain around right side of rib cage.
## 18387 During defensive tactics practice EE injured rt shoulder.
## 18388 During defensive tactics training EE attempted to arrest an offender and fell on mat injuring rt shoulder
## 18389 During defensive tactics training EE involved in some ground grappling techniques-felt intense painnext morning.
## 18390 During defensive tactics training EE stepped on mat seam and twisted left ankle, then injured his right knee/leg when he stepped to brance himself. ()
## 18391 During defensive tactics training in ncshp basic school employee was struck in the head by an instructor during a drill. This then caused the employee to lose his balance. In attempt to regain his balance his body weight shifted onto his right knee causi
## 18392 During defensive tactics training with student- EE fell to the ground and injured rt knee-acl tear in rt knee
## 18393 During defensive tactics training, EE was reaching around the potential suspects shoulder and locking arms to secure the firearm for weapon retention when felt left shoulder pull ()
## 18394 During defensive tactics training, coworker ran into EE with either arm or shoulder and jammed EE's finger
## 18395 During defensive tactics training-EE did not have his defense up and was struck in the face by an instructor
## 18396 During defensive tactics trng EE's hand was injured by an unknown mechanism. Rt hand was painful
## 18397 During defensive training EE landed on rt shoulder
## 18398 During defensive training, the EE was holding a ag for her partner, stepped forward and pulled her left calf muscle. ()
## 18399 During demonstration of crdt technique (mount escape) defendant role upon being dismounted landed onleft shoulder.
## 18400 During demonstration the use of the epipen instructor mistakenly stuck herself with a live pen instead of a trainer pen. ()
## 18401 During dental injection for extraction of tooth of5 1/2 year old child, needle stick left index fingr
## 18402 During developmental testing of young child on the floor, I shifted positions after administering a test item to document observations/notes. My left knee became stuck in a bent position, was painful and unable to walk. ()
## 18403 During direct supervision of juveniles, staff attempted to restrain juveniles that exhibited assaultive behavior. ()
## 18404 During disaster training EE had to transport a "resident" to a safe area.
## 18405 During disinfection of operatory, EE snagged her finger in bur attached to hand piece
## 18406 During drill peper spray was used under the door, air conditioner was on, shirt was on the door, was given shirt to cover my face.
## 18407 During drill, injured rt thumb while attempting arrest
## 18408 During drunk buster programs, I picking up/loadingtraffic cones. Felt a sharp shooting pain in lowerback and when walking pain continues down leg.
## 18409 During dynamic baton training EE lost a lot of water. At end of drill, EE suffering from headache& nausea. Transported to wake medical emer. Center
## 18410 During emergency restraint intervention (eri), EE had to place pt in Mr As pt was lowered to floor EE landed on left hip. EE felt a strong pain. ()
## 18411 During emergency restraint of resident to floor, staff injured his right knee. ()
## 18412 During emergency restraints intervention with patient employee was kicked in the chest ()
## 18413 During enforcement stop EE exited his vehicle and was attacked and bitten by a pit bulldog. Bite to left upper arm
## 18414 During equipment installation there was sudden l elbow and forearm pain and snapping noise from elbow area. ()
## 18415 During eri EE injured left elbow ()
## 18416 During eri EE injured right thumb ()
## 18417 During eri EE pulled something in lower back
## 18418 During eri EE was placing pt in restraints, pt's leg came loose, kicked EE in back a couple times ()
## 18419 During eri EE's back began hurting ()
## 18420 During eri pt knee'd EE in the groin area, no injury ()
## 18421 During eri pt scratched EE in multiple areas: r hand, r wrist, chest, l ear ()
## 18422 During eri pt spit in EE eye, & EE re-injured lower back.
## 18423 During eri, EE & pt fell to floor, EE landing on left knee ()
## 18424 During eri, EE & pt fell to floor, hitting right elbow on floor
## 18425 During eri, EE believes he struck his left hand on pt's tooth ()
## 18426 During eri, EE butted heads with co-worker ()
## 18427 During eri, EE fell hitting right hip ()
## 18428 During eri, EE fell to floor landing on right elbow ()
## 18429 During eri, EE fell to floor, hitting left knee on floor ()
## 18430 During eri, EE fell to floor, landing on left knee ()
## 18431 During eri, EE fell to floor, scraping right elbow ()
## 18432 During eri, EE fell, pt kicked EE in the back/shoulder area ()
## 18433 During eri, EE heard right elbow pop, jammed right thumb ()
## 18434 During eri, EE hit left shoulder on wall ()
## 18435 During eri, EE hit right elbow on exit door ()
## 18436 During eri, EE injured left finger ()
## 18437 During eri, EE landing on his left knee ()
## 18438 During eri, EE pulled something in right leg ()
## 18439 During eri, EE strained back ()
## 18440 During eri, EE strained ribs ()
## 18441 During eri, EE sustained a small cut to inside of mouth ()
## 18442 During eri, EE tried to prevent injury to patient, hit right arm on wall ()
## 18443 During eri, EE tried to restrain pt's arm, pt's arm hit EE's left hand/fingers ()
## 18444 During eri, EE was holding pt's arm, pt kicked EE in the right leg ()
## 18445 During eri, EE was holding pt's legs while pt was jerking/twisting ()
## 18446 During eri, EE was kicked in left knee ()
## 18447 During eri, EE was pushed into another pt's doorway, hit left hand, left leg on door ()
## 18448 During eri, EE was scratched by pt on left 2nd digit ()
## 18449 During eri, EE was scratched on right arm, left hand ()
## 18450 During eri, EE was shoved up against wall, left side feels stiff ()
## 18451 During eri, EE was slammed against wall ()
## 18452 During eri, EE's hand got caught between shower door/wall ()
## 18453 During eri, EE's right leg hit co-workers shoe ()
## 18454 During eri, EE/pt fell to floor, EE landed on right wrist ()
## 18455 During eri, a lot twisting/turning, EE noticed low back hurting ()
## 18456 During eri, co-worker accidentally hit EE in nose ()
## 18457 During eri, everyone got tripped up and fell to floor. EE landedo n both knees ()
## 18458 During eri, fell to floor landing on left knee ()
## 18459 During eri, fell to floor with patient landing on right hip ()
## 18460 During eri, fell to floor, hit left hand on floor ()
## 18461 During eri, hand hit wall ()
## 18462 During eri, left leg was trapped under transport board when pt rolled over ()
## 18463 During eri, lifted pt on to transport board, back began hurting ()
## 18464 During eri, picked pt up, went through door, felt something pull in lower back ()
## 18465 During eri, pt became physically aggressive toward EE while holding pt ()
## 18466 During eri, pt began hitting head against wall, EE placed right hand between pt's head and wall ()
## 18467 During eri, pt began swinging at EE, pt struck EE in stomach, ribs, right thumb ()
## 18468 During eri, pt bit EE on left arm ()
## 18469 During eri, pt bit EE on r arm ()
## 18470 During eri, pt bit EE on right 2nd digit ()
## 18471 During eri, pt bit EE on right wrist. Pt had blood in mouth ()
## 18472 During eri, pt dropped their weight causing EE to lose balance falling on left knee, also while in Mr Pt kicked EE below left knee ()
## 18473 During eri, pt dropped to floor causing EE to fall landing on right knee ()
## 18474 During eri, pt dug nails into EE's left hip & spat in right eye ()
## 18475 During eri, pt got leg loose, kicked EE in right side ()
## 18476 During eri, pt grabbed EE's left hand ()
## 18477 During eri, pt hit left knee on w/c when trying to remove pt ()
## 18478 During eri, pt kicked EE in chest, breast and collar bone area ()
## 18479 During eri, pt kicked EE in left shoulder and jaw ()
## 18480 During eri, pt kicked EE in lower abdomen ()
## 18481 During eri, pt kicked EE in right upper leg, EE fell to ground landing on left knee ()
## 18482 During eri, pt kicked EE in stomach multiple times
## 18483 During eri, pt kicked EE in stomach, scratched EE on left handll ()
## 18484 During eri, pt kicked EE in the groin area/r thigh ()
## 18485 During eri, pt kicked EE in the right thumb ()
## 18486 During eri, pt knee'd EE in the ribs ()
## 18487 During eri, pt pulled EE to floor, EE hit left elbow on floor ()
## 18488 During eri, pt pulled EE's hair, twisted right arm, neck was strained, EE jammed left finger ()
## 18489 During eri, pt pulled leg away fm EE, striking her in nose ()
## 18490 During eri, pt punched/scratched EE in face ()
## 18491 During eri, pt scratched EE on left elbow ()
## 18492 During eri, pt scratched EE on left side of back, and beside right eye ()
## 18493 During eri, pt scratched EE on right hand ()
## 18494 During eri, pt scratched EE on right side of neck ()
## 18495 During eri, pt scratched EE on the left hand ()
## 18496 During eri, pt scratched l arm
## 18497 During eri, pt slammed door on EE's back and shoulder - left side ()
## 18498 During eri, pt spat at EE and some of it went in EE's mouth ()
## 18499 During eri, pt spat blood in EE's eyes ()
## 18500 During eri, pt spat in EE's face (possible exposure) ()
## 18501 During eri, pt spat in EE's face - no exposure ()
## 18502 During eri, pt spat on EE, blood in spit ()
## 18503 During eri, pt tried to attack co-worker, EE attempted team control, EE/pt fell to floor ()
## 18504 During eri, pt was trying to bang head, EE was trying to prevent this, strained shoulder ()
## 18505 During eri, pt/EE both fell to floor ()
## 18506 During eri, pt/EE fell to floor, EE landed on his left knee/should ()
## 18507 During eri, pt/EE fell to floor, EE landing on left knee ()
## 18508 During erik pt scraped EE's face with teeth ()
## 18509 During erj pt was kicking @ staff, EE was knocked off balance fell back & rt foot was under EE side ways. Injured right ankle.
## 18510 During escape investigation walked across the yardof the escapee's victim, stepped across ditch & twisted right knee.
## 18511 During escort of inmate-inmate threw 2 cups of feces and urine at EE
## 18512 During falling/catching training, felt pull on lt lower side, could not lift self off mat
## 18513 During family & fun day activity at work, employee was playing volleyball and pulled a calf muscle in his left leg.
## 18514 During feeding helping carry trays to second level EE felt a pinch in neck and back as turning to check foot placement ()
## 18515 During feeding inmate swung arm with a weapon, andpuntured chest left side.
## 18516 During fight EE was separating two inmates that were fighting one inmate had eye injury that was bleeding EE noticed blood on l shoulder & shirt.
## 18517 During fire alarm a patient on the floor refused to get up to exacute unit, other staff came to asst, patient pulled on shoulder getting into w/c
## 18518 During fire arm class EE had to kneel on cement over and over-process caused knee to bruise and swell.
## 18519 During fire att to let out smoke window fell on left finger
## 18520 During fire drill EE carried autistic child down 7 flights of stairs felt pain in lower rt side of back.
## 18521 During fire drill EE tripped and fell hitting hip on curio cabinet.
## 18522 During fire drill EE was nearly struck by wheelchair being pushed by staff. This caused EE to stop suddenly. Left ankle is uncomfortable
## 18523 During fire drill, Ms. Davis walked down grassy slope instead of using the steps to the parking lot. She slipped on acorns in the grass.
## 18524 During fire exercise EE was burned on rt arm and shoulder
## 18525 During fire training EE recieved particles of ropeinto her right eye from a broken rope off an extension ladder.
## 18526 During firearm training a fired shotgun slug ricochet and hit EE on the chin.
## 18527 During firearm training. EE tripped and fell forward onto his left shoulder
## 18528 During firearms qualifications at night, holding flashlight w/lt hand and firing w/rt hand, firearmrecoiled, slick went back and cut lt hand
## 18529 During firearms recertification, went to stand up from kneeling position, right foot shifted & employee rolled/twisted right ankle. Fell to ground.
## 18530 During firearms training injury resulted from the recoil of the weapon
## 18531 During firearms training, while moving from standing shooting position to kneeling shooting position strained right knee and visa versa. ()
## 18532 During fitness run he felt snap within his rt knee
## 18533 During foot chase after suspect EE fell on uneven ground and injured left thigh
## 18534 During foot chase of a suspect on uneven terrain EE injured left foot
## 18535 During foot pursuit fell into loose gravel
## 18536 During football practice, coach eder stepped in a hole on the practice field and injured his knee
## 18537 During forced bath, pt tried grabbing EE's neck, scratching EE ()
## 18538 During forced med, pt started to fall, EE attempted to control & slow fall & got left hand caught b/w the corner of bed & pt upper body causing pain
## 18539 During formal count employee was walking from bed #21 to bed #34, when inmate in bed #26 punched her left hip ()
## 18540 During formal count, left knee popped while walking down steps in ocracoke c block.
## 18541 During girls varsity basketball practice a studnetaccidentally hit EE in the jaw with her hand when trying to go for rebound.
## 18542 During ground defense training EE hyperextended his rt thumb
## 18543 During ground fighting techniques instruction the EE wrenched her neck in a one minute ground fight-ing drill.
## 18544 During guard escape technique left knee twisted causing pain & swelling.
## 18545 During guard in/out technique, I was kneed in the ribs ()
## 18546 During handcuff training it was required EE to be handcuffed, his rt elbow was injured
## 18547 During handcuffing procedures lower back had a pain and discomfort upon arriving to office after training
## 18548 During heavy rain, EE walking to rotary auditorium w/ co-worker for faculty training. Carrying umbrella, tripped over 4-5 ()
## 18549 During heavy training injured left knee.
## 18550 During heimlich on pt, right arm began hurting ()
## 18551 During hepatic arteriogram/chemoembolization procedure, EE's right eye was splashed with fluid.
## 18552 During her break, she was on the firing range preparing to fire her pistol, when she was struck in the neck by some type of debris or object from the firing range. ()
## 18553 During his pre-trip inspection Mr. Callicutt was using a hammer to remove aggregate shoulder borrow(asb) from a tailgate lip on medium truck(1094-7019). While working on the lip debris went into Mr. Callicutt's left eye. ()
## 18554 During home visit evaluation, walking downhill on gravel road to the family's home, gravel was loose and slid, fell into side ditch landing on my right side hurting my r shoulder and r knee. ()
## 18555 During home visit for survey, slipped on wet carpeton ramp.
## 18556 During home visit to juvenile client, employee jumped off porch, attempting to escape dog
## 18557 During home visit, client attempted to runaway - I attempted to grab hime to deter him from leaving& when I grabbed him immediate pain in back
## 18558 During hunting patrol, walking in woods something felw into his eye. ()
## 18559 During in service crdt class while learning a takedown manuver was injured when partner palced him on the floor.
## 18560 During in service training EE was being handcuffed in the prone postion while getting up he felt something in his lt wrist go ping and felt pain
## 18561 During in service training for the year EE was participating in a technique during this time her lt wrist became sore and painful
## 18562 During in-service firearms while on the combat course, EE used the mailbox as a cover to shoot 2 targets and knuckle area on back of hand was cut.
## 18563 During in-service training her partner in controlled restrain and defense kicked her in the knee
## 18564 During in-service training, EE states that previousinjury (3/5/08) was aggrevated. The intitial inj. Was filed w/ krm 3/6/08
## 18565 During in-service training/vertical jump exercise EE strained right knee
## 18566 During individual skill workout, EE jumped for a ball, lost her balance and twisted her left ankle.
## 18567 During inmate confrontation while restraining inmate, officer fields sprayed oc pepper spray and it got into her eyes. ()
## 18568 During inmate laundry walked into laundry inhaled strong fumes.
## 18569 During inmate locker search, c/o was holding foundcontraband & inmate grabbed & twisted her arm to get it from her.
## 18570 During inspection of attic of facility, he was trying to straddle plumbing pipe; while looking for the bottom cord of a truss to step on, hit his head on the corner of duct work. ()
## 18571 During inspection of mechanical room at bluford library EE tripped over temporary steam lines from portable boiler & fell on concrete walkway.
## 18572 During inspection, Ms. Porter lost her balance and grabbed duct hanger for support when stepping over flexible duct work in the attic. Left arm was cut from duct hanger. ()
## 18573 During instructing and role playing, EE hit some broom sticks, causing them to fall, causing him to fall to his knees. Some sticks tangled his knee
## 18574 During instruction of controls, restraints and defensive techniques (crdt), ground defense, employee was demonstrating technique with another employee on mat and injured left shoulder. He noticed unusual pain in left shoulder. ()
## 18575 During instruction, EE was sprayed in the face with oc spray
## 18576 During intensified pic, EE made a step and twisted left foot
## 18577 During interaction with clients during leisure time; sitting in chair and felt something biting causing rash on neck, chest, abdomen and arms. ()
## 18578 During interaction with student EE was infested with lice
## 18579 During intervention between 2 patients, staff fell on back hitting the floor.
## 18580 During intervention with pt pt elbowed l wrist pt required restraint for 20 minutes
## 18581 During interview, possibly exposed to TB.
## 18582 During investigation, a cylinder was being hung and hit another cylinder, causing one to strike EE in the head
## 18583 During kennel supervision, Dr. Hartsell was in the parking lot with students and animals. She came in the door of the vet tech. Building, walked across the entry mat, and her right foot slipped on the tile floor and she landed on her left knee. ()
## 18584 During lab practicals a spine board fell on her left hand and fractured it.
## 18585 During lab stick, patient started to faint and thrashing aroun and needle pricked EE's finger
## 18586 During law enforcement training, EE was instructedto tumble from a standing position. When he tumbledhe injured rt shoulder.
## 18587 During leisure activities client placed EE in headlock, EE twisted neck attempting to break client's hold.
## 18588 During less than lethal self defense training injured lt shoulder
## 18589 During lifting EE reported feeling sharp pain in lower back while lifting from legs. Muscle strain to back
## 18590 During lifting and changing clients, EE noticed tightness & burning in lower back.
## 18591 During lifting more than usual due to shortness of staff neck and shoulder became sore.
## 18592 During limited light firing exercise supporting right hand w/left forearm while holding flashlightfelt something hit back of left hand
## 18593 During line exchange: leaning into linen cart to retrieve a wash cloth in bottom of cart. Couldn’t reach; hoisted right side of body over edge of cart with feet off of ground. All of body weight resting on right side of cart. ()
## 18594 During line up having severe chest pain and heart palpatations ()
## 18595 During lldt training, EE was pushed backwards, fell, and twisted left knee
## 18596 During locker search picked up paper to throw away and was stuck by needle in finger of right hand. ()
## 18597 During locker search, EE bent down and hit left side of forehead on top shelf of wall locker.
## 18598 During locker serach, scratched lt arm on a piece of hanger sticking out of the locker
## 18599 During low/limited light fire of shotgun injured neck while firing shotgun. Experienced sharp pain in right side of neck
## 18600 During lunch hour, tripped on sidewalk outside of restaurant and fell. ()
## 18601 During lunch, EE stood up while foot was asleep and sprained lt ankle walking on it
## 18602 During lunch, employee swinging on lawn swing in park and chain pulled out of swing stand and right hand thumb bumped swing edge. ()
## 18603 During major clean up EE tripped over a broom and fell on his right hand hurting his wrist.
## 18604 During making arrest lt hand was injured
## 18605 During making samples for my test, the compressor suddenly stopped working so I tried to run it again but the surface was so hot and my hand got burned. ()
## 18606 During mandatory defensive tactic training, and while my partner and I were practicing the arm bar technique, I was forcefully pushed to the ground which caused me to injure my back. ()
## 18607 During mandatory training. Standing postion learning to fall backwards.
## 18608 During manual hold of an aggressive patient, staff and pt fell down on concrete, outside on playground. ()
## 18609 During manual hold of patient, EE was struck on her face and glasses were broken. ()
## 18610 During manual hold of patient, staff was bitten on his left upper arm. ()
## 18611 During manual hold of patient, staff was kicked on left anterior shin. ()
## 18612 During manual hold of patient, the employee was bitten on her left lower arm.
## 18613 During manual hold of patient, the staff's neck was scratched by patient. ()
## 18614 During manual hold, patient and staff fell to floor. ()
## 18615 During manual hold, patient bit staff on left lower arm. ()
## 18616 During manual hold, pt slid to floor bringing EE with her, injuring left knee ()
## 18617 During manual of patient, staff was kicked on her left bicep area and scratched on her left wrist. ()
## 18618 During manual restraint while off campus on hospital van, staff was hit by patient's head and bitten on her left hand by the patient. ()
## 18619 During manual restraint, EE twisted lower back ()
## 18620 During manual restraint, jammed left hand/fingers ()
## 18621 During manual restraint, patients arm 'caught' employee's eye ()
## 18622 During manual restraint, pt and employee fell to floor injury EE left knee ()
## 18623 During marijuana search EE received numerous tick and chigger bites to both lower legs.
## 18624 During mass imunization, EE helping nurses restrain workers, EE stuck accidentally with dirty needleon left index finger
## 18625 During mealtime a consumer became aggitated and flipped the table over and EE's right leg was hit by the table casuing a hematoma.
## 18626 During mealtime, employee was called out to assess a behavioral situation. She was struck by client around the left eye, causing a laceration and swelling. ()
## 18627 During mealtime, inmate turned on officer hitting him with the left side of his head with his fist. Reddened area on side of head.
## 18628 During med pass finger was caught in shuting door on seg unit ()
## 18629 During med pass, employee pulled a muscle on right side of stomach and back while getting an individual up from his geri-chair. ()
## 18630 During medical transport stretcher malfunctioned and had to be physically lifted into ambulance causing back strain. ()
## 18631 During medication administration, door opened and then closed back striking on left elbow. ()
## 18632 During meeting w/supervisor EE became extremely stressed which continued to get worse later & EE experienced chest pain & shortness of breath
## 18633 During mock code EE went to her knee to start chest compressions
## 18634 During mock fire drill practice became light-headed and felt bad states that Dr. Dawkins unit checkd him and gave him meds for high blood pressure
## 18635 During morning break - walking up outside concrete steps, hung foot on top edge of first step and tumbled, landing on right knee, scraping knee, rt hand & rt elbow. ()
## 18636 During morning run twisted left knee on track. Stepped in loose sand on track. Felt pain
## 18637 During morning run, strain left knee. ()
## 18638 During movement student became aggressive and refused to go back in the room. The student then began to push Mr. Capers causing him to lose his balance and hit the back of his head. ()
## 18639 During multiple officer takedown technique, EE's lt ankle rolled and twisted
## 18640 During nci 3 person carry, the staff was holding the patient's legs. The patient kept kicking staffinjurying both her wrists & right shoulder.
## 18641 During nci demonstration staff fell on her right knee when having to change positions.
## 18642 During nci employee fell forward while testing on legs, and his left shoulder popped out of joint. ()
## 18643 During nci hold, patient continued to kick, scratch& bite at staff, left hand & left thumb scratches, left middle finger sprain & mild lumbar strain
## 18644 During nci recertification when lowering to the floor to perform a 3-person carry, felt pain in both thighs. ()
## 18645 During nci recertification, employee was performing a procedure with other employees and too much pressure was placed on employee by others causing pain to her right shoulder. ()
## 18646 During nci recertification, employee's right knee popped. ()
## 18647 During nci refresher class, employee felt a pull and lost balance. ()
## 18648 During nci testing recertification, employee felt a ()
## 18649 During nci training -coworker bent employee's finger back to far.
## 18650 During nci training EE strain lower extremities. Strain bulge in back of rt lower extremity
## 18651 During nci training EE was coming back up from a limit control walk & lost balance & fell back on left leg.
## 18652 During nci training was attempting to lower personto floor, when fell twisting left knee
## 18653 During nci training with the 3 man carry, employeewas walking another staff with assistance and the staff being walked went down to floor bearing wei
## 18654 During nci training, EE felt pulling in back and radiating down leg.
## 18655 During nci training, I went down to the floor. I heard a pop in my knee and a sharp pain in my back. I suddenly rolled over to get [ct] knee and straighten my back. ()
## 18656 During nci training, employee felt a pull in the top inside of her left thigh while squatting down to perform a move. ()
## 18657 During nci training, injured back when another employee fell on top of her.
## 18658 During nci training, left knee apparently went outand twisted during writer lowering dummy to the f loor.
## 18659 During nci training, staff was prompted to run and felt discomfort in achilles. ()
## 18660 During nci training--practicing hold for patient that May tried to escape. EE had soreness pain in back.
## 18661 During nci training-4 man lift and carry-weight if mannequin was against right upper side -chest and shoulder area.
## 18662 During nci, doing theraputic wrap/hold pivoted on rt knee & turned to the right; right knee popped.
## 18663 During night pursuit exercise-student driver lost control of veh causing veh to go off road hitting several trees.
## 18664 During normal course of duties EE performs rapid and repetitive hand motiions
## 18665 During normal course of duties, repetitive and sustained hand motions.
## 18666 During normal custody work, observed a aa sponsor fall near gate #7 and ran to assist the volunteer
## 18667 During normal field visits was asked by public to aid in securing kitten from traffic and was bittenon rt hand
## 18668 During normal surveillance duty work was injured in vehicle accident when her vehicle struck rear of another vehicle
## 18669 During nvci apt EE stepped forward w/left foot and exp pain in groin area ()
## 18670 During nvci intervention training, placing staff in seclusion room and ran out of room tripping over her own feet causing her to fall. ()
## 18671 During nvci patient intervention, injured elbow ()
## 18672 During nvci therapeutic hold, fell to floor on left side ()
## 18673 During nvci training EE fell to knees ()
## 18674 During nvci training, practicing a lift, twisted low back ()
## 18675 During nvci training, pulled left shoulder muscle ()
## 18676 During nvci training, sprained groin area ()
## 18677 During oc pepper spray training, ofc was exposed in the eyes with the spray ()
## 18678 During oc pepper spray, developed a pain & bump under eyelid ()
## 18679 During oc spray training, I was sprayed with mase. Since then I have been experiencing headaches
## 18680 During off campus outing on school van, student headbutted staff in the mouth.
## 18681 During officer refresher course doing the bent wrist take down to the floor to be handcuffed, I fellbackwards, landing on the floor on my left hip.
## 18682 During officer survival night. Instructor was demonstrating defensive tatic, when EE felt a sharp pain in his left shoulder.
## 18683 During oleoresin capsicum spray training EE was sprayed in the face - cornea abraison lt eye.
## 18684 During one person limited control walk to time out, staff hit his shoulder ()
## 18685 During oral exam horse bit EE on rt index finger.
## 18686 During oral surgery on inmate, hand hit the handpiece while it was in holder. Reaching for the suction.
## 18687 During ort training he pulled a muscle in his right leg while performing a doc approved move-single leg take down. ()
## 18688 During ort, crdt an officer fell onto sgt. Pott's chest causing a pain in the chest area.
## 18689 During outdoor training session on 1st aid, cpr employee twisted her neck and back resulting in muscle pain to neck and ribs
## 18690 During outside firearm traininga a tick was discoved and remvd/06-03 rash occured in area and EE went to Dr
## 18691 During outside leisure on the patio, an individualagressed toward employee and during nci procedure, employee's left hand was cut between little finger and fing finger. ()
## 18692 During outside recreation, student displaying out-of-control behavior, as I turned around to face student she punched me with a closed fist
## 18693 During p. T., while doing pushups hurt his left pinkie finger
## 18694 During p/c class EE lost footing and fell on buttocks causing pain in lower back
## 18695 During pat down search of inmate off. Schneiders left palm of his hand was puncture by a toothpick in the left shift pocket of the inmate.
## 18696 During pat search, placed hand inside pocket of inmate, inmate turned away after placing his hand on her wrist, trapping her hand in his pocket
## 18697 During patient aggression, EE twisted neck ()
## 18698 During patient altercation, sprained/strained left wrist ()
## 18699 During patient care, brushed against metal part of wheelchair brake and scrapped right leg. ()
## 18700 During patient intervention, got hand caught in door handle ()
## 18701 During patient intervention, injured right foot/ankle ()
## 18702 During patient intervention, pt and EE feel to floor injurying wrist ()
## 18703 During patient intervention, pt hit employee breaking glasses ()
## 18704 During patient intervention, staff was kicked and during manual hold staff report both sholders, both wrists and lower back ache. ()
## 18705 During patient manual restraint, hit hand against something ()
## 18706 During patient manual wrap, patient and employee fell ()
## 18707 During patient restraint, EE slipped on water on floor, twisted knee and fell ()
## 18708 During patient restraint, employee and patient fell to floor injuring EE r knee ()
## 18709 During patient restraint, employee fell injuring buttocks and thumb ()
## 18710 During patient restraint, employee fell to floor landing on right knee. ()
## 18711 During patient restraint, employee kicked in right knee by patient ()
## 18712 During patient restraint, patient fell to floor causing employee to fall also ()
## 18713 During patient restraint, pt headbutted EE chipping tooth ()
## 18714 During patient restraint, twisted left knee ()
## 18715 During patient transfer-patient bent r. Wrist backwaards. ()
## 18716 During patient wrap, patient grabbed staff's hair, pulling staff to floor striking her head. Received mutiple injuries during th struggle ()
## 18717 During patrol vehicle pursuit of dirt bike vehicle dropped off into drainage ditch in roadway
## 18718 During pelvic exam, while obtaining specimen for wet prep accidentily sprayed body fluids from end of swab into face.
## 18719 During pert shakedown, EE pulled a mattress cover from a mattress off a top bunk, picking up mattress with arms extented ()
## 18720 During pert team exercise fell on wrist w/ all body weight
## 18721 During pert training (bldg searches) EE was going into a room to search when he entered the room a 12 gadge blank was discharged toward the floor.
## 18722 During pert training he and another officer were practicing scat tech and he landed on the other officers knee injuring chest
## 18723 During pert training his shoulder made a popping noise. ()
## 18724 During pert training twisted left knee during cell extraction exercise
## 18725 During pert(prison emergency response tea)trainingat randolph com. Col., emergency services trainingsite. While conducting advanced crdt, was con
## 18726 During phase iv takedown-EE twisted rt arm the wrong way
## 18727 During phase training, we're constantly thrown downon mat. When I awoke on saturday morning, my left knee, thigh & calf were swollen & hurting.
## 18728 During physical activity, a student crashed into EE's right hand
## 18729 During physical aggression drill (police training), instructor hit w/ baton by student ()
## 18730 During physical altercation between 2 inmates. EE was employed. Inhaled spray causing discomfort
## 18731 During physical assessment of sbi academy, EE was doing max bench press when he injured shoulder. Rt shoulder/rt upper back/rt upper chest.
## 18732 During physical confrontation with an impaired driver EE sprained left knee.
## 18733 During physical confrontation with inmate, EE usedlegs to sweep inmates legs. EE fell on his knees on the concrete.
## 18734 During physical education class(basketball)while trying to drive to the basket, I felt a pull in the left rear part of my foot just above the heel.
## 18735 During physical fitness run, EE stepped into a pothole and rolled left ankle causing lower left leg pain.
## 18736 During physical restraint of an aggressive studentthe student leaned back and caused EE to strike head against wall
## 18737 During physical restraint of client he bit staff ()
## 18738 During physical restraint patient struck EE's right lower forearm
## 18739 During physical rstraint, student bit staff on theright forearm & pierced skin with a pen on left arm.
## 18740 During physical training EE felt a sharp pain in lower right leg. EE felt that injury occured due to counterclockwise running pattern.
## 18741 During physical training EE notice swelling above rt ankle
## 18742 During physical training EE was to disarm other participant-EE injured little finger on left hand.
## 18743 During physical training exercise working on push up-at end of practice EE complained of pain in rt shouder.
## 18744 During physical training for alcohol law enforcmntinjured rt knee while running, became sore and confined large amounts of swelling.
## 18745 During physical training left lower leg began to swell, knot appeared and sharp pain persists.
## 18746 During physical training left quad-upper thigh tighted and caused severe pain, possible tear.
## 18747 During physical training on the morning of 1/24/94cadet jones accidentally stepped off the shoulder of the road and noticed an intense pain in hip.
## 18748 During physical training running exercise EE injured rt knee
## 18749 During physical training, felt left knee giveway, and slide to the inside. Immediate pain and swelling soon after. List injury as: left knee ()
## 18750 During pic class EE felt pain in lower back
## 18751 During pic class EE hyperextended knee and while lowering to the floor.
## 18752 During pic class EE injured rt leg
## 18753 During pic class, they went to block a kick and noticed lt wrist was swollen. The pain occurs when the wrists is bent back.
## 18754 During pic refresher EE reinjured left knee.
## 18755 During pic retraining EE lost balance and fell scrapping knee
## 18756 During pic training another staff member used knee to hold down EE's shoulder and strained shoulder
## 18757 During pic training while EE was practicing holds twisted back.
## 18758 During pic training-EE strained lt arm trying to hold another EE in a chair
## 18759 During pic was punched in face by patient -glassesbroken - ? Fx. Nose
## 18760 During pic, EE was trying to catch instructors leg and strained rt wrist
## 18761 During pic, dislocated shouler
## 18762 During pit pt hit my upper nose between eyes & coming out seclusion room grabbed rt arm & pulled to ground striking rt shoulder
## 18763 During placing pt in Mr, Pt spat in EE's face/eyes ()
## 18764 During placing pt in pr, EE noticed right neck hurting ()
## 18765 During post game cleanup emp was working with another employee emptying the arena trash. We loaded the truck and drove to the dumpsters. I got out and stepped up onto the back of the truck and my left knee gave away. ()
## 18766 During practice of unarmed self defense technique two hand, EE injured his shoulder.
## 18767 During practice round. Semi-automatic pistol kicked back striking EE on left thumb
## 18768 During pregame batting practice EE was struck in the face by a line drive fracturing orbital and maxillary bone
## 18769 During prescribed burning crossing debris from chopping operation - twisted left knee
## 18770 During prescribed physical fitness training EE strained his groin
## 18771 During prison emergency response training employeewas taken down with arm bar and employee hit head on mat hard.
## 18772 During process of arresting offenfer gun handle was jabbed into his rib cage
## 18773 During prone intervention-client kicked leg up-EE tried to block-resulting in jammed left thumb, wrist, arm and shoulder pain
## 18774 During pt aggression, pt placed in Mr, Right wrist began hurting ()
## 18775 During pt agitation tv fell off stand onto EE's r shoulder
## 18776 During pt intervention EE & pt fell to floor. Pt knee landed on staff lt forearm breaking it. Fracture left forearm.
## 18777 During pt intervention, EE and pt fell to floor ()
## 18778 During pt intervention, EE was kneed in abdomen. EE recently pregnant, delivered 7/10/07.
## 18779 During pt intervention, pt scratched in mouth ()
## 18780 During pt redirection, pt kicked EE and had to be place in manual hold ()
## 18781 During pt restraint, EE fell to floor injuring wrist ()
## 18782 During pt restraint, another EE hit employee in ribs with head. ()
## 18783 During pt restraint, hit wrist against snack room window ()
## 18784 During pt staff training; tyler missed step and fell onto step during exercise. ()
## 18785 During pt transport & struggle patient struck EE in face w/fist 2x then spit in face. Abraison rt hand during struggle. Lt thumb/wrist/eye/nose.
## 18786 During pt(physical training) while flipping a tire, I over corrected with my back. Lower back. ()
## 18787 During pursuit of a felon EE crossed speed bumps at a high rate of speed which caused pain in EE's neck.
## 18788 During push ups right shoulder popped & felt loose. Physical exercise required push up. Shoulder popped. List injury as: right shoulder ()
## 18789 During qualification of standard dept. Weapon. EE was in kneeling position and began to experience blur vison & tingle in lt arm, chest pain.
## 18790 During ra training employee fractured right wrist while playing football.
## 18791 During rcdt practice EE pulled his groin muscle
## 18792 During rcdt training EE & partner fell to the ground & landed on her knees. Also injured during application of handcuffs
## 18793 During rcdt training, he obtained hip bursitis on his left leg & hip. Other note says hip strain
## 18794 During rcot testing EE complained of lower body parts hurting.
## 18795 During re-cert training, performing standing brake fall, ()
## 18796 During re-certification crdt and short baton training, while getting up off floor, rt knee popped
## 18797 During rec activies while playing basketball with juveniles employee was hit in lower lip requiring stitches
## 18798 During recert training employee twisted left knee. ()
## 18799 During recertification on self-defense when EE went down on right elbow hit her ribs
## 18800 During recertification training on the final technique EE assist take down. Sprain neck, rt shoulder & arm.
## 18801 During recertification training, an officer performed a defensive move and tossed hannah over. Hannahlanded on his right shoulder.
## 18802 During recertification training, employee fell wrong during the training excercise.
## 18803 During recreation two students began to fight, while breaking up the fight EE's rt leg was injured
## 18804 During recreation, two students began to fight & while breaking up the fight employee's rt arm was injured.
## 18805 During recreattion w/ group (baseball game) EE and pt collided
## 18806 During redirection of a patient, EE was scratched or cut by broken cd on rt forearm and left forearmwith no break in skin.
## 18807 During redirection of patient's behavior, staff was struck on right shoulder and left knee banged against floor when holding patient during floor procedure ()
## 18808 During regular cashier duties, EE slipped and fellbumping her knee.
## 18809 During representation of inmate at disciplinary hearing EE states inmate was angry. When leaving area inmate pushed EE into wall
## 18810 During required less than lethal training EE was injured during the flashlight technique portion of the training
## 18811 During resident care EE lowered bed in position. As lifting resident wheel chair moved and strained lower back
## 18812 During resistance to be escorted inmate kicked EE in right leg.
## 18813 During restraint a patient hurt lt foot
## 18814 During restraint in holding patient's hands down to floor, received minor abrasions to right 3rd finger from broken glass on floor.
## 18815 During restraint intervention injured low back w/ struggling patient.
## 18816 During restraint of a client, staff was spit in face and injured left hand and arm.
## 18817 During restraint of a patient, left shoulder struck against door and left shoulder struck against seclusion and restraint bed
## 18818 During restraint of a patient, patient was holdingthe staff's left arm & twisting, then pulled away & started swing at staff with closed fist
## 18819 During restraint of a patient, the patient and staff fell to the floor. During fall staff twisted her left knee.
## 18820 During restraint of a student, knee struck floor.
## 18821 During restraint of a student, staff was bitten onhis right hand by the student.
## 18822 During restraint of an aggressive student receiveda bite on his left distal 3rd finger & left lower calf.
## 18823 During restraint of an assaulting student, the employee was pushed into a brick wall, stepped on, and hit by a student. ()
## 18824 During restraint of an out if control juvenile EE injured lt wrist.
## 18825 During restraint of disruptive student EE injured knee. Left knee top swollen & painful when walking
## 18826 During restraint of juvenile - wanted juvenile to go to his room, he would not, staff attempted to escort him to his room, he refused, kicking staff, out of control behavior ()
## 18827 During restraint of student was forced to bend in an awkward manner to prevent injury of all staff involved. Injured lower back & left hip
## 18828 During restraint of unsafe client, staff was scratchedin the left eye. ()
## 18829 During restraint student clawed left hand and kicked left shin. Drew blood -strained lower back.
## 18830 During restraint with client, staff was struck in the face.
## 18831 During restraint, student stepped on employees right foot ()
## 18832 During restrictive intervention employee was thrown down to ground, left ankle was twisted
## 18833 During restrictive intervention patient head butted employee in top of head ()
## 18834 During restrictive intervention patients leg struck EE's left thumb and it hyper-extended ()
## 18835 During restroom breaks, an inmate exited his room kicking the door open, inmate advanced on employeerefusing instructions, sprayed with oc spray
## 18836 During ri, EE tripped and was punched in the ribs x2 while laying in the floor, EE hit back/side on edge of scales. Lt chest & back.
## 18837 During riot control training EE was grabbed by inmate and fell to ground
## 18838 During road squad training he injured his upper left side of his head & pulled his right shoulder while acting as inmate during role play.
## 18839 During road test with customer, when doing three point turn customer jumped curve while backing into a brick wall. Injury: strain to left knee. ()
## 18840 During rotation of assignments he was in spa room, getting stuff he turned to exit and slipped on dry floor, twisted r ankle and landed on l knee
## 18841 During rounds came into contact w/patient who had scabies
## 18842 During rounds while going up stairs pulled something in right knee. ()
## 18843 During rounds, inmate was not responding to staff and window covered. Employee opened trap to check on inmate when inmate threw some type of fluid in his face. ()
## 18844 During rounds, trying to close trap door to the cells* ()
## 18845 During routine cleaning on restroom employee stated something (bug) flew in to her left ear. ()
## 18846 During routine compliance inspection, while inspection of waste lagoon sliped on wet grass and fell baclwards onto back and left elbow. ()
## 18847 During routine home contact. Officer was leaving resident when a dog ran up beside the officer and bit officer on the rt forearm.
## 18848 During routine lab facilities maintenance at end of semester clean up. Lifting, pulling, during maintanance. Twitching and tingling in lft leg.
## 18849 During routine locker search removed items & found sewing needle
## 18850 During routine patrol was involved in an altercati-on with an unruly inmate.
## 18851 During routine search of inmate he was stuck by a needle hidden in the fold of blanket. Right ring finger
## 18852 During routine transfer of pt from w/c to stretch-er knee popped and EE was unable to bear weight onlt leg.
## 18853 During rts, while lifting pt on transport board EE started pain in lower back.
## 18854 During run he noticed pain in lt knee. Throughout the day the pain increased with pain and swelling
## 18855 During running exercise at basic law enforcement training, EE fell and scraped left knee
## 18856 During safety round a patient styarted pulling staff's hair and tried to pluck out her right eye ()
## 18857 During scat training, EE was pushed to the mat andbent his leg causing pain to lt knee. (EE had already had pain in knee due to tendonitis per Dr.)
## 18858 During scott air pack training and acting as the role of unruly offender, he fell back during a take down by another officer and his teeth hit together and chipped his tooth. ()
## 18859 During scott air pack training had a mask on that caused rash on forehead ()
## 18860 During search of defendant, defendant attempted torun. Employee tried to restrain defendant
## 18861 During seclusion of pt. Re-injured neck that has previously injured in car accident. Pt grabbed chain and pulled on neck
## 18862 During second shift, EE went outside to purchase asoda from drink machine, high winds blew debris into EE's left eye
## 18863 During security check - walking through block checking electric lock box & under steps/rails ()
## 18864 During security check of the unit, EE slipped and fell on the front steps of programs office.
## 18865 During security sweep prior to closing, subject's hand was caught in door, when door closure devlopefailed tor retard door closing
## 18866 During security training, injuried tendon in elbow
## 18867 During self defense training employees' left wrist& hand were strained.
## 18868 During self defense training employees' left wristwas strained while doing the bent wrist come alongexercise.
## 18869 During self defense training- EE tried to break his fall to the mat with rt hand dislocating rt ring finger
## 18870 During self defense(drop/flop)sprian back.
## 18871 During self-defense training that she had re-injured her back. Did not desire med attention at this time.
## 18872 During self-defense training, EE fell backwards and when she landed, her neck was snapped forward
## 18873 During self-defense training, both of employee's knees popped left to right at same time while lower body (legs) were wraped around another perso
## 18874 During self-defense training, handcuffs were placed on right wrist and the pressure injured the top of wrist area.
## 18875 During sensory activity with individual, EE turnedaround to attend to another individual, client suddenly spit & bit EE's left hand
## 18876 During set-up of projection screen, unit collapsedcatching finger in equipment
## 18877 During shakedown, I was carrying mattresses to and from cells for search. Felt like I twisted or strained something in my back. Awoke the next morning very stiff and unable to move without lots of pain. ()
## 18878 During shotgun recertification, kick back from weapon injured rt shoulder. Afterwards, noticed swelling and significant tremors in rt hand in addition
## 18879 During shotgun training - gun recoiled and bruisedrt upper armm
## 18880 During shotgun training EE's right arm became sore, stiff and hurting.
## 18881 During shower sat down on shower bench attached to wall when the bench immediately plastic toggle bolts came out of wall and bench fell to the floor. Bench slammed into the back of my left leg below my knee. ()
## 18882 During showering of client, coming out of shower, slipped & fell on floor; hit head on wall in bath-room.
## 18883 During situational shooting exercise. Slid into make-shift barricade & scraped his right thumb, middle, & ring fingers, causing abrasions on each
## 18884 During slp evaluation of resident, approximately 15 minutes into the evaluation the resident stood up and grabbed EE's hand and bit her.
## 18885 During snipe training, employee fell and twisted right knee. Fell on leaves/brush on steep mountain slope ()
## 18886 During snow & ice removal truck started down steep gradee and broke traction resulting into hitting guadrail section and rolling over onto drivers side in roadway. ()
## 18887 During speech evaluation, client hit staff on right side of head/ear. ()
## 18888 During sponge bath-dropped peri-wash, bent down to pick up and felt a sharp pain in middle of back. ()
## 18889 During state duty in relief help at hatteras island EE contacted conunctivitis in right eye. ***************see log notes*****************
## 18890 During straight baton training, exercising as told- attempting to take hold of toes, leg folded back to stretch during exercising to stretch the hamstring. Strained left knee. ()
## 18891 During stretching while training left leg pulling in towrard right left and touching right thigh hurt left leg ()
## 18892 During striking exercise, EE applied a hammer fist to the suprascapular of the combat mannequin. ()
## 18893 During struggle davis struck the individual with his rt hand
## 18894 During struggle to get patient under control, patient kicked EE in right knee.
## 18895 During struggle to move patient from seclusion to restraint room, EE received bite to lower right leg.
## 18896 During struggle w/ aggressive client EE's hand was shut in door. Fx and cut to finder
## 18897 During struggle with combative patient to place into restraints, staff injured his low back.
## 18898 During struggle with fighting patient, staff fell up against wall & floor with the patient twisting left shoulder as he hit the wall.
## 18899 During struggle with inmate he was scratched on top of his left hand and right arm
## 18900 During struggle with patient in a manual hold, staff states caused pain in neck area. ()
## 18901 During struggle, inmate & EE fell to ground. EE onback and inmate on top. Cervical strain/sprain
## 18902 During student restraint EE fell on his back with student landing on top of him
## 18903 During stun shield training officer terry was hit with the stun shield on 12/9/11, however on 12/20/11 the spot where she was hit was still bothering her. ()
## 18904 During subject apprehension drill, had to brake suddenly. Fell forward with the bike, injuring rt shoulder
## 18905 During subject control arrest technique (scat) another employee rolled over onto the employee's fingers while trying to exit the drill. List injury as: right hand center & ring finger ()
## 18906 During supervising, discarding swollen cans, one can exploded and hit EE/20feet away on right side of face, cutting right ear. ()
## 18907 During supervision of inmates, inmate got in face and inmates nose made contact with EE's noes.
## 18908 During surgery EE dropped scapel-in attempt to catch scapel from falling to floor cut rt hand
## 18909 During surgical extraction, passed straight elevator to dentist, he went to grab forcep, dropped elevator, tore glove and broke the skin ()
## 18910 During survey Ms. Lassiter stayed at hotel and was bitten by bed bugs. ()
## 18911 During survey at intercare health services in charlotte, she tripped going up the steps into the building and fell onto the landing. ()
## 18912 During survey in goldsboro, Ms. Drake injured her left side of the neck/upper back area when she picked up work bags. ()
## 18913 During survey of group home, Ms. Vaughn was in contact with staff of home for two hours. It was reported that a client was diagnosed with tuberculosis. It was verified by halifax co health dept that the client was contagious. ()
## 18914 During survey, Ms. Gogola reached for file in conference room and the heel of her shoe was caught in chair. She fell backwards hitting head and scraped rt elbow and rt buttocks on carpet. ()
## 18915 During survey, employee was returning from lunch and fell on sidewalk going to facility. ()
## 18916 During survival exercise, EE was wrestling with an instructor when he fell twisting right knee.
## 18917 During tactical training employee was hit by other officer in the left shoulder.
## 18918 During take down of an aggresive pt, EE landed on right knee.
## 18919 During take down of another officer, his foot jammed into my left ribs in training. See susan haper @key risk
## 18920 During take down of state fair, EE picked up a heavy tree display. Strained lower abdomen. Then strained again 11-06-06 changing a tire.
## 18921 During take down-another participant fell on EE with knees striking EE in mid-back & felt ribs pop
## 18922 During task of lifting multiple fire extinguishers employee developed pain, swelling, and redness in lower abdominal area. ()
## 18923 During tazor practical training, advanceing towards another officer, pushed off felt severe pop. ()
## 18924 During team building exercise employee was playingflag football and accidentally fell and injured leg above knee.
## 18925 During the 1 1/2 mile run EE felt slight pain in his r knee.
## 18926 During the arrest of an offender the claimant was injured on right knee and exposed to hiv by offender when the offender flicked blood on claimant ()
## 18927 During the bent wrist technique while back to backan officer pulled her arm over his shoulder bend- ing it down.
## 18928 During the boxing match, EE suffered an injury to his right shoulder
## 18929 During the cell extraction the inmate threw an unidentified liquid on my arm ()
## 18930 During the cell extraction training trying to dot the upper l flank everyone fell back on EE pinningher right foot under her.
## 18931 During the course and scope of employment as a probation/parole officer and while moving a box weighing approx 10lbs in an awkward fashion, the same caused injury to neck, back and right shoulder. ()
## 18932 During the course of an exam of b. T. P. Services, a 17 ()
## 18933 During the course of replacing barcodes on college materials, joyce encountered nasal problems with sneezing and drainage. During the final stages of working on the reference books, her nasal passages became inflamed and eventually started bleeding. ()
## 18934 During the course of shift, client was transferred from one location to next, wheelchair to rocking chair; trolley to bed; injury to neck; back injury; shoulders. ()
## 18935 During the end of 99-00 legislative session EE was doing mass mailing-EE thinks reaching for and using stapler caused pain in rt shoulder
## 18936 During the foot pursuit, the employee fell which resulted in injuries to the employee's head, left foot and right arm. ()
## 18937 During the foot pursuit, the employee tripped over a radio, which had fell from his belt. This caused the employee to fall to the pavement resulting in injuries to the employee's right knee and right hand. ()
## 18938 During the last week of rcdt training, while taking the final exam, the employee felt pain like a light sprain to the upper left shoulder area. The employee thought he was fine; however the pain has gotten progressively worse over time.
## 18939 During the oc pepper spray training exercise when sprayed with the pepper spray and flushin I felt there was something still in eye
## 18940 During the officer survival portion of basic school training, EE fell landing on his right wrist, causing immediate pain and swelling.
## 18941 During the period 5-17-07 to 5-25-07, EE was moving boxes from one place to another. Experienced pain in lower back and left leg.
## 18942 During the process of breaking up a fight, the patient caused staff to fall to floor injuring herright hand.
## 18943 During the process of separating two students involved in a physical fight, prescription glasses were knocked off face and broken ()
## 18944 During the restraint of a juvenile EE suffered a strain to the groin area.
## 18945 During the restraint of a patient, staff was kicked in the testicles.
## 18946 During the restraint of several students while applying bent wrist was being hit on forearm while holding a student.
## 18947 During the seclusion and restraint of a patient the EE was hit in the lip by the patient's knee
## 18948 During the sprscribed 1/2 mile run, EE pulled muscle in his right lower leg.
## 18949 During the two man take down, officer was pushed down on the mat and her chest area hit the mat very hard causing pain to officer's right breast.
## 18950 During the use of force on an inmate. The officer hit the corner of the cell causing injury to the neck ()
## 18951 During therapeautic hold on patient, employee was kicked in mouth ()
## 18952 During therapeutic carry of fighting patient, staff's pinky finger was jammed.
## 18953 During therapeutic escort/restraint, student caused staff to fall to the floor resulting in staff coming down on her right knee. ()
## 18954 During therapeutic hold of a patient, the patient spit in staff's rt eye & bit staff on thier rt arm
## 18955 During therapeutic hold, staff was bitten by patient on his right side. ()
## 18956 During therapeutic intervention client escalated EE was punched in head, bra ripped, breast squezzed have rug burns of knees and elbows.
## 18957 During therapeutic restraint of combative student staff fell to floor causing staff to strike left elbow on the floor jamming his left shoulder
## 18958 During therapeutic wrap of a student, staff's left middle finger became entangled in student's sweatshirt.
## 18959 During time of accident we were involved with use of force on an inmate
## 18960 During toothbrush training, consumer was attempting to stop toothbrushing, staff blocked his arm and bent thumb back
## 18961 During training EE attempted to stand up after doing sit-ups on ground-felt pull/pop on outside of left knee & fell to ground
## 18962 During training EE fell and hit the ground. Injured low back, lt. Hip and lt. Leg. Dx: hnp low back - avn of hip is not covered
## 18963 During training EE fell hitting head & straining neck muscles.
## 18964 During training EE felt left shoulder pop pain increased over next couple of days
## 18965 During training EE injured her right knee
## 18966 During training EE partner was delivering a hand strike on rt arm. EE had deep bruise.
## 18967 During training EE slipped on some ice, she caught herself with her hands. EE suffered from a sever sprain to left wrist
## 18968 During training EE was handcuffed behind back and partner lifted arms to high over head
## 18969 During training EE was holding another staff member in an aggravated hold. Staff member leaned back and knee popped and EE fell on ground
## 18970 During training EE was running and struck the curb with his rt foot
## 18971 During training EE was sprayed in face with oc spray in eyes.
## 18972 During training a roof collapsed. Employee was trying to exit building and his right clove came off. ()
## 18973 During training activity all were in group keepingballoons in air w/feet & hands when EE was kicked in shin by accident
## 18974 During training as the door was opened jammed my little finger in the cell door as we went through the door my finger was jammed aganist the bed
## 18975 During training at pied. Corr. Inst., felt pain inleft shoulder while pushing officer wilson into holding cell.
## 18976 During training at the firing range emp appeared to be suffering from heat exhaustion ()
## 18977 During training class of burning house-EE closed adoor and the glass fell out and cut EE on rt leg
## 18978 During training class while performing a bent wrist tech his rt wrist & thumb became stiff & sore EE does not know how injured his rt wrist/thumb
## 18979 During training defending against an attacker. Fellbackwards w/force using hands & arms to break fall
## 18980 During training doing a tactical handcuffing technique the officer states he injured the lower portion of his back. ()
## 18981 During training employee slipped & fell on right shoulder in a simulated knife fight.
## 18982 During training employee was shifting her weight from one foot to the other causing a strain.
## 18983 During training excercise officers partner accidentally throw officer into wall, causing him to hit his head ()
## 18984 During training excercise, fell to mat and upon returningback to feet, sprained/twisted rt knee.
## 18985 During training exercise EE fell on concrete pavement and landed on knee.
## 18986 During training exercise another officer fell against the outside of right knee. Right knee acl reconstruction 8/2/11
## 18987 During training exercise on the ropes course was reuires to swing across a 10' area. Slipped on ropinjuring 1st finger on each hand, lt arm during fal
## 18988 During training exercise, EE took a direct strike to the right arm
## 18989 During training exercise, I was in the redman suitand was injured, doing cell extraction
## 18990 During training exercise, employee entered building 116, walked into a glass door cutting bridge of his nose ()
## 18991 During training his partner used sankyo take down method in which you sed force to the floor. He gotoff the floor and felt pain in right shoulder
## 18992 During training instructor kicked EE's hand and caused some swelling.
## 18993 During training maneuver, she experienced a sharp pain in upper ribs when taken down on the mat ()
## 18994 During training manuever w/coworker, injured lt ankle..
## 18995 During training on bike, ducked to avoid pole, lost balance and fell
## 18996 During training practicing a technique other officer pulled on my head and the cap of my front tooth broke ()
## 18997 During training pulled something in lower back causing pain across lower back and down right let. Did not complete the training. ()
## 18998 During training rt leg twisted to hip area
## 18999 During training session lt foot got caught in mat while being pushed away and twisted my anlke
## 19000 During training session, employee hit her head on restraint chair ()
## 19001 During training showing a technique knee spear to the common nerve in thigh. Heard a popping sounds went down on foot, came back up and could not move
## 19002 During training sustained injury to right shoulder during single leg take down at montgomery community college ()
## 19003 During training the 2 hand take-away twisting baton to keep control, right shoulder popped several times, shoulder and arm went numb, shot pain to my fingertips. ()
## 19004 During training there was body to body contact people falling on top of each other etc.
## 19005 During training twisted to side with the sheild and fell to the floor
## 19006 During training, EE and his partner fell to ground, weight of them caused EE's lt hand, palm down, to hyper extend his lt elbow
## 19007 During training, EE fell on lt shoulder, separating it
## 19008 During training, EE was exposed to live shots from firearms. Was wearing hearing protection during this orientation.
## 19009 During training, EE was on top of another officer. Other officer threw her off and she landed on her lt side
## 19010 During training, EE was running and twisted his left knee.
## 19011 During training, EE was sprayed in face with oc spray
## 19012 During training, EE was training with baton using strikes and arm bar comalongs and holds. Elbow becam sore and swollen
## 19013 During training, EE's partner had applied bent wrist technique to a takedown and EE pulled a muscle
## 19014 During training, attempted forward breakfall, stuck out he rhands to stop fall
## 19015 During training, came to a ditch in the woods and jumped across. Felt something pull in his rt hip
## 19016 During training, did a take down and laid full on knee, EE twisted hip in an attempt to throw partneroff of her as it was part of the training class
## 19017 During training, employee states while performing kneeling breakfalls, a terrible pain appeared in her right hip upon kneeling
## 19018 During training, fell backward to ground with trainee on top of him
## 19019 During training, injured lt foot during two officer take down while playing the part of an inmate
## 19020 During training, injured rt shoulder while firing shotgun
## 19021 During training, left leg slipped when getting up off of mat.
## 19022 During training, noticed rt thumb and wrist began to hurt and swell. Could not indentify cause or exact moment the injury occured.
## 19023 During training, ofcr was practicing offender takedown. Was maintaining control of leg of other trainee when lt side of head hit buttock of trnee &pop
## 19024 During training, officer attempted a tech. Was forced to mat, felt pain in left shoulder
## 19025 During training, rt foot slipped & he fell backwards, twisting his rt knee
## 19026 During training, running and twisted rt ankle and fell down, striking the pavement
## 19027 During training, taken down to floor by partner, felt pop in lt knee
## 19028 During training, while being pepper sprayed her eyes were burnt
## 19029 During traning on state firing range, right thumb was too high on gun and slide came back and cut thumb across nuckle.
## 19030 During transfer of patient ees r thumb was injuredright hand was trapped between matress and patient
## 19031 During transport to vltd, resident displayed physical aggression and scratched EE on right arm
## 19032 During unanticipated use of force he struck his wrist on steel nightstand inside of inmates room attempting to bring inmate under control
## 19033 During unarmed defense training EE pulled, popped, and strained muscles in neck
## 19034 During unarmed self defense after one exercise procedure top lt arm had sharp pain in it. Sharp pain in upper lt arm.
## 19035 During unarmed self defense training
## 19036 During unarmed self defense training I experienced a tearing feeling and pain in rt shoulder
## 19037 During unarmed self defense training practicing moves. Neck & lower back.
## 19038 During unarmed self defense training, EE face downon mat, another EE fell on EE lower back with fullbody force, lower back injury
## 19039 During unarmed self-defense EE was hit in the mouth while attempting an uasd technique by co- worker.
## 19040 During unarmed self-defense training EE fell on his right shoulder onto mat
## 19041 During unarmed self-defense training, another trainee applied a defensive technique, injuring EE's right hand
## 19042 During unarmed self-defense training, was taking down an officer & his elbow went into her chest area.
## 19043 During unit shakedown while turning a bed mattress over to inspect it he scraped lt upper arm on bed frame
## 19044 During use of force EE injured lower back
## 19045 During use of force fell on floor w/inmate & twisted his elbow
## 19046 During use of force felt sharp pain in back ()
## 19047 During use of force in segregation he used both hands to control the inmate and his hands got pressed against cell
## 19048 During use of force in seregation, the shield was pushed in the EE direction striking him in the facial area on the right cheek bone.
## 19049 During use of force incident inmate pulled him down & stuck him on side of nose
## 19050 During use of force inmate became upset and bit left bicep
## 19051 During use of force inmate was being restrained and EE's right wrist was injured while trying to handcuff the inmate
## 19052 During use of force left thumb entagled in restraints ()
## 19053 During use of force on an inmate EE was kicked by inmate who was kicking and struggling
## 19054 During use of force on inmate right hand was bitten
## 19055 During use of force on inmate she was bitten
## 19056 During use of force staff had to enter an area where an agressive inmate hit him
## 19057 During use of force was bit by an inmate. Left thumb.
## 19058 During use of force, EE fell to floor and struck knee
## 19059 During use of force, EE was struck by an object causing cut to right palm.
## 19060 During use of force, helmet shield hit nose and he hit elbow on door of cell. Cut on right index finger while holding inmate down.
## 19061 During use of force, holding inmates arm while another officer has holding upper body & went to floor. Scratches lt arm, rt hand, 3rd & 4th finger
## 19062 During use of force, inmate attacked officer by getting his arm around officers neck and twisting his neck
## 19063 During use of force, inmate lunged at EE and bumped his shoulder.
## 19064 During use of force, inmate stripped handcuffs across EE's middle finger causing it to bend
## 19065 During use of force, inmate tore his shirt, after use of force, he realized shoulder arm was hurting
## 19066 During use of force, officer slipped in water and landed on right hand.
## 19067 During use of force, trainee refused to be restrained, EE leg slipped from beneath him and trainee fell on his ankle
## 19068 During visit at alberta professionals, greensboro, EE fell as she stepped onto unlevel paved area in parking lot.
## 19069 During volleyball class, EE was driving the ball over the net & injured her left wrist. Pain
## 19070 During weapon retention demo, his hand bent backward, heard a popping sound in his wrist
## 19071 During weapon retention technique, injured rt forefinger and index finger
## 19072 During wellness event, EE jammed left thumb
## 19073 During wilderness training canoe capsized and employee hit her head
## 19074 During wrestling practice employee receive blow to nose from student
## 19075 During wrestling practice, EE was wrestling 133lb starter and injured his neck on starters knee.
## 19076 During wrestling training excercise, male trooper punched EE's rt ear and cheek bone
## 19077 During yard call in hu#3, officer jackson noticed inmant bleeding from the mouth and when inmate attempted to fight another inmate he got in between the two inmates and held one inmate against the wall. Officer jackson was scratched by one of the inmates
## 19078 Duringi training, EE passed out due to the heat.
## 19079 Durning recreation activies a fight broke out between students, while restraining students someone fell across Mr. Browns knee twisting it from behind
## 19080 Durning training employee had his left wrist and hand twisted to it popped in his fingers and he has numbness in his left hand
## 19081 Durning unarmed self defence training employee rt wrist was twisted and it popped and he had sharp pain from wrist into hand
## 19082 Dust blew in right eye
## 19083 Dust blew in right eye as a lawn mower passed by employee.
## 19084 Dust falling from boxes caused allergic reaction hives on legs, face, arms, and stomach
## 19085 Dust fell into EE's rt eye.
## 19086 Dust from a door being sanded caused EE to have anasthma attack
## 19087 Dust from chemical at work irritating cut on face.
## 19088 Dust from skill saw went into EE's rt eye.
## 19089 Dust particles dispersed into eye while throwing away trash in outdoor waste container ()
## 19090 Dust particles got into particles eye - contact lens. Caused irritation wokring at secretary's desk on inventory list-rt eye
## 19091 Dust, mold and mildew bacteria coming from vent in office. Respiratory congestion
## 19092 Dust, mold, and paint fumes caused by construction at the local office inflamed employee's sinus cavity, causing swelling and redness.
## 19093 Dust/soot particles coming out of filters in ventilation system
## 19094 Duster handle did not retract and caused a scrape on employee's shin
## 19095 Dustig stairrails fell down stairway, caught self w/right arm
## 19096 Dusting a bookcase in a dormitory room, when a splinter entered into her right forearm.
## 19097 Dusting area to paint that insulation had been pulled out previously thinks piece of insulation in right eye
## 19098 Dusting bookcase in community room and dust went into rt eye.
## 19099 Dusting desk off in a office and bumped the desk with my knee. Right knee
## 19100 Dusting pews and pulled muscle in back.
## 19101 Dusting stair rail and missed a step; twisted arm when holding on to rail to keep from falling
## 19102 Dx with lateral epicondylitis 4 yrs ago, increasedworkload aggravated exisiting condition
## 19103 Dye on trash got on employee's eye
## 19104 E alleges that he was in a state car and a small object was blown into his left eye by fan on the air condiitoner.
## 19105 E estates a box of chicken was about to fall and EE went to catch it and it pinned hand against thefreezer door sill injuring it.
## 19106 E estates while performing a TB skin test, accidently stuck lft index finger with the needle.
## 19107 E ewas holding elevator door open for inmate to be transferred to another loaction and door cloosed on hand.
## 19108 E ewas monitoring students showers water on the floor caused him to slip and fall twisting his knee.
## 19109 E was carring a patient back to the unit and hurt back.
## 19110 E was preparing to pump gas into his state vehiclewhe mechanism that locks teh gas nozzle in the "open flow" position was left on and gas spilled on e
## 19111 E was sitting at control desk when eye became irritated in "c" dorm.
## 19112 E. States she was sitting at the front desk while tech. Was cleaning machine both manually & w/ a vacuum sucion, - chemical could be smelled in air.
## 19113 EE "blacked out" while driving department buggy
## 19114 EE & 2 other EE's had transferred an obese pt fm bed, to bath, back to bed. Low back began hurting ()
## 19115 EE & 3 other co-workers were removing a 264lb printer from a shipping pallet. Strain low back.
## 19116 EE & 3 other employees were in back of truck that was deliverying meals to the other facility. The driver took curve too fast, EE fell to floor.
## 19117 EE & Dr. Were putting dog on echo table for ultra sound, dog resisted, which caused strain of left upper back
## 19118 EE & a co-worker were moving a box containing chemicals & after smelling a strong odor they dropped the box exposing them to fumes.
## 19119 EE & and coworker were changing resident, resident got agitated and started kicking, resident kick EE right hand to the bed rail ()
## 19120 EE & another EE was placing client in her chair and struck her leg against pedal of bathboard. Bruise to rt lower leg.
## 19121 EE & another EE was trying to get the resident up out of the bed into the wheelchair. They tried to stand the resident up & he tried to sit down to early EE held up resident & pulled something in the lower part of the back on the left side ()
## 19122 EE & another EE were attempting to assist resident in the wheelchair, as they were sitting resident up she kick EE in the chest ()
## 19123 EE & another EE were lifting a patient from the floor. Patient was resting her head on bed EE was on her knees & hurt her arm while picking her up.
## 19124 EE & another EE were moving a desk going up stairsdesk was on hand truck & other EE was pulling up on hand truck. Desk fell & struck EE on low r ankle
## 19125 EE & another EE were putting resident to bed when he felt a sharp pain in lower back
## 19126 EE & another hct were pulling resident up in bed EE back started hurting, EE back popped ()
## 19127 EE & another staff helping pt up ramp when pt grabbed EE with both hands & squeezed them. Pt began to kick & hit unprovoked
## 19128 EE & another staff lifted client out of chair intobed & EE felt pull in left shoulder blade.
## 19129 EE & another staff member bumped heads while assisting to try to break up a fight between 2 patients. ()
## 19130 EE & another staff member were going to turn pt with drawsheet. When lifting patient on drawsheet EE felt numbing feeling in lower back.
## 19131 EE & another staff member were moving a body on body tray from lower rack to higher area, wgt of tray shifted, twisting EE's rt wrist
## 19132 EE & another staff member were unloading a large genny chair off van. Caused strain in right shoulder.
## 19133 EE & another staff transferred client from bed to wheelchair. EE lifted lower body of client & felt pain in back
## 19134 EE & client EE were lifting a box - client let go of box causing all the weight to shif to EE & weight jerked left shoulder
## 19135 EE & client where shreding paper. Next day had re-action to paper particle. Also, client had cold. Allergic reaction head, resp., skin, hip, leg, foot
## 19136 EE & co-wkr were assisting a pt to standing position, pt dropped down, EE felt bk pull ()
## 19137 EE & co-worker had a pt by each of their arm, pt threw them self on floor causing EE to fall in to locker hitting her back. ()
## 19138 EE & co-worker moving a metal storage cabinet, through doorway, when cabinet shifted on dolly, crushing EE hand betweend cabinet & brick wall
## 19139 EE & co-worker was releasing pt out of psych restraints, pt tried to kick co-worker with her leg, back began to hurt. Low back.
## 19140 EE & co-worker was restraining a juvenile taking him to the floor to place restraints when he rec'dinjury to his left shoulder & neck.
## 19141 EE & co-worker were lifting pt to put her in chairdidn't notice pain until she was helping another pt, can't raised r arm
## 19142 EE & co-worker were loading sea kayaks onto the trailer for afternoon trip, EE stepped over arm of trailer, pin disengage, trailer fell on EE
## 19143 EE & co-worker were moving a pine straw baler thathad been built in this shope. EE strained his left lower extremities.
## 19144 EE & co-worker were transferring a client from thetrolley to wheelchair. After placing client in chair, felt pain in upper part of back.
## 19145 EE & co-worker were unloading truck when co-workershut EE's finger in tailgate causing laceration tort. Ring finger. Will return to work 4-1-8
## 19146 EE & coworker attempting to arrest subject & she resisted several times causing bruises to EE's rt upper arm
## 19147 EE & coworker taking inventory on 2nd floor of music house. As they descended the steps, EE missed the last step. ()
## 19148 EE & juvenile was moving materials from 1 locationto another when she tripped on broken pavement injuring rt. Knee.
## 19149 EE & nurse was given ad'ls to resident when he swung & hit EE across the face in the nose EE glasses fell to the floor ()
## 19150 EE & pt fell to floor & rooled over onto EE left wrist, also pulled lower back. Pt agitation. Left wrist & lower back.
## 19151 EE & resident entering door when resident jerked away causing her to loose her balance & hit her right knee on metal portion of door
## 19152 EE & resident lifting box onto truck. EE felt sharp paon in lower back & stopped immediately
## 19153 EE & several students were out hitting golf balls & student mistakenly struck EE in the corner of left eye.
## 19154 EE & students were constructing flower pots. One of the students was hammering & a nail flew from the hammer & hit EE in the eye.
## 19155 EE & two other staff had to put client in pic, client kicked EE on right hand
## 19156 EE & two other staff were attempting to restrain an out of control juvenile. EE sprain left thumb.
## 19157 EE - wind blew towwer door and she tried to grab it, to keep it from slamming against railing. Rt wrist sprain
## 19158 EE 1:1 w/ pt, pt swung @ EE, EE tried to block w/hand, left thumb hit ()
## 19159 EE 1:1 w/pt in bathroom, pt attacked EE, hitting them in head and scratching ()
## 19160 EE @ comfort suites, stood up to walk to bathroom slipped and twisted knee. Knee swelled and could not walk on it.
## 19161 EE EE in use of force training, playin the part of the inmate when EE entered cell using body sheild. Sheild rubbed against forehead, causing abraision
## 19162 EE EE taking trash from boxes & putting on dollie & carring to dumpster. Back started hurting the next day. May have reinjured back muscles.
## 19163 EE EE was walking consumer to bathroom when consumer struck EE in the lower back.
## 19164 EE May have been bitten by unidentified insect on rt hand
## 19165 EE May have been checking in serials and shelf reading doc
## 19166 EE May have been exposed to asbestos while cleaning fan coils; contractor did not fully clean area ()
## 19167 EE May have been exposed to the hepatitis c virus.
## 19168 EE May have gotten posion oak/ivy while pulling weeds.
## 19169 EE a piece of debris fell into his eyes while supervising inmates replacing a light fixture (lt eye)
## 19170 EE a pt up fm chair, pt began to fall, EE broke pt's fall, all weight went to EE, the sudden shift of weight caused discomfort in right ankle ()
## 19171 EE abraded her rt finger on with counter top or broken glass while working with exhaust hose
## 19172 EE accidentally bumped equipment in the course of performing routine operations and cut rt hand
## 19173 EE accidentally caught left hand in cooler latch ()
## 19174 EE accidentally cut her left middle finger with a saw
## 19175 EE accidentally cut her rt thumb on a file cabinet
## 19176 EE accidentally dropped scapel from hand and the blade cut rt hand thumb.
## 19177 EE accidentally hit glass; causing it to break and got glass in her eye and scratches to hand
## 19178 EE accidentally hit her right knee against the inside corner of her desk when she was getting up from her desk chair.
## 19179 EE accidentally knocked over a cup of hot water that was sitting on a desk causing it to spill on his rt arm/hand
## 19180 EE accidentally punctured her rt eye with a pencil
## 19181 EE accidentally ran into side os desk and got lrg splinter in left thigh
## 19182 EE accidentally shot self in the rt thumb w/ a nail gun
## 19183 EE accidentally shut door of van on his hand whilebeginning to leave job site.
## 19184 EE accidentally sprayed self in the face with board cleaner... Eye irritation
## 19185 EE accidentally stepped into a hole and fell into a hole
## 19186 EE accidentally struck left index finger while nailing rafters.
## 19187 EE accidentally stuck exacto blade in left hand
## 19188 EE accidentially fell while climbing over a log and landed on wrist
## 19189 EE accidentlt stuck self in the palm w/ needle during a neinpuncture procedure.
## 19190 EE accidently closed a sliding glass door on his left middle finger. Fracture.
## 19191 EE accidently closed door on finger.
## 19192 EE accidently drank paint thinner from wrong bottle
## 19193 EE accidently fell on steps trying to enter back door. Rain formed puddle on steps. Right knee and both shoulders.
## 19194 EE accidently fell on wet floor injuring her rt thigh
## 19195 EE accidently had chemical sprayed on top of head
## 19196 EE accidently hit left hand on printer stand
## 19197 EE accidently hit or bumped her hand on her computer monitor (contact was on rt. Hand & wrist area.)
## 19198 EE accidently hit rt hand between thumb snd index finger on wheelchair.
## 19199 EE accidently hit wall when turning around in bathroom and hit rt knee
## 19200 EE accidently mashed right thumb pulling a wagon.
## 19201 EE accidently needlestick durin surgery. Left fin-ger.
## 19202 EE accidently punctured right middle finger w/a used lancet
## 19203 EE accidently ran into control room pass box
## 19204 EE accidently rubbed some bengay ointment in her rt eye
## 19205 EE accidently slipped and fell searching tractor trailer cab used in a bank robbery. Head, back, lthip, lt elbow, rt leg, upper front tooth.
## 19206 EE accidently stepped in a hole and jarred his back
## 19207 EE accidently stuck herself with a needle... Left index finger
## 19208 EE accidently stuck his thumb with needle after drawing blood.
## 19209 EE accidently stuck with a needle after drawing blood.
## 19210 EE accidently touched hot muffler of gas powered pressure washer. Burned rt hand.
## 19211 EE accompanyig resident to dining room & noted feeling of pull un rt shoulder. Muscle pulled in rt shoulder area.
## 19212 EE acquired a puncture wound on a rusty dumpster while cleaning up..
## 19213 EE adding bottles to a nitic acid bath and splashed into her eyes
## 19214 EE adding water to radiator-appeared to be non-pressured-opend gasket cap and hot water shot out onto EE's arms.
## 19215 EE adjusted a post on large outside tent and notedmuch heavy moving/lifting felt pain between his shoulders.
## 19216 EE adjusting a denture in lab; no patient involved some acrylic resin got into EE right eye.
## 19217 EE adjusting belts exhaust fan with fan off some thing flew into eye. Foreign body in lt eye.
## 19218 EE adjusting fork & it came off causing it to droplt leg, hand abrasion & foot bruised
## 19219 EE adjusting height of metal shelf-cut rt hand
## 19220 EE adjusting position of boat on trailer w/ another EE, strained calf muscle while pushing bow of boat to new position ()
## 19221 EE adjusting pumps under deposition chamber. As hestood up, his head was struck by a piece of metal on the deposition chamber
## 19222 EE adjusting the level of box blade on the tractor when left hand slipped and jammed against lift bar of tractor
## 19223 EE administered cpr w/o a mask/safety device
## 19224 EE administering medical tx to unhappy cat-cat's claw penetrated vein on rt wrist.
## 19225 EE administering medication to a horse when horse jerked its head and dislocated the EE rt shoulder
## 19226 EE admitted to hospital as a result of high blood pressure which she is claiming are stress related to job
## 19227 EE advised that debris got in his left eye while operating creier tractor installing culvert.
## 19228 EE advised that he was lifting the pood chart up the stairs ib a dorm and he felt a pop
## 19229 EE advises that while struggling with an arrestinghe thinks he pulled a muscle in his back.
## 19230 EE advising client to sit back down-client grabbedee's finger and bit it.
## 19231 EE after injecting insulin she pricked her finger with needle. Lt middle finger.
## 19232 EE aggravated injury when lifting leg over steerinwheel of mower
## 19233 EE aggravater this preexisting injury during self-defense and baton techniques training. Injureback on 012303 in car accident
## 19234 EE agitated patient bit EE on arm. Human bite on left forearm.
## 19235 EE aided in turning a 276 lb. Patient frequently for 2 days.
## 19236 EE alleded she was walking the hallway of stone building when she tripped an fell on wet floor that had just been mopped injurying l ankle & knee
## 19237 EE alleded that when he was going into the door tobreak up a fight the door slammed into his shoulder hitting the upper right shoulder area
## 19238 EE alledes anxiety and depression caused by the supervisors conduct.
## 19239 EE alledge she was walking to a meeting and fell in the mcnutt parking lot. Twisted foot and felt pain in right hand. ()
## 19240 EE alledged foot got caught under chair & twisted around causing pain in rt. Foot, leg & hip. Lumbarback strain & rt. Ankle sprain.
## 19241 EE alledged she was lifting a piece of luggage that a student was retrieving when there as a load popping noise and she felt pain in lower back.
## 19242 EE alledged that he was attemptign to move buffer when he slipped and fell to the floor landing on his right side.
## 19243 EE alledged that he was involved in a use of force while placing the inmate on the concrete floor, he accidently hit his knee on the floor.
## 19244 EE alledged that while attempting to disarm her opponent & take him down, she twisted her rt knee & heard a cruching sound with pain
## 19245 EE alledged that while he was assigned to the roadsquad he stepped in a hole beside the road twisting his left ankle.
## 19246 EE alledged that while he was in the process of moving the desk table to the sign out area, and ashe lifted the table his upper back popped.
## 19247 EE alledged that while sitting in the chair in assigned station c4 & leaned her arm on console forearm wedged between console & frame of panel
## 19248 EE alledges he was hit with the cuffs that were handcuffed to inmate striking him on his lt side of his face.
## 19249 EE alledges he was moving 4 boxes from floor to a cart 14 inches high, 1 at a time. On the 4th box he felt pain & something pull in his lower back.
## 19250 EE alledges he was watching inmates spreading duston the camp site at hanging rock state park, when he felt like a piece of gravel was in eye
## 19251 EE alledges she was emptying a bucket and some chemicals splashed on her right forearm. ()
## 19252 EE alledges she was in darkroom when an engineer contractor came up behind her and kissed her on the cheek
## 19253 EE alledges that he injured his rt upper arm whilepulling on the starter rope of a weed eater while pulling he felt something in his upper rt arm
## 19254 EE alledges that he was in food svc supr office talking on the wall mounted phone and an inmate pushed on the door and it struck him on l shoulder
## 19255 EE alledges that he was walking on break and was stung on the neck by a bee. ()
## 19256 EE alledges that in route to her office, slipped in dooor of office and fell backwards left ankle hurt.
## 19257 EE alledges that she was hit by automatic door segregation
## 19258 EE alledges that she was injured in unarmed self-defense on 05. 30. 96
## 19259 EE alledges that while ascending steps of tower # 10 to recieve 2nd shift officer twisted right ankle.
## 19260 EE alledges that while assigned to med. Yard EE threw a bag of trash at the trash and missed. EE picked up and threw it away she stood up and hit head
## 19261 EE alledges that while attempting to open the doorat post #7 that he alledgedly felt a sharp pain, while opening the door.
## 19262 EE alledges that while escorting and handcuffing inmates to and from the showers, her little fingeron her right hand was cut.
## 19263 EE alledges that while repairing high voltage line and he was shocked by high voltage
## 19264 EE alledges that while supervising road squad inmates and walking backwards she stepped on a can causing a twisting of rt foot
## 19265 EE alledges was cleaning 2nd floor offices at euc and brushed against an office chair which had a screw or nail protruding from the ipper part of the chair and received a deep scratch/puncture to right forearm ()
## 19266 EE alledges was coming into the gym, found the door locked and when she looked in the window for assistance in opening the door it was opened on her, the window sill hit her nose with considerable force. ()
## 19267 EE alledges was emptying trash and bruised left index finger trying to dislodge trash from the bot- tom of the can
## 19268 EE alledges was in the golf cart with his supervisor and turned around to look at something and when the golf cart started to move he got his right foot caught between the golf cart and the curb ()
## 19269 EE alledges was on approved business trip in orlando, fl, was showering in the hotel and slipped and fell in the tub. She hit her right lower back on the edge of the tub and her right side hip, arm and shoulder area. ()
## 19270 EE alledges was putting lumber into the sheet rack and his hand struck the edge of a piece of expanded steel grating ()
## 19271 EE alledges was sitting on couch while other EE's arranged furniture for a staff meeting, other EE's pushed a couch into her right knee bruising it
## 19272 EE alledges was walking around the outside of a campus building and tripped over a pipe, lost her balance and fell injuring her left ankle & rt side
## 19273 EE alledges while walking back to dirt path on north yard. She stepped in a dirt hole/gulley twisted rt ankle. Cont to walk felt sharp pain.
## 19274 EE allegdes repetitive lifting & bending has caused strain in back.
## 19275 EE allege she was emptying trash into dumpster when she cut her lt hand as she pushed trashbag in
## 19276 EE allege she was walking down stairs & "stepped down wrong" causing her to sprain her left knee & ankle.
## 19277 EE allege she was working her normal shift when she was over come by fumes from painting in the bldg. EE experienced headache and nausea. ()
## 19278 EE allege that he received a splinter in palm of right hand while lowering a wooden a-frame ladder.
## 19279 EE alleged "felt a sharp pain in my lower back & it felt as if something was pulling" while assisting medical staff in "holding down juvenile legs".
## 19280 EE alleged a child threw a toy and hit her in the face close to rt eye.
## 19281 EE alleged a drawer on desk cut her upper thigh.
## 19282 EE alleged allergic reaction to gloves.
## 19283 EE alleged as she attempted to get into the doc van she hit her lt knee on the step and corner of the van door
## 19284 EE alleged dirt went into his eyes while he was cleaning the parking deck. ()
## 19285 EE alleged drill bit slipped from work, punctured finger while drilling wood at an angle.
## 19286 EE alleged eh was moving a student desk in a classroom when the desk collapsed and fell on her right toe. ()
## 19287 EE alleged excessive dust in an old duct that the EE was discarding got into his left eye.
## 19288 EE alleged he applied the brakes on his bike causing it to throw him over the handlebars injuring his hands, wrists, face and knees.
## 19289 EE alleged he exited the oakland parking deck and proceeded down the steps towards spring garden st. When he steeped of the curb, he slipped on some ice and legs came out from under him and he fell on his back. ()
## 19290 EE alleged he fell on curve when taking trash out of building falling onto his left knee. ()
## 19291 EE alleged he fell out of chair. ()
## 19292 EE alleged he fell when stepping onto the floor that had just been stripped with wax stripper causing him to fall and hurt lower back, groin, hip/leg.
## 19293 EE alleged he grabbed the rope on the fly rail to slow it down and to keep it from falling too fast causing rope burns to fingers.
## 19294 EE alleged he is not exactly sure how injury occurred, but he noticed that his back begin to hurt after training with the ert/swat team 3/19/09 - 3/20
## 19295 EE alleged he missed last step going down steps & fell - turned left ankle.
## 19296 EE alleged he opened a window from inside, raised up and hit his head. ()
## 19297 EE alleged he opened back hatch of mail van & did not lift high enough. It fell on his finger.
## 19298 EE alleged he opened the back door on b dorm and closed it unaware that his lft hand was on door frame-slammed on lft middle finger
## 19299 EE alleged he performed cpr on a person who was none responsive. He did not use a face mask.
## 19300 EE alleged he pulled muscle in back when bent overto pick up debris from deck while cleaning.
## 19301 EE alleged he pulled muscle in left upper leg nearhip while running & dragging a 150 lb manikin in 2009 swat competition.
## 19302 EE alleged he slipped on stairs between 1st and 2nd floor on his way down to put envelopes in campus mail. () left clavicle fracture & bruise left thigh
## 19303 EE alleged he stepped on pipe approximately 14 ()
## 19304 EE alleged he twisted his knee while directing traffic for camps. He has not returned to work since the accident happened.
## 19305 EE alleged he walked out the backdoor, twisted hisankle & fell down the stair injurying his knees, lt thumb, rt side chest & head, & left ankle.
## 19306 EE alleged he was a passenger in vehicle that driver lost control of vehicle and hit a tree head on causing chest injury. ()
## 19307 EE alleged he was approached by an aggressive inmate while working pods inmate attempted to hit EE and injured his rt hand
## 19308 EE alleged he was assigned to work on a large-scale move of library materials from one floor to another. This is a repetitive motion injury resulting from grasping and gripping materials to transfer them shelf to shelf. ()
## 19309 EE alleged he was attempting to move a copier/printer and was cut by the bottom of the copier/printer. Injured left hand ()
## 19310 EE alleged he was carrying coin bags when he felt pain & numbness in lt arm from shoulder to fingers
## 19311 EE alleged he was carrying out trash to the dumpster and stepped on ice and fell on his left thigh. ()
## 19312 EE alleged he was changing out container at springgarden apartments trash chute room & an air borne particle got in his eye.
## 19313 EE alleged he was chasing a suspect that ran from him on a traffic stop and was injured while attempting to take suspect into custody. Inj rt. Knee and shin ()
## 19314 EE alleged he was cleaning carpet & hit elbow as he was bringing equipment out of room.
## 19315 EE alleged he was cleaning caustic mix tank when small amount of caustic splashed into his left eye. EE was wearing face shield and apron but no safety glasses. ()
## 19316 EE alleged he was cleaning out a drain when glove was caught in rotating snake. It pulled off his glove and four fingers back to the knuckles.
## 19317 EE alleged he was clearing a stopped up sink drainwhen he removed the p-trap, the chemical backed out of drain and onto his face.
## 19318 EE alleged he was climbing down off the air handler - and had a spasm in his back.
## 19319 EE alleged he was cutting a piece of paper and cut finger with scissors.
## 19320 EE alleged he was driving from the science blding up tate st to the shop on oakland and stopped to allow a bus to pass. The bus's mirror hit the truck's mirror causing it to break and glass to hit is face and chest. Gove hlth instructed him to rinse eyes
## 19321 EE alleged he was driving into the sink building compound when something flew into his rt eye causing corneal abrasion.
## 19322 EE alleged he was driving the van from post #6 to post #7 and went too fast through a ditch that hasbeen dug out too deep to drainage across path.
## 19323 EE alleged he was filing paperwork, went to remove a staple and staple penetrated through left thumb; dime-size bleeding. ()
## 19324 EE alleged he was getting down from truck he was wworking on, stepped on the rack & twisted his rt ankle.
## 19325 EE alleged he was getting off lawn mower in shop &fell hitting rt knee & rt elbow on cement floor
## 19326 EE alleged he was getting out of his truck at the weatherspoon art bldg to shovel snow and he fell on the ice and snow injuring lf shoulder and lf hand.. ()
## 19327 EE alleged he was going into the rec center and bent down to fix the carpet and put his hand on the other door when the door shut on his hand. He hurt his right hand and went to gove health. ()
## 19328 EE alleged he was going up stairwell carrying equipment, missed a step and fell onto a step injuring right lower leg. Equipment was spray bottle and broom. ()
## 19329 EE alleged he was handling condenser water at mciver chiller plant and noticed a rash approximately 30 minutes later. Has done this in the past with no reaction. ()
## 19330 EE alleged he was hanging banners when wind caughtthe banner; he tried to catch the banner, but cut his rt hand w/ utility knife.
## 19331 EE alleged he was hit by a car while crossing the street on the way to the humanities building. Injured left side face, left ankle, right shin and lower back. ()
## 19332 EE alleged he was in the back of a truck picking up rocks out of a bin. When he picked up one, another slid falling onto his right hand.
## 19333 EE alleged he was in the dining hall air handler taking 5 gallon buckets of water lifting them overhead thru the roof hatch to someone else for about 4 hours. By sat night the pain kept getting worse. Stayed on mon 8/30, came in tues and went to gove. (
## 19334 EE alleged he was in the nrl mechanical room doing friday chiller checks and then woke up on the floor. He called phill rash b/c he knew where to find him. Campus police, ambulance and sup were called. Was sent to moses cone hospital. ()
## 19335 EE alleged he was injured when he tackled suspect & landed on his knees oright n the asphalt road. Surgery 3/3/09******r knee
## 19336 EE alleged he was inside #3 boiler steam drum removing internal components and laying on left side removing a nut with wrench when he felt a pain in r
## 19337 EE alleged he was kneeling down to put a boot on avehicle when his knee slipped off the curb which aggravated a pre-existing back injury.
## 19338 EE alleged he was lifting an electric motor to puton the lift. When he let the motor down, he had pain in the arch of his right foot.
## 19339 EE alleged he was lifting an exhaust fan & had pain in his lower right abdomen.
## 19340 EE alleged he was loading straw blower and bale of hay on back of truck when wind blew straw into his face causing him to sway backwards and jerk his
## 19341 EE alleged he was loading the gantry on back of truck, it slipped & he caught it so it wouldn't fall and hurt his middle-lower back.
## 19342 EE alleged he was making rounds and walking betweethe school building and tripped over some dirt and fell
## 19343 EE alleged he was moving a desk down a hallway and caught his left pinky finger against a brick column. Pinched finger, left hand. ()
## 19344 EE alleged he was moving sandwich board sign and tripped. Fell on concrete floor of deck. Injured hand and hip. ()
## 19345 EE alleged he was on assignment at smith high scholl when a camera w/ a large lens slipped off his shoulder and right index finger was caught the weight of equipment. Rt index finger bent backwards. ()
## 19346 EE alleged he was painting stripes for parking spaces, he bent slightly over to push roller forward and pulled something in lower back when he straigh
## 19347 EE alleged he was picking up bag of trash that was too heavy and felt something pull in his back/side. ()
## 19348 EE alleged he was picking up meter collection bagsout of truck and felt pain in his back.
## 19349 EE alleged he was pressure washing and developed arash on his forearm from the hose.
## 19350 EE alleged he was pulling some concrete bags off the back of the truck ans had pain in his lower back. ()
## 19351 EE alleged he was pushing 600 lbs motor across concrete floor and jammed his toe into the motor.
## 19352 EE alleged he was rotating a large scenic which fell over onto his left foot.
## 19353 EE alleged he was sitting at his desk working on the computer and had some pain in his chest. He went outside to have a cigarette and returned to his desk. He went to the urgent care and was transferred to moses cone-diagnosed w/ a heart attack. ()
## 19354 EE alleged he was sitting in control room waiting 2nd shift to give turn over briefing when he experience severe chest pain and difficulty breathing.
## 19355 EE alleged he was standing & leaning over computerwhen he felf a pop in his lower back followed by severe pain. He wasn't able to stand of walk.
## 19356 EE alleged he was starting a weed eater & hit his hand on the gas cap, scratching his r. Mid. Finger
## 19357 EE alleged he was stripping floor when machine hita dry spot & twisted his back. Felt fine for the day, hurt the next. Lb surgery 10/30/08******
## 19358 EE alleged he was stripping floors and lifting a low speed buffer when he lost his balance due to a latch giving way shifting the weight of the buffer and causing him to fall. ()
## 19359 EE alleged he was struck by a violent inmate during a use of force in left eye, & his left thumb was bent back.
## 19360 EE alleged he was traveling south on bitting st when another vehicle failed to clear the intersection and collided w/ hinshaw's vehicle. Bump on left side of head, sm abrasion lf. Knee.
## 19361 EE alleged he was trimming a tree and cut lt thumbwith the clippers.
## 19362 EE alleged he was under building doing repair whencrawling out he felt something bite him in the side. Gove health diagnosed a spider bite.
## 19363 EE alleged he was unloading lights and equipment off the electrics. He had one glove on when the rope began to shoot up at an immense speed. He grabbed it with both hands to stop it injuring rt hand. ()
## 19364 EE alleged he was using a utility knife to trim a plastic part of the siren off his car when the blade hit his left thumb and cut it.
## 19365 EE alleged he was using blower & sweeper & noticeddiscomfort in ears after use.
## 19366 EE alleged he was using carpet extraction machine & he hit his hand on a computer that had been taken apart; he injure his right little finger.
## 19367 EE alleged he was walking near a construction project at the library and watching what was happeningwith the project when he stepped off the curb and
## 19368 EE alleged he was walking sup steps inside mciver building when he slipped, grabbed rail and injuredlower back.
## 19369 EE alleged he was walking toward jackson library when he felt a sharp pain in left knee. EE claims possible factor is lifting computers on 3/19/09.
## 19370 EE alleged he was walking up sidewalk when steppedon difference in concrete and fell. Injured ankle.
## 19371 EE alleged he was walking up steps when legs gave out and he fell backwards and hit his head.
## 19372 EE alleged he was working around the a/c units weeding and ()
## 19373 EE alleged he was working in the equipment room in mossman and when he raised up he hit his head on a pipe. He hit the right side of his head and eye. ()
## 19374 EE alleged he was working in the lab on a -80 freezer, he touch the corner of his right eye and had a burning sensation. ()
## 19375 EE alleged he was working on a ladder, came down and missed last two rings, twisted and hurt back. Went home at the end of the day and went to gove health the next day. No follow up needed. ()
## 19376 EE alleged he was working on a project, went to sit back on a bucket and missed the bucket falling to the ground and hit his head and his hand. ()
## 19377 EE alleged he was working on the router table whenrouter hit a knot in the wood, the wood kick back and his left middle finger to hit router bit.
## 19378 EE alleged he was wrestling a student athlete and was kneed in the forehead while attempting a move. Caused deep laceration on forehead. ()
## 19379 EE alleged he went into ceiling looking for misplaced tool and when got back to shop noticed fingers were swollen and rash on fingers, knees, elbows. Went to gove health and got injection for swelling, ()
## 19380 EE alleged injured left ankle walking down steps at brown slipping on ice causing right foot to slip causing left leg and foot to go backwards. ()
## 19381 EE alleged injury to back occured when he was stepping out of the transfer bus, wet steps
## 19382 EE alleged inmate threw urine on him. Urine on left arm.
## 19383 EE alleged it was raining & the linoleum floor was wet. EE was entering building & went to go up the stairs when slipped & fell to the floor - fx wrist
## 19384 EE alleged pick up outside trash to go to big trash can at the back door. He accidentally tripped on carpet and fell down. Injured neck. ()
## 19385 EE alleged right knee sore due to moving furn. From ground floor to 3 floor in cotton residence hall. The other guy who was helping slipped and all the furn weight went to his knee. ()
## 19386 EE alleged she accidentally stuck left index finger with a syringe while working with protein sample from cells collect from three human subjects. ()
## 19387 EE alleged she contracted MRSA during daily cleaning routine.
## 19388 EE alleged she cut finger with exacto knife while using it to cut stock paper to make pamplet.
## 19389 EE alleged she entered the building where her office is. The tile floors had just been waxed heavily and she took one step inside the door and completely lost footing and fell on her left wrist. ()
## 19390 EE alleged she fell on icy sidewalk of forrest street while reporting to work. Abrasion to right knee. ()
## 19391 EE alleged she fell walking down wet stairs that weren't labelled as being wet and was inside the parking deck. Broke tailbone and rib, muscle strains in lf hip and neck. ()
## 19392 EE alleged she fell while descending outdoor stairs between mossman and eliot center.
## 19393 EE alleged she felt a sharp pain in her wrist when opening (unlocking) doors and locking them back. ()
## 19394 EE alleged she grabbed the rope on the fly rail toslow it down. The weigh was too much and forced the rope through her fingers causing rope burns an
## 19395 EE alleged she hurt her back moving a mattress. Act 536550
## 19396 EE alleged she hurt her right ankle at a training exercise. She was asked to run and jump during theexercise. She did so, landed on her r ankle
## 19397 EE alleged she injured back from repetitive liftngand carrying boxes to recycle bins at work. Deniesany specific incident
## 19398 EE alleged she injured rt arm, wrist & shoulder while bagging documents for shredding. Cat 660274
## 19399 EE alleged she lifted a sign which caused shoulder pain to start. ()
## 19400 EE alleged she missed step and fell on left hand on her lunch break. EE not required to punch out during lunch break.
## 19401 EE alleged she misstepped off curb while directing traffic on north drive hurting left ankle. ()
## 19402 EE alleged she mixing a new cleaning chemical withhot water when the mixture produced a chemical fogcausing her to cough & bring on bronchospasm.
## 19403 EE alleged she nearly fell when stepping off curb outside of mossman bldg on her way to lunch injuring rt ankle & knee.
## 19404 EE alleged she noticed burning sensation and swelling on neck while on playground with children. The next morning swelling and pain was worse and EE went to her personal physician. ()
## 19405 EE alleged she opened a letter that had off white powder in it. She touched the letter with a tissue and called police. Later that evening, she start to come down with sore throat, temp of 100. Believes it's just a cold, but police sent to gove health
## 19406 EE alleged she placed a piece of cardboard to release can of disinfectant-when start to spray, the spray hit her right check and she inhaled some.
## 19407 EE alleged she poured liquid from refrigerator in her cup, dranked from it, and discovered it was bleach
## 19408 EE alleged she pulled door of south wing, door was locked, injuring arm.
## 19409 EE alleged she slipped and fell while mopping bathroom. ()
## 19410 EE alleged she slipped on gravel on steps behind mciver parking deck, fell and injured lf. Foot. ()
## 19411 EE alleged she tripped or slipped down a flight ofsteps to landing injuring lt knee, rt shoulder & head.
## 19412 EE alleged she tripped over a trash can that she did not see and was in a new place. She stumbled, fell forward and hit the left side of head and right wrist on bookcase. ()
## 19413 EE alleged she tripped while walking on uneven sidewalk outside of the alumni house. ()
## 19414 EE alleged she was a passenger in patrol car. When she stepped out of car, driver accidentally hit gas instead of brake causing car to jerk forward and the passenger door to hit EE. ()
## 19415 EE alleged she was applying stripper to floor and as she walked across, she slipped and fell.
## 19416 EE alleged she was bending over to pick up papers from lower book shelf when she felt a sharp pain in lower back.
## 19417 EE alleged she was buffing classroom & tripped over buffer causing her to fall to floor injuring rt arm and leg.
## 19418 EE alleged she was carrying a box to parking lot wwhen she missed a step & fell to ground. Injured right foot and ankle.
## 19419 EE alleged she was carrying four books down the ne stairwell in jackson library when the toe of her shoe caught the rubber on the stair step and she fell to the landing between the 3rd and 2nd floors. She fell forward and struck her head and shoulder. ()
## 19420 EE alleged she was checking on gas key that wasn'tworking. When she stood up from workstation a sharp pain went down spine and left leg.
## 19421 EE alleged she was cleaning a bathroom stall. Whenshe was coming out of the stall, she hit her rightarm on the corner part of door latch.
## 19422 EE alleged she was cleaning a shower when she slipped on some water and fell onto her back.
## 19423 EE alleged she was cleaning a window; when she raised the window, the window came down onto her lefthand.
## 19424 EE alleged she was cleaning in the bathroom when an insect flew in the window and bit her. ()
## 19425 EE alleged she was cleaning nmr glass tubes when the cap was trying to be removed the tube broke and went all the way through the plastic gloves injuring the index finger on left hand. ()
## 19426 EE alleged she was cleaning the police dept kitchen when she hit her rt foot & toes on a computer monitor left on floor. Broke toe on rt foot.
## 19427 EE alleged she was closing the control booth door after recieving the booth keys and accidently slammed the door on her right hand.
## 19428 EE alleged she was coming out of a building when EE slipped on ice on the stairs & fell. She injuredright lower leg (scrapped and bruised).
## 19429 EE alleged she was coming out of a building, stepped onto the cement, & fell landing on her rt side injurying her right hip, back and arm.
## 19430 EE alleged she was coming out of building, slippedon wet stairs (rain) hitting back on edge of step injuring back, tail bone, and ankle.
## 19431 EE alleged she was crossing spring garden st in the crosswalk when a car hit her and knocked her offher feet.
## 19432 EE alleged she was cutting metal & got some shavinin her right long finger while working; went to gove health on 2/22/08.
## 19433 EE alleged she was disposing of trash into a trash dumpster and when closing the door to this equipment, cut her right index finger on an area of the door. This area had been damaged to the point where a sharp edge had been created in the metal. ()
## 19434 EE alleged she was doing her normal work duties when she discovered she had a rash on her hands.
## 19435 EE alleged she was dusting ledges and cleaning tracks when rt. Fore arm start to swell and turn red. ()
## 19436 EE alleged she was emptying a trash can, went to turn, and hit her hand on the desk
## 19437 EE alleged she was engaged in a volleyball game w/students and jammed two fingers on left hand.
## 19438 EE alleged she was entering back door of the foustbuilding & stepped on a nail that was on the back entrance landing. EE removed the nail, put hyd
## 19439 EE alleged she was entering elevator & tripped b/celevator was not flush with the floor injuring herrt. Elbow and rt. Knee.
## 19440 EE alleged she was entering elevator when elevator door closed too fast and banged her left arm near elbow. ()
## 19441 EE alleged she was getting trash from entrance way outside and didn't realize brick was higher than walk way, tripped, fell down & injured left shoulder
## 19442 EE alleged she was getting up from a child sized table and moving around chairs and tripped and fell to the floor catching herself with her kneed and hands. ()
## 19443 EE alleged she was going to the restroom. Inmate was cleaning lobby floor, EE slipped and fell on her lft arm, back and buttocks
## 19444 EE alleged she was going up steps & missed a step causing her to pull left hamstring.
## 19445 EE alleged she was in a car accident at the corner of elm st and fisher st. Ran a red light and was struck by another vehicle. ()
## 19446 EE alleged she was in a ft. Pursuit w/ wanted subject and lost her footing, causing her to fall forward onto payment. Lac. On rt. Hand and lf knee. ()
## 19447 EE alleged she was leaving building via stairs when foot slipped on 3rd stair from bottom causing her to fall hitting hand, hip & shoulder.
## 19448 EE alleged she was leaving the brown building to go to class. She fell outside near the entrance of the building causing injury to her hand and wrist. (
## 19449 EE alleged she was leaving warehouse, went to check bay door to make sure it was secure. While walking back to vehicle and stepped into a sink hole. Tried to break fall w/ rt hand causing rt. Side to hit side of car. Contusion to rt hand and side body
## 19450 EE alleged she was lifting a box of books and felt pain and a pulling sensation in her left shoulder.
## 19451 EE alleged she was lifting a full mop bucket to sink to empty & fell down onto sink on one knee with the full bucket.
## 19452 EE alleged she was mopping stairwell and felt a pull in her back. ()
## 19453 EE alleged she was moving a table that had a metalframe underneath it. When she put the table down, she realized she cut her middle right finger.
## 19454 EE alleged she was moving files from cabinet to storage boxes when a staple caught lt thumb cuticle & tore it. About two wks later, it was infected
## 19455 EE alleged she was moving kick stool when metal edge hit and cut her leg.
## 19456 EE alleged she was on the phone during her lunch break walking through back parking lot. As she passed a bush, she was stung by a bee. ()
## 19457 EE alleged she was over come by fumes from I/m using stripper to do the floors in aggrey building
## 19458 EE alleged she was picking up trash from ground when dumpster door swung back and hit her in the head.
## 19459 EE alleged she was pouring mop water-water splashed on rt. Leg burning it. ()
## 19460 EE alleged she was pulling a garbage bag of linensup 3 flights of stairs twice causing a shoulder strain.
## 19461 EE alleged she was pushing & pulling on desk to move into another area when felt small pulling sensation in lower back.
## 19462 EE alleged she was removing an empty 5gallon waterbottle from cooler when the bottle struck her in the chin and knocked her teeth together.
## 19463 EE alleged she was reporting to work & fell on icelanding hard on her back & hitting her head.
## 19464 EE alleged she was returning to office from picking up name tags, opened the exterior door and hit big toe ripping half the toe nail up and cutting toe. Went to gove health. ()
## 19465 EE alleged she was sitting in her parked vehicle writing citation when another vehicle backed into her vehicle.
## 19466 EE alleged she was stacking art tables and picked up a table to mop when injured back and shoulder.
## 19467 EE alleged she was standing behind bill hardin when he pushed chair back. Chair smashed into her right foot. EE went to gove health for treatment.
## 19468 EE alleged she was standing beside ladder another EE was using to change fluourescet light bulb whena bulb fell, broke and glass hit her in eye.
## 19469 EE alleged she was stripping floor w/ buffer when buffer hit a hard area on floor causing buffer to jerk away from EE. She tried to control buffer, b
## 19470 EE alleged she was teaching class when a sculpturefell from a board the board hit her finger causinginjury.
## 19471 EE alleged she was teaming up on carrying a large package, walking backwards. As she was putting the package down, she caught heal on cart and fell forward, landing on rt. Hand and hip ()
## 19472 EE alleged she was trying to set-up folding table and tripped and fell on concrete floor injuring rt. And lf. Knees. ()
## 19473 EE alleged she was using carpet extractor & the pushing & pulling of machine cause right hand & wrist injury (sprain).
## 19474 EE alleged she was vacuuming steps, turned to go unplug the cord and slipped on step falling forward to the floor. Injured both knees, lf ankle, lf forefinger. ()
## 19475 EE alleged she was vacuuming when she tripped & fell hurting her right knee & right middle finger.
## 19476 EE alleged she was walking across campus when she slipped on loose gravel, fell and injured fifth metacarpal on lt. Hand.
## 19477 EE alleged she was walking across campus, stepped on pebbles in the sidewald and fell.
## 19478 EE alleged she was walking back from the restroom near uncg touring room in euc when she tripped on rug in front of doors at college avenue.
## 19479 EE alleged she was walking between desk and book truck in office and stepped on a slick spot, slid and fell. She hit wooden book truck ans landed on floor on her back. ()
## 19480 EE alleged she was walking down the stairs beside the taylor theater coming to work and as she started to come down the last 4 steps, she slipped and fell to the bottom of the steps. ()
## 19481 EE alleged she was walking from oakland parking deck to mossman bldg when she tripped on uneven ground falling injuring left leg, knee and hand, rt eye
## 19482 EE alleged she was walking from parking garage to building & slipped on ice hurting knee & ankle.
## 19483 EE alleged she was walking into a meeting and walked through a thin glaze on ice that looked like water on the sidewalk. She slipped and twisted right foot. ()
## 19484 EE alleged she was walking into the walker parking deck after work. The door leading into the building hit the top of her foot splitting it open and needed stitches. ()
## 19485 EE alleged she was walking on sidewalk & simply lost her footing & fell injuring rt, leg, knee & ankle.
## 19486 EE alleged she was walking through the building toher office when she slipped and fell. The floor was very slippery. EE injured let buttock - muscl
## 19487 EE alleged she was walking through the waiting area and tripped on a chair leg. Fell and got large carpet burn on left knee. ()
## 19488 EE alleged she was walking to deliver paperwork when she was stung by a bee behind the neck on the way to the foust building. She delivered documents and then went to gove health. ()
## 19489 EE alleged she was walking to her car when she accidentally tripped over uneven pavement.
## 19490 EE alleged she was walking to her office from the mciver parking deck when she slipped on the icy sidewalk & fell hurting her left ankle.
## 19491 EE alleged she was walking to stairs, rounded the corner, tripped and twisted her right foot.
## 19492 EE alleged she was walking to time clock & slippedin a puddle injuring rt. Side and leg.
## 19493 EE alleged she was walking to work, stepped in a hole in the grass in between the rec center parking and grass and twisted lf. Ankle. She went to own Dr. B/c already had an appt. ()
## 19494 EE alleged she was walking towards parking lot behind taylor theater, the sidewalk had an uneven loose brick, she tripped and fell over the sidewalk and punctured rt knee w/ pebble. ()
## 19495 EE alleged she was wiping the doors at the village tower apartments. She was using nutra-dis and not wearing gloves. She wiped her face from brow to chin with her hand and almost immediately the irritation started. Facial rash and eye irriatation. ()
## 19496 EE alleged she was working an mendenhall buiiding and on her way back to grayson, she was stung by ayellow jacket.
## 19497 EE alleged she's developed tendinitis as a result of repetitive data entry duties. Injured rt hand, arm, and wrist.
## 19498 EE alleged stumbled over mail carrier in walkway &injured head & leg.
## 19499 EE alleged that a large bee stung her on her righthand while she was working at post #6.
## 19500 EE alleged that a machine was turned sideways, she tugged on it to put it in the correct position when she heard three of four pops in left shoulder. ()
## 19501 EE alleged that a violent inmate suddenly turned &struck him on the right cheekbone whith his fist.
## 19502 EE alleged that after coming into contact with moldy, dusty clothing in storage, he broke out in a red rash all over body.
## 19503 EE alleged that after sitting at her desk for a while, she stood up to leave office, stumbled and sprained ankle. ()
## 19504 EE alleged that an icon inmate inhis unit opened cell door EE slipped and fell at the inmate's door he tryrd to break his fall with rt hand
## 19505 EE alleged that an inmate threw his tray of food at him, hitting him in the lt wrist.
## 19506 EE alleged that another co-worker, mike roberts, jumped up & head butted him, pushed him into lockers & EE had to struggle to get him off. Injure
## 19507 EE alleged that as she was leaving the building, she approached the edge, she tripped and fell forward to the ground.
## 19508 EE alleged that dust/debris in eye & produced laceration; unsure how.
## 19509 EE alleged that he continued to strike his right arm on the desk
## 19510 EE alleged that he injured his rt wrsit during a use of force with an inmate being housed in his unit of assignment
## 19511 EE alleged that he passing out snack bags and inmate was on the yard EE loss the snack bag through trapdoor hit rt hand on the edge
## 19512 EE alleged that he ran into a pothole that caused injury during roving patrol.
## 19513 EE alleged that he soot up and felt dizzy as well as feeling light headed. At that point EE stated he wasn't sure if he passed out or not
## 19514 EE alleged that he sprayed an inmte with pepper spray when the inmate struck him on the lt side of the face
## 19515 EE alleged that he stepped onto patch of ice that was on stairs outside of building on his way to the parking lot landing on his upper back and head
## 19516 EE alleged that he tripped on stairs, stumbled andfell causing him to break toe on right foot and b ruise left ribs.
## 19517 EE alleged that he was coming down the steps on the tower when he slipped on the steps on tower 1. 1foot got caught in the other slipped off other ste
## 19518 EE alleged that he was cutting a tree branch off at spring garden and highland when the branch feel and hit him in face. It knocked off his glasses and scratched his eye.
## 19519 EE alleged that he was in assistant unit chair and when he attempted to turn around and speak to unit manager the chair threw him to the floor
## 19520 EE alleged that he was involved in a use of force with an inmate while placing handcuffs on wrist. Inmate pulled away and injured EE's rt shoulder.
## 19521 EE alleged that he was lifting cases of sodas and putting them on the cart to carry them to the units when he felt a burning sensation rt shoulder
## 19522 EE alleged that he was lifting two 5 gallon containers of liquid & a buffer in & out of a truck when he strained his shoulder.
## 19523 EE alleged that he was making security check when he stepped in a hole thus turning his right ankle.
## 19524 EE alleged that he was taking the cat off the unitwhen the cat bit his rt. Wrist area. Right wrist area
## 19525 EE alleged that he was watching a truck on the enterprise yard when he tripped on a cement slab hitting his adbomen area
## 19526 EE alleged that inmate accidentally burned him under his right eyelid with a cigarette while escorting him back to the dorm.
## 19527 EE alleged that inmate struck EE with closed fist in facial area, injury to rt side of cheek, nose
## 19528 EE alleged that pepper spray drifted
## 19529 EE alleged that she & another EE were lifting a table when table leg fell off hitting her rt leg.
## 19530 EE alleged that she bumped knee on desk while at work & it did not hurt until she got home
## 19531 EE alleged that she fell down while dancing in cone ballroom at staff awards program.
## 19532 EE alleged that she fell on the curb outside of her office while returning from lunch. She injuredleft knee, elbow and hand.
## 19533 EE alleged that she slipped & fell on wet floor inthe entrance of the building hitting & injuring her right knee
## 19534 EE alleged that she was assigned to 3c and d dorm and while walking by a fan in the hallway she felt an shock on lt forearm
## 19535 EE alleged that she was entering gate at old adminbuilding when she slipped on a patch of ice. She fell on rt knee. Injured rt knee & thumb.
## 19536 EE alleged that she was exiting curry building elevator. The door started to close, she put her hand against it to stop it, but the door didn't stop closing. Was thrown backwards onto her rollerbag; the back of her head hit the back wall of elevator. ()
## 19537 EE alleged that she was exiting the bathroom area and slipped off step casuing her to twist her right ankle.
## 19538 EE alleged that she was getting a bucket out of a closet when the door shut against middle, left finger and jammed it.
## 19539 EE alleged that she was getting out of the chair while working in unit control room up when she got light headed and went to step
## 19540 EE alleged that she was going into the staff dining hall offcie and inmate was in the process of going past her
## 19541 EE alleged that she was lifting the hetch door on tower and the handle slipped and fell on her left hand and finger
## 19542 EE alleged that she was routing mdf from around a trap door, covering the trap door. EE stepped on breaking through injuring upper ribs, shoulder/back
## 19543 EE alleged that she was standing over the trapdoor and went to put the trap door down and injured rt shoulder
## 19544 EE alleged that she was vacuuming and began to complaining about wrist pain.
## 19545 EE alleged that she was walking over to building &stepped into hole & twisted ankle.
## 19546 EE alleged that she was walking over to the high chair in the tower & hit her rt leg & knee on the corner of the steel step while getting in chair..
## 19547 EE alleged that she was walking up the stairs and felt something pulling on her leg
## 19548 EE alleged that the latex gloves she was wearing caused skin irritation to both right & left hands
## 19549 EE alleged that wearing gloves irriated her skin on her hands. ()
## 19550 EE alleged that when letting down the looking device on gate, her ring finger was pinched between metal.
## 19551 EE alleged that when moving his empty bus behind another empty bus the brakes failed causing him tohit the other bus.
## 19552 EE alleged that when transportation an inmate in a state vehicle the car was hit from behinf at stop light from van
## 19553 EE alleged that when working the front area she turned around and walked into the locked storage box containing pepper spray
## 19554 EE alleged that while arresting a subject, the subject assaulted him injurying his rt hand, rt wrist and left hand.
## 19555 EE alleged that while assisting staff with a fightbetween 2 inmates, he got blood on his hands from an inmate being stabbed.
## 19556 EE alleged that while attempting to extinquish fire in a room partially filled with smoke he suffered from smoke inhalation.
## 19557 EE alleged that while discarding the contaminated needle, it stuck in plastic of share container andflew out striking in left thumb.
## 19558 EE alleged that while escorting an inmate back to security he stepped off the sidewalk and turned rt ankle
## 19559 EE alleged that while exiting the van, stepped out and injured upper back. He was putting tools back in the van. ()
## 19560 EE alleged that while getting out of vehicle in parking lot, turned, placed foot on step, slid out ofvehicle seat, twisted rt ankle, pop under rt foot
## 19561 EE alleged that while he was performing unarmed self defense training his rt shoulder locked behind his back
## 19562 EE alleged that while moving a table and supervising inmates working outside back dock sharp edge on the table cut her finger
## 19563 EE alleged that while opening cell door caught finger in door
## 19564 EE alleged that while patroling teh dormitories heexited the rear door, used his left hadn to avoid the door alarming and cut left hand with razor bla
## 19565 EE alleged that while she was practicing unarmed self defense moves, her right wrist was injured
## 19566 EE alleged that while starting to walk down staircase, left foot slipped while attempting to grasp hand railing with left hand. Fell down stairs injuring head, lf arm and back. ()
## 19567 EE alleged that while turning buttons to open an dclose door while assigned to control she noticed pain and swelling to her rt wrsit
## 19568 EE alleged that while walking down the hall slipped and fell on wet floor
## 19569 EE alleged that while walking on the sidewalk away from records offcie she slipped and fell on sheet of ice injuring her abdomen and lower back
## 19570 EE alleged that while working he was changing a battery on one of the state radio's one part was stuck when pulled out hit hand on desk cutting lt fin
## 19571 EE alleged that while working unit iv control room up he pulled on the trapdoor of the control room and sprained his lt hand
## 19572 EE alleged the door to the stair case crushed finger against stair stop.
## 19573 EE alleged the he was shiedman during cell extrac-tion team, urine was on the floor, EE slipped as he was pushing the shield, lt arm brushed wall
## 19574 EE alleged was cleaing when eyes started burning, headache and started coughing due to chemicals he was using.
## 19575 EE alleged was moving books from one shelf when a metal bookend and approx. 5 books feel on her head. ()
## 19576 EE alleged was pushing janitorial cart when ran into another EE pushing foodcart w/ container of hotcoffee. Coffee fell off cart & burn left foot
## 19577 EE alleged was tagging equipment in storage room &tripped over a box & fell onto knees on concrete floor.
## 19578 EE alleged was trying to hold rope on flyrail without balance weight causing severe rope burns on fingers
## 19579 EE alleged whe was walking to restroom when she slipped on brick flooring & fell; discomfort in back.
## 19580 EE alleged when transfering inmate in a state car was stopped at red light & was hit in rear by a van.. (EE was passenger)
## 19581 EE alleged while he was shiedman during a cell extraction team urine was on the floor causing EE to slip as he pushed the shield, arm hit wall
## 19582 EE alleged while removing needle from container, after drawing blood from inmate, she accidently stuck herself on index finger
## 19583 EE alleged while rolling the gate to make adjustments cover fell off the fork lift striking his lt shoulder
## 19584 EE alleged while supervising an inmate cutiing a ditch he stepped into a hole that was covered w/grass which twisted his rt foot.
## 19585 EE allegedafter conducting rounds on the end and returning back to the office she accidently slammed her finger in the door
## 19586 EE allegedly contracted a staph infection during his duties as clothes house officer on segregation, he states he handles dirty clothes, staph l calf
## 19587 EE allegedly walking out of medical treatment room, caught foot on portable table, fell forward hitting face/chin and left side. ()
## 19588 EE alleges 2 inmates were throwing large bucket top for frisbee. Hit lft leg w/top. Abrasion of skin below lft kneecap
## 19589 EE alleges a piece of lumber fell striking him in the head while repairing a porch
## 19590 EE alleges a table with a broken leg fell while she was vaccuuming, bruising her right knee & left foot
## 19591 EE alleges abdominal pain and swelling as a resultof job-related stress.
## 19592 EE alleges accumulated work stress
## 19593 EE alleges after completing call from dispatch stepped down from counter and twisted ankle.
## 19594 EE alleges after loading sound equipment and tentsinto truck. Noticed tension in lower back
## 19595 EE alleges after sending a fax she was walking down the hall and hit left arm on the corner of laser printer
## 19596 EE alleges aggressive inmate attacked him forcing him to strike back in self defense. EE struck inmate with rt hand.
## 19597 EE alleges airborne contaminants have been irritating eyes and airway for 3 weeks.
## 19598 EE alleges an asthma attack after pest control sprayed the kitchen at work
## 19599 EE alleges another EE pushed dirty linen closet into resident, and resident fell to floor. EE says she assisted the resident back onto feet.
## 19600 EE alleges as he was coming down d-3 control stairhe slipped and fell down the stairs twisting his left ankle
## 19601 EE alleges as he was tackling a suspect who was fleeing injured rt rib.
## 19602 EE alleges assigned to custody office inmate was stripping carpet office floors, chemicals: cleanserpowder, stripper, and bleach combined causing fumes
## 19603 EE alleges asthma attack after counseling session w/lt. Upon arrival cp-er she advised attacked was caused by paint fumes from 8/28.
## 19604 EE alleges attempted to close metal door. When the inmate pushed hard against flap, hit EE's handhard, inmate repeated hitting trap.
## 19605 EE alleges attempting to stand up from sitting in chair and felt something pull in lower left abdomen.
## 19606 EE alleges back strain due to lifting and twistingwhile doing his job over past 2 days
## 19607 EE alleges back strain from faxing floor.
## 19608 EE alleges be sprained his lt wrist during unarmed self-defense training. Lt wrist sprain.
## 19609 EE alleges being exposed to pepperspray... Co-worker dropped the container
## 19610 EE alleges being harassed by supervisor
## 19611 EE alleges bilateral carpal tunnel syndrome from inspecting eggs
## 19612 EE alleges bilateral carpal tunnel syndrome from repetitive motion in preparation of samples
## 19613 EE alleges breaking down table and stacking chairsstrained back.
## 19614 EE alleges burning pain in rt groin after lifting a micro-refrigerator.
## 19615 EE alleges cap on bottle was loose and when bottleslipped out of hand-chemical splashed into rt eye
## 19616 EE alleges caretaking duties (feeding, watering, changing litter) for mice exposed to e. Coli bacteria used in urinary tract infection research.
## 19617 EE alleges carpal tunnel syndrome from repetitive use of pipettor
## 19618 EE alleges carpal tunnel syndrome from use and counting money
## 19619 EE alleges carpal tunnel syndrome; fingers, hand, wrist
## 19620 EE alleges checking equipment and moving a box in the trunk of patrol car and strained a muscle in his left rib cage
## 19621 EE alleges chestpains ()
## 19622 EE alleges chroninc allergic reaction to latex gloves.
## 19623 EE alleges cleaning laboratory in brunson room anddeveloped headache, nausea, bad taste in mouth
## 19624 EE alleges cleaning outside windows with window spray, spray flew into EE's eyes.
## 19625 EE alleges cleaning table top and developed a rash on both arms.
## 19626 EE alleges clearing storm debris; picked up a treelimb and the limb brushed/abraded his right eye
## 19627 EE alleges climbing stairs in the sac twisted lt knee
## 19628 EE alleges closing a tool closet door and felt pain in rt shoulder.
## 19629 EE alleges closing the parking deck and walking to her car, turned lt foot. After got home there was a knot on lt foot
## 19630 EE alleges conducting experiment using vibrio vulnificus bacteria, accidently stuck finger with contaminated needle
## 19631 EE alleges contusion to left elbow when turning inchair to quickly and stricking corner of desk
## 19632 EE alleges contusion to top of left foot when footstruck agains open desk drawer.
## 19633 EE alleges driving a golf-cart from training room. The front tire hit railing of the stairs, pushed brake, cart continued forward hit the brick wall.
## 19634 EE alleges dust particles from buffing floors blewinto rt eye
## 19635 EE alleges empyting trash out of container in mailroom strained lower back
## 19636 EE alleges entering veh after a traffic stop and closed the door on left hand and fingers
## 19637 EE alleges experienced an allergic reaction from chemicals used by terminex in office, eyes burned itched & began to swell.
## 19638 EE alleges exposure to chemical - possible sink drainage. Employee claims chemical odor caused asthma to react.
## 19639 EE alleges exposure to cyclopentadiene has resulted in pain and blurred vision in both eyes
## 19640 EE alleges exposure to poison ivy while assisting with to control a fire in the mountains
## 19641 EE alleges extensive data entry and telephone use soft tissue; neck
## 19642 EE alleges facial and wrist rash due to poison ivyexposure while researching wetlands
## 19643 EE alleges falling down the steps.... Injured both knees
## 19644 EE alleges falling from 4th step on stairs hurtingleft/rt ankles.
## 19645 EE alleges fire alarm sounded and at this time he made an abrupt turn around in the hall way and felt a stabbing pain in the rt side and hip
## 19646 EE alleges fluoresent light bulb we was carrying shattered when he tripped and fell injuring rt hand and knee.
## 19647 EE alleges getting into ez-go and slammed the dooron her right hand, injuring her right finger
## 19648 EE alleges getting into truck and slipped and hit his rt ankle on the step or metal grate, he also hit his rt shin (knee)ankle.
## 19649 EE alleges he May have injured back lifting bag ofrice & moving boxes.
## 19650 EE alleges he almost stepped in drain hole, but caught himself.
## 19651 EE alleges he and four inmates were working on bracing a truss rod and tension wires. Brace became loose and fell and struck EE on head.
## 19652 EE alleges he bent forward and sat back in his office chair. When he sat down it felt like his lower back felt compressed, locked up and pain radiated thru his lower back and up his spine. He could not move for a few minutes. ()
## 19653 EE alleges he bent over to pick up some trash off the floor and felt something pop in his back. ()
## 19654 EE alleges he came out of tower on the catwalk, turned right and his left arm hit a wooden rail.
## 19655 EE alleges he crawled thru an access panel to get the exhaust duct to fix a loose turning vane. He layed a towel across the entrance to avoid getting cut. The fan sucked the towel in and he slid his arm across the entrance cutting his right forearm. ()
## 19656 EE alleges he cut his pinky on his right had using a box cutter. ()
## 19657 EE alleges he fell & landed on rt side of ribs while transferring from boat to boat in Dec 2007 aggrvtd pain by jarring back entering car 3/17/08
## 19658 EE alleges he fell down the steps to tower. EE is having neck/shoulder/back pain.
## 19659 EE alleges he fell down upon tripping over curb. Two ()
## 19660 EE alleges he fell over a curb while holding formsinjured his back and right hip ** not a uncg EE **
## 19661 EE alleges he got into a foot pursuit with a suspect. When he caught the suspect a brief scuffle followed. He suffered several small lacerations on his forehead and had a stick embed itself under his skin in his forehead. Also hit head on tree trunk. ()
## 19662 EE alleges he had a small piece of metal stuck in his eye. He does not know how or when it got there. He thought he had conjunctivitis so he went to his physician but found out it was an injury when the doctor examined him.
## 19663 EE alleges he has a recurring eye irritation.
## 19664 EE alleges he heard a loud noise behind him, then jumped up causing his back to lock-up.
## 19665 EE alleges he injuried his back while stacking supply baskets for unit clothes change. Pain in back
## 19666 EE alleges he jumped down steps and landed on ankle sideways. ()
## 19667 EE alleges he lifted a chair with his left hand. He continued to clean the white boards when he noticed the pain in his left hand. ()
## 19668 EE alleges he lifting a 65lb bar bell
## 19669 EE alleges he picked up a mop bucket to lift it off an electrical cart by the sides of the bucket and cut his left hand when he slid his hand down the rear of the bucket on the wringer attached. ()
## 19670 EE alleges he received a blister on his right foot big toe from walking around the parking deck making rounds. ()
## 19671 EE alleges he responded to code 3 when he got to maintenance alleges that as he was restraining an inmate he alleges the inmate spit and sprayed blood
## 19672 EE alleges he slipped on ice on his way to the dance building. He tried to catch himself with his right arm while falling backwards and doing so broke and dislocated his arm at the elbow. ()
## 19673 EE alleges he slipped on loose rubber sheath that was on the stairwell and injured his left ankle and lower leg. ()
## 19674 EE alleges he sprained his left ankle when he missed a stair, carrying curriculum bins and landed on his ankle wrong. ()
## 19675 EE alleges he stepped out of the building on the ballfield and his left foot slipped off a piece ofbroken concrete, dropping about 8" to ground.
## 19676 EE alleges he stepped up an enbankment of dirt and felt something pull in his lower leg portion.
## 19677 EE alleges he strained his wrist using hand tools while assembling desk.
## 19678 EE alleges he strained rt knee while moving a table onto a dolly and then a truck.
## 19679 EE alleges he twisted his rt ankle/foot pushing in gas pedal trying to disengage the brake pedal in the ez-go
## 19680 EE alleges he twisted rt ankle as he stepped down to get out of car
## 19681 EE alleges he walked along side of truck on step unloading tires, lost his footing; body slammed against the truck, slid down; injured left side
## 19682 EE alleges he walks a lot during his shift and hasbeen experiencing foot pain because of it. Gove health diagnosed a heel spur.
## 19683 EE alleges he was assisting another officer with an arrest. The person being arrested had to be removed from a vehicle and employee strained his left wrist in the struggle. ()
## 19684 EE alleges he was at the fabricators picking up a blower that had been repaired. He and the man from the shop picked the blower up, put it in the truck. In pushing it to the back of the truck he injured his left thumb. ()
## 19685 EE alleges he was attempting to be seated when he misjudged where the chair was located and fell. He states he landed first on his left elbow, then right elbow, then his backside. ()
## 19686 EE alleges he was attempting to plug in a cord and bumped his head on a shelf above. ()
## 19687 EE alleges he was attempting to step down from stool when upon left foot hitting floor/pain in left ankle.
## 19688 EE alleges he was bitten by insects during night firing at the range. Bite(s) did not heal. First reported/documented 6/7/07.
## 19689 EE alleges he was carrying four small but heavy boxes from one building to another for an event on the uncg campus.
## 19690 EE alleges he was cutting a broken limb out of a tree when the section fell and hit his left hand. ()
## 19691 EE alleges he was de-installing the mfa exhibition in gallery 2. There was a temporary wall constructed that has electrical cords in it and he was pulling them out when he scraped and cut his right wrist on a metal stud. ()
## 19692 EE alleges he was departing post missed the step onto the catwalk in front of the tower.. Sprained rt ankle..
## 19693 EE alleges he was directing exiting traffic congestion in deck when a motorist in exit line bypassed the line and traveled in the opposing lane of traffic, turned corner, did not follow instructions to stop and hit him with the bumper of motorist's car.
## 19694 EE alleges he was dismantling some plywood storage shelves when one fell on his hand catching his right index finder between the rail and the wood when it fell. He removed his gloves and found lacerations and crush injury to his finger. ()
## 19695 EE alleges he was driving north on scott ave when the sun glared on the windshield and he thought something was darting out from the left side and the reflex of action, he swerved to the right into a power pole. ()
## 19696 EE alleges he was escorting an inmate, and the inmate struck while handcuffed ()
## 19697 EE alleges he was escorting inmates from segregation unit to medical office and EE alleged he did not know how he cut fingers
## 19698 EE alleges he was getting tables off wall so more inmates could be seated and he alleges he pulled his back while moving them.
## 19699 EE alleges he was in the mechanical room in stone, picked up a pump and motor out of a chair and turned and hurt his back, neck and lower back ()
## 19700 EE alleges he was in the process of disposing of trash into the dumpster at jackson library when something pierced the bag and cut his right hand near the base of his right thumb. ()
## 19701 EE alleges he was in use of force and he alleges his lt hand became tangled in the inmates shirt and as he pulled away he injuried his lt index finger
## 19702 EE alleges he was inspecting around vehicle seat &as he was adjusting the seat he alleges his rt ring finger got caught b/t the seating bars
## 19703 EE alleges he was leaving the recreation area as he began to walk through the slider door the door began to close got his rt shoulder twist back
## 19704 EE alleges he was leaving the staff house he stepped on a root and lost his balance and fell to the ground landing on his rt leg and rt elbow
## 19705 EE alleges he was lifting a bag of garbage and as he threw the trash into the dumpster he felt a pull in his left forearm and now states that his thumb on his left hand is numb. ()
## 19706 EE alleges he was making traffic security check & when reaching to check lock on ramp door he alleges he slipped on ice on the ramp.. Rib cage pain
## 19707 EE alleges he was monitoring dorm. Waiting for chowcall; EE alleges he remebers sitting on a stool, then getting up off the floor ..
## 19708 EE alleges he was mopping floor in control room area. He sprayed cleaner and his eyes started burning and he had trouble breathing.
## 19709 EE alleges he was on a 6ft ladder to remove a pump motor that was about 8ft up. After removing the screws the motor came out and was heavier than expected. He had to strain to hold it without dropping it and hurt his left shoulder. ()
## 19710 EE alleges he was outside of a dorm after finishing the count when he felt something crawling in his ear
## 19711 EE alleges he was parked btwn the srf and hhp buildings getting out of his truck. The handel was stuck and when he pushed on the handle to open the door he hit the back of hand on handle and pulled skin back on hand. ()
## 19712 EE alleges he was participating in a mandatory physical fitness exercise when he jammed his left ring finger causing it to swell and bruise very badly. The swelling was so bad that his ring needed to be cut off and several x-rays were taken. ()
## 19713 EE alleges he was picking up litter on the east side of tower village when he stepped on a large rock and twisted his right knee. He did not go to gove health right away because he wanted to see if it would get better on its own. ()
## 19714 EE alleges he was providing aid to a victim of an accident when he got the victims blood on his right forearm where he had a cut. ()
## 19715 EE alleges he was removing painter's tape from an area he finished painting and debris fell into his right eye as the tape was removed. EE was seen at gove health and referred to an opthamologist. ()
## 19716 EE alleges he was replacing a solenoid for a phoenix air valve and dropped a screw and hit himself in the eye with the screwdriver he had in his other had. Gove health did a uv scan on his eye and said he had a cut down the middle of his eye. ()
## 19717 EE alleges he was responding to an emergency call and slipped on wet ground on a & c yard
## 19718 EE alleges he was shoveling snow in the handicap parking at cone and had pain in his lower back. Reported to supervisor. He reinjured when he was moving roll carts at the dining hall on 2/15. Then went to gove health on 2/17. ()
## 19719 EE alleges he was supervising inmates picking up litter on road squad and he backed over a traffic cone while walking backwards
## 19720 EE alleges he was sweeping stairs when he coughed causing a hernia.
## 19721 EE alleges he was taking in service training with batons & he alleges that while in training he was accidently hit on his lt hand with a baton
## 19722 EE alleges he was taking push brooms to the janitor's closet in a-dorm when he felt a twinge in his lft lower back.
## 19723 EE alleges he was trying to repair heat in gym. There was a bleeding valve about 12 feet from the ground. Ladder would not reach and only 8 ft ladder can fit in that space. Coming off the ladder he missed a step and caught his self and injured back. ()
## 19724 EE alleges he was unloading, walked behind concrete saw from flatbed truck wheels on saw fell between truck & dock, picked up on saw to get it on.. ..
## 19725 EE alleges he was walking down a hill on campus, slipped on wet grass and fell on his shoulder.
## 19726 EE alleges he was walking down the stairs at the foust building and slpped due to his boots being wet. His arm and right lower back were bruised/injured in the fall. ()
## 19727 EE alleges he was walking in the grass in front of curry and his shoe was not tied tight and botts are a little big. He bent his foot and caught his nail under the steel toe. Gove health said he had a nail avulsion and gave only a tetanus shot. ()
## 19728 EE alleges he was walking on the sidewalk and stepped on the edge of the sidewalk and twisted his right ankle.
## 19729 EE alleges he was walking over the top of the steel platform when he slipped & fell. Possible back injury.
## 19730 EE alleges he was walking up the stairs outside the mossman building when he fell down striking both knees. ()
## 19731 EE alleges he was working at the police department warehouse removing patches off previous used uniforms and cut his left thumb with a box cutter while trying to cut a patch off a uniform. ()
## 19732 EE alleges he was working e-dorm when a code 3 wascalled he alleges that two inmates were fighting and in the effort to assist he got blood from inma
## 19733 EE alleges he was working maintenance and two inmates got to fighting and when trying to break up the fight exposed to blood from an inmate
## 19734 EE alleges he went to pull a full bag of trash from the barrel and felt a pull. ()
## 19735 EE alleges heel of left shoe grabbed carpet and tokeep from falling extended rt foot-sprained rt knee in process.
## 19736 EE alleges heel of shoe got caught on metal strip on starir step causing left foot to come out of shoe falling into landing wall.
## 19737 EE alleges hiking in tall grass and biten by tick on abdomen including groin
## 19738 EE alleges his legs and co-worker were tangled together causing hime to twist right knee. They were in foot pursuit of inmate.
## 19739 EE alleges his rt foot slipped on ice while walking to shift assignment
## 19740 EE alleges hit by stack of papers on rt arm linda washington- 919-733-3388 x 212
## 19741 EE alleges holding wooden hand rail on stairs and splinter went into rt hand.
## 19742 EE alleges illness due to toxic fumes.
## 19743 EE alleges inhalation of mold/fungus while workingin office
## 19744 EE alleges injury occurred while lifting trash bagwith heavy substance in it.
## 19745 EE alleges injury to her back and neck while in a training exercise using a police baton
## 19746 EE alleges injury to right shoulder while restraining a juvenile.
## 19747 EE alleges inmate started swinging a pen an dpencil around, inmate was oc'd, fight broke out & EE stated they ended up on floor, hurting back
## 19748 EE alleges inmate threw unknown liquid substance from cell striking member on back area
## 19749 EE alleges left knee dislocation occurred when knee was hit against bed post while making bed
## 19750 EE alleges left knee sor and swollen; believed to be caused by climbing on and off fuel truck while loading
## 19751 EE alleges lift a computer; injured back
## 19752 EE alleges lifting a box alone and had to twist to the rt because work area was tight straining back
## 19753 EE alleges lifting a moving tables and chairs in the cone cener on second floor - lated developed pain in back.
## 19754 EE alleges lifting and moving furniture, after he got home felt pain in lower back.
## 19755 EE alleges lifting boxes from floor to table in workroom and strained back.
## 19756 EE alleges lifting boxes of paper work strained back.
## 19757 EE alleges lifting container of trach, and some- thing opped as he bent his elbow
## 19758 EE alleges lifting gas can out of truck at parkinglot using side motion, and strained right shoulder
## 19759 EE alleges lifting rubber underlayment roll for arena preparation strained back.
## 19760 EE alleges lifting rubber unerlayment roll for arena preparation, strained back.
## 19761 EE alleges lifting spiny brush and scratched his arm then later developed impertigo
## 19762 EE alleges lifting waste can to empty trash, felt pain in wrist.
## 19763 EE alleges lneeling down to paint stair treads in lower lobby and knee popped.
## 19764 EE alleges loading and unloading a grill from bed of pick up truck
## 19765 EE alleges loss of hand grip and tingling and numbness in hands and arms
## 19766 EE alleges lower back pain caused by sitting and twisting movements in chair.
## 19767 EE alleges missed last three steps on stairs and fell injuring rt knee
## 19768 EE alleges mold complications
## 19769 EE alleges mold exposure and respiratory infectionwhile working in a bldg that is said to have contained mold
## 19770 EE alleges months of typing and handling books, using computer mouse with left hand. Tendons and joints in the affected area became tender
## 19771 EE alleges moving a metal wash rack during clean up of animal cages when the metal rack contacted his right knee.
## 19772 EE alleges moving a table off of a trk-desk slipped and fell on EE's hand.
## 19773 EE alleges moving boxes and as he raised up he bumped his head on a protruding screw on the bottom of a table scratching his scalp
## 19774 EE alleges moving brewster boards during set ups in the lucas room strained back
## 19775 EE alleges moving large printer and hurt back
## 19776 EE alleges moving scientific instrument into placein card room and injured left shoulder.
## 19777 EE alleges offloading heacy equipment with forklift lifted off ground, jerked back trying to maintain control.
## 19778 EE alleges over use of rt index finger and hand casuing pain in hand, wrist and finger.
## 19779 EE alleges packing and loading boxes on library cart; hit her right finger on desk as she lifted a box onto the cart
## 19780 EE alleges pain developed in hip and groin area while lifting stage equipment
## 19781 EE alleges pain developed in rt wrist over a period od days while experiencing increase in fallregisteration.
## 19782 EE alleges pain in abdomen after lifting heavy boxes of paper towels and tissue.
## 19783 EE alleges pain in lt chest area after struggling with patient
## 19784 EE alleges pain in neck from carrying load of doors that shifted.
## 19785 EE alleges pain in rt elbow when using computer mouse.
## 19786 EE alleges pain in rt shldr, rt wrist, & cervical spineo from reptv data entry ---- this claim is combined with 2 others #04071723 & #10072184
## 19787 EE alleges pain in rt shoulder blade extending down rt arm-numbness in fingers
## 19788 EE alleges pain in rt upper arm and elbow after lifting boxes of plastic trash bags.
## 19789 EE alleges paper tray fell out of printer onto rt great toe
## 19790 EE alleges performing normal duties as computer support tech
## 19791 EE alleges performing snow/ice removal campus wideee twisted his body reaching for controls to operate the tractor and strained right shoulder/back
## 19792 EE alleges picking up liter and pulling weeds rt index finger started to ache
## 19793 EE alleges picking up trash can to empty trash. Trash contained heavy books. Twisted or sprained wrist before recognizing excessive weight.
## 19794 EE alleges picking up trash, reaching to pick up abottle and was bitten bu a stray cat.
## 19795 EE alleges pitching softballs to players during practice when a player batted a line drive and theflew directly into her right hand
## 19796 EE alleges positioning iron safety rails in slots in the arena; strain his back when he reached out to pull one of the gates; lower back
## 19797 EE alleges problems beginning approx 4. 5 yrs ago that have been getting work from typing, work station set up and improper chair
## 19798 EE alleges pulled muscle in lower back from loading and unloading sheet rock from van.
## 19799 EE alleges pulling upward on a 2 inch pipe, in a squatting position, to connect to another pipe wita union and felt pain in the lower middle back
## 19800 EE alleges pushing cart up incline while pulling atrash barrell and l/control of barrell and twistedback att to catch the cart.
## 19801 EE alleges putting up a street sign and scraped his hand on a rusty bolt.
## 19802 EE alleges rash on outside of lower left arm whilecleaning at work.
## 19803 EE alleges reaching for phones, radio, logs and security equipment has caused pain in left arm from elbow through finger tips
## 19804 EE alleges reaching into briefcase a rusty pin on a name tag was sticking up and puncture EE l hand
## 19805 EE alleges reaching up into file cabinet and felt a sharp pain in her left shoulder
## 19806 EE alleges received a new ear piece for work that caused him a severe infection in his left ear. Reports onset Oct 2006
## 19807 EE alleges recieving instructions in gym and became involved in an argument and was attacked bya coworker, injuring shoulder.
## 19808 EE alleges repairing a steam line while on a ladder and when he cracked the union, steam pushed out hot water and hot water hit his right arm
## 19809 EE alleges repeat motion of elbow while construction venture challenge course re-injured elbow.
## 19810 EE alleges repeat use of computer mouse caused hand and finger pain.
## 19811 EE alleges repeated use of her right wrist has caused carpal tunnel syndrome.
## 19812 EE alleges repetattive motion & strain while performing mail duties.
## 19813 EE alleges repetitive data entry work has resultedin numbness & tingling sensations in both hands
## 19814 EE alleges riding in golf cart and fell out after going around a corner quickly, broke 2 front teeth, punctured above lip, scraped chin and right knee
## 19815 EE alleges roller barrel was tipping over and caught left ring finger uner rim.
## 19816 EE alleges rt hand injured when a fire extinguisher fell out of cabinet hitting hand
## 19817 EE alleges rt temple on the corner of metal book- shelf when straightening up from picking up a pencil
## 19818 EE alleges running down the stairs while wearing flip flops, lost footing, fell and hurt lt ankle
## 19819 EE alleges seizure and nose bleeds caused by job related duties
## 19820 EE alleges she became dizzy and had pain in her ltarm after working during day in heat and having tostand for a long period of time in excessive heat
## 19821 EE alleges she fell down stairs after losing her footing when heel got caught in crevice on steps. ()
## 19822 EE alleges she fell walking in tower 7 and broke left forearm.
## 19823 EE alleges she fell when walking to parking lot outside of mossman bldg where brick meets parking lot. Injured knees, lt. Hand, rt. Elbow, and forehea
## 19824 EE alleges she felt pain in her left knee as she placed labels on boxes containing of files in the storage fault
## 19825 EE alleges she felt something bite her as she was getting out of her car
## 19826 EE alleges she had a heavier than normal workload that day and when she bent over to remove a piece of paper from the floor she noticed part of her lower back was hurting. ()
## 19827 EE alleges she had a staple puller in hand & pressed the staple pulled & caught part of her palm in b/t the metal teeth..
## 19828 EE alleges she had given blood earlier that day and felt slightly dizzy, but felt able to work. She was at her desk typing and felt very limp all of a sudden. She slid out of her chair and fell to the floor, bumping her head lightly on the desk. ()
## 19829 EE alleges she opened the door & was replacing a bar on the door & she alleges she pinched her finger.
## 19830 EE alleges she slipped and fell on a hard linolium floor in the lobby. She hit her head and injured her elbow which swelled up. ()
## 19831 EE alleges she slipped on oce and struck her elbow on pavement.
## 19832 EE alleges she slipped on water in restroom. Her right foot slid under her left leg causing her to fall on her right side - knee and hip with twist in foot. ()
## 19833 EE alleges she smelled something in the air that made her sick
## 19834 EE alleges she tripped over a chair in the biology office lobby and fell. The leg of the chair protruded slightly into walkway. Bruised right knee and elbow, fractured right little finger. ()
## 19835 EE alleges she tripped while walking up the stairsused rt arm to catch self and strained shoulder
## 19836 EE alleges she turned off the light in room 201 after vaccuuming the room and closed the door on her index finger. ()
## 19837 EE alleges she twisted her right forarm as she attempted to transfer resident from bed to wheel chair
## 19838 EE alleges she walked up and down staris, knee became swollen
## 19839 EE alleges she walked up stairs going to the rec center and when she entered closet 301 she sat down. When she got up she felt pain on the right side of her lower back. ()
## 19840 EE alleges she was assigned to post 7 when a spider bit her right third finger
## 19841 EE alleges she was at a meeting at the staff house& needed to speak w/her superv. As she stepped off the step her foot slipped.. C/o low back pain
## 19842 EE alleges she was at the dumpsters emptying trash. She had thrown one bag into the dumpster and accidentally stepped backwards onto the 2nd bag, tripped over it falling backwards to the ground, injuring the back of her head when she fell. ()
## 19843 EE alleges she was at the staff house for line up and stepped out of her car to put her purse in thetrunk of car she stumbled on a rock..
## 19844 EE alleges she was bitten by ticks on stomach, legsback and hands while on a site visit
## 19845 EE alleges she was closing the cell door of k1 and her finger got caught b/t the door and the door frame
## 19846 EE alleges she was coming down the steps from the 2nd floor to the 1st floor, carrying 2 chemical bottles, one in each hand, when she suddently fell down. ()
## 19847 EE alleges she was coming from the sgt station on her way to the dorm with the newspapers when she turned her ankle on uneven pavement
## 19848 EE alleges she was cranking the ext gate manually when index finger struck bottom of enclosure box
## 19849 EE alleges she was departing tower walked 3 steps and slipped on ice
## 19850 EE alleges she was empyting the trash into the dumpster, she turned around to leave and walked into the dumpster door injuring the middle of her forehead. ()
## 19851 EE alleges she was enventoring the weapons in the control room when she was bitten by spider or bug
## 19852 EE alleges she was going to lock the front door and walked too close to a chair in the lobby. She reached toward the chair for balance and jammed her left pinky finger into the back of the chair. ()
## 19853 EE alleges she was hanging up keys in equipment key security box and she alleges hooks caught end of middle lt hand finger
## 19854 EE alleges she was hit in the right hand by a volleyball during pre-game warm-ups/hitting drills. She has torn ligaments in her right thumb. ()
## 19855 EE alleges she was in route to relieve officer on tower #6. Walked behind adm building twisted foot on a broken blacktop surface ..
## 19856 EE alleges she was in the process of dumping trash into the dumpster. When she lifted the bag from the trash cart and felt pain in her hip area and lower back on the right side as she was throwing the bag into the dumpster. ()
## 19857 EE alleges she was leaning over the sink when she reached to empy the bucket and she felt a slight pain in her right shoulder. ()
## 19858 EE alleges she was letting truck enter abcd yards & as she was securing gate her rt ankle got caughtunder the gate & rt thumb got caught in gate
## 19859 EE alleges she was lifting a trash can and didn't realize there were books in the bottom of it causing a thoracic and lumbar strain.
## 19860 EE alleges she was lifting and moving heavy boxes when she hurt her back and lower abdomen.
## 19861 EE alleges she was lifting up folders inside a recycle can and picked up a couple of recycle papers to put in her can. Just strain a little bit but feel a whole lot better. ()
## 19862 EE alleges she was making checks & she stepped offpavemnet to check a door when her lt foot got caught in a hole in the ground, twisting her ankle
## 19863 EE alleges she was mopping out of a restroom stall when she hit her left elbow on the locking mechanism on the door. ()
## 19864 EE alleges she was mopping the floor and pulled a muscle in her left back area and left leg. ()
## 19865 EE alleges she was moving a case that was 4 feet by 2 feet by 1 foot. The case was top heavy, fell forward and tripped her. ()
## 19866 EE alleges she was on control in h dorm and went to answer the phone and alleges that she fell in c/h hallway and she was going thru the g/h doorway
## 19867 EE alleges she was opening a new 20 liter metal container of ethyl alcohol. The alcohol splashed to her face and eyes when she opened the lid of the container. ()
## 19868 EE alleges she was opening the door backed into metal piece that protrudes from the bars
## 19869 EE alleges she was patrolling dorm her lower legs began to itch and burn she had large red spots on both legs just above her boots medical was avised
## 19870 EE alleges she was preparing a folder for inmate to be released when door closed on lt hand..
## 19871 EE alleges she was pulling the trash out of container on baseball concourse. The bag of trash was compacted down and as she pulled on it she hit her left elbow on a concrete column. ()
## 19872 EE alleges she was pulling the yellow pulley closeto the dumpster and her finger got trapped while allowing a vehicle to enter unit
## 19873 EE alleges she was reaching up to get a box of tissue and enmotion towels down off shelf, she turned sideways and felt a sharp pain in her back. ()
## 19874 EE alleges she was removing a staple from a 71 page document in order to make a copy. The staple remover slipped from her hand and punctured her right thumb. ()
## 19875 EE alleges she was removing a staple from a form when the staple broke and flew into her right eye. ()
## 19876 EE alleges she was retrieving an inmate from segregation for transfer when contol booth operator closed the sallyport door on her rt arm
## 19877 EE alleges she was returning a key to the metal key box, dropped key, bent to pick it up, box slid off the shelf and hit EE in the back of head
## 19878 EE alleges she was sitting at her desk, bent over to lift a file box from the floor and injured her lower back. ()
## 19879 EE alleges she was standing when she began to feel faint. She started to fall backwards. Another employee caught her and helped her to the floor. Employee was not feeling well and began to have pelvic pain and was unable to stand up. 911 was called. ()
## 19880 EE alleges she was stung my an unknown insect. EE was assigned to post #6 at the time
## 19881 EE alleges she was taking the food cart to the gate and was stung on the lt hand by an unknown insect
## 19882 EE alleges she was trying to catch some folders falling off the desk & had a pencil in her hand. It jabbed into rt hand & lead broke off in rt hand
## 19883 EE alleges she was using a metal tape measure in an office for preparation of staff reassignments of spaces. She had the tape measure extended and it suddenly retracted and sliced a gash in her left index finger. ()
## 19884 EE alleges she was waking up inmate and when she was walking over to a chair she turned the wrong way she felt her knee twist
## 19885 EE alleges she was walking down the sidewalk rt foot went down on a rock then she alleges she fell to the ground
## 19886 EE alleges she was walking down the stairs and herleft foot slipped causing her left ankle to twist.
## 19887 EE alleges she was walking into f dormitory front door and was called by an inmate. Turned around to walk out and talk to the inmate and tripped on mat
## 19888 EE alleges she was walking into the building and stepped in a puddle of water that was there, slipped and fell twisting her right knee. ()
## 19889 EE alleges she was walking on a mulched path to a meeting when her ankle turned as she neared the endo f the path on to a concrete sidewalk. ()
## 19890 EE alleges she was walking to her automobile in state parking lot when she says she stepped on a patch of ice & fell injuring right shoulder & back
## 19891 EE alleges she was walking to the mail room & tripped over higher part of sidewalk & fell on front side of body.. Lt knee & rt hand scrapped/abrasions
## 19892 EE alleges she was walking toward the telephone operator's station when she slipped and fell EE alsoalleges that she fell on her lt hip
## 19893 EE alleges she was walking up stairs in the main library and tripped on riser, fell into above riser and injured her right knee. ()
## 19894 EE alleges she was walking up steps to tower & tripped about halfway up
## 19895 EE alleges she was working and she tripped over back drop cord around table fell on lt hip
## 19896 EE alleges shoe came off while going down the steps and lost balance on stairs and fell injuring rt great toe and left forearm.
## 19897 EE alleges sitting on pair of scissors left open on chair punctured left thigh.
## 19898 EE alleges sitting outside of sanford hall on break and noticed bumps on elbow and shoulder.
## 19899 EE alleges slipping on loose rock and fell fracturing left foot
## 19900 EE alleges slipping on scrap lumber on the floor fell scratching inside of upper left arm
## 19901 EE alleges slipping on the stairs, falling and bruising left leg.
## 19902 EE alleges slipping on wet floor hitting rt side of face to floor
## 19903 EE alleges slipping on wet wood and falling on knees
## 19904 EE alleges soap he is using is irritating his leftarm
## 19905 EE alleges soreness in lower back developed after moving a box of books.
## 19906 EE alleges sprained right wrist while tightening pad on floor buffer
## 19907 EE alleges standing on a chair tearign down a tempwall; grabbed a metal wall stud to brace himself while losing his bal and cut his right index/ring
## 19908 EE alleges strained low back while using a shovel to dig a water line in order to run electrical cable to new chicken house
## 19909 EE alleges strained rt elbow while pulling vacuum cleaner
## 19910 EE alleges straining back after lifting approx. 15traffice cones at one time.
## 19911 EE alleges straining left foot when it slipped offthe rung of a ladder due to oil on the bottom of work shoes
## 19912 EE alleges stress from assault with deadly weapon by co-employee and false accusation of drug possession/sale
## 19913 EE alleges stripping floors and several days laterdeveloped a burning rash on his face and lips
## 19914 EE alleges stumbling down 3/4 stairs spraining her rt ankle.
## 19915 EE alleges supervisor attacked on forehead and upper left arm
## 19916 EE alleges sweeping north stairway in frewell building and was exposed to dust.
## 19917 EE alleges sweeping out a stairway, stirred up dust and a partical got into his left eye causing irritation that was aggravated by him rubbing the area. ()
## 19918 EE alleges that 50% caustic dripped onto scalp, forehead, and finger causing 1st degree burns.
## 19919 EE alleges that a inmate grabbed the collar of herjacket and that she used her lt hand to push the inmate away hurting her lt hand
## 19920 EE alleges that a resident stepped on l foot, staff sitting on couch beside another resident
## 19921 EE alleges that after cleaning a bathroom she tookoff her gloves, rubbed her right eye and disinfectant got into her eye
## 19922 EE alleges that after completing a routine search of bottom bunk he attempted to stand up and bumped the back of his head on the upper bunk bed frame
## 19923 EE alleges that after he let the inmate down inmate swung at EE during alter inmate was refusing to comply with direct order
## 19924 EE alleges that after searching inmates, left out of tower 7 gate on minimum custody side. Twisted his left ankle on edge of road near grassy area
## 19925 EE alleges that after she opened the door for a customer near the loading dock, she felt a sting in her hand.
## 19926 EE alleges that after standing in a display for 30 minutes she fainted and fell on her right side and hit her head on the ground from locking her knees. ()
## 19927 EE alleges that another EE was tapping a pipe in a manhole with a can of spray paint some paint was discharged and went into eyes
## 19928 EE alleges that as he was placing signs out for road squad he fell coming in contact with the front of hte road squad sign.
## 19929 EE alleges that as he was walking around the perimeter he turned around to acknowledge the tower 10 and at that time his rt knee twisted
## 19930 EE alleges that as she started to step out of the doorway to stop an inmate from yelling, her knee hit the steps due to broken cement at edge of door
## 19931 EE alleges that as she was pulling a disinfectant wipe out of the container it comes in, the wipe got stuck and the cap popped off and the liquid in the bottom of the container splashed in her right eye. ()
## 19932 EE alleges that as she was responding to a distur-bance in the dorm, she hit a slick spot in floor & fell striking left hip & left palm.
## 19933 EE alleges that as she was walking down service drive towards her car she was hit by a parked car that suddenly began to move. ()
## 19934 EE alleges that assisting another officer in stopping a run away horse, he made a turn and while climbing dike on horse, felt sharp pain in back
## 19935 EE alleges that caught his right hand in the pop open door bruising his right middle finger.
## 19936 EE alleges that conducting a routine check of institution, heard a loud noise, started to run, slipped and injured rt thumb.
## 19937 EE alleges that driver of car thought she putting car in reverse when she actually put it into firststriking EE on both knees
## 19938 EE alleges that during baton training and exercise that he injured his rt thigh
## 19939 EE alleges that during grappling training with the pert team she stepped on her foot with her rt foot and her ankle twisted
## 19940 EE alleges that excessive, repetitive motions with typing and lifting have resulted in frequent numbness and pain in his left arm. Employee belives the location and symptomology to be in line with carpal tunnel syndrome.
## 19941 EE alleges that free repell from tower of the ropes course to have caused strain to back
## 19942 EE alleges that he and inmate were moving double bunck out of room into the hallway, while turning with bunk felt sharp pain in top of right shoulder
## 19943 EE alleges that he as an instructor in unarmed self defense was doing control #2 kote gashi with another officer when he felt a sharp pain in shoulder
## 19944 EE alleges that he bent over to pick up his pen and that when he stood up noticed back pain. EE has previous injury to back 3 years earlier.
## 19945 EE alleges that he cut his finger on his right hand when changing out a dull blade on his long handle scraper. He did not have his gloves on. ()
## 19946 EE alleges that he cut his hand while closing the gate in the sallyport. (right hand)
## 19947 EE alleges that he fell on ice/snow injuring his back
## 19948 EE alleges that he felt a pain in his left arm/elbow when bending his left arm while doing regular work/typing. ()
## 19949 EE alleges that he felt something crawling under tthe rim of his service cap & his reflex to push ththe cap upward. Stinging sensation on forehead.
## 19950 EE alleges that he hurt himself in basic training, during breakfalls & training, thought lower back was sore.
## 19951 EE alleges that he injured his left mid back area while practicing unarmed self defense techniques.
## 19952 EE alleges that he injured his left shoulder throwing tractor tires
## 19953 EE alleges that he proceeded down the steps, & slipped, falling from stairs. Pain in lower back & right hand.
## 19954 EE alleges that he pushed door gh-1a open while turning his head and the door shut, catching the tip of his finger in the door.
## 19955 EE alleges that he ran up the emergency stairs while repsonding to second floor and thinks he twisted his ankle at that time.
## 19956 EE alleges that he received back injury while participating in ground defense training
## 19957 EE alleges that he sat down on a chair on the cat-walk of post #8 & something bit him on the back of his right leg. It began to sting & burn
## 19958 EE alleges that he slid in mud and hit his knee on a rock, while working in a crawl space ()
## 19959 EE alleges that he squatted down to search under abed in the process EE alleges he hit his head causing his neck to jam
## 19960 EE alleges that he steeped out of vehicle and heard a popping noise in right lower leg (below the knee).
## 19961 EE alleges that he stepped down the steps of the rad squad bus and slipped on one causing a twisting of his back.
## 19962 EE alleges that he suffered stress on 4/12/1994
## 19963 EE alleges that he tripped on a floor rug causing him to fall into a metal "button" cutting his headrequiring 6 stitches.
## 19964 EE alleges that he twisted his lt knee while conducting a check he states that his happened b/t towers
## 19965 EE alleges that he was attempting to give inmate little his night medication when inmate spit in his face
## 19966 EE alleges that he was carrying personal property from segregation area, stepped in soapy water and twisted back while trying to gain balance
## 19967 EE alleges that he was changing filters in the ceiling up on a ladder and had muscle spasms in his back. He called a supervisor and was instructed to go to gove health ()
## 19968 EE alleges that he was coiling cable under a stagewhen he walked into a metal support and hit his head; laceration
## 19969 EE alleges that he was down on the floor removing coverbase with a scraper when the scraper slipped and went into his left hand. Gove health put stitches in his hand. ()
## 19970 EE alleges that he was escorting an inmate from unit one to yard and was stabbed by an inmate. Injured chest.
## 19971 EE alleges that he was exiting a cell block into anothe rnad slipped and fell in a puddle of water
## 19972 EE alleges that he was exposed to pepper spray
## 19973 EE alleges that he was hit in left eye by inmate while supervising the yard.
## 19974 EE alleges that he was hit in the eye and kicked in the head by an inmate while supervising yard call.
## 19975 EE alleges that he was in from on adm. Building & he picked up right foot to step on sidewalk, his left foot slipped from under him and he fell
## 19976 EE alleges that he was injured due to repetitive heavy lifting, pushing, pulling of office furniture, shelves and equipment in the course of relocating the tlc media center to jackson library and the tlc from mciver bldg to mossman as reqd by university.
## 19977 EE alleges that he was lifting and application injured his back
## 19978 EE alleges that he was lifting table alone to put against wall and felt pain in his back
## 19979 EE alleges that he was lifting water cooler to put on back of bus when he lifted cooler, felt a sharp pain in l back, unable to stand for minute
## 19980 EE alleges that he was making rounds in the vocational school and he alleges he stepped on an object behind building #2
## 19981 EE alleges that he was moving a double oven in thekitchen and pulled something on l side of his abdomen - left inguinal hernia
## 19982 EE alleges that he was pulling weeds in the dog run around the ball field near consitene wire. His lft forearm struck the wire causing approx 3 inch
## 19983 EE alleges that he was pushing a cart loaded with computers and monitors, the cart tilted and the computers and monitors fell striking EE in lft kne
## 19984 EE alleges that he was relieving the roving patrolwhen he reached under the vehicle seat to adjust the seat when he alleges he cut his rt thumb
## 19985 EE alleges that he was removing a test tube from atray; tube broke and cut his left thumb
## 19986 EE alleges that he was removing food carts and when he opened the door it slammed closed on his hand
## 19987 EE alleges that he was removing sling blades from the rack & something got into his right eye.
## 19988 EE alleges that he was responding to a code 3" and while responding to the code while running thru the yard he felt a pop in his lt knee
## 19989 EE alleges that he was restrining an inmate and the inmate fell on top of EE's right ankle.
## 19990 EE alleges that he was sitting in the driver seat on the transfer van, bent to pick up mileage log, pest control layed down wand, short burst went mout
## 19991 EE alleges that he was struck by trap door while using a hoist.
## 19992 EE alleges that he was supervising inmates on roadsquad & he was crossing the guard rail & his lt leg was scratched by rail..
## 19993 EE alleges that he was walking down k&l chute area he alleges that a flying insect flew into his rt eye
## 19994 EE alleges that he was walking to the gym, when he stepped in a hole on the yard and twisted his ankle on his lt foot
## 19995 EE alleges that he was working on air conditioner and moved the air conditioner, he caught his left hand under the unit
## 19996 EE alleges that he was working with thte basketball players during practice. A player was playing defense and threw a charge. The player side swiped his left knee. ()
## 19997 EE alleges that he went to step back into chair and he alleges that when he did his rt foot slipped and he caught himself with rt hand and felt pain
## 19998 EE alleges that her drawer fell on her foot causing injury.
## 19999 EE alleges that her housekeeping keys come off of a hook and swings down and hits her knee. After 1/19 Dr. Visit she also stated that she hit her knee on a desk at some point in the recent past. ()
## 20000 EE alleges that her lt foot turned over and she fell on brick sidewalk
## 20001 EE alleges that her right hand hit the corner of atrash can; rt hand/wrist
## 20002 EE alleges that his left thumb got caught between two pieces of pipe
## 20003 EE alleges that injury occured during pert training while practicing a ground fighting technique that was being taught
## 20004 EE alleges that inmate had slid off bed & she grabbed inmate & held him to keep him from fallinguntil she could get assistance from another nurse
## 20005 EE alleges that just as she stepped on the linoleum outside the door she slid to the floor injuring her right shoulder and right hand
## 20006 EE alleges that media screen fell hitting his right arm and left side of his face
## 20007 EE alleges that mop water splashed into her left eye
## 20008 EE alleges that on 09/24-09/25 while monitoring inmate at durham reg hospital she sat in a chair with a somewhat uncomfortable elevated headrest
## 20009 EE alleges that over the last few months that while writing notes her fingers start to cramp; arms tingle
## 20010 EE alleges that performing repetitive motions with right hand has developed right elbow pain anddecreased strength in right hand
## 20011 EE alleges that redness and swelling has appeared on lower legs, was wrking road squad fri, believes condition from wrking in waist high weeds.
## 20012 EE alleges that she didn't see a ditch in front ofthe building and fell hitting both knees
## 20013 EE alleges that she fell after entering the first set of double doors leading into front lobby the floor was wet
## 20014 EE alleges that she fell from a chair when she was reaching for the top of the bookshelves for items when packing up her office belongings. Her right shlder struck against a bookshelf and her left shlder struck against the desk. Items fell on her back. ()
## 20015 EE alleges that she felt something buring her leg when she pulled the battery out of her pocket a hot solution was running out and the battery was sm
## 20016 EE alleges that she has a stress fracture of left foot. EE also alleges that chronic back pain was the cause of the stress fracture.
## 20017 EE alleges that she hit her hand on the edge of a table cutting her right thumb on a piece of rusty metal
## 20018 EE alleges that she injured her back while packing boxes
## 20019 EE alleges that she injured her foot due to a new required uniform. ()
## 20020 EE alleges that she made a sharp turn in the golf cart and lost control. She ran the golf cart into a metal trash bin and a brick wall. Her driving hand (left) was jerked in the process. ()
## 20021 EE alleges that she observed a spray bottle sittinon the top of trash can & it appeared to be empty but when she picked it, accidently sprayed in lt ey
## 20022 EE alleges that she pulled door gh-1b to enter gate house. Upon opening door, she pulled a musclein her upper right arm
## 20023 EE alleges that she shut her left index finger in the door at the back of ocracoke, contusion to left index finger
## 20024 EE alleges that she slipped on water in the ladieslounge in the bathroom; grabbed door without falling and hurt her mid-lower back
## 20025 EE alleges that she slipped while walking across the floor; did not fall, but May have pulled some thing in her groin; pain in back, neck
## 20026 EE alleges that she stretching her arm to perform the action of opening/closing the window at the counseling and testing center, from left to right and right to left, causes pain in her upper left arm. ()
## 20027 EE alleges that she stumbled over a pipe in the ground at the t-9 area when she was leaving work at ctr prison. EE states that she srpained her... ..
## 20028 EE alleges that she twisted her ankle when she stepped through the sallyport door.
## 20029 EE alleges that she walked back from the drie through gates after making a move she had a catch in her lower back
## 20030 EE alleges that she was approaching the door of the nurses station, when she stopped and her foot slipped from under her, fell on her lft knee
## 20031 EE alleges that she was assisting the children clean the art area before going outside when a children's chair fell. The chair fell from the table and hit her left foot and big toe. ()
## 20032 EE alleges that she was bit by something while on duty friday evening. Didn't notice till sat aftework. Red bumps in the ctr and hot to the touch
## 20033 EE alleges that she was checking the maintenance of the state vehicles when she shut the hood of van on her fingers
## 20034 EE alleges that she was entering the main entranceand saw yellow caution sign to the rt she took a step and inmate said wrong way slipped
## 20035 EE alleges that she was escorting an inmate to take out the trash and she was walking up the sidewalk and slipped on the ice
## 20036 EE alleges that she was going through 015b door, stated to close, put her hands up to stop door causing her to be caught between door and wall
## 20037 EE alleges that she was going to the holding cell to look for an inmate EE was going through slider door, door hit her body
## 20038 EE alleges that she was going up steps to tower 4 and slipped and fell about one quarter of the way up steps
## 20039 EE alleges that she was in n dorm observing inmates and alleges something bit her on her lt arm
## 20040 EE alleges that she was injured while sliding the file cabinet across the floor; left toe
## 20041 EE alleges that she was issuing a handcuff to anoter EE through control room drawer & another EE pyshed drawer towards her & caught l thumb in drawer
## 20042 EE alleges that she was leaving aycock auditorium. When stepping out the door she missed the step as she ws opening her umbrella in a rain storm when she turned her foot and fell. ()
## 20043 EE alleges that she was letting the foodcart out of the kitchen, as she attempted to close th door, she closed her rt hand in it.
## 20044 EE alleges that she was medication room giving outmedication & she got up to get prn meds & fell down on knees, knee just buckled..
## 20045 EE alleges that she was mopping the floor outside of the restroom 333 hhp. As she mopped she felt a pull on both sides of her nech and the back of her neck. ()
## 20046 EE alleges that she was moving boxes in the clotheshouse and pulled something in her wrist.
## 20047 EE alleges that she was moving furniture when she injured her lower back
## 20048 EE alleges that she was out of work from 9/28/96 to 10/28/96 due to job related stress.
## 20049 EE alleges that she was picking up mail from drop boxes in dorms and lid to box fell on her nose
## 20050 EE alleges that she was shaking down cooks in the kitchen, bent down and alleges she heard a crack in her knee.
## 20051 EE alleges that she was shoved into the water fountain and the brick wall while attempting to assist her fellow off. Who was being assaulted by inmate
## 20052 EE alleges that she was sitting in a chair when she wheeled the chair over to her rt her lt knee hit steel box
## 20053 EE alleges that she was supervising inmates when a inmate threw a rock and hit EE by the eye
## 20054 EE alleges that she was transporting a inmate the fire extinquisher discharged in the truck filling car
## 20055 EE alleges that she was trying to restrain an aggressive inmate. Left wrist swollen and red.
## 20056 EE alleges that she was turning over a mattress when she noticed her right hand started to swell. ()
## 20057 EE alleges that she was walking across campus, going down stairs between mossman and the euc when she lost her footing and fell down a few stairs.
## 20058 EE alleges that she was walking in front of the chapel and stepped into a pothole she states that her rt knee hyperflexed and she felt sharp pain
## 20059 EE alleges that she was walking on the sidewalk infront of b dorm when her left foot slipped into a crack in the sidewalk.
## 20060 EE alleges that she was walking out of the front door of medical and her rt hand hit her rt hand hit door latch
## 20061 EE alleges that she was walking to her car when she tripped and fell over the curb backwards; lower back
## 20062 EE alleges that somehow in the process of restraining an inmate she must have bumped or jammed or something to her lt thumb
## 20063 EE alleges that students were pulling, tugging, and yanking on hand
## 20064 EE alleges that the cart that she was pulling rolled over her left foot
## 20065 EE alleges that the decontamination process of pepper spray training, he bumped his left eye withthe water nozzle.
## 20066 EE alleges that the door air pressre pinned him between the frame & door. Tenderness to left chestshoulder, back, neck.
## 20067 EE alleges that the drill he was using slipped cutting his left middle finger
## 20068 EE alleges that there was ice on the concrete ground and she fell as she was coming out of the kitchen
## 20069 EE alleges that upon entering EE tripped over a mop that was standing up against the door.
## 20070 EE alleges that when he was checking inmate locker he was struck by a needle
## 20071 EE alleges that when he woke his eyes were swollenshut. Did not know if the problem was due to fly bites or weed dust.
## 20072 EE alleges that when she attempted to sit down in chair the chair slipped from under her causing her to fall in the floor
## 20073 EE alleges that when she entered the bottom of tower #2, she turned around to lock the door and the door slammed on her index finger of rt. Hand
## 20074 EE alleges that when traveling north on 401 hwy from another prison he attempted to pass a veh turning left, other veh changed mind causing mva.
## 20075 EE alleges that when walking to the unpaved park- ing lot and fell on rocks breaking finger.
## 20076 EE alleges that while assigned to kitchen patrol he was making rounds when he slipped on the wet floor
## 20077 EE alleges that while assigned to tower #3 something flew into her right eye(bug)
## 20078 EE alleges that while attending self defense training he was practicing with his partner and his fingers were bent back. Felt little pain
## 20079 EE alleges that while attending training he injured his rt shoulder
## 20080 EE alleges that while being relieved at shift change from tower #8 he slipped and fell down steps. Left arm sore
## 20081 EE alleges that while cleaning out the fm compoundpulled on piping material and strained left groin and lower back
## 20082 EE alleges that while closing the fire safety bar on the fire exit door he traumatized his 4th finger on rt hand caught between metal bar and metal su
## 20083 EE alleges that while coming down flight of stairs from second floor to the first he placed his lt too far forward on the next step
## 20084 EE alleges that while conducting k-9 training they were working search areas. His dog was altering to a decoy in the tree. He was watching the dog and stepped on uneven ground and felt a sharp pain in his left knee behind the knee cap. ()
## 20085 EE alleges that while conducting mandatory count of inmates he was pushed by one inmate & then hit several times by two more in face, splitting lip
## 20086 EE alleges that while counseling inmates a fight occured b/t two inmates EE injured his rt shoulder
## 20087 EE alleges that while driving the perimeter patrol vehicle he started to smell diesal fuel EE alleges he recalls is that his vehicle hit a security p
## 20088 EE alleges that while engaged in a use of force with inmate hooper that inmate struck him on left side of face with fist.
## 20089 EE alleges that while entering a cell the sliding door made contact w/rt shoulder which caused her to be pinned in the doorway upper body became twist
## 20090 EE alleges that while entering a vehicle to go to post slipped on ice
## 20091 EE alleges that while entering inside slider door of single cell 3 the door closed on his lt hand
## 20092 EE alleges that while escorting inmates from dock to kitchen she was holding the metal door open accidentally mashed her rt hand b/t door handle and
## 20093 EE alleges that while he had stepped from his vehicle & was walking to front door of an offender he tripped over a line of stones 6-8 inches high.
## 20094 EE alleges that while in training, ofcr dews fell on top of him and his alleges hurt his rt side..
## 20095 EE alleges that while inmate was going up steps, inmate turns around and kicks her three times in the left leg.
## 20096 EE alleges that while learning cell extraction technique EE was on floor ans another officer fell on her back
## 20097 EE alleges that while lftng a manhole cover his footing slipped causing rt shoulder strain.
## 20098 EE alleges that while opening the exercise room windows some type of debie fall into his rt eye
## 20099 EE alleges that while operating the elevators in control room, she hit her right elbow on one of the knobs that controls the elevators.
## 20100 EE alleges that while participating in long baton training he turned his lt knee. Lt. Knee some pain and swelling
## 20101 EE alleges that while performing routine shakedown, EE stuck a sewing machine needle in l index finger, needle was hidden in inmate's locker
## 20102 EE alleges that while picking up a gas can she felt a sharp pain go through her lower back.
## 20103 EE alleges that while putting a rubber tip onto the glass rod of a stirrer, the rod broke cutting her right hand and index finger
## 20104 EE alleges that while putting wooden hutch onto the computer desk his fingers got caught under thehutch, cutting his left pinky finger
## 20105 EE alleges that while removing man hole cover, coveslipped from hand and fell on top of his rt foot
## 20106 EE alleges that while searching the bathroom aftermen's visitation, he cut his left middle finger on razor blade while searching around toilet
## 20107 EE alleges that while searching under hood of delivery truck, the driver lowered the hood on topof him across upper back.
## 20108 EE alleges that while she was answering the phone a jolt of lightning hit the building. EE felt a jolt and dropped the phone.
## 20109 EE alleges that while she was attempting to get in to a perimeter vehicle her lt foot slipped on the steps and her lt knee twisted around, popping
## 20110 EE alleges that while she was closing wicker door in segregation, the inmate kicked her on her rightforearm.
## 20111 EE alleges that while she was walking from her vehicle that she stepped up on the speed bump and slipped and fell
## 20112 EE alleges that while sitting in the chair, the chair tipped over backwards and she fell against the corner of hte door striking her right shoulder
## 20113 EE alleges that while standing an attempting to suction patient's mouth her right thumb caught on highspeed handpiece under nail. Poss. Contaminated.
## 20114 EE alleges that while stepping down from the chairon tower #10she twisted her rt foot
## 20115 EE alleges that while subduing combative inmate they both slammed against wall. Other officer mistakenly spray him with oc pepper spray.
## 20116 EE alleges that while subduing inmate he scraped his left wrist
## 20117 EE alleges that while supervising a hostile immatehe was pushed up against a wall and door injuring his rt wrist and shoulder
## 20118 EE alleges that while supervising inmates alongside she began to walk backwards to maintain safe distance she claims she stepped in a hole
## 20119 EE alleges that while supervising inmates returninto teh kitchen via the loading dock a cucket was dropped from cart and fell against EE's right ankl
## 20120 EE alleges that while supervising inmates watching a movie, she felt something hit her rt arm and brushed it away-sm bump on arm
## 20121 EE alleges that while supervising medium custody road squad inmates he stepped into a grass covered hole and twisted knee
## 20122 EE alleges that while trying to restrain a disuptive inmate in segregation that he was kicked by said inmate on the rt side of his neck and chest area
## 20123 EE alleges that while unloading surplus from a flatbed truck he slipped on condensation on the truckbed and fell backwards. ()
## 20124 EE alleges that while using a pipe wrench to turn a pipe and injured his back
## 20125 EE alleges that while walking back & forth betweendorms on 05. 31. 96 she felt slight discomfort in left foot, didn't know how or when occured.
## 20126 EE alleges that while walking in the dog run the purpose of conducting the fence test, he slipped on the gravel and twisted his ankle
## 20127 EE alleges that while walking up the steps of tower 7 ahe alleges that she stepped wrong and her lt hip started hurting
## 20128 EE alleges that while working bug bit her lip
## 20129 EE alleges that while working out on the road squad, he began to itch all over his body.
## 20130 EE alleges that while working with drug interdiction at robeson corr., she stepped in a hole twisting her left ankle and left knee.
## 20131 EE alleges that wrench slipped; left hand
## 20132 EE alleges the injury occured when she filled up a 5 gallon bucket with water and carried it to the bathroom twice. Afterwards, her left arm started hurting. ()
## 20133 EE alleges the ladderwas fallen and EE jumped from the ladder landing on his leg before hitting the ground.
## 20134 EE alleges top broke off on bottle of cleaner whenit fall and spray went into rt eye
## 20135 EE alleges tripping over a broken chair and fell inot the chair straining lower back and left knee.
## 20136 EE alleges turning down a hallway and walked into a table-tripped over cand and fell on table straining upper back
## 20137 EE alleges turning off water in pipe closet of block 603 cell, pressing down to get a bite of wornfixture, screwdriver slipped off, hit pipe w/ lt han
## 20138 EE alleges twisting left ankle while stepping off ramp at loading dock
## 20139 EE alleges unknown back pain he suspects came fromwhile assisting a coworker move a 120lb box of rocks off a truck or couple mos later moving cloth
## 20140 EE alleges upon walking from her dorm to her car, she stepped into a hole and fell. She states injuring her left ankle
## 20141 EE alleges upper shoulder and neck pain due to repetitive motion involved with pushing dumpsters twice a day with 5 co-workers
## 20142 EE alleges use of computer produced wrist discomfort
## 20143 EE alleges using a wrench to release a stuck tool changer on a makino cnc mill, the wrench slipped his l arm struck the alumimun block and cut arm
## 20144 EE alleges walking along the brick sidewalk going to parking lot and fell hurting r hand, wrist and arm
## 20145 EE alleges walking down the ramp and slipped and fell on some oil and water and hitting her hand, knee, and ankle
## 20146 EE alleges walking down the steps after exiting scott hall, she lost footing and fell fracturing her lt ankle
## 20147 EE alleges walking down the steps, slipped on mud on shoes and fell down twisting her left knee
## 20148 EE alleges walking near from entrance, tripped andfell bruising ribs.
## 20149 EE alleges walking on 9th floor of scott hall and knee locked up.
## 20150 EE alleges walking on campus when her legs began to itch... Thinks from mosquitoes
## 20151 EE alleges walking outside of the bldg and trippedover a hose lying near the bldg and fell hitting her right knee
## 20152 EE alleges walking over curb in parking lot, lost balance and fell against restraining wall strikingforehead and hand.
## 20153 EE alleges walking to car after work using stairs located behind atkins library. Her right foot gaveway causing her to lose balance and fall.
## 20154 EE alleges walking to work from parking deck; whenshe slipped on ice as she was walking down the steps and fell hitting her back
## 20155 EE alleges walking up the stairs in the parking deck; fell on the stairs and hit his right ring finger
## 20156 EE alleges walking while reading and fell over rock at corner of sidewalk between friday buildingand bookstore, injuring elbow.
## 20157 EE alleges was bent over picking up trash, stood up& bumped her head on a shelf cutting it
## 20158 EE alleges was changing a lightbulb when it shattered and cut 2 fingers on his right hand
## 20159 EE alleges was changing lightbulbs, while climbingdown ladder he missed the bottom rung & fell against cinder block wall hitting head
## 20160 EE alleges was cleaning a room in spencer hall andgot a splinter in her right hand
## 20161 EE alleges was demonstrating trap door for sweeny todd production, door jammed & then released striking EE in the left shoulder/back
## 20162 EE alleges was exiting co-workers office & trippedover a step stool injuring her tailbone
## 20163 EE alleges was exiting golf cart while it was backing up & fell in the parking lot injuring his face/head/chest
## 20164 EE alleges was helping with fire drill when he was standing in the doorway of a sliding door talking to control booth when sliding door closed and stu
## 20165 EE alleges was installing a fan & bent & twisted the wrong way injuring his back
## 20166 EE alleges was involved in police pursuit, suspectjumped a fence & EE jumped fence after him, when he landed he injured a muscle in his back
## 20167 EE alleges was kicked in groin and got scrapes on rt wrist from altercation with inmate
## 20168 EE alleges was loading a drain machine into the back of truck, felt pain in his lt shoulder
## 20169 EE alleges was mopping bathroom the bathroom floor when she bumped her elbow on her way out
## 20170 EE alleges was mopping floor, started to change water, put his hand under the bottom of the mop bucket and cut his finger ()
## 20171 EE alleges was pushing a car over a stop block at a meter and tripped hurting his left thumb
## 20172 EE alleges was pushing a cart and slipped on some spilled liquid ()
## 20173 EE alleges was pushing a genie lift up a ramp whenthe board broke & the lift stopped hurting his lower back
## 20174 EE alleges was restraining an inebriated alumni athomecoming to keep him from going on stage & strained her right shoulder
## 20175 EE alleges was shoveling dirt and the ground was hard, stomped on the shovel and had pain in his back and right knee
## 20176 EE alleges was struck on rt hand w/soccer ball shot at the goal during practice.
## 20177 EE alleges was taking out trash & 2 yellowjackets stung his left forearm ** cell 336-987-3775 **
## 20178 EE alleges was walking between buildings & trippedon an uneven sidewalk fracturing her left wrist & bruising left ribs
## 20179 EE alleges was walking from her building to another on campus, went on the path by the school of music and slipped on an icy step - someone had left a
## 20180 EE alleges was walking in euc and tripped over a raised ridge used to cover power lines, it was a temp power source for orientation
## 20181 EE alleges was walking into bldg, it had been raining & shoes were wet slipped & fell w/lt foot under her
## 20182 EE alleges was walking to work area & tripped on the curb hurting her right hip, knee and ankle
## 20183 EE alleges was wiping up unknown liquid from cart, turned out to be acidic byproduct of moisture & soot resulting in chemical burns to hands
## 20184 EE alleges was working on some doors in the shop, one slipped and hurt his left wrist and thumb
## 20185 EE alleges weedeating on grounds and came in contact w/poison ivy-rash on hands and legs.
## 20186 EE alleges when dumping a wastebasket-copier tonerdispersed into air-resulting in toner entering rt eye
## 20187 EE alleges when getting off the lawnmower - hit rt shin on mower deck
## 20188 EE alleges when getting up from her desk her left leg got caught in chair leg causing her to fall and hit both knees on floor
## 20189 EE alleges when moving a bed it shifted and fell injuring rt hand.
## 20190 EE alleges when stepping over a railroad tie, shoegot caught on spike causing EE to fall injuring rt ankle and left elbow
## 20191 EE alleges whil getting out of chair she felt a sharpe pain in lower lt hip area, pain shot down leg causing toes to get numb.
## 20192 EE alleges while assisting a cub scout group builda ramp along a stream, he strained low back unloadlumbar and operating the trailor
## 20193 EE alleges while at work EE injured his lt thumb on the bottle while destroying the bottle.
## 20194 EE alleges while climbing up a ladder, he bumped a cyst on the inner side of lt thigh on ladder, popping open the cyst
## 20195 EE alleges while closing a window the pane broke and glass fell out and hit him
## 20196 EE alleges while coming out of dorm in the newsomebuilding, she stepped down on the edge of the stepand twisted her rt foot
## 20197 EE alleges while coming to work from cone parking deck, EE tripped on brick and fell bruising arm and knee
## 20198 EE alleges while conducting rounds on cellblock 3gshe twisted her knee while turning suddenly.
## 20199 EE alleges while descending stairs he missed two steps and fell landing on left knee.
## 20200 EE alleges while escorting inmates back from dining hall inmate touched her buttocks EE turned to get pepper spray he inmate hit her in the face
## 20201 EE alleges while hanging sheetrock-debris flew into left eye
## 20202 EE alleges while he was assisting cutting plexiglass, the plexiglass got bound up and it kicked back and hit his right hand.
## 20203 EE alleges while in cell extraction training, he was forced down and pinned under four other officecausing his rt rib cage to be compressed.
## 20204 EE alleges while involved in a cell extraction to place an inmate in four point restraints, he slipped down on floor in inmate's waste, cut hand
## 20205 EE alleges while lifting a chemical jug to shoulder height, hurt lower back.
## 20206 EE alleges while lifting a trash bag felt pain in neck and rt shoulder
## 20207 EE alleges while locking two tables together EE felt pain in lower back area.
## 20208 EE alleges while making a check of the fence line on edwards yard she stepped in a hole turning her lft ankle, foot
## 20209 EE alleges while making a check of the fence line on edwares yard she stepped in a hole turning her l andkle and foot, felt numbness in l hand and arm
## 20210 EE alleges while moving a couch-rt index finger got caught between couch and wall
## 20211 EE alleges while moving racks of chairs and tablesfelt pain in rt lower back.
## 20212 EE alleges while moving tables from the cage to dump site he slipped on a piece of wood and fell on ground
## 20213 EE alleges while operating a weedeater he felt a prick on his right knee. Possible spider bite
## 20214 EE alleges while performing housekeeping duties using the powder free gloves her hands developed cuts and cracks
## 20215 EE alleges while preparing for rotation on the yard she was sitting in the chair turned to the rt hitting the rt corner top of the printer
## 20216 EE alleges while pulling pump in manhole EE experienced severe pain in low back .
## 20217 EE alleges while pulling trash bag out of barrell felt a pain in rt wrist
## 20218 EE alleges while pushing a ptaient in a wheelchair over carpeted floor felt pain in lower back.
## 20219 EE alleges while putting up promotional materials in a glass display case, case broke cutting EE on left thumb, right calf and rgt arm
## 20220 EE alleges while removing a screw from a 2-way con-trol valve, the screwdriver slipped out of groove& went under fingernail on his left pinky finger
## 20221 EE alleges while removing doors and closers, pulled lower back
## 20222 EE alleges while rover patrol she started itching all over as if she was being bitten by bugs
## 20223 EE alleges while setting up a stage, the stage platform fell and landed on his right thumb, catching it between the stage and the steel frame
## 20224 EE alleges while she was working on post #9, she was bitten on her right thigh by a spider.
## 20225 EE alleges while stepping off the van onto the ground EE twisted rt ankle.
## 20226 EE alleges while straightening upcart vaccum cart fell striking EE ans scraping lt ankle
## 20227 EE alleges while supervising the inmates in segregation, he turned to try and plug in a fan cord. EE got out of chair and fell in floor.
## 20228 EE alleges while taking down a metal and glass door for repair he felt a pain and saw a bulge in his abdomen.
## 20229 EE alleges while vacumming, moved wrong and dislocated rt shoulder.
## 20230 EE alleges while walking beneath cone center, tripped at point where asphalt and concrete meet injuring left shoulder
## 20231 EE alleges while walking down the steps he slipped on last five steps holding on to the rails
## 20232 EE alleges while walking from staff house she steeped on a rock and turned her rt foot over
## 20233 EE alleges while walking to the parking lot he stepped on a rock and twisted his left ankle
## 20234 EE alleges while weedeating on grounds notice rash on lower and upper legs
## 20235 EE alleges while working at computer, EE turned chair around to desk and splinter went into left leg
## 20236 EE alleges while working in a close space was moving to get in position to paint and strained left shoulder.
## 20237 EE alleges while working she hurt her right middlefinger causing damage to her acrylic finger nail and partially pulling it off.
## 20238 EE alleges while wringing out mop-pressed too hard on the lever and strain rt wrist
## 20239 EE alleges working on chemistry lab when his experiment exploded on left lower arm
## 20240 EE alleges wshe was moving tables and injured her neck/back/shoulder, arm and finger.
## 20241 EE alleges, riding her assigned bike back to the police department when the gears jammed causing her to go over the handlebars & scrape her knees
## 20242 EE allegies might have done something to lf elbow when repositioning client.
## 20243 EE alleging asbestosis
## 20244 EE allegs that while enroute to his assignment in l control he stepped off the lt side of the snow covered sidewalk he turned his lt ankle
## 20245 EE allergic to latex gloves - rash on both hands.
## 20246 EE allergic to mold ()
## 20247 EE allergies became more problematic in spring after re-occupying the trailer office left nostrilclosed, sneezing, headaches, eye mucous
## 20248 EE allged he was scraping floor on stripper & lostbalance falling backwards onto wet floor.
## 20249 EE allged she was moving a table when it fell injuring her ankle. ()
## 20250 EE along with 2 other people were moving a large incubator about 500lbs EE had hold of the cart when all the weight fell on the cart
## 20251 EE along with an assistant instructor were positioning vehicles for afternoon practices. While lifting a vehicle using a high lift jack, the bottom pin on the jack fell, causing the jack to collapse. EE sustained a laceration to the palm of his lt. Hand
## 20252 EE along with another employee removed a barrel from the floor and started unlading trash into bens. EE injured lower back. ()
## 20253 EE along with another staff member and restrainingpatient and hand slipped off patient's arm and EE fell on chair onto floor. Injured rt knee.
## 20254 EE along with co-workers where pushing library bin, when bin fell hitting EE left ankle.
## 20255 EE along with supervisor were in process of trans-porting a female juvenile in secure custody. Juven-ile began to kicking and screaming.
## 20256 EE already had a cut on forehead. Re-opened cut by hitting head on corner of bottle cage.
## 20257 EE and 2 co-workers were driving EE appreciation fair. They were hit by drunck driver who ran red light. Back pain soreness.
## 20258 EE and 2 other EE's had to use physical force to restrain an inmate, he fell on his left knee whiletrying to subdue him to the ground.
## 20259 EE and 2 others in front seat of state truck on business, they were hit by a drunk driver who ran rdlight, EE thrown forward and bruised knees, sprn bc
## 20260 EE and 3 others were loading an ac unit onto a truck; a park broke off (tank) and fell-EE injuredright foot
## 20261 EE and EE was talking- patient stamped on EE's lt foot for unknown reason.
## 20262 EE and a co-worker was trying to lower foot of thebed and the spring smashed the hand.
## 20263 EE and a coworker were making some plumbing repairs on a water located in the jim graham building. EE stated that as he pulled the front door panel away it flew off and hit him above his left eye. ()
## 20264 EE and an inmate were trying to move the lift through a door. The lift was too tall to fit so eetried to tilt lift. Lift fell onto right shoulder.
## 20265 EE and another EE repositioning client w/sheet-EE felt pull in lower back.
## 20266 EE and another EE was attempting to move desk to allow surge protector to go underneath desk and injured lower back
## 20267 EE and another EE was bring resident to head of bed while resident was resistant hurt r shoulder ()
## 20268 EE and another EE was disassembling basket rack EE was accidently struck by pull up door injuring rt shoulder
## 20269 EE and another EE was lifting an I beam and one end was dropped on EE's hand
## 20270 EE and another EE was lifting client out of wheelchair. When EE stood up she could not move. Injury to middle of back
## 20271 EE and another EE were getting a patient out of bed, the patient kicked EE in crotch
## 20272 EE and another EE were lifting resident into bed when resident fell causing EE's thumb to bend backcausing pain in joint around thumb
## 20273 EE and another EE were moving tables to set up work area. Pulled something in the back
## 20274 EE and another EE were pulling an ac unit out of a windown and strained back.
## 20275 EE and another EE were putting a patient to bed using the lift and the lift tilted over on to EE's foot ()
## 20276 EE and another EE were working on concession stand - door support was moved and lift door fell on EE rt shoulder
## 20277 EE and another employee moving a filing cabinet out of hall down some steps. Cabinet slipped off of dolly and hit EE on right shin.
## 20278 EE and another employee was putting a client in a rocking chair from a wheelchair and EE's rt elbow popped.
## 20279 EE and another employee were holding a heavy vaultthat was falling. Next week had to lift heavy cases of I. V. S and felt lots of pain in back
## 20280 EE and another emt were lifting a resident on the stretcher EE felt a sharp pain in her right shoulder & tingling down her arm to her fingers ()
## 20281 EE and another hct was transfering pt to his bed when pt grabbed EE wrist and twisted it.
## 20282 EE and another officer was attempting to place a juvenile in custody. The juvenile struggled and bit EE on the upper right arm
## 20283 EE and another person did a two person lift and eefelt pain in her rt side of her back.
## 20284 EE and another person were unloading pickup truck of twine to stack. Other EE was throwing boxes to EE and fingers bent back while catching box
## 20285 EE and another staff lifted client off van lift (lift would not work and no manual bar available). EE and three staff lifted another client off of van from the inside entrance. EE states fells like a pull in back (mid back pain). ()
## 20286 EE and another staff lifting client into recliner staff didn't lift client high enough-EE felt pull in lower back
## 20287 EE and another staff member lifted a client from trolly to chair. EE felt a pull in back. Back strain
## 20288 EE and another staff member were demonstrating playing tennis and ball went toward EE's face- EE blocked ball-strained rt knee in the process
## 20289 EE and another staff member were lifting a patientfrom bed to the chair the chair rolled to the door and EE's hand was caught between the door and cha
## 20290 EE and another staff member were transferring client from the dinning room to wheelchair and client refused to cooperate.
## 20291 EE and another staff pulling up resident's pants. EE went behind resident and slightly lifted him up. Strain to right lower back. ()
## 20292 EE and another staff putting client to bed. EE had the bottom of the client. Client started wiggling. As EE bent over to put client in bed her lower back popped. ()
## 20293 EE and another staff took client to pool-client getting out of pool and started to roll-EE felt something pull under rt shoulder.
## 20294 EE and another staff walking client to dining roomclient went down and EE stumbled over client, twisting left ankle
## 20295 EE and another staff was carring a pt to time out and had to stop because EE back started to hurt.
## 20296 EE and another staff were changing an individual in the back of wheelchair van, EE felt a twinge in her back when lifting individual.
## 20297 EE and another staff were transferring client frm bed to bath when client started hitting self-otheree slipped causing EE to hold all wgt of client.
## 20298 EE and another staff were transferring client from wheelchair to bed. Chair wasn't positioned correctly; EE had to bend over chair to get client into bed. EE felt a twinge in lower back muscles. ()
## 20299 EE and another trooper were attempting to arrest asuspect. He pushed holcombe causing him to fall toground, striking back of head on cement marker.
## 20300 EE and bank robbery suspect involved in collision. After impact suspect shot EE in left arm thru windshield of patrol vehicle
## 20301 EE and client outside for cookout-client became upset when asked to go to bathroom-grabbed EE's shirt and kicked EE in chest.
## 20302 EE and client slippe don wet floor. Injured groin muscle.
## 20303 EE and client taking laundry out of washer putting into dryer; client became aggressive. When EE intervened, client started behavior; EE blocked client from slapping himself; felt right wrist pop; swollen right hand; wrist and fingers. ()
## 20304 EE and client were making bed, client pushed bed against EE causing EE to turn suddenly, twisting back. Strain.
## 20305 EE and co worker were lifting and dumping a bin of grain EE felt pain in back
## 20306 EE and co worker were manually adjusting forks on forklift, thought adjustments were complete and letgo, fork crushed EE's left middle finger.
## 20307 EE and co-worker chitra iyer were working in central files. The electronic button used to move the shelves wasn't working, and EE and chitra both pushed on either end of shelves to try to move them without notifying their supervisor. ()
## 20308 EE and co-worker climbing ladder to open hatch and check chemicals-head, neck, back, shoulder and left leg
## 20309 EE and co-worker had to lift container of waste about 36in off ground to put on cart. EE felt pop in back. Coworker heard
## 20310 EE and co-worker in golf cart making delieveries. Co-worker pushed gas peddle which jerked EE head backwards. Head struck pole. Neck strain
## 20311 EE and co-worker involved with client co-worker raised up hitting EE in the nose with head. Fractured nose.
## 20312 EE and co-worker melissa jones were working in central files. The electronic button used to move the shelves wasn't working, and EE and melissa both pushed on either end of shelves to try to move them without notifying their supervisor. ()
## 20313 EE and co-worker were entering and exiting a door at the same time. As one EE was pulling the door open from one side, the other EE was pushing the same door open from the other side and the door was pushed into injured EE’s left shoulder. ()
## 20314 EE and co-worker were lifting a hp 550 color printer onto a cart to transport from science and technology building to slay/ engineering dept. EE felt a strain in his lower back. ()
## 20315 EE and co-worker were moving desk, co-worker dropped his end. EE strained low back.
## 20316 EE and co-worker were picking up wooden platform when it slipped from both of their hands
## 20317 EE and co-worker were placing client in pic when co-worker leaned across her causing knees to be injured. Pain, swelling, soreness to knees
## 20318 EE and co-worker were straightening out a steel rod on a landscape timber and the hammer slipped hitting EE on the top of his left hand.
## 20319 EE and co-wrker were installing upright headstones, hurt lower back when lifting one headstone off truck to place on ground
## 20320 EE and coworker returning from lunch, stop to pickup autopart, coworker returned to vehicle, found EE slumped over steering wheel unresponsive
## 20321 EE and coworker were in state vehicle on the way to survey a long term facility when another vehicle ran a red light and struck EE's car.
## 20322 EE and coworker were putting patient on commode chair. Patient was fighting and EE's wrist was injured
## 20323 EE and coworker were removing a chalkboard from wall. The chalkboard bracket broke away from wall and ie broke the fall of the board to prevent it hitting his coworker ()
## 20324 EE and coworker were removing patient from stretcher. Stretcher dorpped to ground with a jolt casuing pain in lower back.
## 20325 EE and coworker were rolling epoxy floor paint on floor at the vet school. Rash on head, arms, upper extremity, abdomen, chest, shoulder, legs, feet.
## 20326 EE and fellow EE were moving tables and other equip when he notice strain in his elbow & above elbowmuscle. Hurts to move arm upward and to twist it
## 20327 EE and gabel were guests at a high school. Studentintentionally bumped back of patrol car when approached he fled. EE ran and strained back.
## 20328 EE and her supervisor were moving dogs. A dog ran up from behind her knocking her off her feet. She fell back. Landing on back hitting head on floor
## 20329 EE and inmate got into altercation injuring EE's neck, left elbow, left cheek, nose, and both knees
## 20330 EE and inmate went to empty mop bucket, EE steppedoff sidewalk were dirt had washed away, into a hole and hurt l ankle.
## 20331 EE and inmate were attempting to lift a concrete table top onto the pedestal, were only able to move the top, right middle finger caught underneat
## 20332 EE and officer minton were patrolling for boating enforcement while officer minton was approaching a vessel to checkm EE had to grab vessel to avoid
## 20333 EE and other EE carrying radio equipment. Other eedropped equipment causing injury to EE. Injured right shoulder and left wrist
## 20334 EE and other EE working on sprayer when it malfunccaused EE to spry lower face and chest with insectkiller
## 20335 EE and other coworker were moving a table out of her office when the legs broke off causing top of table to fall on her leg and foot
## 20336 EE and other patrol members were in pursuit of violators when they discarded controlled substancecocaine was ingested thru air vents
## 20337 EE and other patrol members were in pursuit of violators when they discarded controlled substancesubstance was ingested thru air vents.
## 20338 EE and other staff members were intervening with clients behavior. He was bending up and down. Chest wall strain
## 20339 EE and other staff were escorting client to restraint room when client started fighting EE's and fell on EE's left knee.
## 20340 EE and other staff were getting patient up when patient fell to knees. EE had back and neck pain. Back strain
## 20341 EE and others getting into taxi. Driver started driving off while EE was still getting in. Others yelled for driver to stop, EE hit knee on door jam
## 20342 EE and partner were lifting rack of amplifiers off the stage in memorial. The partner dropped hisend causing EE to strain back
## 20343 EE and passenger were stopped for traffic when vehicle was struck from behind by another vehicle. Acute pain to neck area
## 20344 EE and patient moved towards each other at the same time accidently bumping heads together--forehead
## 20345 EE and pt fell on wet floor in the bathroom
## 20346 EE and pts playing basketball. Ball went toward bldg, EE recahed for ball. Hit hand on window breaking it, received laceration on arm
## 20347 EE and second hct were taking pt to hold, pt began struggling and EE fell on floor, landed on l side
## 20348 EE and staff was lifting client into wheelchair and complained later of catch in lower back.
## 20349 EE and staff was putting client into wheelchair when wheelchair ran over EE's left big toe
## 20350 EE and staff was walking a client to classroom both slipped in water on floor-EE twisted rt ankle
## 20351 EE and student were moving a piece of plywood; eestepped backwards into a table saw
## 20352 EE and students were in a training exercise. A piece of glass fell and hit EE on his rt hand. 4 stitches on rt hand.
## 20353 EE and students were playing basketball and EE came down and felt sharp pain from block.
## 20354 EE and supervisor were installing the blower attachment to the tractor. The left side of the blower hooked up to the tractor but the right side was having difficulty connecting. EE tried to pull the blower into place, like he has done many times before,
## 20355 EE and supvsor moving equipment-equipment shifted and caused EE to strain back.
## 20356 EE and teacher was trying to assist client to another table to participate in activities and when eeasked client was he going to leave group stated. ..
## 20357 EE and two co-workers were in the process of up-righting from the floor a set of metal wall lockers when the load shifted on him
## 20358 EE and two other co-workers were wlaking down hallone slipped in water and grabbed EE, the other hit EE's coffee cup.
## 20359 EE and two other employees were walking together. Other EE grabbed EE's back and jumped up. This pulled EE's back and right front side and stomach.
## 20360 EE and two others were welding a clamshell bucket at the same time. Protective welding hoods and glasses were used.
## 20361 EE anesthestizing a cat when it bit him on the left wrist.
## 20362 EE another vehicle pulled out of the winn-dixie parking lot & struck vehicle in rt front door. Other driver charged. Neck & back injuries.
## 20363 EE answering call to assess child, approaches front door where a small dog is waiting. EE walks up steps & dog bits EE between the calf & ankle
## 20364 EE answering phone at phone center. Caught top offoot under (in between) legs of chair
## 20365 EE answering phone in dining hall-inmate pushed door open & door hit EE in back-caused pain in neck
## 20366 EE apparently fainted hitting sharp edge & causing extensive bleeding of head.
## 20367 EE appears to have had a seizure as he was standing in the sgt office
## 20368 EE applied &removed asbestos containing insulationregularly during employment with doc
## 20369 EE applied pressure to screw while holding receptacle resulted in slippage to impact and penetrated hand.
## 20370 EE applied too much pressure trying to twist open a solvent trap and the l-shaped connection broke and cut left hand.
## 20371 EE applied vehicle brakes abruptly and with force to avoid vehicle accident. Pain and swelling in rt ankle/foot occurred within 24 hrs ()
## 20372 EE applying pressure to caulk gun and piece of caulk went into rt eye
## 20373 EE applying resident's behavior support plan when resident bit EE's rt calf
## 20374 EE applying splint to someone when he struck across face hitting left eye
## 20375 EE applying thermosplastic patch for ballrd installation at cobb deck-rt foot/toes
## 20376 EE apprehended wanted person in another vehicle that attempted to leave parkin lot. EE attempted to mainted tripped falling on lt wrist & rt hand
## 20377 EE approached a patient and patient punched EE in the face breaking nose
## 20378 EE approached by patient asked what she needed thepatient hit EE in mouth. 1 cm laceraton to rt upper lip&chipped ft tooth. Swelling the rt cheek
## 20379 EE approached cart of cleaning supplies. Inmate stopped cart suddenly causing mop bucket full of hot water to fall onto his feet. Burned feet
## 20380 EE approached door of residence answering call forservice. EE foot slipped in crack between door/ porch. EE fell thru crack injuring upper leg
## 20381 EE approached door to open it, another person open-ed it from the opposite side and the door struck her big toe on her right foot.
## 20382 EE approached drivers veh when a small dog came through window and bit EE on lip
## 20383 EE approached individual incorrectly as trained, causing him to go into a behavioral pattern. Employee fought with individual, injuring him by scratching and lacerations. ()
## 20384 EE approached inmate to give him an order. He placed left hand on left shoulder and pushed her.
## 20385 EE approached mobile home, probationer escaped back door. EE pursed on foot stepped uneven groundinjuring lower lt calf muscle.
## 20386 EE approached patient without warning patient hit EE on left side of hand with fist EE fell to floorbruising top left hand & right hip.
## 20387 EE approached pt re doing an activity, pt said no, grabbed EE's hair, scratched EE in the left eye ()
## 20388 EE approached resident who was sitting on floor resident swung at EE and grab her hand a& scratch her ()
## 20389 EE approached stairs to go down, foot slipped on floor, causing her to twist right ankle
## 20390 EE approached subject who broke ran away foot across parking lot of food pride stone main st upon reaching the roadway agent tripped & fell.
## 20391 EE approached while he was being escorted to adminsgt struck him on lt side of face with his fist. Lt side of facial area lt ring finger.
## 20392 EE approaching cafeteria and turned head and tripped over a cigarette urn-bruised left side of face, knee and hand
## 20393 EE approaching slower traffic-went to the rt and lost control of veh-skidding left across roadway and stuck embankment
## 20394 EE approaching van & felt something sticking her upper lt arm lifted sleeve & saw brown flying insect that had stung her
## 20395 EE approaching water fountain and slipped in fell.
## 20396 EE arm (l) hand (l) back (lower) neck.. Work in office answering phones, computers, multi tasking.. Working w/ numbness in arm/hand
## 20397 EE arm and shoulder started hurting her, due to reaching for the mouse/mouse pad
## 20398 EE arm started swelling after blood donation.
## 20399 EE arose from sitting position quickly to asist two residents that became confrontational
## 20400 EE arranging chairs in atking annex strained back
## 20401 EE arrested a male for dwi & transported some to robeson county jail. EE was in close contact with1hr & was exposed to male with active TB virus.
## 20402 EE arrested a man who is a known carrier of t. B. EE was exposed in patrol car
## 20403 EE arrested a suspect for hit-in-run and driving while impaired. The suspect refused to walk, so the EE with help from other officers carried the suspect up an embankment hurting his right shoulder.
## 20404 EE arrested and transported an individual to jail. If was discovered later that individual had TB.
## 20405 EE arrested curtis brook for driving while impaired & transported him to police dept. EE was told that the prisioner was a active TB carrier.
## 20406 EE arrested drunk driver-placed him in car-walked around to driver's side & stepped in hole injuringleft foot & right knee
## 20407 EE arrested subject for driving while impaired. While enroute to the detention center arrestee coughed & saliva struck ees face.
## 20408 EE arresting a probation violater. Violater rec'd lacerations from briars and bled on EE. Index finger of rt hand.
## 20409 EE arresting a supect injured right thumb by scratching it on the asphalt street
## 20410 EE arresting offender. Offender resisted by pulling away & running from EE. EE tried to restrain & they both fell in a ditch.
## 20411 EE arresting probation violator, offender resisted a struggle ensued, offender and two others fell onee bruising right knee
## 20412 EE arresting probationeer for probation violation and he resisted knee was bruised and foot srpained
## 20413 EE arresting suspect who was resisting arrest, whilattempt to control suspect both went to ground, suslanded on EE hand, contusion rt hand
## 20414 EE arresting suspect, suspect struck EE in face & tried to escaped custody, laceration to left arm abrasion and contusion
## 20415 EE arresting suspect-both fell to groud causing suspect to land on EE injuring rt elbow and shoulder.
## 20416 EE arrived at and exited the car and sliped and fell on icy pavement. Injured rt shoulder, thigh.
## 20417 EE arrived at work and slipped and fell on ice
## 20418 EE arrived at work she slipped and fell in the hallway outside work breakroom. It was raining hard that morning and the floor and EE's shoes were wet; EE slipped and fell twisting ankle ()
## 20419 EE arrived at wrk, & escaped patient jumped in hisvehicle attacking & pulling him out of the car trying to get his keys.
## 20420 EE arrived for work got out of the car in staff parking lot slipped and fell on black ice in parking lot face down onto pavement
## 20421 EE arrived in seg. 1 inmate refused to put his hands out & they were forced to go in his cell & during the struggle his wrist was cut.
## 20422 EE arrived on west side of nursing building to attend an event at the new dental school. He exited his patrol vehicle and closed the patrol car door, he accidentally closed his right thumb in the door. ()
## 20423 EE arriving at pcs clients home to begin work day and slipped on ice in yard she fell on lt side hitting elbow.
## 20424 EE arriving the following day, was unable to hear in right ear, from firing line
## 20425 EE as assisting patient off of floor and strained rt scapula
## 20426 EE as at pool with resident-resident kept pulling EE in different directions and EE strainedrt knee
## 20427 EE as attempting to gain control and return the fire exting to it's appropiate location, student released the chenicals in EE face and EE inhaled it.
## 20428 EE as helping client to her feet and felt a pull in pain to her back.
## 20429 EE as helping her supervisor store tissue in basement closet. As she exited towards the freight elevatr she hit her head on overhead pipes
## 20430 EE as helping to clean co-workers office and was bitten by a spider. Injured rt hand.
## 20431 EE as making resident bed and hit rt lower leg on bed rail
## 20432 EE as packing up equipment and stepped off an elevated platform and twisted his left ankle.
## 20433 EE as walking around beaufort/ft macon and startedshe did not drink enough water and became dehydrated.
## 20434 EE ascended the stairway returning to duty after responding to code 400, her knee gave out, causingher to stumble.
## 20435 EE ascending off ladder, approached top of ladder and hit head on roof
## 20436 EE asisted a classroom teacher trying to remove a student from the playground and the student bit EE on the rt arm.
## 20437 EE ask client to come out of hallway, client refused, started to tear shirt off and EE tried tostop. Client scratched EE on left hand.
## 20438 EE ask pt to lv classroom, pt threw book at EE, attacked EE, scratching them in multiple areas
## 20439 EE asked a disruptive student to leave class when the student attacked EE and other students attackd the attacker. Injured foot, arm, neck.
## 20440 EE asked client to go to his room. Client walked by EE and hit her on head. When EE went to put client in pic client hit lower arm.
## 20441 EE asked client to hang up hander. Client spit and kicked
## 20442 EE asked client to sit on bed, client hit EE in faccausing scratch to lip and breaking eyeglasses
## 20443 EE asked client to take medication client threw cup at EE and attacked EE client was placed in pin hold client hit rt arm
## 20444 EE asked client to wait her turn after breakfast grooming. Client grabbed EE's hand causing cuts and scratch
## 20445 EE asked inmate to help move fan away from phone as the fan was uprighted the metal base came down on EE right foot.
## 20446 EE asked patient in put her tray & plates up and patient scratched EE. EE fell to floor hitting knee, wrist and neck
## 20447 EE asked patient not to go back into room and patient punched EE in face
## 20448 EE asked patient to go to quiet room and patient became combative and bit EE on the right forearm
## 20449 EE asked patient to leave phone room and patient pushed EE into the phone-EE struck head on phone causing laceration
## 20450 EE asked patient to return cd player and patient struck EE in the (left side) face 3 x's with an open hand. ()
## 20451 EE asked patient to sit down, EE then turned and the patient hit EE in the face with his fist.
## 20452 EE asked pt to get out of another pt face. Pt kicked EE on l leg & bent finger from side to side
## 20453 EE asked pt to lv restraint rm, pt turned hitting EE in the face, throwing EE to ground ()
## 20454 EE asked pt to sit down, pt refused, picked up a chair and tried to hit EE, EE blocked hit with left hand, chaired hitted EE's left hand
## 20455 EE asked pt who shoes he had on pt turn and hit her in the head with his fist.
## 20456 EE asked resident did he want anything to eat, resident said ice cream, EE gave him ice cream, EE was wiping resident mouth with a towel when resident bit EE right index finger. ()
## 20457 EE asked resident to stop rubbing injuried rt eye resident then began hitting her head, EE held resident arms resident butted EE in face hitting nose.
## 20458 EE asked staff about lifting client from chair, EE went to lift clients upper body and pulled lower back.
## 20459 EE asked student to move and when he wouldn't EE tried to move his-student bit EE three times on her arms
## 20460 EE asked to got othe bathrooma nd client punched EE in the jaw
## 20461 EE assaulted by a student. EE was hit upside the head by a student.
## 20462 EE assaulted by client-bruised about left eye
## 20463 EE assaulted by inmate while trying to subdue him to be placed in segregation, bruises to low back
## 20464 EE assaulted by inmate with sharpened metal objectinjury upper left chest puncture and abrasions
## 20465 EE assaulted by inmate. Inmate struck EE in face and head w/fists. EE also fell to floor and struck head on concrete
## 20466 EE assaulted by passenger riding bus.
## 20467 EE assembled a desk then picked up to move onto unit-pulled rt shoulder/arm.
## 20468 EE assembling beds when wrench slipped off bolt causing EE thumb to strike bed frame, which causedsmall scratch
## 20469 EE assending steps to tower #10 to relieve second shift EE twisted right ankle
## 20470 EE assessing pain on animal & dog bit rt hand
## 20471 EE assigned as patrol officer in single cell, she was maker her check when inmate threw cup liquid at her. Injured rt arm, shoulder, neck & face
## 20472 EE assigned to 2nd floor. Was attempting to cuff inmate. Inmate refused to be cuffed & while attempting to restrain inmate hit EE in eye
## 20473 EE assigned to back yard. Reached his hand throughgate outside kitchen door to gain access. Scrapedindex finger on sharp edge of wire.
## 20474 EE assigned to e-block when he began to smell the fumes from cleaning solution. EE began experienc- ing shortness of breath and pain in chest area.
## 20475 EE assigned to master control, while using phone went to turn chair broke, fell on right sideof body. ()
## 20476 EE assigned to mple dorm EE securing c entrance door left hand caught btwn door and frame, contusion
## 20477 EE assigned to patrol on the yard, upon making fence line EE fell down onto left side in a muddy area, radio help, refused treatment. EE was fine
## 20478 EE assigned to post 2 - lowered supply basket fromcatwalk. Basket hit EE in top of head. Bump top of head.
## 20479 EE assigned to post 4 - he dropped a piece of trash on floor bent down to pick up and struck his head against rack. Abrasion on rt side of head
## 20480 EE assigned to proscribed burn - upon completion of lighting an area the employee walked down a steep slope and then had to jump down approximately 6-8 feet to the road. EE indicates this action resulted in an injury to his right knee. ()
## 20481 EE assigned to segregation-inmate threw tray of food & refused to return to cell. Inmate hit EE on upper lip causing nose to bleed.
## 20482 EE assigned to sills e & f dorms-she was eating pizza when something lodged in her throat coworker performed heimlich on her
## 20483 EE assigned to the construction crew and stepped on a brick and slightlu turned right ankle.
## 20484 EE assigned vehicle was struck in the rear when other vehicle was following to close. Neck & back.
## 20485 EE assigned yard duty, retrieving some cats from yard, picked up 2 cats and was walking down front sidewalk - cat bite lower part of rt palm.
## 20486 EE assissting pa in medical clinic as EE reached to secure a pair of hemostats the pa accidently punclured lt index finger with contaminated scapel
## 20487 EE assist another staff in getting client off floor and strain left side of neck and shoulder
## 20488 EE assist in conducting cell searches. Came in contact w/white powder. While sitting in visitation, arms began to swell. ()
## 20489 EE assisted client into chair-EE was standing in front of client. Client kicked EE in knees with his foot.
## 20490 EE assisted client to dining room-food tray started to fall-EE tried to catch it and in the process it struck EE on the wrist.
## 20491 EE assisted client to stand-when in hgallway client pushed EE w/forearm and elbow in stomach. Pregnant.
## 20492 EE assisted drawing blood on patient who became agitated, jerking arm, needle came out hitting EE's inner arm.
## 20493 EE assisted hct lift client up out of floor into a standing position, hurting lower back.
## 20494 EE assisted in carrying client to ito room-felt pain in lower back
## 20495 EE assisted in getting client up off sidewalk and injured her back
## 20496 EE assisted in lift of client from toilet during fire drill and felt pull in right lower back
## 20497 EE assisted in lifting client up off of the floor to put in bed and felt pull in lower back and later felt pain in middle of back.
## 20498 EE assisted in placing a child patient in thera- peutic hold and hit her back against wall. Low back pain.
## 20499 EE assisted in placing ptin pic hold and hurt back.
## 20500 EE assisted in prone restraint of client and afterprone noted pain in right hand.
## 20501 EE assisted in removal of personal property from inmate during process in attempting to restrain twisted lt ankle.
## 20502 EE assisted inmate to floor and got blood on her hands due to inmate bleeding from mouth
## 20503 EE assisted inmates and staff in evacuating duringa fire and inhaled smoke
## 20504 EE assisted lift a client, client stiffened legs, resulting in EE having difficulty repositioning client in recliner, felt pull/pain in back.
## 20505 EE assisted lift client off of tub-EE came in contact w/drainage from open wound on client-EE diagonsed with MRSA
## 20506 EE assisted moving patient and both hands now have pain & are numb
## 20507 EE assisted stranded motorist change tire. Strain-ing to loosen lug nut, felt burning in middle of back.
## 20508 EE assisted to lift client in bed- no pain noted at time- next day noticed low back pain.
## 20509 EE assisted with chair restrain. Client rocked intensely spraining EE's back.
## 20510 EE assisted with patient's bath & helped him standup. Did not feel any pain until next morning & tried treating it on her own. Out 2 days
## 20511 EE assistin client from wheelchair to commode and pulled back trying to keep cleint from falling.
## 20512 EE assisting 2 hct's put pt on portable commode & while trying to lift him EE felt a pulling strain in back
## 20513 EE assisting 2 other EE's putting client to bed- felt pull in lower back.
## 20514 EE assisting 3 other EE's lift a motor-strained back when stepping backwards
## 20515 EE assisting 4 other EE's to get bulldozer unstuck in mud and pulled left lower back
## 20516 EE assisting a client and injured left foot/ankle
## 20517 EE assisting a client in process of going down to floor EE landed on her lt knee. Pain lt knee.
## 20518 EE assisting a client who had a seizure, client fell on EE right knee. EE had surgery on the same knee 2 yrs ago.
## 20519 EE assisting a disabled tractor-trailer-had veh lights and warning flashers on-oncoming veh failedto see EE and hit EE in the rear.
## 20520 EE assisting a gso police k-9 officer. K-9 bit EE on left ankle and right calf. Puncture lt ankle and laceration rt calf.
## 20521 EE assisting aggitated pt who was crawling on floor. EE trying to prevent pt fm harming self and others with iv pole. Right wrist was hyperextended
## 20522 EE assisting agitated client-advised to take meds when client picked up table and overturned it and EE used arms to block table.
## 20523 EE assisting allied agency effect the arrest of impaired driver injured left knee.
## 20524 EE assisting another EE in putting client in chairand strained back
## 20525 EE assisting another EE turn heavy pan in kitchen
## 20526 EE assisting another EE w/aggressive client-EE attto put client in pic hold and was pushed into door
## 20527 EE assisting another EE w/loading a wall partitioninto a van. Partition slipped as they were loading& mashed finger. Contusion/sm finger, lt hand
## 20528 EE assisting another EE with lifting a lrg stainless steel can to place on counter-felt a pull in lower rt side of back.
## 20529 EE assisting another EE with patient onto commode. Patient about to fall EE lifted patient causing pain in lower left back. ()
## 20530 EE assisting another cna to hold client to keep from hurting employer
## 20531 EE assisting another doctor and collapsed and taken to hospital-back pain.
## 20532 EE assisting another officer inmate kicked me in groin with lt foot.
## 20533 EE assisting another picking up heavy person both did not pick up at same time injury rightsideneck and shoulder
## 20534 EE assisting another police officer in making an arrest, & was kicked on rt knee by unknown assailant
## 20535 EE assisting another staff move client to trolley for bath; client was leaning. When trying to lift again felt pain in back.
## 20536 EE assisting another staff to hold up patient whenlower back began to hurt.
## 20537 EE assisting another staff to lift client into shouwer chair-EE felt something pop in lower back.
## 20538 EE assisting chairside when the cleint went into a seizure restraining client-injuring left arm and hand
## 20539 EE assisting change a client, client began to fall, EE tried to catch, lost balance and fell against door catching left 4th finger in closing door.
## 20540 EE assisting change client, client kicked emp. In the right side of jaw
## 20541 EE assisting change client-client squeezed EE rt hand and wrist
## 20542 EE assisting child who jumped off comode onto EE'slegs causing EE to fall down injuring back, rt hipand leg.
## 20543 EE assisting cleint out of bed-client grabbed EE'sthumbs.
## 20544 EE assisting cleint prepare for bath-EE bent down to retreive client's clothes-stood back up and felt pain in rt knee
## 20545 EE assisting client - client grabbed EE's rt wrist and twisted. Rt wrist sprain.
## 20546 EE assisting client carrying laundry basket into laundry room. Client in front, opened door, once inside released it, closing door struck EE rt foot
## 20547 EE assisting client client fell to floor sprain to EE right wrist
## 20548 EE assisting client down hallway; client started to turn away and stepped on EE's left foot. ()
## 20549 EE assisting client dress for bed-client pushed eeinot frame of other bed-resulting in back pain
## 20550 EE assisting client during bathing attempted to keep from falling and injured left wrist.
## 20551 EE assisting client during fire drill from commodeto wheelchair-client slide out of wheelchair causing EE to injury rt knee
## 20552 EE assisting client during grooming. Client became agitated and started pulling back on EE. EE tried to prevent client from falling and hurt rt thumb.
## 20553 EE assisting client from bathing area when client hit EE in rt side of neck.
## 20554 EE assisting client from falling and injured left wrist
## 20555 EE assisting client from falling strained rt side of neck.
## 20556 EE assisting client from tub into chair noted pain in back down through legs.
## 20557 EE assisting client from walker to dining chair when the client started to fall; EE tried to catch client and fell cutting forehead. ()
## 20558 EE assisting client in bathroom when knees startedto buckled and EE pulled lower back catching client from falling.
## 20559 EE assisting client in bathroom, client opened door& the door hit EE left hand
## 20560 EE assisting client in bed from wheelchair-client kept going up and down causing pain in left part of middle back and left shoulder.
## 20561 EE assisting client in sitting up in bed-client leaned back, EE grabbed client to keep from falling and pulled rt arm
## 20562 EE assisting client in standing when client swung around w/left elbow and hit EE in rt leg
## 20563 EE assisting client in toilet-client cut top rt hand of EE's hand with teeth causing EE to hit rt elbow on wall and hurt back
## 20564 EE assisting client into bed when client kicked EE in throat.
## 20565 EE assisting client into behavior program when client slammed door on EE right hand
## 20566 EE assisting client into tub-resulting in EE bearing wgt on EE's rt shoulder
## 20567 EE assisting client into wheelchair clients legs dropped EE tried to break clients fall causing injury to lower back
## 20568 EE assisting client into wheelchair during fire drill injury to back
## 20569 EE assisting client into wheelchair, EE left arm caught between clients arm & body. Weight of client resting on EE, lt arm & hand
## 20570 EE assisting client off toilet, when client turnedaround to sit down client fell back on EE right thumb.
## 20571 EE assisting client on toilet when client kicked EE in the stomach - EE is 19wks pregnant.
## 20572 EE assisting client ou of lunchroom-client became angry-pulled EE arms & twisted/squeezed hands-rt wrist pain
## 20573 EE assisting client out of bathtub-client agitatedand bent EE's left ring finger backwards and bit rt arm.
## 20574 EE assisting client out of dining room when clientattacked EE-knot on side of head, soreness of shoulder
## 20575 EE assisting client out of wheelchair to commode when client slipped and EE caught finger in wheel-chair.
## 20576 EE assisting client put on shirt-client popped EE on left wrist with back of hand-EE later noticed wrist was painful.
## 20577 EE assisting client put shoe on, client hit EE in right eye. Bruise to right eye
## 20578 EE assisting client sit down in showerchair clientpushed chair back & started to fall, EE attempted to break fall, EE fell hitting shoulder, knees
## 20579 EE assisting client to bathroom when client swung at EE-EE caught clients arm and lost balance and client fell on EE.
## 20580 EE assisting client to bathroom-client was having a behavior and fell on EE's rt foot.
## 20581 EE assisting client to bed when client began to fall. EE tried to break fall. After she left work she began having pain in her lower back.
## 20582 EE assisting client to chair-client sat on seat belt-EE pulling belt and felt pain in lower back.
## 20583 EE assisting client to dining area - client tripped and fell on staff rt knee, elbow, shoulder, hip and back
## 20584 EE assisting client to dinning room when client fell on floor - EE has stiffness in neck and hand
## 20585 EE assisting client to get back was turned client grabbed around twisted around rt leg dipped fell backwards on floor. Injured back.
## 20586 EE assisting client to get up when client fell on EE's left hand.
## 20587 EE assisting client to get up, client hit EE in face, left cheek and kicked EE knocking down, twisted knee
## 20588 EE assisting client to his feet and pulled back low back strain
## 20589 EE assisting client to move wheelchair-client pushed chair real hard-rest hit EE's lower lt leg causing EE to fall
## 20590 EE assisting client to quiet room - EE slipped on wet floor and client fell on EE.
## 20591 EE assisting client to restrain when client bent EE's thumb backwards.
## 20592 EE assisting client to sit down to keep from falling and noted pain in back and rt shoulder.
## 20593 EE assisting client to sit in chair - noted pain in back
## 20594 EE assisting client to sit up and bed and felt a pain on left side of back.
## 20595 EE assisting client to sit up felt pain in pelvi area.
## 20596 EE assisting client to stand and stubbed left big toe on wheel of bed
## 20597 EE assisting client to stand and transfer from toilet into wheelchair-durning process EE att to keep client frm falling felt pull in neck.
## 20598 EE assisting client to stand pivot and felt a pop in left shoulder.
## 20599 EE assisting client to stand. Client started to slide while EE was assisting to lift. EE felt pop in left side of neck & shoulder
## 20600 EE assisting client to toilet-client started to fall-EE grabbed gate belt causing EE to fall
## 20601 EE assisting client to transfer from wheelchair to recliner-client's legs gave away-EE att to catch client and injured back
## 20602 EE assisting client to wheelchair when client dropped all wgt on EE causing EE to strain lower back.
## 20603 EE assisting client to wheelchair. The client sat down while EE positioning client; EE's arm was under client. The EE heard a small pop in left shoulder ()
## 20604 EE assisting client to wheelchair; client lifted up feet off floor; throwing client & EE off balance& causing client and EE to fall.
## 20605 EE assisting client up and out of chair when he felt a pop in low back.
## 20606 EE assisting client up to dining room when EE feltback pop-another client pushed EE into door aggravating back
## 20607 EE assisting client w/ putting on clothes; client became aggresive & grabbed her. EE snatched back arm & her wrist hit wall of tub.
## 20608 EE assisting client w/bath who started fighting-eemoving from client and felt left knee pop.
## 20609 EE assisting client w/bath-client became aggressive and twisted EE's hand.
## 20610 EE assisting client walking-caused strain to EE's mid-back
## 20611 EE assisting client when left bottom of rollalor hit EE right foot causing a cut on the inside of foot
## 20612 EE assisting client with bath, client started to stand then not, EE twisted back sitting client down.
## 20613 EE assisting client with bath-cleint went into behavior and both fell to floor.
## 20614 EE assisting client with cast on foot - client started fighting and hit EE on rt hand
## 20615 EE assisting client with conjunctivities - rt eye
## 20616 EE assisting client with program-client became aggressive and hit EE on left shoulder.
## 20617 EE assisting client with toileting - client hit EE in face
## 20618 EE assisting client with walker, client hit left ankle with walker
## 20619 EE assisting client. Client dropped to floor several times. Muscle sprain
## 20620 EE assisting client. Gate fell hitting top of lft foot. Lft foot contusion
## 20621 EE assisting client; client became aggressive - client swung at staff; scratched and bite EE on botharms; both hands and both legs.
## 20622 EE assisting client; client lost his footing and tripped over feet causing client and EE to fall tothe floor.
## 20623 EE assisting client; client slide off toilet; pushed EE down. While assisting client up, felt back straining.
## 20624 EE assisting client; client started spitting. Client spit in left eye.
## 20625 EE assisting client; client tried to get up; unsteady; tried to catch client to keep from falling; pulled muscle in buttocks; right thigh and knee are
## 20626 EE assisting client; moved stool closer to client to feed. Top of stool was loose & pinched EE's right index finger.
## 20627 EE assisting clients through out the day and laternoted pain in left hand.
## 20628 EE assisting cliet to get dress-client lifted leg and EE noted pain in back
## 20629 EE assisting clinton police department chase down a fleeing suspect. While running, EE stepped in a ditch & pulled/or tore right hamstring
## 20630 EE assisting cna with client-client grabbed EE by the leg jerking to the floor landing on back.
## 20631 EE assisting co-worker -client threw chair-kicked clmt on left thumb during restraint *clmt rec'd 6% ppd/thumb on 12-26-01/add'l 5% due*
## 20632 EE assisting co-worker change a client-started to pull pants up & felt a pull on left side of ribs
## 20633 EE assisting co-worker she tried to move buffer cord out of way co-worker stepped back and kicked her on hand causing her to jam little finger.
## 20634 EE assisting combative client who pushed EE backwards while EE placing in chair-client jerked away an sat EE's hand.
## 20635 EE assisting combative patient with dressing and getting up, patient was kicking, hitting and re- sisting assistance
## 20636 EE assisting consumer on phone, stretched arms vertically and experienced sharp pain in shoulder joint.
## 20637 EE assisting controlling inmate, fell forward withthe inmate & the other staff members pinning rightwrist under the inmate. Split on l middle finger
## 20638 EE assisting customer in preparing side of flat bed truck pinched left finger
## 20639 EE assisting demonstrate handcuffing technique. Injured rt shoulder demonstrating tech.
## 20640 EE assisting in apprehension of suspect when EE tripped over numberous large tree roots causing EE to fall to ground
## 20641 EE assisting in co-workers cuffing student. Student rolled back on EE hand during resistance
## 20642 EE assisting in escorting a patient to the quiet room and in the process, EE/patient fell to floor and landed on both knees.
## 20643 EE assisting in lifting client into chair-client headbutted EE in mouth cracking tooth..
## 20644 EE assisting in lifting client into tub felt a pull in lower back.
## 20645 EE assisting in lifting stretcher felt something pull in back
## 20646 EE assisting in lighting of gas stove in plans trailer. Gas escaped from another line. First degree burn to rt hand, eyebrows, and hair.
## 20647 EE assisting in movement of non-compliant student who was out of control. Student bit staff member on chest.
## 20648 EE assisting in opening gate lifted gate post out of hole which caused gate to pinch EE's lt hand
## 20649 EE assisting in recling sewer line when rod kickedback hitting EE above rt eye.
## 20650 EE assisting in removing a hostile inmate from cell, inmate rushed out door struggling with staff. Staff/inmate fell against EE. EE. Fell against door
## 20651 EE assisting in restraing an inmate, when inmate kicked EE in groin area, also kicked rt thumb causing it to bend back.
## 20652 EE assisting in restraining a student when he was poked in lt eye by students finger
## 20653 EE assisting in restraining an inmate injurying rtelbow
## 20654 EE assisting in restraining an inmate who bit EE on left elbow
## 20655 EE assisting in restraining an irate client sprain lft ankle, mod contusion of side & lft paraspinous back strain
## 20656 EE assisting in restraint of client EE injured back. Back strain.
## 20657 EE assisting in transferring client from bed to wheelchair when rt index finger got caught betweensling and wheelchair
## 20658 EE assisting in transporting client from water bedto bath troley, later felt pain in left arm
## 20659 EE assisting in transporting patient to seclusion, patient was kicking and hitting/ jerked EE right shoulder/arm.
## 20660 EE assisting individual with bath reaching over individual felt pain in back
## 20661 EE assisting inflating tire on tiller when injury occurred-EE inserting air compressor hose through razor wire-laceration left ring finger
## 20662 EE assisting inmate back to cell, inmate resisted and dropped to floor falling on EE. L hand trapedbetwn inmate and floor, sprain scapula, cont lft han
## 20663 EE assisting inmate that hand seizure EE turned inmate over on his side to keep him from choking fluid splashed lt side of face.
## 20664 EE assisting inmates in cleaning and stripping floors in visitation center she inhaled fumes. Lightheaded and rash on face, neck and hands.
## 20665 EE assisting lift a client-client started to fall and EE caught client on left knee-stood up felt knee pop.
## 20666 EE assisting lift client up from floor into wheel-chair and client's wgt shifted and EE felt pain inback
## 20667 EE assisting lift client-stated pull in lower left back
## 20668 EE assisting lift resident when he felt a sudden sharp pain his rt groinal area.
## 20669 EE assisting lifting client into wheelchair and felt sharp pain in back when standing upright.
## 20670 EE assisting lifting client onto cot to transport to hospital and pulled back.
## 20671 EE assisting lifting client out of bed, client pulled/pushed backwards onto bed, pulling EE with him.
## 20672 EE assisting lpn's draw blood client jerked arm and nurse let go of the needle which stuck EE on the back of left hand
## 20673 EE assisting motorist who lost unsecured appliancefrom truck, while lifting a refrigerator off road way, EE felt tearing sensation in left bicep
## 20674 EE assisting nurse giving client a shot-and hit left knee on side of bedrail
## 20675 EE assisting nurse in giving medicine to client; EE was pushed by client causing EE to fall and injhis rt fifth finger
## 20676 EE assisting nurse w/clients labwork-EE holding down client-client raised up EE strained rt shoulder
## 20677 EE assisting obese client in bathroom who couldn'tstand on feet-EE lowered client to floor causing strain to lower back.
## 20678 EE assisting officer w/securing patient to cell patient bent head causing EE to be sprayed in lt eye
## 20679 EE assisting officer who was sick, stood in front of officer her rt arm on side of chair to prevent from falling. Sharp pull to lower back.
## 20680 EE assisting on inmate escape detail, he was closing door of state van and he alleges driver moved and his hand caught in door. Abrasion index finger
## 20681 EE assisting other EE in providing care for pt 1 pputting patient to bed, pt scratched forhead
## 20682 EE assisting other cna with agitated client-using pic hold taking client to room-felt pain in left arm
## 20683 EE assisting other staff to get client off floor after client choked and during the heimlich.
## 20684 EE assisting other staff with client; client leanedforward & bit EE on top of right shoulder.
## 20685 EE assisting other staff with redirecting patient, patient became aggitated scratching EE in the face & hit EE in the stomach ()
## 20686 EE assisting others extinguish a burning truck in parking lot upon return from dinner at 1900 on 01231996. Throat sore and bleeding
## 20687 EE assisting others in chaning a display-picked up short strips and raised up and hit top of head
## 20688 EE assisting patient in restroom & patient fell & EE tried to keep him from falling & held him underhis arms & hurt her rt. Shoulder & lower back
## 20689 EE assisting patient to bath, bed. Patient was sliding from chair, went to chart room bent over felt sharp pain lt side of back.
## 20690 EE assisting patient to bathroom & patient trippedee causing her to fall hitting left knee on floor. Contusion/sprain of left knee and lower leg
## 20691 EE assisting patient up from floor injury to low back
## 20692 EE assisting patient up from floor, when EE felt apull in rt shoulder, no pain at time. EE felt burn-ing sensation in shoulder later in the day
## 20693 EE assisting patient when pt bit EE right finger
## 20694 EE assisting police dept with robbery suspect-k9 unit became untangeled in barbed wire-EE att to get k9 out but k9 bit EE on rt wrist
## 20695 EE assisting pregnant bat and bat bit EE on rt hand
## 20696 EE assisting prone client during intervention resulted in constant pressure being exerted to EE wrist, elbows and shoulders
## 20697 EE assisting proning a client in process twisted rt wrist. Wrist sprain.
## 20698 EE assisting pt by trying to break fall injury back pain
## 20699 EE assisting pt in bathroom doing personal care, ptbegan to slip when standing and EE tried to hold pt, EE felt something pull in rt elbow
## 20700 EE assisting pt in shower with another cna, when pt began fighting. Floor wet, & EE pulled lower back
## 20701 EE assisting pt out of floor
## 20702 EE assisting pt showering pt became aggressive causing injury to EE right knee and back
## 20703 EE assisting pt to seclusion rm, pt head butted staff in nose/face, complaining of headache ()
## 20704 EE assisting pt, knee of pt hit EE under chin, bruis
## 20705 EE assisting putting supports in storage building supports fell striking EE on left forehead
## 20706 EE assisting randolph county with chase, when a chase vehicle hit patrol unit on left front. EE tried to avoid collision
## 20707 EE assisting removing folding tables from staff clothing room. On the tables were boxes of uniforminventory that was being restacked upon removal.
## 20708 EE assisting res from bed to chair when res stood EE let go and EE had to keep res from falling, EE supported res weight, sprain
## 20709 EE assisting resident from bbc to bed, resident leaned over & bit EE on lt hand human bite to rt hand, medical treatment
## 20710 EE assisting resident from wc to bsc risdent sat down on floor. Her arm lt arm supporting resident. Impingment syndrome lt shoulder.
## 20711 EE assisting resident in dental chair- resident pulled her arm ********"overpayment of ttd"*********************
## 20712 EE assisting resident in dinning room resident pushed back from table catching my left hand between chair & wall.
## 20713 EE assisting resident in restroom-had resident in lift-EE protected resident from fall & strained shoulder **atty rep**
## 20714 EE assisting resident out of Dr- Resident began tofall & EE caught pulling back
## 20715 EE assisting resident to bathroom. Resident fell to floor, took staff down with her.
## 20716 EE assisting resident to get out of bed and felt pull on right side of lower back
## 20717 EE assisting resident with toothbrushing another resident touched EE from behind causing EE to tripfall over wheelchair injury (r)shoulder(l)knee
## 20718 EE assisting resident, resident hit EE in mouth w/elbow & broke tooth
## 20719 EE assisting resident---resident grab EE left handbite to middle left finger
## 20720 EE assisting restrain an inmate while he was havinseizure-during seizure inmate struck EE on rt face
## 20721 EE assisting restraining inmate when inmate struckee's left knee with hand & foot
## 20722 EE assisting staff in escorting patient to seclusion room walking 2 man walk when patient lunged forward to door pulling EE down on rt knee.
## 20723 EE assisting staff with compative patient, left arm/shoulder strain when patient escaped from sheet
## 20724 EE assisting staff with placing an individual in physical restraint when individual kicked EE in left side of ribs.
## 20725 EE assisting stopping inmate fight-EE squatted to place handcuffs on inamte on ground when he stood he felt pain around left big toe/foot
## 20726 EE assisting to dress client-client agitated and kicked EE in ribs.
## 20727 EE assisting to get client to unit, client broke away & hit EE in face, contusion, abrasion, knocked glasses from face, lens scratched, frame bent.
## 20728 EE assisting to lift cleint to change-client stiffened up and jerked-pulling EE left arm down pain in left arm and neck
## 20729 EE assisting to lift client from chair-both arms under clients arms, felt left wrist pop, pain in left shoulder
## 20730 EE assisting to lift client from floor noted pain in neck into both legs
## 20731 EE assisting to lift client out of bed-reached across to sit client up-then pulled client over to left side-felt gightening in neck along rt side
## 20732 EE assisting to lift client out of floor-client would not bear wgt-EE felt catch in mid back
## 20733 EE assisting to lift client when rt hand got caughbetween client's arm and body injuring EE's rt wrist
## 20734 EE assisting to lift patient in geri chair to upright position, felt sharp pain in lower back down rt foot.
## 20735 EE assisting to pick client up from floor to take back to room and noted pull in back.
## 20736 EE assisting to pull patient up to bed strain to back and shoulders
## 20737 EE assisting to restrain aggressive client when client hit EE on rt side of head, ear, wrist and hand.
## 20738 EE assisting to restrain client and sprained finger on left hand
## 20739 EE assisting to restrain combative resident resident rec'v injection kicked causing needle discharge. Need puncture rt thumb.
## 20740 EE assisting to transfer client into wheelchair when client began to fall-EE att to hold client and pulled back in process.
## 20741 EE assisting to transport client to work location asked client to exit van-client grabbed EE's rt arm band bit down hard
## 20742 EE assisting to turn client in bed and pulled back
## 20743 EE assisting transfer client into wheelchair & client started to fall. EE caught client, client fell on top of EE. EE landed on back- felt pop.
## 20744 EE assisting transfering client from bed to wheelchair felt a pull and pop in lft shoulder, neck and back.
## 20745 EE assisting two other EE's lift a client into chair-felt pain in back.
## 20746 EE assisting two other staff members restrain a student due to student pushing on member possible broken right finger
## 20747 EE assisting visitor with parking boat and got rt foot trapped
## 20748 EE assisting w/ induction of a cat, animal bit EE
## 20749 EE assisting w/ meeting and tripped over feet & fell on l side ()
## 20750 EE assisting w/ necropsy of white-tailed deer. While attempting to remove skull cap to examine the brain for trauma, handsaw slipped and cut EE's hand
## 20751 EE assisting w/ transfer from trolley to day bed and felt pull in shoulder.
## 20752 EE assisting w/client who became aggressive-clientgrabbed and scratched EE's arm and forearm, and head hit EE's mouth chipping rt frt tooth.
## 20753 EE assisting w/intervention taking client down to floor jammed her right thumb
## 20754 EE assisting walk client when EE tripped over another's client feet and fell on left knee
## 20755 EE assisting wheelchair bound parent, slipped on icy wheelchair ramp, struck chin on ramp, wheelchair went over rt shoulder
## 20756 EE assisting with 4 other workers in moving a deskand felt pain in chest.
## 20757 EE assisting with a behavior client who had pouredsoap on floor-EE slipped and fell felt pain in lower back.
## 20758 EE assisting with a client that had eloped. EE ran across yard and injured foot in a low spot of yard.
## 20759 EE assisting with a combative patient-inj rt arm. Clmt has been paid 18% ppd to the arm. EE workingfor diff er-randolph cty mental health 3366337200
## 20760 EE assisting with behavior cleint who poured soap and drink on floor-client kicked EE-EE jumped slipped and fell.
## 20761 EE assisting with behavioral client who poured soap on the floor causing EE to fall and cleint hit EE in the back.
## 20762 EE assisting with carrying client and felt pain inback.
## 20763 EE assisting with client intervention-placing client in restraints-noted pain in back.
## 20764 EE assisting with client that had barricaded self in bedroom - pushing against door to get open injuring rt knee
## 20765 EE assisting with client, felt pain in upper left shoulder
## 20766 EE assisting with clients-afterwards noted pain in lower back
## 20767 EE assisting with combative client to transport when client kicked EE in rt knee and he fell
## 20768 EE assisting with combative client who was pushingand pulling on EE-EE noted pain in back
## 20769 EE assisting with combative patient, patient and staff fell to the floor, EE kicked in the chest several times
## 20770 EE assisting with cooking class and hot oil splashed on rt hand and fingers
## 20771 EE assisting with graduation rehearsal & walking towards the stage, when tripped over raised ramp (covering wiring on the floor) and fell
## 20772 EE assisting with holding client up while being cleaned and linen changed-after putting client down felt sharp pains in neck.
## 20773 EE assisting with injured victim-lost footing and fell onto a sall tree which struck left eye.
## 20774 EE assisting with medication into g-tube, medicinesplashed into left eye.
## 20775 EE assisting with mole removal when chemical splashed in left eye
## 20776 EE assisting with moving a couch into the gym feltpain in left hip and leg.
## 20777 EE assisting with other staff to lift client onto bed when EE straightened up noted pop in back
## 20778 EE assisting with patient care
## 20779 EE assisting with patient when patient came back against EE mashing right hand and wrist
## 20780 EE assisting with patients son to left patient on exam table. Hurt middle of back
## 20781 EE assisting with pic patient restraint, patient was combative and was repeatedly kicked rt hand.
## 20782 EE assisting with placing patient in eri when EE felt his left shoulder pop
## 20783 EE assisting with putting a client in a stretcher-went down and pulled back out.
## 20784 EE assisting with search warrant, instructed un- known female to lie on ground, EE knelt down to cuff female & felt pop in right knee.
## 20785 EE assisting with seclusion and restraint of client and spraing left wrist.
## 20786 EE assisting with state testing, leaned against table that was unassembled but did not appear to be, table fell causing EE to fall to floor
## 20787 EE assisting with student, when another student came from behind & repeatedly struck EE with hands& striking on head with stapler. See log notes!!!!
## 20788 EE assisting with traffic stop-notice veh started to roll-jumped in veh and left leg was out of veh-when EE's veh hit anto veh cusing leg to ge pinned
## 20789 EE assisting with transferring a client to chair -right shoulder---back began to hurt. Shoulder/backstrain.
## 20790 EE assisting with unit clean up when she slipped/fell on wet floor, hitting her right elbow/arm on a table. ()
## 20791 EE assisting women getting keys out of car-EE was in bent over position for long period of time and strained lower back
## 20792 EE assisting youth with fishing, trying to untangle lines, youth moved pole and hook went into finger ()
## 20793 EE assit in removal of personal property from inmate, attempting to restrain inmate twisted lt ankle.
## 20794 EE assiting agitated client who picked up trashcanand hit EE on hand.
## 20795 EE assiting allied agency effect the arrest of an impaired driver injured left knee.
## 20796 EE assiting another staff lift client into chair, EE hit l hand on chair
## 20797 EE assiting break up of fight between two clients. EE kicked on rt & lt shin area, causing bruising and abrasions.
## 20798 EE assiting client in walking to wheelchair-clientstopped walking and fell back-EE attempted to holdclient from falling and injured lower back.
## 20799 EE assiting client w/staff in transferring from toilet to wheelchair-during transfer client dropped to her knees pulling EE down-pain in back
## 20800 EE assiting client when she felt something in rt knee tear.
## 20801 EE assiting client with conjuntivetis - rt eye
## 20802 EE assiting client with pajama pants-tried to straighten up could not stand up-pain in back
## 20803 EE assiting co-worker and put hanb in a place it should not be and finger on left hanb was smashed
## 20804 EE assiting co-worker subdue resisting probationerstiffness rt shoulder and upper back.
## 20805 EE assiting giving horse anes. To wake up after sxhorse fell against the doors and burst into surgical suite-EE strained both knees
## 20806 EE assiting in client intervention placing client in splints & helment when clients arm came down hit EE hand against wheelchair.
## 20807 EE assiting motorist with flat tire-bumper jack would was stuck-EE tapped jack with tire tool which struck EE on left hand.
## 20808 EE assiting rn draw blood from client- when client grabbed needle and struck EE in l arm
## 20809 EE assiting student with palpate cow and cow kicked EE onto ground
## 20810 EE assiting to get client off commode and felt a pull in lower back
## 20811 EE assiting to lift client off of floor noted painin lower back
## 20812 EE assiting to transfer client to bath-client started to sit down pulling EE back causing pain in legs
## 20813 EE assiting with a conference, alleged walking and climbing stairs more than normal. Shin splintsboth leg - inflammed lt foot.
## 20814 EE assiting with clients throughout the day and noticed pain in back.
## 20815 EE assiting with putting client in restraints and client kicked EE in the nose
## 20816 EE assiting with stranded veh in pushing out of the road and injured back.
## 20817 EE asssiting w/placing patient in nci hold & was pushed into corner of table hitting her hip/thigh
## 20818 EE asst client who was throwing shoes then grabbedee's hair and neck.
## 20819 EE asst doctor w/client to do exam-client trying to get off table and pushed backwards into sink hurting lower back.
## 20820 EE asst in lunch for clients walked toward the sindid not see water on floor slipped and fell injured lt leg and rt hip area
## 20821 EE asst lifting a client onto the bathing table- when lifting client by legs felt a pulling in lower back.
## 20822 EE asst. Coach for soccer team student accidently hit EE on side of face, face is fine but having soreness in lt side of back
## 20823 EE assting client up from the dinning rm. Table and client squezzes EE hand. EE has had carpal tunnel surgery.
## 20824 EE assulted by an intoxicated driver. EE struck defendant with his fist & was kicked in shin. Jam-index finger rt hand, scrape & contusion lt shin.
## 20825 EE at a business meeting when stung by a scorpion wound became infected. EE# 334-8935 ***do not return any bills to providers*******
## 20826 EE at a training show and noticed her lower back was hurting
## 20827 EE at county dention center to pick up warrents, snow & ice on floor & steps, EE slipped on floor.
## 20828 EE at crdt receretification training practicing a one leg take down manuever, officer performing themanuever failed to release EE's left foot.
## 20829 EE at demolition site-moving out the way and stepped in a hole and fell backwards.
## 20830 EE at desk, and when she stood up to walk away, heel was caught in a cord, and fell on right arm &shoulder.
## 20831 EE at fire arms training stepped on rock lost balance and planted right foot when planted right foot stepped on small stick right knee buckled
## 20832 EE at firing range - riot helments required part of training. After firing hand slight ringing and pain to right ear.
## 20833 EE at gym all day climbing wall in training, felt pain and sore next day, 2 days later helped move sand bags, felt pain in lt shoulder of back
## 20834 EE at her desk working when she hit her rt foot & toes on corner of her computer table, metal
## 20835 EE at juh picking up meat b/c out freezer was broke. Went to pick up meat. Boxed froze together got damp-back snapped. Lower back and lt leg.
## 20836 EE at mail center completing inter-campus mail. Other staff reached around EE to get mail, tray fell & envelopes or tray hit EE in left eye.
## 20837 EE at offender's residence doing curfews & the offender picked EE up & hugged him causing soreness in lower back
## 20838 EE at red light struck by another vehicle causing neck strain.
## 20839 EE at residence of informant, family dog being playful, owner tied dog outside, when EE was leaving dog jumped on EE and bit rt lower arm
## 20840 EE at training session at embassey suites-tripped & fell going up steps injuring right arm-shoulder & neck
## 20841 EE at water fountain drinking water, got strangledlost breath, EE passed out. Fell face down was out for about 30 seconds.
## 20842 EE at work dump truck backed up and inadvertenly hit him - knocked to ground and sustained servere pain over t hip and back. Bruised all over.
## 20843 EE at work, in bathroom when EE got dizzy, blackedout and fell face first on tile bathroom floor. Broke nose, strained neck/back, bruised mouth, teeth
## 20844 EE atated I/m was complaining about snack bag then threw a liquid substance in her face ()
## 20845 EE ate a brazil nut and began to have severe reaction
## 20846 EE att arrest suspect-suspect approached EE w/gun EE pushed gun away w/hand receiving cut to right hand.
## 20847 EE att to access the port of an iv line needle andpierced port came through rubber and stuck left index finger.
## 20848 EE att to apply pic hold-door to restraint room hit EE on left forearm and client fell on left wrist
## 20849 EE att to apprehand a felon and received a minor laceration to left forarm.
## 20850 EE att to apprehened suspect-jumped into a creek and injured rt knee
## 20851 EE att to arrest an suspect with hand caught in sweater-suspect took off running and stopped then running again-EE's hand was injured.
## 20852 EE att to arrest person for dui-person resisted and EE struck person with rt fist.
## 20853 EE att to arrest suspect for dui-suspect resisted and a struggle ensued on the ground-EE rcvd minor cuts and scratches.
## 20854 EE att to arrest suspect-suspect resisted an altercation ensued.
## 20855 EE att to arrest suspect-suspect resisted and both fell to the ground causing EE break front tooth
## 20856 EE att to assist w/combative suspect who was rolling on the ground and kicked EE in the left eye.
## 20857 EE att to brace self from falling out of broken chair and strain back.
## 20858 EE att to break up a fight went to the floor injuring left hip, rt forearm and knee.
## 20859 EE att to capture suspect-suspect resisted arrest an a fight ensued resulting in EE receiving injuries.
## 20860 EE att to catch client from falling and injured rt. Shoulder
## 20861 EE att to catch client that was falling and twisted neck and back in process.
## 20862 EE att to catch client when having a seizure and pulled shoulder and lower back.
## 20863 EE att to catch door from closing and caught hand in door.
## 20864 EE att to catch falling board student was carring and injured left shoulder.
## 20865 EE att to catch patient from falling and felt painin shoulder, rt arm.
## 20866 EE att to catch wheelchair from rolling over student and twisted left wrist.
## 20867 EE att to exit elevator-toe got caught in lip of floor causing EE to fall.
## 20868 EE att to fill veh with gas-stepped off curb and jammed rt knee.
## 20869 EE att to get client off another client and felt a pull in rt arm.
## 20870 EE att to get on elevator-put hand betwn motion devices for door to open-door closed and caught rt thumb between doors.
## 20871 EE att to grab gate belt of a western carolin ctr client when she turned and twisted and pulled back
## 20872 EE att to handcuff a combative prisoner and a struggle began and EE injured rt thumb.
## 20873 EE att to handcuff suspect placed under arrest when left knee hit the ground w/force.
## 20874 EE att to hold client from falling backwards-felt pain in the middle of her back.
## 20875 EE att to hold extremely aggresive client with numerous staff members-client and EE fell across bookcase broke front tooth.
## 20876 EE att to lift 500lbs including handcart from street onto sidewalk to be brought into bldg.
## 20877 EE att to locate a students file folder injured rt shoulder.
## 20878 EE att to make an arrest-suspect resisted EE struggling with suspect injured rt hand and bruised rt shoulder
## 20879 EE att to open door that was stuck and fingers were caugh between door frame.
## 20880 EE att to over take a violator veh and l/control of his veh and hit a ditch bank and overturned.
## 20881 EE att to restrain porcupine for a procedure rcvd a puncture wound to left hand
## 20882 EE att to stop client from attacking another EE- client turned and kicked EE in side and then swungat EE hitting rt ear and side.
## 20883 EE att to stop client from running in hallway and hurt finger.
## 20884 EE att to stop client from running when tray mealswere delivered-client knocked fire extngshr off wall and it hit EE in the head.
## 20885 EE att to stop client from swinging at another client and was hit in the right eye.
## 20886 EE att to stop food cart when unhooked, force of cart to stop caused neck strain
## 20887 EE att to stop one client from hitting another client-client fell on EE causing EE to hit wall with face and rt arm.
## 20888 EE attached by patient, hit sidways to ground. Struck back of head and back on concrete.
## 20889 EE attached by pt who put EE in a headlock injury to EE neck
## 20890 EE attached by the offenders large dog, sustained scratches to back of neck and a bruise to her right elbow
## 20891 EE attaching boat trailer to truck and bent down and foot popped
## 20892 EE attaching flatt mower to rear of tractor and hit rt hand on tractor.
## 20893 EE attacked by client when putting into eto for hostile behavior.
## 20894 EE attacked by combative patient (struck in mouth, & about the face & rt knee-
## 20895 EE attacked by inmate pushed into bunk rack and injured lt shoulder and scratched back of rt hand. Injured lt shoulder and rt hand.
## 20896 EE attacked by patient and pushed against bathroom door knob
## 20897 EE attacked by patient staff attempted to subdue and place the theraputic hold exposure to patient blood
## 20898 EE attacked by patient. Contustion to left knee, & chest.
## 20899 EE attacked by patient. Multilple abrasions and possible back strain.
## 20900 EE attacked by pt, hit 4 times in the head ()
## 20901 EE attacked by pt, scratches to right hand ()
## 20902 EE attacked by student. Multiple bites on rt arm knots in head from student pulling her hair
## 20903 EE attemped to catch a client who was falling an d noted pain in her left hip, chest, and neck.
## 20904 EE attemped to change a resident who has in bed. Resident became agitated scrated EE. Minor scratchlt wrist
## 20905 EE attemped to place a dwi suspect under arrest, the subject resisted arrest & a scuffle ensued. Sprained left thumb abrasion on left hand.
## 20906 EE attemped to pull water hose out of a closet & in the attempt to pull it loose, EE pulled a muscle between her thumb & index finger rt hand
## 20907 EE attemping to lift chair to bring to staff meeting. Injured lower left abdomen.
## 20908 EE attemping to restrain an inmate who was violentrt hand struck metal bed.
## 20909 EE attempted capture of a cottonmouth, for measurement and marking. The snake turned in his lt hand & bit his lt thumb
## 20910 EE attempted one man hold on patient. Patient struck EE's lower right jaw with hand. While working with patient, back became stiff
## 20911 EE attempted the taledown technique with the shortbaton, fell forward with the inmate & the other staff members pinning my left wrist
## 20912 EE attempted to apprehend fleeing suspect when struggle ensued, suspect continued to flee on footee injured rt middle finger.
## 20913 EE attempted to arrest a combative suspect, who resisted. As a result, some form of strain occured to his right shoulder
## 20914 EE attempted to arrest a suspect for failing to stop for blue lights and siren. The suspect resisted and a fight ensued. The suspect head-butted the EE with his motorcycle helmet causing the injuries to his right eye and left hand. ()
## 20915 EE attempted to assist a student with a removing a syringe and dcm fluid squirted into his left eye.
## 20916 EE attempted to assist in a pit major and felt a pull in right upper thigh
## 20917 EE attempted to assist resident when she slipped on wet floor
## 20918 EE attempted to break a disabled student's fall. Full weight of student caused EE lower back pain.
## 20919 EE attempted to break a piece of thread when finger slipped and thread cut into it.
## 20920 EE attempted to calm patient self-abuse, patient became aggressive and caused both to fall on flooree injured r wrist and hand.
## 20921 EE attempted to calm patient, patient bit EE's leftforearm and twisted left arm.
## 20922 EE attempted to catch falling jar, jar shattered lacerating EE's finger.
## 20923 EE attempted to catch resident from falling and strained shoulder
## 20924 EE attempted to catch resident who was falling outof chair. Hand swollen. Continue restricted duty.
## 20925 EE attempted to clear jammed bowling balls and gotpinkie finger jammed between two balls
## 20926 EE attempted to close heavy, wooden, slinding door that had no grip handle, had to use force, felt sharp pain in left hand radiate to forearm
## 20927 EE attempted to close kitchen door and missed the door handle. The door then closed on his hand. ()
## 20928 EE attempted to close sharpe container lid needle stuck in third finger right hand ()
## 20929 EE attempted to close students door, student slam- med door on EE's hand.
## 20930 EE attempted to close the door to sgt office with his hand between the door jam. Hematoma nail red middle finger rt hand.
## 20931 EE attempted to cross electric fence but pants gotcaught in barbed wire.
## 20932 EE attempted to diffuse irrated inmate to no availee decided to move inmate to more secure cell, inmate refused to comply. Inmate advanced.
## 20933 EE attempted to disperse two student who were arguing. Arugment became physical, EE was inadvertently struck on rt-side of head by student
## 20934 EE attempted to dress client-client combative started kicking at EE hitting rt hand.
## 20935 EE attempted to enter maintenance vehicle when he slipped on ice and fell ()
## 20936 EE attempted to enter shu area gate outside and wind blew into my lt arm
## 20937 EE attempted to extinguish a fire in single cell facility using abc dry chemical fire extinguisher inhaled chemicals and smoke from the fire.
## 20938 EE attempted to get cup from patient & patient scratched EE in the face ()
## 20939 EE attempted to get down from the ladder very quickly to avoid steam burns, missed a step and fell on his knees on the concrete floor***marc sneed***
## 20940 EE attempted to get out of a chair the leg on chair broke, he fell on the floor landing on his back. Contusions- right hip, strain- low back.
## 20941 EE attempted to get tail gate down on truck when he pinched his finger
## 20942 EE attempted to get up in low boy to remove steel gates. It was raining and EE's right foot slipped causing injury to leg and ring finger right hand.
## 20943 EE attempted to get up out of a chair that she wassitting in at the officers desk. Buttocks.
## 20944 EE attempted to give medication to cat when cat lunged forward and scratched EE's hand
## 20945 EE attempted to handcuff arrestee for dui. Arresteresisted & both fell to ground, causing arrestee to fall ontop of EE & breaking EE's left ankle
## 20946 EE attempted to hold door open, howerver door closed crushing 1st and 2nd fingers on left hand
## 20947 EE attempted to intervene btw. 2 clients, client began punching EE, hit EE in nose
## 20948 EE attempted to intervene to protect a patient from another aggressive patient. ()
## 20949 EE attempted to keep a client from falling strained back om the process.
## 20950 EE attempted to keep client from falling to floor-noted back pain
## 20951 EE attempted to keep pt from striking head on sideof chair & pt bounced back on EE arm
## 20952 EE attempted to lift 2 boxes at once and they fell
## 20953 EE attempted to lift 50lb detergent barrel off pallet. EE felt pull and pop in stomach
## 20954 EE attempted to lift a bench press along w/a co- worker and inured elbow joint.
## 20955 EE attempted to lift a box that was heavy. Strained low back.
## 20956 EE attempted to lift patient and heard wrist pop. Pain in left wrist
## 20957 EE attempted to lift stack of boxes with left arm and shoulder. As he was lifting the boxes, he hard something pop and felt sharp pain in bicep.
## 20958 EE attempted to lift state laptop form the trunk of her state car, and immediately felt a shock in lower right back.
## 20959 EE attempted to lt patient, then patient hit EE. Patient grabbed staffs lt hand scratcehd wrist. Grabbed rt hand & scratched hand & rt thumb.
## 20960 EE attempted to make a left turn on to us-701. EE traveled into the path of a north bound vehicle and a collision occured.
## 20961 EE attempted to move a pick-up truck from shoulder of I-40. While moving truck some unknown debris went into EE right eye.
## 20962 EE attempted to move client. Client slipped and fell on EE causing EE to fall onto floor. Pain in back and left knee.
## 20963 EE attempted to move from drawing patient's blood when tripped over stool and hit floor catching on right arm, hand and body especially right leg, hip.
## 20964 EE attempted to open a bag of peanuts with a knifewhile on break, knife slipped off plastic bag & cut his middle finger.
## 20965 EE attempted to open a bottle of cleaning using a pocket knife, lacerated right middle finger.
## 20966 EE attempted to open a can of hot spaghetti when it exploded in her face causing burning and swelling in the facial area.
## 20967 EE attempted to open a door to cell with a key when she injured her rt wrist
## 20968 EE attempted to open an aluminum can and cut thumb
## 20969 EE attempted to open door to women's bathroom stall, door fell off hinges, hitting EE on rt shoulder ()
## 20970 EE attempted to pass a slow vehicle when that vehicle attempted to make a left turn and struck EE in passenger side. Sprain to shoulder and back
## 20971 EE attempted to pass coworker by stepping over stpstool, caught foot on top of stool which caused falee fell to floor landing on rt side
## 20972 EE attempted to pick-up a box of equipment to be transported to another highway patrol office. EE lifted the box he felt a sharp pain in the back of his right shoulder and neck.
## 20973 EE attempted to place restraints on inmate, inmate became upset and spit in EE face
## 20974 EE attempted to push door handle open in I/j dorm when he felt his wrist bend in a strange way. There was a sharp pain that moved up his arm
## 20975 EE attempted to push engine stand out of cage. EE was pushing and coworker was pulling. The tow bar gave and coworker fell dropping tow bar on knee.
## 20976 EE attempted to put tralier on to vehicle hitch and pulled a muscle in lower back
## 20977 EE attempted to raise chair and hit head against metal shelf
## 20978 EE attempted to re-direct client, client stepped on EE's left big toe, pivoted w/full weight pushing nail into toe. Toe swollen &infected.
## 20979 EE attempted to reach for student to get their attention & jammed finger
## 20980 EE attempted to redirect patient, EE tripped over other staff & twisted knee. ()
## 20981 EE attempted to remove a non-responsive hawk, hawk suddenly grabbed his wrist and hand, leaving puncture wounds. ()
## 20982 EE attempted to remove a table from cart-EE lost control of table and strained back.
## 20983 EE attempted to remove partial plate & inmate bit down on index finger.
## 20984 EE attempted to remove pull pin with teeth becausee couldn't remove by hand, while attempting to extinguish an ambulance fire.
## 20985 EE attempted to remove resisting subject from car EE had to break window to gain entry cut rt middlefinger
## 20986 EE attempted to restrain an unruly vendor at the fairgrounds. The vendor punched him in the chest.
## 20987 EE attempted to restrain patient & was pushed up against the wall.
## 20988 EE attempted to restrain patient that was attacking physician, fell to ground kicked multi times on head left hand, ribs
## 20989 EE attempted to restrain the juveile.
## 20990 EE attempted to retrieve a box filled with paper located high on a shelf. The box slipped from her grasp, falling forward and hitting EE on head.
## 20991 EE attempted to search an inmate, inmate pushed past the EE, causing EE to experience pain in back. Pain in lower lt back area
## 20992 EE attempted to secure a student who was hitting him in the head with his fists. Headache.
## 20993 EE attempted to seperate two inmates that were engaged in a physical confrontation. Injured inner lt arm
## 20994 EE attempted to shut off electrical circuit when he received a shock to his rt index finger
## 20995 EE attempted to sit down in chair with wheels. It rolled out from under her causing EE to fall onto base of chair and floor.
## 20996 EE attempted to sit down in her chair with casters. The chair rolled out from under her and she ended up on the floor. ()
## 20997 EE attempted to sit in a chair chair moved tried to brace fall with rt hand
## 20998 EE attempted to sit in a chair the chair broke causing EE to fall onto the floor
## 20999 EE attempted to sit in a chair when the chair accidentally pulled out from under her causing EE to fall.
## 21000 EE attempted to sit in chair and chair slipped outfrom under her causing her to fall on right arm and side
## 21001 EE attempted to sit in chair and fell hitting left arm on desk
## 21002 EE attempted to stand with two projectors in her hand when she felt a sharp pain in her back
## 21003 EE attempted to step up on curb and missed step causing wgt to bear on rt foot.
## 21004 EE attempted to stop a client from going awol and twisted rt knee.
## 21005 EE attempted to stop an unmanned forklift from rolling and left leg was caught under the wheel of the forklift causing laceration and sprain.
## 21006 EE attempted to stop fleeing inmate by grabbing him with both hands at the top of inmates t shirt inmate turned lt causing EE to go airborne rt side
## 21007 EE attempted to stop garbage carts from moving offthe trailer. As he tried to slow them from moving, he strained his rt. Ankle and rt. Knee
## 21008 EE attempted to stop patient from escaping off ward, became assaultive and swing at EE, EE fell andpatient fell on top of EE's right leg/ankle.
## 21009 EE attempted to tie endo trachael tube with gauze while cut was under anesthesia and cat bit down onfinger. Puncture wound lt second digit.
## 21010 EE attempted to walk around wet floor sign, end upslippling anyway, striking left knee
## 21011 EE attempted to walk down steps from chair tower #1 and hit her rt knee on light switch cover. Abrasion to rt knee.
## 21012 EE attempting a verify residence when a dog approached EE and attacked without provocation and bit EE on thigh.
## 21013 EE attempting catch cat to be put in a box & re- moved from unit, cat bite 2 fingers on rt hand several times.
## 21014 EE attempting cpi hold on patient. EE was thrown into a wall, hit in the right breast, & jammed the 5th finger on her left hand. ()
## 21015 EE attempting lift client from very low couch and strained lower back and shoulder
## 21016 EE attempting to Sep two inmates that were engagedin fist fight,, second finger fx
## 21017 EE attempting to apply pic to upset client when client scratched, kicked and slammed EE.
## 21018 EE attempting to apprehend fleeing motorcycle, EE lost control of vehicle rounding curve, collided with ditchbank. Strained neck & head trauma
## 21019 EE attempting to apprehind suspect, lost footing and sustained injuries -
## 21020 EE attempting to arrest a subject and had to strike subject using left hand. Hand was bruised at the wrist.
## 21021 EE attempting to arrest a suspect for dui when struggle ensued-EE injured rt thumb and suffered scratches on face and head.
## 21022 EE attempting to arrest an offender at which point the offender became irrational EE responded with unarmed self defense
## 21023 EE attempting to arrest driver, EE partially in car when subject caused vehicle to move forward. Lt door post struck EE on right side and back
## 21024 EE attempting to arrest individual for possession controlled substance, suspect reisited splattered blood on EE. Blood on EE hands.
## 21025 EE attempting to arrest subject for dwi, subject resisted, struggle between EE, subject, hospital EE, all fell to floor, EE bruised right knee
## 21026 EE attempting to arrest suspect - struggled greatly resulting in EE striking suspect in jaw EE has swollen right hand
## 21027 EE attempting to arrest suspect when a struggle broke out and EE fell to the pavement falling on left forearm, knee and rt wrist.
## 21028 EE attempting to arrest suspect when a struggle ensued-EE had to hit suspect in the head to gain custody injuring rt hand
## 21029 EE attempting to arrest suspect when altercation began and EE injured rt hand.
## 21030 EE attempting to arrest suspect when suspect fled on foot. Stepped on a rock injuring ankle. Lt ankle, swelling, slight discoloration.
## 21031 EE attempting to arrest suspect, suspect drove into EE pinning against some gas pumps in p/lot, suspect drove away - injury to back
## 21032 EE attempting to arrest suspect-had handcuffs on suspect fell to ground-falling on EE's right hand
## 21033 EE attempting to arrest suspected drug dealer whendrag by suspects veh.
## 21034 EE attempting to arrest, was pulled to ground by suspect. EE was struck in chin by suspects head. Injured lt rib cage & filling removed from tooth.
## 21035 EE attempting to assist EE in ending confrontationbetween two inmates. Pressed against wall & rt ankle was twisted. Sprain rt ankle.
## 21036 EE attempting to assist client-client grabbed EE'srt hand and twisted ti backwards
## 21037 EE attempting to assist in arrest of dwi suspect, who had fled on foot. In process slipped and fell on hands, after caught suspect, strained shoulder
## 21038 EE attempting to assist resident to place her legs and feet from the floor into her bed. She began resisting and I felt severe pain in right wrist.
## 21039 EE attempting to assist with agitated pt & right elbow was slammed to the floor. Causing right elbow contusions
## 21040 EE attempting to attach boat trailer to truck and bent down and foot popped.
## 21041 EE attempting to attained handcuff key from another EE during trianing session with handcuff on rt wrist - struggling - injured rt wrist.
## 21042 EE attempting to block sib headbanging and fell off air flow mattress on right elbow and hip.
## 21043 EE attempting to break fight, male subject struck EE in mouth with fist & was arrested for assault. Ems transported EE to er for mouth injuries stitch
## 21044 EE attempting to break up a fight between inmates & she was kicked by inmate in chest w/both feet
## 21045 EE attempting to break up fight & was hit in the jaw by student. Jaw contusions
## 21046 EE attempting to break up fight at swain county courthouse when struck his hand against floor. Injured middle finger lt hand.
## 21047 EE attempting to break up fight between several students which caused aggrevation to lower back
## 21048 EE attempting to break up patient fight. Struck head on wall during altercation
## 21049 EE attempting to break up two client's from fighting-client kneed EE in rib on left side and injuredthumb in fight.
## 21050 EE attempting to break up two patients from fighting, when one patient started to fight EE and both fell to floor - rt elbow and rt shin.
## 21051 EE attempting to capture a stray dog - injured left wrist, rt palm
## 21052 EE attempting to catch runaway juvinile & slid on a grass back twisting his rt knee
## 21053 EE attempting to catch suspect on foot and slippedon wet ground and fell injuring rt shoulder and head.
## 21054 EE attempting to catilize manual restraint with a pt who attempted escape. Causing small laceration middle finger left hand
## 21055 EE attempting to change trk tire when he slipped on grease on floor and cut rt side chin.
## 21056 EE attempting to clear jammed bowling ball and got pinkie finger jammed between two balls.
## 21057 EE attempting to close door when door slipped and closed on left ring finger
## 21058 EE attempting to close door when foot slipped & hepulled somethin in back. Inmate was pushing on door from other side.
## 21059 EE attempting to close trap door to inmate cell door when inmate stabbed EE with homemade knife in rt hand palm area. Puncture wound rt hand palm
## 21060 EE attempting to control irrate inmate bit him on rt thumb.
## 21061 EE attempting to control pt, pt pulled EE down on to restraint bed by arm ()
## 21062 EE attempting to control unruly inmate to prevent inmate from assaulthing staff. No injury specified
## 21063 EE attempting to cross guard rail when he struck lt knee on back of guard rail
## 21064 EE attempting to cross the beam approx. 8 ft high slipped and fell to the ground resulting in pain in lower back.
## 21065 EE attempting to disengage two inmate who were fighting. Aggravated lt knee which was swollen andpainful.
## 21066 EE attempting to draw blood from patient, when EE pulled needle out EE accidentally stuck index finger of left hand with contaminated needle. ()
## 21067 EE attempting to effect an arrest & was tackled bysuspect to ground. EE struck in face by supspect elbow. Abrasions to left hand.
## 21068 EE attempting to enter building from parking lot EE fell on ice injury to left hip and arm lower back
## 21069 EE attempting to escort a combative patient, EE fell to ground injury lt wrist and hand, both knee.
## 21070 EE attempting to execute arrest of probationer. Probationer resisted. Officer attempted to detain probationer pushed EE. EE fell, broke finger
## 21071 EE attempting to feed an inmate when he threw a cup a unknown liquid on the officer's shirt and lt side of face.
## 21072 EE attempting to free a trapped horse from restraint and horse stuck rt toe.
## 21073 EE attempting to get an aggressive client off of another EE and injured back of head
## 21074 EE attempting to get client out of bed with another client-client started kicking EE several times in lower back, left leg, ankle
## 21075 EE attempting to get dustmop out of housekeeping closet, mop fell hitting EE in the head ()
## 21076 EE attempting to give client bath-client resistingcausing EE to hurt rt thumb and wrist.
## 21077 EE attempting to hang her coat in closet when filehanger fell on head.
## 21078 EE attempting to install a radiator into transportvehicle alone, had to stand in veh cavitity, awkwrdposition, twisted wrong, felt pain in rt low back
## 21079 EE attempting to install computer board into com- puter, board went in forcefully causing hand to strike metal frame. Laceration right thumb.
## 21080 EE attempting to install new fuser unit in large color printer pulling & pushing on printer when she felt pain/pinch in lower back
## 21081 EE attempting to keep client from falling to floorand felt pain in rt shoulder.
## 21082 EE attempting to keep combative client in bed feltpain in rt back
## 21083 EE attempting to keep patient from falling, patient grabbed EE & EE was trying to hold patient. Patient wrapped her legs around EE causing EE to fall. ()
## 21084 EE attempting to lay a dog on its side and dog scratched EE on neck to chin.
## 21085 EE attempting to leave inmates cell. Inmate struck EE on lt side of head, knocking him to the floor.
## 21086 EE attempting to lift a manhole cover with crowbarand crowbar slipped hitting EE in the face chipping two teeth
## 21087 EE attempting to lift client from bed to wheel- chair. EE felt pain at that time.
## 21088 EE attempting to lift metal road gate arm onto support post when he felt a stinging sensation in lower back ()
## 21089 EE attempting to lift trash can off of pickup trucin order to place its contents into facility dump strain to shoulders, arms, chest, bck
## 21090 EE attempting to light grill, dropped on tip of finger
## 21091 EE attempting to load a storage cabinet onto a hand truck-cabinet fell hitting EE on the left middle finger
## 21092 EE attempting to lock security gate lock jammed halfway jolting rt wrist
## 21093 EE attempting to loosen wing nut on tailgate of trailer. Injured shoulder & neck
## 21094 EE attempting to lower pt out wheel chair severe pain started in abdomen - 8 months pregnant
## 21095 EE attempting to make an arrest when he and the suspect began to struggle and both fell to ground EE's elbow hit the pavement
## 21096 EE attempting to make lft turn into parking lot ofmercy hospital EE pulled into path of oncoming vehicle causing other veh to strike left front EE car
## 21097 EE attempting to move a mouse from trap. Mouse was not dead bit EE on his right middle finger.
## 21098 EE attempting to move boat trailer to align with vehicle to hook up trailer while other officer backed up vehicle. Strain shoulder pulling trailer
## 21099 EE attempting to obtain blood fm pt, pt was aggressive, grabbed EE's chest area and scratched her ()
## 21100 EE attempting to open milk house cooler, door is air tight & hard to open, EE placed foot on wall to pull door open
## 21101 EE attempting to open window, had to turn sidwways to reach it. While lifting window EE felt & hearda crack in chest area
## 21102 EE attempting to overtake impaired driver. EE lostcontrol of vehicle striking bridge abutment. His vehicle overturned. Had to be extracted by ems
## 21103 EE attempting to overtake violator-tried to pass when violator began to turn lt-EE avoided running off road striking trees and stopped in ditch
## 21104 EE attempting to place restraints on inmate. Inmate assaulted EE, during incident injured rt hand. Rt hand/thumb
## 21105 EE attempting to place suspect under arrest with co-workers-in struggle all 4 fell back & EE's right ankle caught under-torn ligaments in rt ankle
## 21106 EE attempting to prevent individual from falling by catching him as he was falling & felt pain in shoulder & left upper arm
## 21107 EE attempting to pull a speeding vehicle with bluelights and siren activated. Vehicle entered hwy southbound lanes and collided with EE vehicle
## 21108 EE attempting to pull down the overhead projector screen. The screen fell from its mount in the ceil-ing and landed on the EE rt shoulder and arm.
## 21109 EE attempting to puncture a plastic tube to with a needle when needle slipped and punctured left hand index finger.
## 21110 EE attempting to put client in pic hold and clientkicked EE on the left knee.
## 21111 EE attempting to put client in pic hold when client kicked EE in left knee.
## 21112 EE attempting to put diaper on resident, EE was scratched and bitten, thumb area
## 21113 EE attempting to put handcuffs on suspect when suspect swung and hit EE in lower abdomen.
## 21114 EE attempting to qualfiy for firearms training at local police firing range, she substained injury rt shoulder @ arm bruising.
## 21115 EE attempting to raise overhead door which was stuck and strain lower back.
## 21116 EE attempting to redirect patient slammed door & hit EE in back
## 21117 EE attempting to remove 40 gallon kettle from kitchen for repair strained rt ankle.
## 21118 EE attempting to remove client's foot from walker when client hit EE in face
## 21119 EE attempting to remove dog from veh to put into the kennel on back of the er truck. EE grabbed dogby collar, dog turned around, fx EE rt ring finger
## 21120 EE attempting to remove lodged staples in stapler, staple penetrated lt middle & index fingers
## 21121 EE attempting to respond to call and fell at door injuring left shoulder, ankle and foot
## 21122 EE attempting to restrain a violent pt who was advancing on staff with a steel pole. Soreness of lt elbow.
## 21123 EE attempting to restrain aggressive client-injuryto left eye
## 21124 EE attempting to restrain inmate and injured lt wrist and hand.
## 21125 EE attempting to restrain inmate-inmate struck EE on top of head with broom handle-injured left forearm blocking another strike from inmate
## 21126 EE attempting to restrain student in cafe, EE escorting student from cafe both EE and student fell on floor, contusion and sprain left knee
## 21127 EE attempting to restrain violent inmate when inmtstruck EE in chest and upper back area with fists EE experienced and was bruise
## 21128 EE attempting to restraint student, student knockedee backward on ground, punched EE in face
## 21129 EE attempting to retrieve a metal fragment lodged in the motor housing when preparing for a districtinspection, laceration to left hand
## 21130 EE attempting to roll client over; felt pulling in left shoulder. Client was resisting. ()
## 21131 EE attempting to secure gate at millennium campus when lock banged his rt knee causing swelling and pain
## 21132 EE attempting to shift a column of 25 cases acrossa wooden pallet when one case fell hitting EE on head
## 21133 EE attempting to shoot shotgun, sustained a bruiseto neck & right upper arm & shoulder areas.
## 21134 EE attempting to show plumber where toilet leakingwas stuck in lt eye with plunger.
## 21135 EE attempting to sit down at desk-chair rolled outfrom under him & EE fell back onto floor with right arm around back-injury rt shoulder
## 21136 EE attempting to step back off stool & stepped on a cleaning bottle & fell to floor, landing on lower back & buttocks area
## 21137 EE attempting to stop a suspect from fleeing & wascut on lt index finger by handcuffs during alter- cation.
## 21138 EE attempting to stop client from falling out of chair-reached for clint-didn't fell pain until next day.
## 21139 EE attempting to stop client from going into shower w/another client when client scratched EE on the rt arm.
## 21140 EE attempting to stop client from hitting self- during process EE got hit by client causing injuryto left index finger
## 21141 EE attempting to stop suspect fleeing from law. Eevehicle in front of suspect. Suspect vehicle struck EE vehicle in rear.
## 21142 EE attempting to stop vehicle when driver & passanger jumbed and run - EE perued falling on rocks. Fell on knee and sprained it.
## 21143 EE attempting to store keys into cabinet when she fell from stool she was standing on causing injuryto her rt leg. Bruise to rt leg - upper & lower
## 21144 EE attempting to strain youth, youth started fighting with EE, EE fell and hit back of head on commode & center of buttocks
## 21145 EE attempting to subdue an aggressive client injured rt arm and chest.
## 21146 EE attempting to subdue an aggressive patient and was kicked
## 21147 EE attempting to subdue intoxicated person in breathalyzer room EE fell agianst wall, onto floorw/rt hand under his body. Fracture rt hand 4th fing
## 21148 EE attempting to take control of alligator when reptile lunged upward & bit EE on rt pinky finger
## 21149 EE attempting to take suspect into custody. Suspectresisted & subsequently assaulted EE. Laceration, sprained lt ankle & bruised rt knee.
## 21150 EE attempting to talk to inmate about an earlier mattter - discharged him an order to leave bath- room. Inamate drew back struck with fist. Head.
## 21151 EE attempting to turn and change client in bed-client resisted and EE felt pain in rt hand.
## 21152 EE attempting to turn left into client drive, whenee struck on coming vehichle she did not see. Left knee/right hip/chest/neck/back.
## 21153 EE attemtped to place patient in cpi hold & felt pain in left shoulder. ()
## 21154 EE attemtpting to apprehend a traffic violator, when he lost control and overturning his patrol car. Laceration upper lip.
## 21155 EE attended crdt qualification & was participatingon the hands on self defense activities. Some of of the techniques involved being on floor.
## 21156 EE attended crdt training for re-certification on 1/28/2010. Believes that her swollen knee was injured during training excercises. Knee was swollen the next morning and she notified the training coordinator that her right knee was swollen. ()
## 21157 EE attended oc pepper spray training, was sprayed in the eyes causing a burning sensation. EE couldnot open eyes for approximatley 2 hours.
## 21158 EE attended work related workshop in boone. He stopped at intersection on return trip to charlotte. A car failed to stop and rear-ended him
## 21159 EE attending a dinner, bit into a piece of french bread and broke tooth.
## 21160 EE attending basic training - participated in riottraining injured back. While doing manuever that required twisting motion. Injured back and hip.
## 21161 EE attending crdt training & possibly injured an recent hernia repaired area in abdomen. Not sure exactly when or how the injury occurred.
## 21162 EE attending field class, working in stream/buffer areas, tick bite on upper buttock
## 21163 EE attending funeral of client, began to turn leftinto funeral home, saw other cars, stopped for red light, started forward and was hit by ov
## 21164 EE attending meeting for board of directors and slipped in hallway twisting knee, hip and back.
## 21165 EE attending off campus function walking from car to bldg and twisted rt ankle.
## 21166 EE attending pic class, while practicing take down with other student, pulled muscle in neck and shoul
## 21167 EE attending required training session held in brady auditorium. Missed step down while finding a seat. Injured knees/left foot/shins
## 21168 EE attending school of education meeting. Sat in abroken chair in hoagin hall auditorium. Cut/puncture rt leg/thigh.
## 21169 EE attending training was taken to mat in head lock escape when his rt arm was pushed into his upper rt side chest area
## 21170 EE attending unarmed self defense class instructorwas using her to demonstrate unarmed self defense tatic in front of class. Rt hand and arm.
## 21171 EE attmepting to open door top portion of door came detached from track folding over & landing onto EE's head. Hit top of skull of head.
## 21172 EE attnding pepper mace training EE sprayed facialarea. Used water to flush out eyes & facial area. Eyes have burning sensation.
## 21173 EE augur from food pulper feel rt foot when inmatewas trying to pull apart. Injured rt foot.
## 21174 EE auto was struck in rear by another vehicle. EE head & upper body was thrown backward against the headrest, hurting back & neck.
## 21175 EE back down at desk and chair slid back causing EE to fall and hit tailbone on floor.
## 21176 EE back of truck loaded book buggy carriers go loose and fell on my shoulder, neck and back, pinning me to truck.
## 21177 EE back started hurting after transfering residentto his bed.
## 21178 EE back was hurting yesterday caused by the resident.
## 21179 EE back was sore when reporting for duty and then bent over to pick up waist chain off floor and back popped little later hurt back with inmate for
## 21180 EE backed her chair away from her desk & stood up, her back popped & there was a tingling sensation going up to her left hip/down her left leg & ft. ..
## 21181 EE backed into pole leaving hilton james parking lot with state truck straining neck & back
## 21182 EE backed into tree, states left side of neck & shoulder hurting.
## 21183 EE backed up not knowing file drawers were open and tripped over drawer and fell backwards hit head and back and scratched back of leg.
## 21184 EE backing a cleint into bathroom when the door swung back and caught EE's left hand
## 21185 EE backing client in a wheelchair into the restoomthe floor goes up ant an angle and felt pain in lower back.
## 21186 EE backing mail cart out & vision was blocked. Boxof envelopes were in the way & EE tripped and fellover them. Injured knee & lower back
## 21187 EE backing out into hall out of doorway. Ring was caught on door
## 21188 EE backing out of parking lot hit by another car
## 21189 EE backing up ditch witch to smooth over rough ground, EE stepped in a rut, causing him to fall, machine fell over on his left ankle/foot.
## 21190 EE backing up steep enbankment on yanmar crawler carrier to curve new trail when 6' root mat elevated machine and rolled machine to it's side pinning EE left leg underneath ()
## 21191 EE backpacking in pisgah national forest. While hiking EE rolled right ankle & foot.
## 21192 EE baggage stuck at bottom edge of escalator; pulled her back until landed on back while escalator still moving; tried to get up; burst lips and chipped teeth ()
## 21193 EE band saw to remove brain rabies
## 21194 EE banded a swan and was carrying bird to pond when it clar puncture finger, claw stuck in fingerand bird pulled out and re-punctured finger.
## 21195 EE banged her right knee cap into the side edge ofthe file cabinet
## 21196 EE banged knee against desk foundation
## 21197 EE bathed and redressed pt that needs assistance-next morning back was hurting
## 21198 EE bathing a patient & attempted to position patient who weighed about 250lbs. And her right hand accidentally got stuck under him
## 21199 EE bathing and dressing client-client falling to floor and EE getting client up and client's head hit EE's chin.
## 21200 EE bathing client in bathroom, EE turned & twisted leg
## 21201 EE bathing client pulled something in rt side while assisting client from wheelchair to the shower
## 21202 EE bathing client, shower bench slipped- EE caught client- pulled shoulder neck area
## 21203 EE bathing client-client is a stand-pivot-EE started to pivot client onto tub when EE turned felt pop/cramp/pain in low back
## 21204 EE bathing client-rolled client over felt sharp pain in neck down back
## 21205 EE bathing individual, when individual threw bath water in EE's face.
## 21206 EE bathing pt who was very resist, scratched EE wrist
## 21207 EE bathing resident in shower, EE leaned forward and & chair went to flip, EE caught it & turned it EE had pain in lower back
## 21208 EE bathing, feeding and turning patient-skin upper torso
## 21209 EE became aware of spot approx one inch in size, itching and discoloration, EE states fingers feel numb and tingling. Bite on right fore arm
## 21210 EE became conjested in chest and nose running after being exposed to cleaning solution for floor
## 21211 EE became dehydrated during tryouts for the pert pat training exercise, blacked out.
## 21212 EE became disoriented due to low sugar count and collided w/ stopped vehicle @ traffic light.
## 21213 EE became dizzy and light headed during heat
## 21214 EE became dizzy and weak in the arms and legs.
## 21215 EE became dizzy from the smell of the goop off that was being used near her desk; she got hot andsweaty, saw black dots
## 21216 EE became dizzy while driving his patrol car. He attempted to stop his vehicle, traveled off the right side of the roadway and struck several trees ()
## 21217 EE became dizzy, nausea and lightheaded from fumesused to unclog sink
## 21218 EE became entangled with a strap off of seeding bag; injured left knee
## 21219 EE became entangles in under brush where the posion ivy was not clearly visible & he had already touched it. Swelling forehead hands, neck & face
## 21220 EE became exposed to poison ivy while weedeating at lake holt
## 21221 EE became hot and overheated
## 21222 EE became hysterical and began to collapse upon hearing of world trade ctr attack. EE strained back trying to catch student.
## 21223 EE became ill - dizziness, shortness of breath and disorientation - no known cause
## 21224 EE became ill after inhaling fumes for five days while work being done to building.
## 21225 EE became overheated while driving tram causing heat exhaustion
## 21226 EE became overly upset after a disciplinary meeting with supervisors and was transported to the hospital
## 21227 EE became sick due to an icu patient with leptospiresis-an infectous disease that can be contracted by people.
## 21228 EE became sick on her stomach after pepper spray training
## 21229 EE began complaining of pain in hands as result ofdaily typing and writing.
## 21230 EE began complaining of wrist, forearm pain in right arm after beginning work on new lap top computer
## 21231 EE began experiencing pain in wrists from normal workday requirements that EE use a keyboard/mouse 4/6 hrs per day
## 21232 EE began feeling pain in her rt arm from the shoulder to finger tips shortly after being assigned tospecial housing
## 21233 EE began fighting staff to pic. Was to take pt in restraints. Pt resisted causing hct to hit leftinner knee on edge of bed.
## 21234 EE began having allergy problems-moved to another office & symptons improved-relocated to another office near 1st and sympton returned.
## 21235 EE began having pain in lower abdomen, back, & hip are. Pain started out mild & gradually developed more severe as EE continued lifting residents.
## 21236 EE began having pain in lt elbow and numbness in fingers from use of computer
## 21237 EE began having pain in right shoulder which gradually moved down to her elbow and right hand
## 21238 EE began having severe pain in arm. Tendonitis with secondary cts
## 21239 EE began itching while folding laundry
## 21240 EE began suffering from unknown skin irritation on both legs
## 21241 EE began to cry uncontrollably when fellow EE asked how he was doing. He was admitted to frye regional medical ctr. Psychological stress
## 21242 EE began to drop things due to the pain in l wristthen knots appeared
## 21243 EE began to experience pain in her left arm and upper back... While carrying a bookbag
## 21244 EE began to feel discomfort in back after moving resident in bed.
## 21245 EE began to feel light headed, faint, and heart palpitations while driving work vehicle ()
## 21246 EE began to fell light-headed and weak while emptying trash in building. Smelled strange odor. Headache and dizziness
## 21247 EE began to have breathing complications; went into seizure; died
## 21248 EE began to have trouble with speech and weakness of the lt side, very dizzy.
## 21249 EE began to prep tissue samples while adding penn/strep some accidentally spilled on her
## 21250 EE began to pull away from loading dock in truck. Another driver backing his truck. EE stopped and the truck hit his truck
## 21251 EE began to run out of the unit due to responding to what sounded like urgent call, it was still raining, stepped in mud and slipped, hit right knee on
## 21252 EE began to sit down in a chair with wheels and chair rolled back and EE fell on bottom.
## 21253 EE began to smell something that gave her a severeheadache, followed by nausea; later she fainted inthe sick room & was later transported to hosp. Er.
## 21254 EE begin to have chest pain and dizzness
## 21255 EE behind 18 wheeler trk that was backing up and trk hit EE causing strain to left shoulder and back.
## 21256 EE being evaluated for chronic cough which May be related to air quality in bldg-ventilation system being overhauled
## 21257 EE being picked up by another EE to drive because of rain, getting in truck, foot slipped off truck rim & hand slipped off hand grasp, fell in water
## 21258 EE being placed in handcuffing position caused discomfort to rt arm & shoulder area. Rt arm, rt shoulder and neck
## 21259 EE being pulled up a wet bank by another employee later rt arm became limp, swollen and bruised.
## 21260 EE being shown escape hatch-as he was coming down ladder-foot slipped & twisted left ankle
## 21261 EE being sprayed with pepper spray, EE turned head to right and spray got into left ear
## 21262 EE being trained on oc pepper & fully exposed, EE alleges pepper spray caused an allergic reaction
## 21263 EE believes he was scratched by patient while trying to put them in seclusion and restraint. Scratch lt side of neck and headache.
## 21264 EE believes injury occurred while dusting and waxing furniture.
## 21265 EE believes she was bitten by a spider/insect.
## 21266 EE believes that he was contacted the mrda infect-ion.
## 21267 EE believes that she May have come into contact w/ mold in the office.
## 21268 EE believeshe injured ankle during unarmed self defense.
## 21269 EE bend down to pick up a box on floor that was under counter. EE straighten up felt sharp pain in lower back. Injured rt side of back.
## 21270 EE bend down to pick up case of bleach when EE heard something pop or pinched in my rt side of back. EE dropped box on floor.
## 21271 EE bending & attempted to stand when he struck hislt shoulder against security latch on van door.
## 21272 EE bending & lifting, and using a shovel. Pain in lower back.
## 21273 EE bending down to get apron and stood up and hit head on back of grill.
## 21274 EE bending down to pick up something in the closetand stood up and struck head on a nail.
## 21275 EE bending down to wash rags and struck her head on the faucet causing laceration
## 21276 EE bending neck, cradling phone while entering computer data - noticed left side of neck & shoulder hurting & keeping up at night
## 21277 EE bending over arrange items on table-stood up and hit head on shelf above.
## 21278 EE bending over culvert, filling gallon jar with sample water, muscle strain, upper back ()
## 21279 EE bending over filing cabinet in awkward position to retrieve old files injury pain neck and cervical spine
## 21280 EE bending over moving supplies, strained back. Lower right side of back
## 21281 EE bending over printer, changing cable--raised upand struck forehead on wall cabinet.
## 21282 EE bending over pulling heavy box of law books stepped backwards with rt foot and felt tearing inheel and up back of leg
## 21283 EE bending over squeezing mop out when door that was propped open slammed shut hitting EE on forehead
## 21284 EE bending over to change client. Client on a verylow bed. When she straightened up, she felt a sha rp pain in lower mid back.
## 21285 EE bending over to cut freon lines under exhaust fan-stood up and felt pain in lower back.
## 21286 EE bending over to gather items for travel, strain low back
## 21287 EE bending over to look under locker, his back arched in. Felt a pull his back then pain.
## 21288 EE bending over to lower patient's bed-when retd to standing position felt severe pain in rt knee.
## 21289 EE bending over to move a chair, back popped.
## 21290 EE bending over to move shredder & something snapped in lower back causing sharp pain
## 21291 EE bending over to pick trash out of the trash can and felt a sharpe pain in lower left back.
## 21292 EE bending over to pick up dirty napkin-struck rt eye on the adaptive equipment box.
## 21293 EE bending over to pick up trays and went to standup felt catch in back.
## 21294 EE bending over to put retain tag on product when she bumped into a rack of chicken parts-hit on lf side causing EE to fall injury rt hip, thigh
## 21295 EE bending reaching inside the double sided metal cabinet-stepped back into cabinet leaving a 2" laceration-top lt scalp area.
## 21296 EE bending to pickup a stack of files when liftingshe felt snapping towards upper back.
## 21297 EE bending to place tray of liquid into fridg, EE behind fridge, moved it causiong EE to pitch forward to keep tray from falling, pain in back
## 21298 EE bending to pull out stool for handwashing could not stand back up injury back
## 21299 EE bending to transfer resident pulled muscle in lower back feels tight with spasms did not actually pick up resident
## 21300 EE bending, squattin, or stooping while collecting oak seed on ground. EE balanced himself on toes &ball of rt foot, became very sore
## 21301 EE bends neck and shoulder doing daily activities involving filing.
## 21302 EE bent and felt pain in lower back.
## 21303 EE bent down and turned sideways to secure an electric fence. Unable to stand after bending down because of severe pain in back.
## 21304 EE bent down from seated position to pick up ear plug from floor-when went to get up felt pain in back
## 21305 EE bent down to catch a resident who thought he was falling.
## 21306 EE bent down to check hole for turtles and a needle rush poked EE in lt eye causing blurred vision
## 21307 EE bent down to clean drain-bent toes in shoes-stood up and felt pain in big toe on rt foot.
## 21308 EE bent down to clean wheelchair and bumped lt shoulder and arm on the wheelchair wheel.
## 21309 EE bent down to empty trash and hit right eye hardon copy machine.
## 21310 EE bent down to fix basket under tv and struck head under tv while standing up
## 21311 EE bent down to fix bucket for mopping came up head hit corner of electric box in housekeeping room
## 21312 EE bent down to get medication from refrigerator and door hit left eye.
## 21313 EE bent down to get something out of treatment cart and strained back
## 21314 EE bent down to get spoon out of med cart and felt severe pain in back when straightening up
## 21315 EE bent down to get water from tunel washer and had pain in bakc when he went to stand up-was bent for approx 3 minutes
## 21316 EE bent down to handcuff inmate and felt pain in lower back
## 21317 EE bent down to lift barrel into dumpster and strained back
## 21318 EE bent down to lift gate, stood up and lost balance, falling hit head on the gate.
## 21319 EE bent down to lift up tub of mail and strained muscle in upper back and chest
## 21320 EE bent down to open gate door which stopped unexpectedly and EE cut rt side of eye and forehead.
## 21321 EE bent down to open up a cabinet and was reachingfor a bottle when the lower part of her back popped and started burning.
## 21322 EE bent down to pcikup trays off floor and came upand hit his head on machine.
## 21323 EE bent down to pck up keys and back popped in same place as injury on 02/26/03.
## 21324 EE bent down to pick 5gal bucket of sealer felt pull in lower back.
## 21325 EE bent down to pick and pulled something in knee
## 21326 EE bent down to pick something off floor, rubbed her fingernail against wall as she bending and a splinter was pushed under righ middle nail.
## 21327 EE bent down to pick something up from under desk and struck left ear on side on desk
## 21328 EE bent down to pick up a box of sausage and strained back
## 21329 EE bent down to pick up a box on office floor. Felt pulling in left arm around elbow area.
## 21330 EE bent down to pick up a ink pen off the floor and when she came back up, hit eye on corner of the keyboard tray
## 21331 EE bent down to pick up a key when he felt something snap in his back
## 21332 EE bent down to pick up a piece of paper from m the floor and right knee popped.
## 21333 EE bent down to pick up a piece of trash that fell and strained back
## 21334 EE bent down to pick up a sock & noticed tingling in lower back area
## 21335 EE bent down to pick up a trash bag and when she pulled up, she caught a catch in her back.
## 21336 EE bent down to pick up carry tray from floor and strained rt wrist
## 21337 EE bent down to pick up clipboard off the floor and hit his head on one of the nails when standingback up
## 21338 EE bent down to pick up clipboard, arm caught in lifter.
## 21339 EE bent down to pick up his keys to open the door and when came up struck his head on the fire alarmpull box.
## 21340 EE bent down to pick up mop bucket and felt a pullin left side of back.
## 21341 EE bent down to pick up mop bucket to put it over the kickplate, the water shifted and she felt a pain in her middle back
## 21342 EE bent down to pick up napkin and strained rt knee
## 21343 EE bent down to pick up pad off the floor and hurt back.
## 21344 EE bent down to pick up paper and strained back
## 21345 EE bent down to pick up paper clip off floor. When straightening up severe pain radiated from lower back into right leg
## 21346 EE bent down to pick up paper. Low back pain.
## 21347 EE bent down to pick up pt shoes to get him out ofbed when pt kick EE in the back 2x.
## 21348 EE bent down to pick up several manuals from the floor. Upon getting up felt a sharp pain on left side of lower back.
## 21349 EE bent down to pick up snack tray. She heard a popping sound and felt a sharp pain in her back.
## 21350 EE bent down to pick up some paper & when EE stood up rt knee popped
## 21351 EE bent down to pick up something off floor when stood up she struck her head on a fire extinquisher
## 21352 EE bent down to pick up the box of legal pads thatwas on top of another box on the floor and twistedto turn around. Lower back.
## 21353 EE bent down to pick up trash on the floor of the breakroom and upon standing, struck the top of head on wooden cabinet. ()
## 21354 EE bent down to place a piece of wood on the floor and stood up hitting ear on shelf bracket
## 21355 EE bent down to place sling under client, when she raised up noted catch in back
## 21356 EE bent down to pull up the door stop & hit his rtcheek on the door knob.
## 21357 EE bent down to put something in trash can under desk and struck his forehead on ruler to paper drilling machine.
## 21358 EE bent down to read the serial number of the cpu on the floor, attempted to put in on top of the desk, the cords were to short and it started to slip out of her hands. EE tried to grab it, when leaning over to put it on the floor she heard a pop.
## 21359 EE bent down to remove a broken free branch, so hecould park his car, felt a pain in his back. Oow 1/2 til 1/8 rtw 1/9
## 21360 EE bent down to remove boxes out of cabinet and bumped head on the 1st door on the cabinet. ()
## 21361 EE bent down to restrain the front of the client's wheelchair and when she attempted to stand up her back struck the arm of the wheelchair bruising back. ()
## 21362 EE bent down to retrieve a pair of scissors and struck his head on the corner of book shelf
## 21363 EE bent down to retrieve paper when she stood up she hit her head on the side of the shelve.
## 21364 EE bent down to turn over flat bed cart to change wheels and injured lower back
## 21365 EE bent down to wrap the cord up on the vacuum and hit the top of the vacuum handle with her throat. ()
## 21366 EE bent down topick up trash can, twisted back when turning to the left, something ripped in backlike a muscle had torn loose/
## 21367 EE bent forward to move a chair, felt sharp pain in lower back when placing chair down.
## 21368 EE bent over and felt pain when she got up ()
## 21369 EE bent over and hit his forehead on the corner of the table causing slight cut/scrap
## 21370 EE bent over and pulled a muscle in rt leg
## 21371 EE bent over assisting client out of bed when she felt sharp pain in lower back
## 21372 EE bent over doing a med treatment to client, upon walking back to med cart felt a sharp pain in her lower back.
## 21373 EE bent over for a long period of time cleaning scrubbing and waxing floors-felt pain in low back
## 21374 EE bent over from standing position to pick up a stack of files off the floor. EE felt pain in low back.
## 21375 EE bent over open file drawer twisted back & sharppain occurred
## 21376 EE bent over to answer phone, picked up receiver with left hand and twisted to rt to pick up pen and felt left hip pain
## 21377 EE bent over to cahnge buffing pad and when he started to straighten up he felt pain in lt side area(low back).
## 21378 EE bent over to care for client and felt sharp pain in back and when stood up pain increased. Strain back.
## 21379 EE bent over to chabge trash bag, client ran up and hit EE in back.
## 21380 EE bent over to check resident diaper when she felt pain in lower back
## 21381 EE bent over to clean commode, back began to hurt when he straightened up. Injury to left side lowerback
## 21382 EE bent over to clean thresholds and elevator tracks and developed low back pain-EE did not report injury until 5/18/03
## 21383 EE bent over to clean toilet and rose up and had pain in the low back
## 21384 EE bent over to clean toilet, felt sharp pain in back when she stood up.
## 21385 EE bent over to connect vaccum attachment to riding lawn mower-instantley developed back pain.
## 21386 EE bent over to cut tape on box and back popped. EE felt back pop.
## 21387 EE bent over to flip a piece of metal-when he flipped the metal felt a sharp pain go down lower backand left leg.
## 21388 EE bent over to get a large notebook and EE felt and heard a tear.
## 21389 EE bent over to get into a car and the door frame of the car closed and struck EE in the rt eye.
## 21390 EE bent over to get liner for linen cart and he stood up twisted his lower back.
## 21391 EE bent over to get paper out of the fax machine and hit her head on the shelf above the fax machine
## 21392 EE bent over to get patient's tray and strained back
## 21393 EE bent over to get trash from trashcan and injured back
## 21394 EE bent over to lift boxes and boxes were too heavy causing a strain on his back.
## 21395 EE bent over to lift empty bucket and strained back
## 21396 EE bent over to log on to his computer, sharp pain shot up his back. Low back strain
## 21397 EE bent over to move bookshelf, injured lower back
## 21398 EE bent over to move garden hose and strained back
## 21399 EE bent over to pick a mat up out of an animal penstrained back.
## 21400 EE bent over to pick of mop bucket, twisted/turnedto pour out water and felt catch in back.
## 21401 EE bent over to pick pen off floor and chair shot out from underneath EE causing EE to fall to flooratt to break fall w/rt wrist.
## 21402 EE bent over to pick up 11x17 ream of paper and felt back tighten and snap
## 21403 EE bent over to pick up 5 gallon bucket of paint and hurt back.
## 21404 EE bent over to pick up 8' 4x4 to saw-felt pain in lower back and left leg
## 21405 EE bent over to pick up a basket of field jackets and when she stood up her back starting hurting across the lower back. ()
## 21406 EE bent over to pick up a box of clothes and felt catch in right side of back.
## 21407 EE bent over to pick up a cup from ground when he felt a pull in his lower back form 18 filed***
## 21408 EE bent over to pick up a food tray and her back popped
## 21409 EE bent over to pick up a mail tray from floor and had back pain.
## 21410 EE bent over to pick up a paper that fell in the floor and lost his balance, fell out of desk chair & landed on back & rt shoulder. Low back/rt shldr
## 21411 EE bent over to pick up a piece of paper when she struck her head on the door latch
## 21412 EE bent over to pick up a piece of wood and alleges back started hurting.
## 21413 EE bent over to pick up a printer when he injured his back
## 21414 EE bent over to pick up a resident's book off the floor and her back popped
## 21415 EE bent over to pick up a stapler
## 21416 EE bent over to pick up blanket and pulled his back. He complains of tingling and numbness in back.
## 21417 EE bent over to pick up box of pool balls and felt sharp pain in back
## 21418 EE bent over to pick up box with contents-felt something rip around right hip & lower back
## 21419 EE bent over to pick up cable and ()
## 21420 EE bent over to pick up canteen money from safe and felt a sharp pain. Pain went through back and left leg,
## 21421 EE bent over to pick up car keys in parking lot oflinwood fish fry. When he felt a sharp pain in lower back. Muscle spasm in lower back.
## 21422 EE bent over to pick up chart and heard a pop in my back and felt pain in back weakness in lt leg. Lt
## 21423 EE bent over to pick up corner of a hand cart loaded with centerpieces to fit on elevator. ()
## 21424 EE bent over to pick up eha equipment brief case she felt a severe pain in her lower back heard a crack sound and was unable to stand upright
## 21425 EE bent over to pick up front legs of steel chair to remove 2x4 so he could move chair, when EE stoodup he felt a pain in left lower back.
## 21426 EE bent over to pick up frozen chicken felt twinge in back, back became stiff
## 21427 EE bent over to pick up napin when back popped andpain went threw back.
## 21428 EE bent over to pick up object off the floor injured back.
## 21429 EE bent over to pick up pack of matches off the floor and pulled his back.
## 21430 EE bent over to pick up parts and strained back
## 21431 EE bent over to pick up pen and struck head on bookcase corner he was working on to add printer to computer ()
## 21432 EE bent over to pick up pill off floor. She hit her head on door jam, fell on floor hitting face. Unconsciousness, pain in right wrist
## 21433 EE bent over to pick up server - standing up and hit head on server deck.
## 21434 EE bent over to pick up sheets from floor and hit top of head on bottom of door.
## 21435 EE bent over to pick up sign drawing that had fallen on floor and when he sttod back he had sharp pain in back and down both legs
## 21436 EE bent over to pick up something from the floor, when she stood up, her nose came in contact with apartially open wooden drawer.
## 21437 EE bent over to pick up something off floor when she felt something pop on her back
## 21438 EE bent over to pick up telephone log and hit headon corner of desk
## 21439 EE bent over to pick up tool tray-turned to exit mechanical room-lower back popped.
## 21440 EE bent over to pick up trash from the floor & felt something pop in lower lt back.
## 21441 EE bent over to pick up truck scales and felt a pull in his back
## 21442 EE bent over to pick up wet socks off. The pt kicked and EE moved to avoid being kicked. Pt kicked neck/shoulder. Tabletop fell hitting leg, below knee
## 21443 EE bent over to place a 3 inch 3 ring binder in slide carosel in office chair and experienced sudden pain in lower back upon returning upright.
## 21444 EE bent over to place some binoculars on ground when he experienced pain in lower back
## 21445 EE bent over to pull document from files - she felt pain in her back - back strain.
## 21446 EE bent over to pull patient up from bed when she injured her back
## 21447 EE bent over to pull pole out of ground
## 21448 EE bent over to pull resident and strained back
## 21449 EE bent over to pull trash and resident hit EE with fist ()
## 21450 EE bent over to push button to open gate. She felt sharp pain in her back locked in bent postionleft arm and finger began to tingle.
## 21451 EE bent over to put a file in the bottom drawer on a file cabinet in the office and felt pain in herlower back.
## 21452 EE bent over to put fittred sheet on bed, back started to hurt
## 21453 EE bent over to put food tray on a serving cart and my lower back started having pain
## 21454 EE bent over to raise the arm rail of bed when injury occurred. Pulled muscle in lower back & right leg
## 21455 EE bent over to remove clients clothes from drawerand felt a sharp pain down right leg.
## 21456 EE bent over to repair vcr chair swung around and hit EE rt cheek
## 21457 EE bent over to replace food tray on cart when hisback caught & popped.
## 21458 EE bent over to reposition a client in chair and felt pain in lower back
## 21459 EE bent over to retreive object and felt twinge in lower back.
## 21460 EE bent over to sit on stoll & stool rolled away & she fell on rt ankle & pulled lt shoulder tryingto grab shelf to break her fall..
## 21461 EE bent over to sit pt up right in chair, pain shoot across EE's back ()
## 21462 EE bent over to speak to client-when another client bumped into EE causing EE to hit forehead on wheelchair cutting left eye brow.
## 21463 EE bent over to throw trash away and when she came up hit head on cabinet
## 21464 EE bent over to turn off water faucet after rinsing protective gear following sampling trip. Struck head on hose holder bracket. Cut scalp
## 21465 EE bent over to unlock resident drawer to get out clothes for the day, when bent over heard pop in back and had pain and stiffness.
## 21466 EE bent over to work on the wheel of a v-blade & pulled muscles in back.
## 21467 EE bent over to write on table top and could not straighten up due to severe pain in lower back,
## 21468 EE bent over tub to pull stopper and and hit ribs on side of tub-felt pull in ribs
## 21469 EE bent overt o pick up a mat up put of an animal pen and strained her back.
## 21470 EE bent ovr to lift mail tub and the tub was heavy and strained back.
## 21471 EE bent thumb backwards when he picked up bed to raise head board.
## 21472 EE bent to grease air handler on boiler, hit left eye on extended pipe.
## 21473 EE bent to lift a case of soda from a tight location and incorrectly lifted using back.
## 21474 EE bent to pick up a rad and felt pain in lower back
## 21475 EE bent to pick up something that had fallen from her desk when her chair rolled from under her causing her to fall to the floor
## 21476 EE bent to pick up trash can and lifted too fast and corner of can and hit EE in the side of the mouth.
## 21477 EE bent to tie shoe slipped and fell hitting rt knee on bath tub. Injured rt knee.
## 21478 EE bent under truck to fuel and struck back rt shoulder blade on body of truck. Cut rt back shoulder blade.
## 21479 EE bit by client while assising staff with a therapeutic hold. EE seen at urgent care
## 21480 EE bit by dog on left thigh, puncturing skin ()
## 21481 EE bit by mouse while giving and injection
## 21482 EE bit into bone in meat on 2 seperate occassions in the cafeteris and fractured 3 teeth
## 21483 EE bite by patient on right breast
## 21484 EE bitten by a cat when restraining on left index finger
## 21485 EE bitten by a dog on upper rt arm & wrist during surveiliance contacts.
## 21486 EE bitten by an otter during feeding. Cut to rightindex finger
## 21487 EE bitten by cat on arm
## 21488 EE bitten by many ticks, latest bite of concern was on 8/4/11 (lymes disease). ()
## 21489 EE bitten by mice on left 3rd finger.
## 21490 EE bitten by patient while helping to change her
## 21491 EE bitten by rat during feeding on rt thumb
## 21492 EE bitten by spider on rt index finger
## 21493 EE bitten by student on hand. Broke skin left index finger
## 21494 EE bitten by student on left hand between index finger and thumb while subduing student.
## 21495 EE bitten by tick or other insect causing rash on lower leg.
## 21496 EE bitten by tick while spraying pesticide in wooded area ()
## 21497 EE bitten by unknown insect while maintaining custody and security gym, right side of neck, chin, ear, shoulder, chest and trouble breathing
## 21498 EE bitten on lt index finger by patient that was being restrained. Human bite lt index finger.
## 21499 EE bitten on right hand while filling up shavings carts.
## 21500 EE bitten on right wrist while sitting at desk filling out paperwork
## 21501 EE blacked out after feeling faint.
## 21502 EE blacked out and backed car into ditch.
## 21503 EE blacked out and fell against power lift and hithis head.
## 21504 EE blacked out and fell face first to the ground, nose fractured, face and forehead cut and scraped and neck strain
## 21505 EE blacked out and fell hitting head and elbows.
## 21506 EE blacked out applying band-aid to finger (EE hadnot eaten).
## 21507 EE blocked client from hitting co-worker and twisted back in the process.
## 21508 EE blood pressure went up after being sprayed with pepper spray during training. Face was sprayed with pepper spray
## 21509 EE blood sugar dropped causing EE to drive pickup truck into back of dumptruck - EE type 1 diabetic cat- 448858
## 21510 EE blowing leaves off loading dock, fell off the dock, contusion to left knee
## 21511 EE boarded bus at columbia st, and while walking to sit down bus took off and EE slipped on wet floor. Injured rt leg.
## 21512 EE boarded hospital shuttle to go to parking deck-had surgery on lt foot-need to be elevated, foot hit concrete post when driver accelerated.
## 21513 EE boarded the bus and the it took off, stopped, then took off again before she could get seated properly. She plopped down into a seat and felt a sharp pain radiate from the top of her neck to the bottom part of her back on the right side. ()
## 21514 EE boiled a cup of wtr for four minutes in the microwave, put in a tea bag and it exploded hot water ont EE's face.
## 21515 EE boiled an agarose solution in the lab microwave, removed the ehrlenmeyer flask and swirled. The flask slipped from his hand and hit the centrifuge surface below. Hot solution splashed into his face. ()
## 21516 EE boxing office contents for move to new location approx 2 weeks and unboxing apprx 3 weeks after move, lifting and moving boxes. EE felt pain in lower abdomen, shoulder and back ()
## 21517 EE bracing himself ctd & rossette frame were being disployed from ship. Lt hand was pinned (loss ofpart of thumb & middle finger, index total loss.
## 21518 EE braked and turned right to avoid stopped car and ran into parked dump truck on side of road
## 21519 EE breaking down table to move and it fell on foot
## 21520 EE breaking ice on sidewalks. It was slippery. Fell on ice head hit ice.
## 21521 EE breaking pipe loose w/pipe under chiller mchn when metal frm wrench split knuckle open
## 21522 EE breaking up a fight between inmates. Shoulder was injured while trying to remove inmate from thedorm.
## 21523 EE breaking up an altercation between two inmates inmate struck in shoulder several times. Struck shoulder again. Contusion & sprain lt shoulder.
## 21524 EE breaking up fight between 2 clients, 1 jumped EE & pushed against wall causing fall, and felt pain in right shoulder.
## 21525 EE breaking up fight between two inmates, hitting left elbow on wall scratching and bruising arm. Injured lt elbow, lt shoudler area.
## 21526 EE breaking up fight between two patients & injured right thumb
## 21527 EE breaking up fight when she was hit in face & fell backwards with inmate.
## 21528 EE breaking up fight with inmate when he was scratched on rt elbow.
## 21529 EE breaking up two juveniles fighting & was assaulted by one of the juvenile & hit on upper left back; head & left cheek bone
## 21530 EE breathed in construction dust and odors over anextended period of time throughout summer & fall 2003 - - form 18 filed. ..
## 21531 EE breathed in fumes from chemical being mixed to strip a floor.
## 21532 EE breay up physical altercation between 2 patientwas pushed against. Table fell to floor, two patients - injured finger, neck
## 21533 EE bringing a cart of office supplies up stairs felt discomfort in left shoulder
## 21534 EE bringing a food cart into the housing unit whenthe door slammed shut on his left shoulder/arm
## 21535 EE bringing client back to living tenit riding elevator, client became upset and kicked me in rt leg.
## 21536 EE bringing client up the hall-client kicking and pulling-EE holding client and felt pull in rt siderib cage.
## 21537 EE bringing easels down steps from storage and missed first step-landed at bottom of stairs on back of head.
## 21538 EE bringing in drug crates, slipped on ice on loading dock and fell approximately 4 feet onto cement below. Lower back neck and leg injuries
## 21539 EE bringing individual back from haircut. Walked by another resident. Resident jumped out of chair and began to hit EE on top of back, shoulder, neck
## 21540 EE bringing mail from physical plant office slipped and fell on ice, bruised lt lumbar and pinched nerve
## 21541 EE broke a nmr tube in her hand. Broken glass caused cut and chemicals came in contact with cut. ()
## 21542 EE broke a pt fall when he was going down the steps causing him to have back pain.
## 21543 EE broke a window on gun tower... While driving vehicle to facility infirmary lost control and struck tree with vehicle.
## 21544 EE broke out in a rash after working in an attic whith insulation.
## 21545 EE broke out in a rash caused by an allergic reaction to her shoes.
## 21546 EE broke out in a rash on face, neck, arms, and handswhile shredding paper.
## 21547 EE broke out in rash after grooming clients
## 21548 EE broke out in rash all over body. The physician has indicated the rash is not work related.
## 21549 EE broke out in rash and had problem breathing frmsprayed deodorizer in hall.
## 21550 EE broke out into a rash while she was cleaning out the basement, taking trash out and bookshelves
## 21551 EE broke out on arms, back & hands ()
## 21552 EE broke out with an unknown rash on his neck. Checked out by medical then sent to anson county hospital.
## 21553 EE broke the driver side window on the car of an offender that was resisting arrest and cut both hands and arms
## 21554 EE broke up a fight between two students, while restraining the youth he was struck in the back ()
## 21555 EE bruised hand trying to force rack into sanitizer.
## 21556 EE bruised her left hand in the thumb area firing the revolver.
## 21557 EE bruised left arm restraining student
## 21558 EE bruised left index finger restraining juvenile
## 21559 EE bruised right hand when she got it caught be- tween a foodcart and the wall.
## 21560 EE bruised right shoulder/upper arm during shotgun qualifications.
## 21561 EE bruised shoulder and scratched arm scuffling with patient
## 21562 EE brushed hand against metal cabinet resulting in a deep cut on lt small finger.
## 21563 EE brushed hand with sharp edge of pipe cutting the back of his hand; right hand
## 21564 EE brushed her leg against a wooden bench and got a splinter in her leg
## 21565 EE brushed rt thumb across edge of clipper. Cut approx. 1/4 in. In length.
## 21566 EE brushed up against a wooden cabinet and got a splinter in her left hip
## 21567 EE buffing fllor when back started hurting
## 21568 EE buffing floor & got foot hung in cord then knocked down on floor, bruised hand, hip and legs
## 21569 EE buffing floor and slipped in water causing injuries to nose, eye, chin, rt side of body.
## 21570 EE buffing suite hall moved buffer to left and hitleft elbow
## 21571 EE bulldozing a large rock for parking lot-rock jerked shoulder and caused a sharp pain.
## 21572 EE bumped a sterile pasteur pippette inside a bac-terial hood. It shattered. Glass was blown out, EE felt irritation in right eye.
## 21573 EE bumped against circuit breaker door. Scratched left leg
## 21574 EE bumped elbow on maid cart
## 21575 EE bumped face on fire extinguisher injured face/head
## 21576 EE bumped finger on end mill, changing end mill in holder. Cut index finger on right hand.
## 21577 EE bumped hand while moving computer; because of repetitive typing her hand continues to hurt. Right hand, thumb, and wrist
## 21578 EE bumped head against a log in an exhibit.
## 21579 EE bumped head aganist wall while filing.
## 21580 EE bumped head getting vehicle
## 21581 EE bumped head on cabinet ()
## 21582 EE bumped head on corner of building.
## 21583 EE bumped head on desk causing a laceration above right eye.
## 21584 EE bumped head on entrance. Small bruise and headached
## 21585 EE bumped head on fuel box on single cell b
## 21586 EE bumped head on shelf
## 21587 EE bumped head on stairs
## 21588 EE bumped head on tv table in pt's room prev 22. 5% ppd to back on old clm..
## 21589 EE bumped her lt knee on the edge of a wood desk. Contusion of lt knee
## 21590 EE bumped his head against the trash truck
## 21591 EE bumped his head on a cabinet
## 21592 EE bumped his head on a water pipe that was over his head when he stepped on the platform.
## 21593 EE bumped his head on a/c duct. Cut on right side of head requiring 3 stitches
## 21594 EE bumped his head on gate while helping clients take out train. Small laceration
## 21595 EE bumped his leg on the front bumper of a truck while walking out of recycling building
## 21596 EE bumped his lower leg into a pallet and a one inch splinter penetrated the leg. Splinter was removed but area became infected.
## 21597 EE bumped his lt leg below the knee while working on the tobacco sprayer
## 21598 EE bumped ino a picture along wall. Picture fell eeattempted to catch and glass edge cut right thumb.
## 21599 EE bumped into a can covering a hole & his lt footwent into the hole he strained his lt hip & back trying to avoid falling.
## 21600 EE bumped into a wheelchair injuring his right knee
## 21601 EE bumped into aijo lift
## 21602 EE bumped into dolly, it bounced up and EE steppedbackwards to regain balance and twisted my ankel.
## 21603 EE bumped into pvc airline which broke-air pressure threw EE backwards and over 2 gas heaterslanding sideways-back, elbow, forearms
## 21604 EE bumped into the corner of the printer table injuring her right elbow
## 21605 EE bumped into the table hitting her shins and began to fall; caught herself; pulled her back; existing chronic back condition
## 21606 EE bumped knee under desk causing contusion
## 21607 EE bumped left elbow on the tray of chalkboard while washing it.
## 21608 EE bumped left elbow while installing water heater
## 21609 EE bumped left hand middle finger on lighting fixture during practice.
## 21610 EE bumped left knee against hand rail causing a bruised & twisted right knee
## 21611 EE bumped open edge of light fixture frame and cut lt lower arm
## 21612 EE bumped right knee on desk as she rose to answer phone ()
## 21613 EE bumped rt elbow against door when resident pushed him
## 21614 EE bumped rt elbow on drink crates while stocking cooler
## 21615 EE bumped rt hand on bedrail while doing a diaper check
## 21616 EE bumped rt knee against corner of desk causing pain in rt knee cap.
## 21617 EE bumped rt knee against pinball machine
## 21618 EE bumped rt knee on end of table.
## 21619 EE bumped rt leg into a trash can causing him to trip and fall
## 21620 EE bumped the rotating stone. Abrasion of finger tip pad on lt middle finger.
## 21621 EE bumped van she was driving into another vehicle-no injury noted
## 21622 EE burned both hands when coffee slipped off the table
## 21623 EE burned eyes from the rays on the welding machine.
## 21624 EE burned forearm on lawnmower while loading it onto the bed of truck.
## 21625 EE burned hand on oven door while heating food. Wound became infected and EE sought treatment on 12/5
## 21626 EE burned hand while pulling pan out of oven.
## 21627 EE burned his forearm on a hot pipe.... Left arm
## 21628 EE burned his lt hand while using a torch
## 21629 EE burned his right hand with a smoke grenade
## 21630 EE burned left arm while washing & rinsing dishes in sanitizing hot water with gloves on. Left arm.
## 21631 EE burned left forearm and left thigh with hot beans
## 21632 EE burned left hand on hot muffler
## 21633 EE burned left hand when moving pan from stove
## 21634 EE burned right hand with popcorn oil while emptying popped corn from kettle in candy shoppe.
## 21635 EE burned rt 2nd finger on boiling pot
## 21636 EE burned rt hand on acetylene torch
## 21637 EE burned stomach on steam table
## 21638 EE burnt forearm on oven
## 21639 EE burnt rt arm on sheet pan that she was taken out to serving line
## 21640 EE burnt rt hand on hot gravy from food tray
## 21641 EE bus ran into a ditch impact of accident caused him to loose seat and land on roll bar, striking lt rib.
## 21642 EE c/o elbow pain when helping to move furnitue also dizziness, upset stomach and tingling in bothhands
## 21643 EE c/o hand & wrist pain--pressing hard on wax dispenser button & cleaning the tissue cassettes. Repetitive motion. Strain rt wrist & hand
## 21644 EE c/o rash on back
## 21645 EE c/o rash on both arms
## 21646 EE called by sgt to assist breaking up a fight among inmates when he ran out of door, he slipped on gravel and fell down hurting knee.
## 21647 EE called for assistance on radio, patient came towards EE yelling & swinging. Patient hit EE on the (left) hand. ()
## 21648 EE called hr on 4/24/09 that she was having tingling in her left thumb and wrist. Occupation is repetitive motion.
## 21649 EE called in on April 12, 1999 and indicated to boiler operator on duty that he had a mild heart attack over the weekend
## 21650 EE called into work and advised he pulled something in his groin area.
## 21651 EE called into work complaining that her feet hurtbecause of her safety shoes. She went to Dr. And was put out of work for 3 days.
## 21652 EE called patient for supper at which time patientbecame hostile, kicking and slapping and cursing. Scratched EE's left arm
## 21653 EE cam in contact with something that broke skin out on hands. Skin irritation on fingers.
## 21654 EE cam into contact with broken glass and lacerated both knees
## 21655 EE came back from taking a helmet to pt/ot and fell bruising and scrapping her knee and lower leg. She thinks she May have fallen in a hole.
## 21656 EE came by office & reported her left lower ankle & calf area swollen & blue. Turned ankle on rug in dish room.
## 21657 EE came down from a step ladder and back went into muscle spasm
## 21658 EE came down off the last step and turned lt and EE fell onto sidewalk causing injury to knee/handssalary continuance employee
## 21659 EE came down the parking deck stairwell, opened the door and tripped down elevated area by the door and landed on her right knee. The unleveled area is not noticeable. ()
## 21660 EE came down the stairs, tripped and fell. Injuredtop of right foot--sprain.
## 21661 EE came from dishroom carrying 6 1/2 pints milk she slipped & fell on bean soup that was on the floor. Injured left knee
## 21662 EE came from inside of bldg to outside and the tmpchanged and EE fainted and fell on sidewalk
## 21663 EE came in between two inmates fighting was struckin the left shoulder numerous times.
## 21664 EE came in building from parking lot. Was walking past trash can. Bee stung EE on right index finger
## 21665 EE came in contact w/latex noted rash on abdomen.
## 21666 EE came in contact w/poison ivy leaves & roots while excavating assigned arch. Units. Though wrnggloves contact was made
## 21667 EE came in contact w/poison ivy while collecting env samples fromm the neuse river.
## 21668 EE came in contact with TB from inmate
## 21669 EE came in contact with a bees nest... Both arms
## 21670 EE came in contact with a client diagnosed with meningococcal meringitis.
## 21671 EE came in contact with a yellow jacket nest and stung several times... Had an allergic reaction
## 21672 EE came in contact with abrasive material on bridge of nose.
## 21673 EE came in contact with an inmate who tested postive for tuberculosis
## 21674 EE came in contact with an inmate who was diagnosewith tuberculosis
## 21675 EE came in contact with another EE who has TB.
## 21676 EE came in contact with blood of suspect while making arrest
## 21677 EE came in contact with blood that was on inmates arm due to an abrasion.
## 21678 EE came in contact with blood while helping young child with cut knee.
## 21679 EE came in contact with chemical on her face either by touch or spray while cleaning. ()
## 21680 EE came in contact with inmate that had TB
## 21681 EE came in contact with inmate who tested postive for tuberculosis
## 21682 EE came in contact with inmate who was infected with scabies
## 21683 EE came in contact with poison ivey while working on resnake river.
## 21684 EE came in contact with poison ivy cutting bushes
## 21685 EE came in contact with poison ivy hands and face
## 21686 EE came in contact with poison ivy while chipping wood in the park
## 21687 EE came in contact with poison ivy while conducting wet land delimation.
## 21688 EE came in contact with poison ivy while going thru woods on training mission
## 21689 EE came in contact with poison ivy while on foot patrol for hunting violations.
## 21690 EE came in contact with poison ivy while pulling weeds
## 21691 EE came in contact with poison ivy while weedeating.... Both arms
## 21692 EE came in contact with poison ivy, it was growing in the daylilies he was planting
## 21693 EE came in contact with poison ivy.. Entire body
## 21694 EE came in contact with poison oak while doing research in field. Rash covering face, ears, mouthneck and chest.
## 21695 EE came in contact with poison oak while out on a fishing outing with clients.
## 21696 EE came in contact with poisonous plants
## 21697 EE came in contact with probationer on supervised probation for failing to report for TB treatments
## 21698 EE came in contact with pt that had scabies and a pt that had shingles. EE noticed rashes on both thighs.
## 21699 EE came in contact with rabid fox.
## 21700 EE came in contact with student with a rash
## 21701 EE came in contact with student with possible scabies
## 21702 EE came in contact with sumac plants with bare hands & spread sumac contact to face, arms, eyes, & crotch.
## 21703 EE came in contact with ticks while working in thewoodlands. Months of feeling fever/sinus problems & weakness EE went to Dr-Dx rocky mtn spotted fvr
## 21704 EE came in contact with unseen insect causing allergic reaction
## 21705 EE came in side door of scott carrying vacuum and tripped on corner of rug, caught herself and tripped on corner of vacuum; fell down stairs; hit elbow; twisted back; went home upset and hurt ()
## 21706 EE came in the housekeeping area to get her key for work and on her way back to her car she fell in the parking lot where the pavement is broken. ()
## 21707 EE came in to work and noticed a stong odor-smell-ed like kerosene, EE was working on computer when the building was evacuated around 10:30. None.
## 21708 EE came into building from outside. She started down the steps when she slipeed and fell.
## 21709 EE came into contact with a stinging sea creature right cheek
## 21710 EE came into contact with poison ivy and was bitten by chiggers and ticks when surveying stream
## 21711 EE came into contact with poison ivy while pullingweeds.
## 21712 EE came into contact with poison ivy while weed- eating... Arms, hands, neck and face
## 21713 EE came into contact with poison ivy while workingin the woods in gates county.
## 21714 EE came into contact with poison ivy while workingoutside in garden on cclc grounds while cutting a tree. Face, arms, and waist.
## 21715 EE came into contact with poison ivy... Arms, legs, face, neck
## 21716 EE came into contact with poison ivy... Back and neck
## 21717 EE came into contact with poison ivy... Hands and face
## 21718 EE came into contact with poison ivy.... Right arm alon elbow
## 21719 EE came into contact with poison ivy..... Left arm above the elbow
## 21720 EE came into contact with unknown white powder in package.
## 21721 EE came into office, grabbed ?? And fainted.
## 21722 EE came into physical contact with pepper spray during a use of force.
## 21723 EE came into to contact with poison ivy... Arms, hands, neck, and face
## 21724 EE came out and bumped leg on food wagon, lost bal-ance and fell, bumping head, knees and caught on her hand.
## 21725 EE came out of bathroom and twisted ankle, knee
## 21726 EE came out of client's room & was attacked from behind by a client. Client pulled her hair. Neck pain
## 21727 EE came out of door of dormitory and fell over a 5 gallon bucket that was used to hold the door open. Injury to right lower back and right knee
## 21728 EE came out of firing range felt light headed faint
## 21729 EE came out of ofc, slammed door on right finger ()
## 21730 EE came out of pharmacy and when turned around to go back in the pharmacy, my knee twisted around and gave out on me. EE fell down on to my left knee in front of pharmacy door. ()
## 21731 EE came out of room and consumer tried to hit EE. Consumer hit EE's arms and back into EE's face.
## 21732 EE came out of the back door of the chancellor's home and slipped in some ice that had melted from the displaced snow. ()
## 21733 EE came out of water with sever pain in both ears from dive.
## 21734 EE came out office going to make security check offence. At end of building near wall. EE tripped over wall. Contusion lt hip, broke tooth, crown.
## 21735 EE came through rear door of tower from the cat-walk. He caught hi left middle finger in door when it closed
## 21736 EE came to adminstration building to pick up the mail. EE was walking back to cottage when he slip and fell on ice. Injury to right ankle.
## 21737 EE came to lunch with office asst. Stopped at red light at intersection when a truck hit back of EE's care. General soreness and pain in back.
## 21738 EE came to the wc office on 7/24/09 to say that she has been out of work since 7/5/09 due to back pain and wanted to know if she could get on wc. ()
## 21739 EE came up to operator and asked that he get down to discuss workplace. She turned to leave he got up, foot hit lever and bucket swung and hit head
## 21740 EE came upon an automobile accident and stopped tohelp. He jumped down to ground and hit arm on the ground. Victim was another doc EE
## 21741 EE can not move rt thumb - no specific injury identified
## 21742 EE car was rear ended by another. EE hit back of head on vehicle head rest.
## 21743 EE carried 2 buckets of soil then started raking & lower back started hurting.
## 21744 EE carried a 24 cup coffee pot full of water to other bldg and injured back.
## 21745 EE carried compressor upstairs, installed a motor and while kneeling rt knee became sore and swollen
## 21746 EE carried fiberglass filter. Later rubbed eye andfiberglass got into the right eye.
## 21747 EE carried large supply of reports back to dol. Side of back started huritn about 30 minutes laterleft arm, back of hand and fingers started to hurt
## 21748 EE carried patient to the bathroom. Patient was kicking & being very aggressive towards staff. Sprain to right shoulder
## 21749 EE carried portable air tank to inflate golf cart tire
## 21750 EE carried water pan in client room to give sponge bath - squatted down to put pan down and felt sharp pain in back
## 21751 EE carries briefcase with caseload files to and from office, because the files are heavy, she feels her pain in her left elbow.
## 21752 EE carries mail bins of approx 20 files to recordsroom twice a day. Also carries boxes of files to be mailed each week. Rt--hand/arm/elbow/shoulder.
## 21753 EE carring box of supplies down steps when foot slipped and EE fell backwards landing on left hip and back.
## 21754 EE carring something, strained back
## 21755 EE carring strawberry pan to serving line, slippedon wet floor being mopped. Warning sign on bucketlpulled lower back and bruised right hip
## 21756 EE carring to trash barrel, right hand hit sharp edge of plastic flask.
## 21757 EE carrying 15lb stack of paper from 1st floor to library bldg strain lower back.
## 21758 EE carrying 3 reports from 1st floor to 4th floor felt something pull in lower back
## 21759 EE carrying 45 lb box full of brochures and daily planner, went down flight of 25 steps leg went stifbruise to rt knee cap
## 21760 EE carrying 45 lb portable scale EE lost his footing and stumbled which caused the scale to twist his left elbow
## 21761 EE carrying 5 gallon bucket of wax felt pain in hand.
## 21762 EE carrying a bookbag with 425 pages of paper handouts to car.
## 21763 EE carrying a box of equipment into office and tripped over object in floor.
## 21764 EE carrying a computer when she tripped on crack in concrete. Sprain to right 3rd finger & bruises to right knee.
## 21765 EE carrying a counter top into the shop-top broke and cut rt forearm
## 21766 EE carrying a hitch piece of farm equipment. It fell out of my hand - bent finger back. Deep bruise/sprain 4th finger rt hand.
## 21767 EE carrying a load to outside, stepped on loose debris and twisted right ankle
## 21768 EE carrying a pc across school campus via rt arm elbow.
## 21769 EE carrying a piece of equipment and lost balance grabbed lot pipe injuring left hand.
## 21770 EE carrying a printer to her car to take to maint. Bldg-stepped off curb and injured left ankle.
## 21771 EE carrying a worktop table when he experienced pain in his rt elbow
## 21772 EE carrying all equipment required for third shiftclock, yard keys, walkie talkie, and had extra clothes on for cold weather. Strain to back, neck
## 21773 EE carrying bag of personal belongs - front officeee stepped into a hole and twisted ankle.
## 21774 EE carrying baskets from upstairs to downstairs and fell missed last step and fell-basket cut rt eye
## 21775 EE carrying bed springs injury to right hand
## 21776 EE carrying biohazard bag & got blood on him from outside of bag-left arm
## 21777 EE carrying biohazard trash bag to be thrown away when jagged glass pipet pocked through and cut EE on calf while walking.
## 21778 EE carrying block into small tool repair building EE squated down to lay block on top of other blockfelt catch in low back, strain
## 21779 EE carrying boards across wet bleachers EE slippedand fell injury right shoulder right arm right leg and lower back
## 21780 EE carrying box and felt pain in lower back.
## 21781 EE carrying box down flight of stairs & misjudged by distance and fell, left ankle
## 21782 EE carrying box of supplies and tripped over concrete on sidewalk falling on left breast, kneesand cuts on both hands.
## 21783 EE carrying box on shoulder down stepts at unc baseball stadium strained rt shoulder
## 21784 EE carrying boxes and tripped over cart, contusionto left arm, both knees
## 21785 EE carrying boxes towards door-someone opened doorfrom inside causing door to hit EE's hand.
## 21786 EE carrying boxes when tripped by chairs blocking aisleway-hit floor on right knee
## 21787 EE carrying briefcase full of folders-shifted wgt of briefcse from left hand and arm opened door of car and felt pain in left forarm.
## 21788 EE carrying bus pan and bent right pinky finger
## 21789 EE carrying cases of wtr from car to rolling cart on sidewalk and heel of shoe got caught on cement block causing EE's rt knee to twist.
## 21790 EE carrying cases to big in the unit & tripped andfell. Rt knee pain.
## 21791 EE carrying client down hallway and up stairs client kicking and twisting - EE pulled left elbow
## 21792 EE carrying client to restraint room-during process rt thumb caught in clothing.
## 21793 EE carrying computer when he tripped and fell and hit head and eye on computer
## 21794 EE carrying display case into work site building EE stubbed toe on case, toe nail cracked, bleedingensued. Scrapped third toe right foot
## 21795 EE carrying equipment to chaple hill and monitor slipped out of hand and fell onto rt foot.
## 21796 EE carrying evidence up to court-twisted rt ankle and fell.
## 21797 EE carrying files and went around corner-tripped over files in floor injuring left ankle.
## 21798 EE carrying fire rake down rocky terrain when footslipped on rocks causing EE to fall and rake stuckee on lower leg.
## 21799 EE carrying food and trying to unlock heavy door- door started to closed pushing food tray into ribs
## 21800 EE carrying heavy buffing machine down stairs & pulled back
## 21801 EE carrying heavy casket from hearse to lowering devise injury to back
## 21802 EE carrying heavy equipment and slipped falling back into rail causing equipment to land on chest
## 21803 EE carrying heavy plastic bag. The plastic bag duginto the finger making the tip of finger go numb. Left finger.
## 21804 EE carrying ice chest out of building when welding machine fell on rt foot/toe
## 21805 EE carrying lap top computer, printer & accesoriesweighing 15lbs. Weight on rt shoudler strain & re-sulted in pain to collarbone & shoulder.
## 21806 EE carrying laptop computer and missed a step and fell landing on left arm
## 21807 EE carrying laundry basket and bags to storage andslipped and fell in hallway sprained left ankle.
## 21808 EE carrying mail and turned over ankle walking. Hefell, injured side/arm and ankle
## 21809 EE carrying materials stepped down onto edge of parking lot and fell, twisting right knee. ()
## 21810 EE carrying metal bucket to da office-weight of bucket strained left shoulder.
## 21811 EE carrying metal door jamb in bldg-turned a sharpcorner and jamb twisted injuring rt. Wrist.
## 21812 EE carrying metal sides and foot slipped and landed on left knee.
## 21813 EE carrying papers from the hr office and fell down stairs burised left ankle, buttock, legs and arm
## 21814 EE carrying printer on hand trk to another bldg- one wheel on hand trk came off-which caused EE to struggle w/trk staining back for pressure.
## 21815 EE carrying pt on transport board injury pulled back
## 21816 EE carrying some heavy files to basement-felt painin left knee during process
## 21817 EE carrying supply of paper in box to secretarys office and strained back
## 21818 EE carrying the portable stage up two flights of stairs and pulled a muscle in right leg.
## 21819 EE carrying tortoise out of holding area and backed into crane shaft.
## 21820 EE carrying trash out, stepped wrong and slipped off handicap ramp(2 inches off ground) spraining left ankle.
## 21821 EE carrying tray mail down steps and slipped and fell injuring mult parts of body.
## 21822 EE carrying xerox copies across street from copy center injury to back
## 21823 EE catching softball game. EE caught off guard & did not have time to cover with gloved hand & ballhit lt ring finger. Dislocated lt ring finger.
## 21824 EE caught (left) arm / wrist in door while trying to exit the nursing station. ()
## 21825 EE caught a case of poison ivy while cutting and hauling trees and underbrush wile on state active duty.
## 21826 EE caught a client who was escaping from building. Client fell to floor pulling EE forward causing EE to pull something in back.
## 21827 EE caught a falling patient & immediately felt pain in neck & right arm
## 21828 EE caught a football that was thrown to him, whileattending a departmental luncheon. Broke left ring finger.
## 21829 EE caught ahnd in walker and strained wrtist.
## 21830 EE caught arm between chart and desk ()
## 21831 EE caught bat in pillow case, it escaped, EE caught again, uncovered bat outside, took left finger and rubbed bats back, then flew away.
## 21832 EE caught client from falling resulting in back pain.
## 21833 EE caught client that was falling and pulled middle of back.
## 21834 EE caught client when client began to fall during bath time, EE felt pain in lower back.
## 21835 EE caught client's fall and felt and sharp pain inher black right side.
## 21836 EE caught co-worker falling down stairs while taking a break
## 21837 EE caught elbow in nose while participating in recreation with his students.
## 21838 EE caught elevator to the 6th floor and slipped on wet floor near snack bar area. Probably from rain that morning.
## 21839 EE caught fall and injured wrsit and hand
## 21840 EE caught falling patient and went to floor strained left knee
## 21841 EE caught finger in door when locking and closing for night.
## 21842 EE caught finger in drawer
## 21843 EE caught finger on metal folder. Laceration rightpinky finger.
## 21844 EE caught fingers in wheels of wheelchair
## 21845 EE caught fingers of rt hand in paint buckets while carrying them across the room- contusion to rt hand, abrasion to rt hand & legs.
## 21846 EE caught foot in indetions in sidewalk, pitched forward, and fell at employee meeting in raleigh.
## 21847 EE caught foot in sidewalk divider behind pine bldg. Fell onto sidewalk with rt knee hitting on concrete.
## 21848 EE caught foot on desk drawer getting up to walk to door and fell on arm.
## 21849 EE caught foot on edge of stairs and twisted ankle
## 21850 EE caught foot on metal piece in floor; fell, twisting knee.
## 21851 EE caught foot on roller of chair as she entered office- turned left foot over and fell
## 21852 EE caught hand between drying rack and shelf while moving drying rack
## 21853 EE caught he thumb under a resident when she was turning a resident on he side to change her. She has been put on restricted duty.
## 21854 EE caught heel on unlevel piece of concrete, tripped & fell
## 21855 EE caught her finger between cows head and the handle on the headgate causing a cut to the end of her left index finger requiring stitches
## 21856 EE caught her foot on the running board of the vanwhen she stepped out and bent her leg back behind her.... Left hip, lumbar injury
## 21857 EE caught her hand between bedrail and pad.
## 21858 EE caught her shoe on rug protector pad and hit head on desk. Cut to left side of head and fractured left hip
## 21859 EE caught her thumb in elevator door when she pushed it open. Door May have been stuck.
## 21860 EE caught his finger between trash bin & dumpster when emptying trash.
## 21861 EE caught his fingers in a door as it was closing
## 21862 EE caught his right middle finger between two railroad ties
## 21863 EE caught index finger on right hand in van door.
## 21864 EE caught l hand between door and door facing
## 21865 EE caught left foot on base of desk chair while turning to the right in the chair twisting knee.
## 21866 EE caught left hand and little finger in the door as EE was exiting work area
## 21867 EE caught left index finger in door while letting inmates out of dining hall
## 21868 EE caught left middle finger in elevation feeder of the printing press. EE has soft tissue contusionof left middle finger
## 21869 EE caught left ring finger on door lock plate while attempting to exit snatched ring & finger back caused pain & swelling & discoloration
## 21870 EE caught lft ring finger in door trying to keep it from slamming
## 21871 EE caught lt hand in door as she was attempting toclose it
## 21872 EE caught middle finger of lt hand between the door.
## 21873 EE caught middle finger on right hand in swinging door when closing
## 21874 EE caught patient who was unsteady on their feet and falling which caused her to re-injure her back.
## 21875 EE caught resident and fuul weigth of resident wason EE's wrist that was between the rail and the van.
## 21876 EE caught resident as he began to fall, felt pain in upper back.
## 21877 EE caught resident that was falling. Injured back
## 21878 EE caught resident who was falling and lowered him to the floor straining left leg
## 21879 EE caught ring on striker plate on door jam while going out. Cut left ring finger
## 21880 EE caught rt great toe on edge of parking lot space and fell fracturing rt great toe
## 21881 EE caught rt index finger between steel sculpture components
## 21882 EE caught rt index finger in bathroom door
## 21883 EE caught rt ring finger on med cart and strained it
## 21884 EE caught shoe heel in chair wheel and fell causing pain to wrist neck and upper back
## 21885 EE caught small finger of left hand in door while securing a student back to class
## 21886 EE caught something under her heel of shoe and fell to knees catching herself with her hands.
## 21887 EE caught thumb in machine
## 21888 EE caught toe of shoe on the leg of table and whengetting up and twisted rt knee.
## 21889 EE caught toe on uneven sidewalk & fell scraping rforearm causing pain in r leg
## 21890 EE changed a tire and was loading the tire in the back of the imap unit. EE was moving cones in the back of the unit, to better position the tire, and felt pain above his hip on the right side of his back. ()
## 21891 EE changing a patient & was unaware of posion on container of aloe & sprayed solution in her face
## 21892 EE changing a patient EE's arm grabbed by aggress-ive patient. Rt hand injury.
## 21893 EE changing a trashcan and was walking away and fell on rt knee and twisted left anke.
## 21894 EE changing batteries out of hauling unit
## 21895 EE changing box in ceiling duckwork/register fell through ceiling grid striking right hand and forearm
## 21896 EE changing cartridge for water fountain when wrench slipped cut thumb - injured rt thumb.
## 21897 EE changing client into pajama top-client became agitated and pulled EE's left thumb backwards
## 21898 EE changing client into pajamas when client grabbed EE's left hand and twisted index finger
## 21899 EE changing client-client stuck finger in rt eye
## 21900 EE changing client; client fell back; EE tried to catch her and hurt her back.
## 21901 EE changing clients sheets, turned the wrong way when removing sheet, pain in chest/side
## 21902 EE changing diaper, then directing resident out ofbathroom. Hit staff on lt side of face w/elbow on side of jaw. Lt side of face below ear-jawbone.
## 21903 EE changing from snow tires to regular tread tires& placing hubcap back on rim. EE cut his right index finger when he was dislodging a valve stem.
## 21904 EE changing light bulb went to get out of truck foot slipped on back bumper falling to concrete floor.
## 21905 EE changing light tube-one end in fixture and raised the other end and the tube exploded which resulted in cuts on left hand.
## 21906 EE changing mop head, caught her rt index finger inside mop frame causing a small laceration. Cut finger rt index
## 21907 EE changing nitrogen fitting when fitting slipped into vice and EE's hand hit vice cutting rt hand.
## 21908 EE changing offices to teach at cosmetology centerin kannapolis. When moving teaching supplies to car & storage room EE injured right elbow.
## 21909 EE changing out ceiling overhead when debri got into rt eye
## 21910 EE changing out ceiling tiles while standing on a ladder; felt a pull in right lower back. ()
## 21911 EE changing paper on copy machine, finger cut fromside of paper holder by sharp metal clip on holderlaceration of middle finger, rt hand.
## 21912 EE changing plug on generator-stepped up to walk out and struck head on pipe.
## 21913 EE changing pressure pump, squirted in left eye
## 21914 EE changing pt padding, while moving pt, ees arm was pinned ()
## 21915 EE changing pts clothing in bathroom and assistingpt stand when pt cursing and digging nails into eearm, bruised rt arm
## 21916 EE changing resident bed when lifting matters put shoes on caught cramp in her lower back. Acute lower bac strain
## 21917 EE changing resident when he scratched lt arm.
## 21918 EE changing resident, resident scratched lt hand. Screened for blood exposure.
## 21919 EE changing tire on a state boat trailer, while using the wrench, it slipped off the lug end & struck EE on the end side of his left knee
## 21920 EE changing tire on riding mower (which was on trailer) EE jumped off sid, spraingin lt knee. Sprain to left knee
## 21921 EE changing tire on veh bar slipped cut left thumb
## 21922 EE changing tire when jack slipped & EE attempted to pull jack out & EE strained right arm
## 21923 EE changing water bottle, took a case off rack and felt sharp pain in left shoulder and knee.
## 21924 EE chaning out an compressor and a insect bit EE on the rt cheek
## 21925 EE chaning pt- trying to get back in bed. Pt triedto hit staff member. Injured fingers rt hand
## 21926 EE chased a subject on foot who was resisting arrest. A scuffle ensued and while trying to subdue the subject, EE fell striking right hand
## 21927 EE chased fleeing violator on foot, fell when feet became entangled in vines and broke right hand.
## 21928 EE chased patient down steps and fell down steps while catching patient
## 21929 EE chased suspect on foot and injured left wrist when he tackled suspect and suspects weight landedon EE's wrist at akward angle. Sprained wrist.
## 21930 EE chased violator on foot. During chase, EE ran into a chain link fence post. Rt knee struck post
## 21931 EE chasing a subject on foot when he stepped on a pieces of sheet metal and slid down hill bending foot back
## 21932 EE chasing an intoxicated driver who was running on foot and while crossing a fence, out lt forearmon fence.
## 21933 EE chasing client-floor had been mopped-EE slipped& fell landing on buttocks/back
## 21934 EE chasing inmate who was running away. Grabbed t-shirt of inmate & tripped over sidewalk rope. Hit thigh on door stop & fell to ground
## 21935 EE chasing prisoner fell on rock slate steps causint abrasions to both palms, severe bruises to lt forearm & bruised chest.
## 21936 EE chasing resident injuryed right ankle when he made a sudden turn and while performing nci ***rtw full duty 11-15-06***
## 21937 EE chasing runaway student and tripped over a fallen tree causing injuries to the right ankle.
## 21938 EE chasing subject through wooded area, tripped over a fallen tree & injured left knee.
## 21939 EE chasing suspect in wooded area & ran into a tree
## 21940 EE chasing suspect on foot and strained his rt leg.
## 21941 EE chasing suspect on foot though woods and injured rt ankle in pursuit.
## 21942 EE chasing suspect on foot to place into custody and twisted rt knee.
## 21943 EE chasing suspect on foot-fell & struck face on log on ground breaking nose
## 21944 EE chasing suspect vehicle, attempted a right turn, lost control of his vehicle and struck a ditch bank
## 21945 EE chasing suspect when he grabbed suspect's shirtand suspect pulled away causing EE to fall and cut left knee on rocks
## 21946 EE chasing violator through woods. Was struck in the face & hands by branches from several thorn bushes which caused several small scratches.
## 21947 EE checked bathrooms for inmates and found a fire, EE grabbed extinguisher, put fire out. Upon pullingpin out, EE cut right index finger.
## 21948 EE checked student's head/scalp to find presence of head lice. EE later became infected with head lice. ()
## 21949 EE checking bathroom in n block of dorm 4, toilet stall door was hanging only on screw. Pulled door for security reasons. Door fell on foot swollen.
## 21950 EE checking cages on weekend, pulled rack out to view cages, twisted shoulder.
## 21951 EE checking colvard bldg, pushed open door, door swung back and struck rt elbow. Contusion rt elbow.
## 21952 EE checking commercial stapler for staple supply prior to using. EE picked up stapler by wrong end causing stapler to discharge.
## 21953 EE checking doors on bldg opended car door to exitvehicle and slipped on ice.
## 21954 EE checking dorm wings, and door open court being blown off dirt flew in left eye
## 21955 EE checking fire door, tried to avoid a muddy areaslipped and hurt left ankle.
## 21956 EE checking first aid kits in maintenance shop hadto move items off top of kit went back to dorm washed hands noticed burning swelling & bumps
## 21957 EE checking floor, walk in stripper slipped and fell, hurt rt arm
## 21958 EE checking for contraband. Entered room at porch area, bent over to look out window, window fell hitting her in the shoulder-blade area.
## 21959 EE checking for dust on window sill when cut his lt middle finger on unknown object on window. Laceration lt 3rd finger.
## 21960 EE checking for water leak on toilet bowl injury cut right ring finger on shattered toilet bowl
## 21961 EE checking grounds and found a tick in his naval and pulled it out
## 21962 EE checking hematoma on resident, hematoma burst with pressure & squirted blood - face & chest, blood got in EE's mouth
## 21963 EE checking in inmate to maintenance to return to work & a yellow jacket stung him on left arm.
## 21964 EE checking in patients-answered Dr. 'S call by turning to go into clinic and lt leg popped causing pain on lower calf
## 21965 EE checking in rx-came in contact with adhesive oninsert-started itching and splotches on rt/left forarms/hands.
## 21966 EE checking janitor's closet d-dorm. Reaching to turn off light, the doorstop did not hold; door slammed into his left wrist. ()
## 21967 EE checking lots to insure blocked for construciton-injury to rt shoulder, upper arm.
## 21968 EE checking on client who became combative and fighting and kicked EE on left shoulder
## 21969 EE checking on complaint in agr. Annex bldg. Saw a liguid on the floor. EE took a broom to move themixture away from pump nose & eyes burning.
## 21970 EE checking on experiment in water behind the marine lab while moving the cages & stepped on something very sharp that went thru boots into lf foot
## 21971 EE checking on paperwork that police officer had in his posseession-started up the stairs and fell injuring left wrist
## 21972 EE checking on suspicious activity by inmates. He open pill bottle and material from bottle went into his face.
## 21973 EE checking pavement of loading docks for trks andslipped on ice extending left knee.
## 21974 EE checking pipe leak in wall, opened vent, suction of air blew into his face causing debris (dust) to shoot down EE throat caused a severe throat irr
## 21975 EE checking prices of books on shelf - lifted books & twisted wrist and arm.
## 21976 EE checking property, stepped in hole and twisted l ankle
## 21977 EE checking supplies @ central receiving when they were bitten by spider. Area became sore & swollen
## 21978 EE checking temperature in the composting pile andwind blew matter into eye.
## 21979 EE checking temperature of meat, the pan started to slide off cart and he attempted to save the meat & the hot grease poured on his arm & hand
## 21980 EE checking the fire exit door, pushed the bar to open the door full face forward when she slippeand fell forward.
## 21981 EE checking trough for feed & a bird attempted to peck her hand. EE moved her hand quickly away & struck cage with her hand
## 21982 EE checking under vehicles with rolling mirror, stepped back on mirror which rolled out from underher causing her to fall. Sprain to right wrist
## 21983 EE checking west side vocation build, and perimeterfence EE walked toward gate missed step onto raisdsidewalk, foot slipped EE fell, sprain to rt ankle
## 21984 EE checking wooded area for traps & struck by a briar branch in right eye
## 21985 EE checking yard and stepped into uneven ground felt pain in lower back
## 21986 EE checking yard which was muddy from rain & fell on rt side causing injury to rt arm & hand
## 21987 EE chest was against the edge of a buggy-EE leanedover to reposition wet fabric inside the buggy andfelt pain in lower chest area
## 21988 EE child support clk & data entry for majority of workweek. Both jobs req repetitive movement w/hand& wrists. Carpal tunnel symptoms both hands/elbows
## 21989 EE citing re-occurrence to a 1/4/99 first aid claim-while lifting client rt leg turned and twisted right knee- same pain as 1/4/99
## 21990 EE claimed as he was walking back to segregation he twisted his left ankle on the floor mat. Swelling to left ankle
## 21991 EE claimed she was infected by lice
## 21992 EE claimed strained pain in left elbow from repetitive motion in daily work and heavy lifting
## 21993 EE claimed to have stepped off of curbing in frontof post #1, and pulled or sprained a muscle in lower left back.
## 21994 EE claimed to pull arm muscle lifting saddles or campers onto horses
## 21995 EE claiming asbestosis from exposure to asbestos
## 21996 EE claiming treatment for job related stress pl-atty: pam destefano
## 21997 EE claiming work related carpal tunnel in both hands as a result of repetitive motion
## 21998 EE claims back pain after series of work days 10/9-10/26-carrying quickcrete bags, bending for hours, carrying heavy pack
## 21999 EE claims bilateral carpal tunnel syndrome
## 22000 EE claims bilateral pain in hand from 24 years of repetitive motion job
## 22001 EE claims bruised calf and pain in shoulder down to lower back from continuously lifting resident from wheelchair
## 22002 EE claims carpal tunnel syndrome for computer use
## 22003 EE claims carpal tunnel syndrome from repetitive use of keyboard
## 22004 EE claims carpal tunnel syndrome from typing
## 22005 EE claims carpal tunnel syndrome in rt hand from repetitive use of keyboard, and stapling
## 22006 EE claims carpal tunnel syndrome rt hand from use of telephone and computer
## 22007 EE claims chronic injury to rt shoulder, arm and fingers from use of computer
## 22008 EE claims conducting fence test & slipped & fell injuring right knee and back
## 22009 EE claims constant typing caused lt carpal tunnel syndrome
## 22010 EE claims development of a cyst from repetitive computer mouse and keyboard work
## 22011 EE claims dx of hyperacusis/tinnitus resulting from noise emitted from computer hard drive
## 22012 EE claims fibromyalgia aggravated by wc injury
## 22013 EE claims he and two other persons were transporting a heavy tabletop using 2 dollies. One of the dollies got caught on the door mat, causing the tabletop to slide off and land on EE left foot. ()
## 22014 EE claims he had left the shop to start work, his vehicle hit another vehicle at the intersection of gorman & sullivan streets, when the other car ran a red light. ()
## 22015 EE claims he lifted a bag of trash into the dumpster when his wrist was cut by an object inside the trash bag ()
## 22016 EE claims he planted his left leg to kick a soccer ball during training and his knee gave out. ()
## 22017 EE claims he stepped onto a ladder bracket to step onto the back walkway of the trailer. The ladder bracket broke and he fell onto edge of metal walkway ()
## 22018 EE claims he was applying salt to snow & ice areas to the back side of dh hill library, he stepped on an ice patch, and fell onto his back and slid down the ramp about 8 feet. A few hours later, he returned to finish the salting & slipped & fell again. ()
## 22019 EE claims he was attempting to administer an injection into a large uncooperative pig, the needle came out of the patient and sprayed the EE in the left eye. ()
## 22020 EE claims he was bent down to clean the bottom window ledges, when he stood up, he hit his head on top of window ledge. ()
## 22021 EE claims he was bitten on his right hand by a patient (cat), while performing an evaluation on the patient. ()
## 22022 EE claims he was carrying/dragging/lifting a 150 pound dummy across the popat field repeatedly. Lifting the dummy & placing it in a police car. Felt intense pain in the lower body (testicle) area ()
## 22023 EE claims he was cleaning a baseboard table when he hurt his right hand with the end of a metal that was around the baseboard table. ()
## 22024 EE claims he was closing the door between the yellor room and main area, and the door closed on his left middle finger ()
## 22025 EE claims he was crossing over a duct and hit his head on an electrical junction box, while checking on an hvac problem in a mechanical area. ()
## 22026 EE claims he was decending a wall ladder that leads to the catwalk. EE claims his knee hit against a pipe
## 22027 EE claims he was drilling a hole in a metal strap, the drill slipped, EE's head went down & hit a metal piece.
## 22028 EE claims he was emptying buckets in the mop room and turned and banged his head on the hose mount. ()
## 22029 EE claims he was getting out of the back of the service truck when he slipped and fell, lift gate was wet and slippery ()
## 22030 EE claims he was in process of operating a front end loader to empty a dumpster. He saw a fire coming from the exhaust. Was putting out fire when a burning glove someone left on the exhaust fell onto his right hand ()
## 22031 EE claims he was installing a track that came off a mini skid steer, that prying and pulling on track strained his back. ()
## 22032 EE claims he was installing an air supply grill and some fiberglass particles blew into his eye.
## 22033 EE claims he was jointing plexiglas on jointer, small chards of plexiglas shot out of jointer hitting corner of his eye ()
## 22034 EE claims he was just outside the segregation building front door and the holding it open ith his rt hand waiting wind pushed the door closed on hand
## 22035 EE claims he was leaning against a file cabinet and a glass framed painting fell on his head ()
## 22036 EE claims he was lifting a cabinet onto a truck bed, he turned to set the cabinet down and felt a pain in his lower left side of back
## 22037 EE claims he was lifting a vacuum pump from the floor to a dolly, the pump slipped out of his hand and caught his finger between the dolly and the pump. ()
## 22038 EE claims he was loading biohazard bags onto cart to be disposed, when he grabbed the bag, a piece of broken glass poked through the bag and cut his finger through his glove. ()
## 22039 EE claims he was on international travel to kenya and uganda and upon returning home, had cramps and pain in his calves and thighs. ()
## 22040 EE claims he was on the floor, patching a hole in the floor. When he started to get up, he felt a pop and sharp pain in the back of his left knee ()
## 22041 EE claims he was opening the dumpster door to deodorize the dumpster and ants got on his right hand, wrist and arm. It was dark and EE did not see the ants. ()
## 22042 EE claims he was organizing his work area, placing items in a beaker and lower part of his thumb was punctured by a pasteu pipette, that someone had placed in the beaker. ()
## 22043 EE claims he was participating in skill development activity, having to do with racquet sports. He tore the muscle in his calf. ()
## 22044 EE claims he was picking up holly bush clippings with a pitchfork to load into truck, pitchfork hit a brick sticking up, jarred his elbow ()
## 22045 EE claims he was pulling tree limbs out of dump truck to put them in a chipper and felt a pop in his right elbow. ()
## 22046 EE claims he was pushing a cart from the dumpster. The cart wheels hit a raised portion of brick concrete, cart suddenly stopped, causing EE to hit his right foot on corner of cart. ()
## 22047 EE claims he was reinstalling the mast on the forklift, while unhooking the chain, a piece of metal or glass stuck in his right hand thru his glove. ()
## 22048 EE claims he was scraping brick sidewalks to remove ice and the constant jabbing made his arm hurt. ()
## 22049 EE claims he was sweeping, he stopped to gather the dirt, lifted his head and hit his head on edge of a locker ()
## 22050 EE claims he was tearing down the inlets to the pasteurized tanks and bringing the parts to the cop vat, when he slipped on the steps & fell, hitting his back & buttocks on corner of the steps. ()
## 22051 EE claims he was traveling west on ligon street in company vehicle and he glanced over at his radio, and crossed method road and was hit by another vehicle. ()
## 22052 EE claims he was trying to return a patient to his cage, when the patient bit him on his right hand
## 22053 EE claims he was under a sink tightening two fittings together with channel locks and adjustable wrench. The wrench slipped off the fitting and out of his hand, his hand and finger then hit the pipe very hard. ()
## 22054 EE claims he was using a box cutter to open a box and cut his right thigh. ()
## 22055 EE claims he was using a hand saw to cut a piece of wood, the saw slipped and cut the second knuckle on left index finger. He was holding the wood with his left hand. ()
## 22056 EE claims he was using a shovel to clear entrance ways of ice and snow. The next day, he was having pain in his lower right back and leg. ()
## 22057 EE claims he was using a weedeater to cut tall grass at a fence line and something flew up and struck him on the nose ()
## 22058 EE claims he was using his pocket knife to cut open a carton of copy paper and swung the knife upward and cut his left forearm ()
## 22059 EE claims he was walking from conference table in director's office to her desk, turned corner to get behind desk, hit his knee on free standing magazine table & fell to floor in pain ()
## 22060 EE claims he was walking into a meeting, he moved over to get out of the way of a vehicle, he stepped on uneven surface, causing his foot to roll over the edge of the concrete. Lost his balance and fell onto the asphalt. ()
## 22061 EE claims he was walking out the back door at the end of his work shift, cut the tip of left thumb on the bent stainless steel on the exit door. ()
## 22062 EE claims he was working with another mechanic removing a piece of metal from a cooling tower, and he bumped his knee on piece of metal ()
## 22063 EE claims headache, chemical taste in mouth, burning eyes, weak and sluggish, and upset stomach
## 22064 EE claims her nose became sore and irritated while using spray paint and sandpaper while distressing books and documents ()
## 22065 EE claims herniated l5 disc from lifting trash bag
## 22066 EE claims hip pain from repetitive climbing
## 22067 EE claims his left foot slipped while climbing a permanent ladder, scraping his shin and he felt pain in the heel of his left foot. ()
## 22068 EE claims increased pain and numbness in rt hand
## 22069 EE claims injury from repetitive motion of data entry. Lt arm, shoulder, forearm, and wrist.
## 22070 EE claims job related stress
## 22071 EE claims knot of rt wrist from excessive typing
## 22072 EE claims latex allergy
## 22073 EE claims left sided hernia
## 22074 EE claims limited seating and leg room in golf cart caused lumbar strain
## 22075 EE claims low back pain arising out of motor vehicle accident
## 22076 EE claims mental anquish after he & another co- worker saw three ropes tied in hangman/noose knotsin a bucket in one of the buildings.
## 22077 EE claims nausea, chest pain, and lightheadedness
## 22078 EE claims neck and back strain from working in station not suitable for EE physically- appropriate equipment was lost in the flood
## 22079 EE claims neck pain from data entry
## 22080 EE claims neck pain from sitting long periods of time at steno machine
## 22081 EE claims neck, back and leg pain from working in front of computers or reading student assign. For a longer period of time
## 22082 EE claims nerve damage in both arms due to repetitive motion from typing
## 22083 EE claims nose bleeding, headaches and sore throat
## 22084 EE claims numbness and discomfort in right hand in3/2003-over time discomfort increased-3/2006 had anerve cond. Study-diagnosed with carpal tunnel
## 22085 EE claims numbness and pain in rt hand
## 22086 EE claims numbness and tingling in left hand from use of keyboard
## 22087 EE claims occupational depression from stressors and other demeaning comments from supervisor
## 22088 EE claims over period of time while loading trash truck, he developed an hernia on lt side of groin area.
## 22089 EE claims pain and burning in wrists from typing
## 22090 EE claims pain and tingling in rt hand from repetitive keyboarding and typing
## 22091 EE claims pain down arm with tingling into hands
## 22092 EE claims pain in both arms, hands, and wrists from typing
## 22093 EE claims pain in both hands from repetitive use of keyboard and mouse
## 22094 EE claims pain in both wrists and arms from repetitive use of keyboard 3-4 hours a day
## 22095 EE claims pain in hands and arms from repetitive typing
## 22096 EE claims pain in left wrist from lifting and transferring clients
## 22097 EE claims pain in lt hand from wrist to fingers
## 22098 EE claims pain in rt and left wrist from using computer 8 hours/ day
## 22099 EE claims pain in rt arm and hand from typing at a high desk
## 22100 EE claims pain in rt hands, wrist and arm from use of computer
## 22101 EE claims pain in rt wrist and shoulder from repetitive interpreting
## 22102 EE claims pain in rt wrist from repetitive striking of steno machine
## 22103 EE claims pain in shoulder from change in set up of computer system
## 22104 EE claims pain in wrist and hands from use of keyboard and mouse over several months
## 22105 EE claims pain in wrist from lifting and pulling trays in washroom **given 10% ppd rating to right hand**
## 22106 EE claims pain in wrist from working with computers
## 22107 EE claims pain the rt arm from typing on laptop computer
## 22108 EE claims possible carpal tunnel syndrome in both hands from repetitive motion on keyboard
## 22109 EE claims progressive pain in lower back from sitting several hours a day, answering phones, opening mail and using computer
## 22110 EE claims radiographs were being taken on the patient and the patient was struggling and scratched her on her neck and chin.
## 22111 EE claims received a spider bite while weedeating the grounds at deppe hq; he didn't notice the bite until sat the 29th.
## 22112 EE claims repetitive motion from job duties reported 6/26/00
## 22113 EE claims repetitive motion injury from interpreting
## 22114 EE claims repetitive motion injury to both hands from pulling files and reviewing charts- turning pages
## 22115 EE claims repetitive motion with left hand and wrist
## 22116 EE claims repetitiver motion in rt elbow from painting
## 22117 EE claims respiratory problems from smelling stagnant water
## 22118 EE claims rt carpal tunnell from job duties-chart maintenance, filing, pulling charts, and typing
## 22119 EE claims rt wrist and hand pain from repetitive use of computer
## 22120 EE claims she becomes hoarse when she remains in the office for a period of time
## 22121 EE claims she fell on uneven ground/pavement at the entrance of the dock before the gate. ()
## 22122 EE claims she grabbed the coffee filler to empty coffee grounds, did not realize container was full of water. Container fell into bucket and hot water splashed on EE's hand. ()
## 22123 EE claims she injured her right hand while carrying a water polo goal. Her hand slipped and hit the pole. ()
## 22124 EE claims she slipped on ice and fell to the ground. ()
## 22125 EE claims she slipped on the ice after exiting her car. States her left knee twisted and then popped. ()
## 22126 EE claims she slipped on wet floor, fell and hit her head on a garbage can, scraped her shoulder & forearm and left little finger on floor rack ()
## 22127 EE claims she was attempting to take the horse's temperature, the horse moved away. The EE backed away from the horse, then the horse turned and kicked the EE right elbow before she could get out of the stall. ()
## 22128 EE claims she was attempting to turn a cow around to move into a laneway toward a chute, the cow reared her head back and hit EE's hand ()
## 22129 EE claims she was bitten by a spider. No evidence of spider. Right foot.
## 22130 EE claims she was cleaning tables and a desk in the library and hit her right foot on the bottom frame of the desk. ()
## 22131 EE claims she was cleaning the deli bar and cut her finger on a sharp edge on the metal bar. It cut through her glove. ()
## 22132 EE claims she was cutting a bagel and cutting the wrong way and the knife slipped and cut her finger on her right hand
## 22133 EE claims she was cutting a croissant, using a new cutting knife, and cut the tip of her left thumb. ()
## 22134 EE claims she was cutting bagels, when she finished, she tripped over herself and accidentally pushed the knife into her finger. ()
## 22135 EE claims she was cutting plastic for drawer divisions with a box cutter, plastic is supposed to snap where scored. When it snapped, EE's finger was cut. ()
## 22136 EE claims she was cutting rolls and cut the palm of her left hand with edge of knife ()
## 22137 EE claims she was departing the motel for last day of extension conference, she tripped on uneven pavement in parking lot of the inn, fell & hit her head ()
## 22138 EE claims she was emptying bucket from dehumidifier, when weight of water shifted and she twisted her left wrist
## 22139 EE claims she was emptying recycling paper, cans, bottles, into bins. When she walked away, she stepped on wet bricks with green moss, she slipped & fell against a light pole ()
## 22140 EE claims she was going to take a patient for a walk, removed his muzzle, patient jumped up and bit her right hand that was holding the dog's leash ()
## 22141 EE claims she was grabbing a dish from next to the waffle iron and burned her right forearm ()
## 22142 EE claims she was hiking with a backpack, slipped on a trail and caught herself with her right wrist. ()
## 22143 EE claims she was holding bar handle of machine & when she turned it loose, her hand & wrist startedto hurt & swell up.
## 22144 EE claims she was intubating a cat and the cat bit her left index finger ()
## 22145 EE claims she was leaving the building from a majors fair, she slipped and fell on the stairs ()
## 22146 EE claims she was lifting a 35 lb dog with another employee, using a green pad. EE was holding corners of pad to lift dog onto a cart and felt a pop in her left wrist ()
## 22147 EE claims she was lifting and moving stacks of containers and aggravated an old back injury ()
## 22148 EE claims she was opening the top of a cat carrier and the cat lunged and bit EE on her right wrist. ()
## 22149 EE claims she was participating in firearms training when the slide on her pistol cut her wrist ()
## 22150 EE claims she was pulling items off the grill and burned her right hand/fingers on the grill press ()
## 22151 EE claims she was reaching for a pan on an upper shelf. Pan had scalding water in it. The pan fell and water ran down EE arm and back ()
## 22152 EE claims she was removing a muzzle from a dog after completing its treatments and the dog bit her left hand.
## 22153 EE claims she was removing the vacuum from the pool and wrapping vacuum cord, the battery box from the vacuum fell off its rack and landed on her toe ()
## 22154 EE claims she was restraining a horse for tubing and the horse rammed against the stocks, smashing her hand between the stocks bar and the horse. ()
## 22155 EE claims she was running experiments and reactions, got a chemical burn on her right hand due to exposure to a chemical ()
## 22156 EE claims she was running the cash register, checking out customers and hit her left hand on the register stand ()
## 22157 EE claims she was sitting in the control booth shewas leaning over & the wheel on chair did not roll& she fell on her rt elbow
## 22158 EE claims she was slicing open a croissant when the knife cut her left ring finger. She then rinsed t he blood off her finger, became lightheaded, and fainted. ()
## 22159 EE claims she was unloading hay bales off a truck. The bales are wrapped with wire. A piece of wire punctured EE left leg. ()
## 22160 EE claims she was unloading materials out of the van to a cart on the landing, she moved to readjust materials on bottom of cart, slipped and fell off the step, weight landed on left hand ()
## 22161 EE claims she was walking back to her office from her supervisor's office. EE was getting ready to sit down in her chair and felt a sting on her stomach area. ()
## 22162 EE claims she was walking on the sidewalk at daniel hall and slipped on the ice and fell onto her knees
## 22163 EE claims she was walking out of room 2118r and slipped and fell, due to residue from a deodorizer that had been sprayed in the room. ()
## 22164 EE claims she was walking up stairs and slipped on wet leaves and fell ()
## 22165 EE claims she was weighing reagent, she inhaled negligible amount of the chemical which was a respiratory irritant. Has minimal throat irritation. ()
## 22166 EE claims she was working at the microscope, she attempted to sit on a stool. The stool rolled and EE fell, hitting her chin and head on a table, she then fell to the floor. ()
## 22167 EE claims skin infection from continuous contact with poisonous plant while conducting vegetation census in puerto rico
## 22168 EE claims strain in rt shoulder from repetitive motion
## 22169 EE claims strain to both hands and wrists from repetitive keyboarding
## 22170 EE claims strained rt shoulder from working at computer
## 22171 EE claims stress as result of harrassment from co-workers and sexual harrassment by center administrator.
## 22172 EE claims stress due to increased number of injuries she had had and the high level of stress in cluster 7-9
## 22173 EE claims tenderness and swelling in rt arm while doing normal work duties
## 22174 EE claims tendonitis in both hands from using laptop computer in an awkward position
## 22175 EE claims tendonitis in rt wrist from repetitive motion
## 22176 EE claims tendonitis of left hand from repetitive keyboarding
## 22177 EE claims that during a use of force that his right thumb was jammed against the door edge.
## 22178 EE claims that he entered the admin. Builidng and wiped his feet on floor mat. Stepped off mat & hisfoot slipped from beneath him causing him to fall
## 22179 EE claims that he stepped on a piece of ice with rt foot fell on his hip and hands and hit back of his head
## 22180 EE claims that he was escorting an inmate in e block when he slipped and fell on the wet freshly mopped floor.
## 22181 EE claims that head hit the corner of a cabinet in the ladies room, EE hit head when rising from a chair ()
## 22182 EE claims that his arms were sore, tingling with numbness from ongoing and repetitive motion from spreading mulch and the vibrations from using equipment such as blowers, leaf vacuums & mowers. ()
## 22183 EE claims that inmate charged at him and he placedinmate on the ground and struck his right shoulderand neck on the ground when he fell.
## 22184 EE claims that over a 2 month period of time rt hand, arm shoulder has become sore and tender
## 22185 EE claims that she stepped out of switchboard going to parking lot and twisted her left ankle & also injured right palm of her hand.
## 22186 EE claims that she was leaving the staff dining area and took a short cut across a rope barrier and her foot struck the rope causing her to fall
## 22187 EE claims that she was looking in delta for offcier's cabinet for some gloves when she hit her head on the officer's desk as she was bending down
## 22188 EE claims that she was preparing food and reached for a knife and cut her finger ()
## 22189 EE claims that she was walking up stairway and slipped & hit her right knee and left elbow
## 22190 EE claims that while using a pickaxe to take turfgrass samples, the iron part loosened from the wood handle and fell onto his head ()
## 22191 EE claims that while watering plants from the water truck, he was stung on his left thumb by an insect. ()
## 22192 EE claims the odor of mildew/molding from water leaks at her workstation is causing sinus and other body reactions.
## 22193 EE claims to have hit her right arm below the elbow on the door
## 22194 EE claims weakness and soreness in rt wrist from increase computer work
## 22195 EE claims while stepping into the security van, she became dizzy and fell backwards, striking the ground
## 22196 EE claims while untightening steel bars from ceiling as part of a research project, a steel nut fell off and hit his mouth. ()
## 22197 EE claims wrist and arm pain from repetitive motion
## 22198 EE clalims that inmate curtis alston charges at him & he placed inmate alston on the ground & struckhis rt shoulder & neck on the ground when he fell.
## 22199 EE clamped on paper cutter mashed and cut finger.
## 22200 EE cleaing using a bleach solution which splashed and went into rt eye.
## 22201 EE cleaing windowns stooping down and got up to fast which caused a cramp in upper leg and EE fell.
## 22202 EE cleaining elevator tracks in a squatting posi- tion stood up lost her balance hitting her head against mop wringer. Bent glasses-injured eye.
## 22203 EE clean ball with clorox wipe, begin ball toss activity, eyes started burning & itching.
## 22204 EE cleaned floor with exercise equipment on it, thebars were low, EE hit head on her right side.
## 22205 EE cleaning & vaccuming offices & injured back.
## 22206 EE cleaning a pan, when cleaner popped entering left eye. Eye irritation
## 22207 EE cleaning animal bedding cages, scraping wast material out of tercoplast cages, got bedding in eyepopped under safety glasses
## 22208 EE cleaning animal room, took floor drain cover off, blower unit accidentally fell into drain, tipped over and hit EE on back
## 22209 EE cleaning barrell of shotgun, cleaning rod slippdand EE hand hit end of barrell, cut to mid finger
## 22210 EE cleaning basement with oil and floor finish remover and wipe forehead with arm left eye burned
## 22211 EE cleaning bathroom sink with sentinel disfectantsolution and it splashed into rt eye; burn
## 22212 EE cleaning bathroom-got upon a chair to wipe off shelf-getting down and feet slipped causing EE to fall landind on buttock and head
## 22213 EE cleaning beverage area attempted to remove 5-gal. Soda mix box he lifted & twisted at same time causing a strain in groin area.
## 22214 EE cleaning breakroom-bent down to pick up can andwhen standing up hit head on wooden cabinet.
## 22215 EE cleaning broken desk chair arm wrist which struck rt wrist.
## 22216 EE cleaning bullentin board, EE caught ring fingeron exposed head of push pin, cuttin right finger
## 22217 EE cleaning calcuim buildup from drain outside bldhand slipped causing rt thumb to jam into concretecontusion rt thumb (under fingernail)
## 22218 EE cleaning campsite-stepped back and tripped overa lrg limb falling to the ground very hard.
## 22219 EE cleaning candy off tower floor when he slipped on wet floor and hit rt elbow on steel frame of tower chair. Bruised rt elbow
## 22220 EE cleaning cart when hand hit spray trigger and spayed her right eye
## 22221 EE cleaning cart, when she hit the trigger on a bottle full of chemical.. Sprayed in right eye
## 22222 EE cleaning cat room-rash broke out on legs
## 22223 EE cleaning classroom began itching & noticed red patches on r arm
## 22224 EE cleaning classroom reached to pick up some paper and slipped on liquid on the floor hit rt side of arm
## 22225 EE cleaning cold block prior to use, broken capillary came out and punctured gloves on rt hand
## 22226 EE cleaning commissary and moving boxes around whncase of beans fell on his hand sore right hand
## 22227 EE cleaning control desk, jammed her lt pinky finger in the desk. Injured lt pinky finger.
## 22228 EE cleaning control room, reached over to pick up 5-gallon bucket full of water, hurt something in back. Pain in lower back
## 22229 EE cleaning cooling tower metal edge of the pipe insulation sleeving material and cut his right middle finger
## 22230 EE cleaning corsers and edges w/stripper soap- while getting on elevator slipped and fell on rt knee, lower back and rt side.
## 22231 EE cleaning counter in kitchen, cut rt index finger on electrical outlet
## 22232 EE cleaning debri in pasture. Using chain saw cut up light line pole which had fallen. Pulled rope catch in rt shoulder. Pulled muscle rt shoulder
## 22233 EE cleaning debris from north slope - EE stepped in hole - causing his weight to shift to rt leg sprained rt knee - slight swelling
## 22234 EE cleaning deck with cold water and prolonged exposure to damp and cold caused arthritis in rt hip
## 22235 EE cleaning dorm area that inmate had gone to clean fan as officer turned back around to fan blew dust on him - had asthma attack.
## 22236 EE cleaning facility in wood working area and got something in eye.
## 22237 EE cleaning floor on post #6 when mop bucket from floor to porch - lifted mop bucket releasing mop bucket felt tingle & pain in shoulder lt.
## 22238 EE cleaning floor with wax stripper and slipped and fell fracture tailbone.
## 22239 EE cleaning floors in gameroom on her knees
## 22240 EE cleaning hurricane debris, stepped in hole, twisted left knee.
## 22241 EE cleaning in mop closet-shaking out dust rag when particules went into rt eye.
## 22242 EE cleaning isolation for pigs-turned around and was stuck in rt eye by tree limb.
## 22243 EE cleaning out bens and something flew into left eye.
## 22244 EE cleaning out bin in bottom of refrigerator, while wiping top of bin, something popped in her right shoulder & neck
## 22245 EE cleaning out cage and cat bit EE on rt forearm.
## 22246 EE cleaning out closets and stepped wrong and turned ankle.
## 22247 EE cleaning out dead brush, shrubbery from banks, weed eating, placing dead brush on trunck removal came into contact with poison ivy. Arms, neck, face
## 22248 EE cleaning out files in office. Stack of books from bookcase fell and mashed or jammed left thumbwhen tried to catch them
## 22249 EE cleaning out floor drain and stood up in a small space and felt pain in lower back.
## 22250 EE cleaning out the trap of vaccum cleaner top went down on left index finger causing a cut
## 22251 EE cleaning out walk-in closet and ran into overhead shaft.
## 22252 EE cleaning out water tank upon leaving tank slipped and hit EE in chest area
## 22253 EE cleaning parts near filler machine-during cleaning exhaust started spraying out cleaning solution-some got in right eye
## 22254 EE cleaning patient teeth instrument slipped, EE received puncture to tip of right ring finger
## 22255 EE cleaning pig stall and pulling pig back into stall when he felt a pull in rt shoulder
## 22256 EE cleaning rabbit cages & EE slipped on cleaning solution and hit back against rabbit rack and felldown, straining back
## 22257 EE cleaning rails bent down to dust bottom of railand struck rt knee against metal guard rail.
## 22258 EE cleaning rat cages and rat scratched left forearm resultin in hives, itching and swelling.
## 22259 EE cleaning room after patient seen-moved bottle of tca-cap not secure and splashed on both arms and rt side of chest.
## 22260 EE cleaning room alleges allergy to paint thiner in use caused couching, runny nose and watery eyes.
## 22261 EE cleaning serving trays, he went to broom closetand pullled 2 brooms off wall to get towel pulled down second one handle chipped off splinter lt eye
## 22262 EE cleaning sewer line, pulled back with push/ pull motion.
## 22263 EE cleaning shower with chem-cole and slipped on wet floor and fell twisting left knee
## 22264 EE cleaning showers in martin village and picked up scabies on both hands and arms.
## 22265 EE cleaning showers in women's locker room slippedand fell on left knee.
## 22266 EE cleaning sink and chemical sprayed back into rt eye.
## 22267 EE cleaning snow from park trucks & stepped on ice& slipped & fell onto back
## 22268 EE cleaning soot and debris from building, noticeddiscomfort in eyes.
## 22269 EE cleaning stairs in one of apartments EE slippedand fell on the two toes on right foot bruise to right toes
## 22270 EE cleaning sterlizing patient room, right hand 3rd finger
## 22271 EE cleaning storage are when hydralic jack fell onrt foot
## 22272 EE cleaning storage closet of old files that were authorized by aoc to be destroyed. Box of citationbook on top shelf fell landed on EE lt shoulder.
## 22273 EE cleaning the storage room when a student pulledout a pipe and threw it across the room hitting eeon rt foot
## 22274 EE cleaning the stove top-turned it off another eeturned stove back on-EE burned palm of hand.
## 22275 EE cleaning trash & cut herself on metal lid between first 2 fingers on rt hand.
## 22276 EE cleaning trash out of dumpster box - rake struck EE finger- injured rt hand four finger
## 22277 EE cleaning up chemicals in freezer-crack in lid cause hci to remiage out of bottle into face.
## 22278 EE cleaning up instruments after cleaning inmates teeth, sharp instrument stuck thru skin on rt hand
## 22279 EE cleaning up juice spill in back of trk and slipped and fell hitting rt side rt arm, leg and back.
## 22280 EE cleaning up old chemicals in freezer-crack in lid and chemicals started coming out into face.
## 22281 EE cleaning up spill off table, client spit at EE cleint was ask to leave kitchen, client slapped eeon rt side of face and stomach
## 22282 EE cleaning up work area, dropped a battery on hisright big toe
## 22283 EE cleaning vent when the vent swung open. EE climbed up on chair, then table to close vent. Then losther balance as she was climbing down. Gash forearm
## 22284 EE cleaning w/oven cleaner. Fan on and blowing toward kettle and blew cleaner in face. Into rt eye
## 22285 EE cleaning weapon, spray solution shot up in eye when it was applied weapon. Injured rt eye - extremely red.
## 22286 EE cleaning window in tower & she turned round to walk away, tripped on metal chair leg & fell hit her head. Knot on scalp/tenderness rib cage
## 22287 EE cleaning work area, cut her right hand on broken glass.
## 22288 EE cleaningup wheelchair shop-pushed saws to cleanbehind and felt pulling sensation in back. Back strain
## 22289 EE clearing basketball ct and someone hit EE with ball, struck EE in rt eye
## 22290 EE clearing brush and leaves on 8/21, then EE had severe rash and irritation from groin to chest. ()
## 22291 EE clearing creek at the playing fields and was bitten by fire ants on rt arm.
## 22292 EE clearing ditch bank of vegetation and slipped ddown bank side and fell on left elbow, crushed nerve, chipped bone in left elbow
## 22293 EE clearing jammed bowling pin when arm got caughtin the sweeper.
## 22294 EE clearing old tires, trash and debris behind pisgah house, hypodermic needle was in ground with debris, needle pierce work glove and needle stuck in right palm ()
## 22295 EE clearing out belongings from arson fire with shovel and pulled muscle in left forearm.
## 22296 EE clearing the north yard of inmates. Reported temperature extremes. ()
## 22297 EE clearing trees from fire lines in swamp. EE crossing a five line & struck his lt leg on a treesnag
## 22298 EE clearing vegetation that was infested with poison ivy-arms/hands/legs
## 22299 EE cliams lifting caused flare up and bleed.
## 22300 EE climbed a 10 ft ladder to investigate a safety problem & came down. Felt pain in lower back next morning. Referred to glenda.
## 22301 EE climbed a container to release a rope when he fell, hitting his chest on the container & back & ead on ground, causing a chest contusion.
## 22302 EE climbed fence to access monitoring well site, tripped on chain link fence, immediately felt pain in rt leg calf muscle ()
## 22303 EE climbed in chair to reach bottle of omega, when comming down, stepped on utility cart with rollers and lost balance, fell, right elbow and hand.
## 22304 EE climbed into truck bed to get a better view off accident scene. He jumped from truck bed to roadway. Pain in head
## 22305 EE climbed ladder to replace bolts in lid. Left leg of ladder gave away causing ladder to fall to left. EE grabbed a pipe, hung there and slid down
## 22306 EE climbed on top of a pallet of boxes to get another box off the top of the pallet. The top boxfell and EE lost balance as he was trying to catch
## 22307 EE climbed on top of desk to remove notebooks fromshelves above desks.
## 22308 EE climbed on tractor to fill engine with radiatorfluid, while stepping down EE injured back.
## 22309 EE climbed on trailer to re-secure exhibit when he slipped and twisted knee
## 22310 EE climbed onto truck to get screwdriver-stepping over tailgate when foot slipped and fell.
## 22311 EE climbed step stool to retrieve a light weight box and repeated process to replace the box on the shelf, replaced stool
## 22312 EE climbed tower to work on a high power radio antenna which he thought had been disconnected... Which was not.. Possible radiation
## 22313 EE climbing a fixed ladder taking tools and refrigto the roof with our mechanic his hand slipped offladder. Bruised lower rt leg and buttocks.
## 22314 EE climbing down into a ditch to investigate an accident when he began to fall-att to catch self w/left hand before falling to ground.
## 22315 EE climbing down ladder, bumbed hand on side while grasping metal fragment broke off unable to removesome of metal
## 22316 EE climbing interior staircase; tripped between ground and first floor and hit the bony area below right knee on the step's edge ()
## 22317 EE climbing into attic off of scaffolding and his knee twisted.
## 22318 EE climbing ladder EE hit head on unistrut and jammed neck. Strained neck.
## 22319 EE climbing ladder to conduct inspection a few hrs. Later complaints of ankle pain. ()
## 22320 EE climbing ladder-while standing on ladder and turning felt sharp pain in left knee.
## 22321 EE climbing on back of truck when foot slipped. Eehit neck on side of truck
## 22322 EE climbing on ladder and foot slipped and EE lost balance and fell with ladder in groin area
## 22323 EE climbing on pipe & stretched out leg too far & the knee bent inward.
## 22324 EE climbing over hugh loader trying to get it started injury back strain
## 22325 EE climbing stairs in dorm 2c right foot caught step and he fell forward jamming his pinky finger on l-hand ()
## 22326 EE climbing stairs of control room bumped knees onmetal steps & sat down on bar stool & lt knee popped
## 22327 EE climbing stairs up to tower 2 EE tripped and bumped right leg in shin area. Bruise to right leg
## 22328 EE climbing steps to booth#2 foot slipped off stepee held to railing with right arm felt pain and heard noise in rt forearm, strain to right arm
## 22329 EE climbing steps to next floor, shoe edge caught step, EE fell toward stairs, striking rt wrist andhand on stair tread edge.
## 22330 EE climbing steps to the rear entrance when foot caught on narrow step overhand. Twisted knee & felagainst wall a couple steps down from rear door
## 22331 EE climbing the low wall middle finger of rt hand was jammed.
## 22332 EE climbing tower ladder underneath the tower, hand slipped off the ladder when EE went to catch himself and felt pull in left arm
## 22333 EE climbing tree to remove a broken branch-branch broke and struck EE above rt eye.
## 22334 EE climbing up onto roof, foot slipped off edge injury cut right leg
## 22335 EE climbing up stairs, tripped on last step and fell on concrete landing. Injured right hand.
## 22336 EE climed ladder to step over to get on ash truck tanker. Foot slipped & EE fell causing fx to lt forearm.
## 22337 EE clinbed under desk to hook up computer speakers and something went into her eye
## 22338 EE closed a door on his fingers; injured his thumb & pointer on right hand
## 22339 EE closed a metal door on his rt finger
## 22340 EE closed bathroom door on left finger
## 22341 EE closed bathroom door on left index finger.
## 22342 EE closed bathroom door on left ring finger
## 22343 EE closed car door and finger was caught in door.
## 22344 EE closed car door on left index finger
## 22345 EE closed car door on right thumb.
## 22346 EE closed car door on the tip of his finger
## 22347 EE closed cooler door on left middle finger
## 22348 EE closed cooler door, went around table too fast and slipped on the wet floor.
## 22349 EE closed desk drawer and a pencil went into her finger. Right third.
## 22350 EE closed desk drawer and jammed her left finger in the drawer
## 22351 EE closed desk drawer on finger, causing nail avul-sion.
## 22352 EE closed desk drawer on her 4th finger on her right hand
## 22353 EE closed door of helicopher on left finger requiring stitches
## 22354 EE closed door of patrol veh on left thumb
## 22355 EE closed door on hand injuring left index finger
## 22356 EE closed door on her finger with a ring on.
## 22357 EE closed door on her fingers, see in by urgent care rtw on same day. ()
## 22358 EE closed door on left hand
## 22359 EE closed door on leg.
## 22360 EE closed door on right middle finger
## 22361 EE closed door on right pointer finger
## 22362 EE closed door on right thumb. Contusion.
## 22363 EE closed drawer on right hand/swelling
## 22364 EE closed file cabinet drawer on left thumb
## 22365 EE closed finger in car door.
## 22366 EE closed finger in door during an emergency
## 22367 EE closed finger in door. Hematoma of rt thumb.
## 22368 EE closed fingers in cabinet drawer while trying to get something out
## 22369 EE closed her rt thumb in the file cabinet.
## 22370 EE closed his rt hand middle finger in a trap door
## 22371 EE closed left hand in milk cooler
## 22372 EE closed locker door it scraped across my hand.
## 22373 EE closed lt pinky finger in door - fracturing it
## 22374 EE closed lt thumb in student's door
## 22375 EE closed office door on left hand finger
## 22376 EE closed rt hand finger in van door
## 22377 EE closed rt hand in door
## 22378 EE closed rt little finger in door fracturing it
## 22379 EE closed safe door on finger
## 22380 EE closed the car door and it caught him on back, breaking skin enough to cause moderate bleeding for few minutes.
## 22381 EE closed the cooler door and the heel of her rt foot got caught under the door.
## 22382 EE closed the door of a bus on his lt thumb.
## 22383 EE closed the door on his fingers... Thumb and pointer fingers on right hand
## 22384 EE closed the door on his right hand injuring her ring finger
## 22385 EE closed the door to the truck on his right hand cutting his middle finger
## 22386 EE closed the drivers car door on right index finger/ finger wedged between door and door frame
## 22387 EE closed the file cabinet drawer on middle and forefingers
## 22388 EE closed thumb in van after loading clients.
## 22389 EE closed window & turned into another window thatwas extended out. He hit the window with his rt eye before he seen it.
## 22390 EE closing activity room door and mashed left middler finger
## 22391 EE closing bath house-stepped on a ladder to reachdoor-causing door to injured back.
## 22392 EE closing cell door & wedged hi finger between door & door frame
## 22393 EE closing door & mashed her finger
## 22394 EE closing door and bumped finger on door. Injured finger
## 22395 EE closing door and didn't move hand from between door and the latch. Bruised 2nd & 3rd finger rt hand.
## 22396 EE closing door on vec & caught finger between rear door handle & storage rack
## 22397 EE closing door to dorm and EE placed hand on doorcausing it to close faster mashed finger, bruis
## 22398 EE closing door to mail room when she hit door with right elbow
## 22399 EE closing door when inmate slammed door against EE right index finger
## 22400 EE closing door when right finger was caught in the door. Bruised right ring finger.
## 22401 EE closing door when she caught her finger int thedoor
## 22402 EE closing food passage door to single cell when she caught her finger in door. Bruised second finger on lt hand.
## 22403 EE closing gate, when closing gates together it fell on her right top hand, causing bruising to this area
## 22404 EE closing johnson ward he felt some stings in theback of his head he realized there were yellow jackets, wasp.
## 22405 EE closing laundry chute when the gate struck against left forearm scratching him
## 22406 EE closing main door and accidently closed screen door on thumb
## 22407 EE closing stall door and caught hand in door fracturing middle finger.
## 22408 EE closing the isolator inside port injury twisted pinky finger
## 22409 EE closing the sally port gates, gate came around and struck her on back of her lt foot & became hung under gate.
## 22410 EE closing tray door to unit 1 and caught finger in it cut to rt pointer
## 22411 EE closing van door, and the door came back at herpushing right thumb back.
## 22412 EE closing window and trash from window screen blw into rt eye
## 22413 EE collapse during line up by falling to floor scratching forehead and then noticed he had a cut on top rt side of eye.
## 22414 EE collapsed after completing assessment swim for in-service training
## 22415 EE collasped in the dining hall which supervising lunch
## 22416 EE collecting algae for experiments, was snorkeling and cut knee on oyster bed
## 22417 EE collecting canteen orders, when inmate spit grapefruit juice in her face, hair, and clothes
## 22418 EE collecting laundry basket to do laundry and stood up and hit head on shelf.
## 22419 EE collecting parking meter vault boxes. Placed boxes on bumper of truck. One fell EE bent to pickit up. When lifting vault to truck felt sharp pain
## 22420 EE collecting samples dropped a bag-bent over to retreive bag felt pain in lower back
## 22421 EE collecting supplies to draw blood put hand in container to get needle cap came off needle & stuck lt 3rd finger- clean needle
## 22422 EE collecting water samples at stream, made contact with poison ivy plants
## 22423 EE collided into side of other vehicle no injuriessubstained
## 22424 EE collided with another vehicle turning in front of him(injury to right hand and neck from air bag) see log notes
## 22425 EE collided with another vehicle while he was assisting stranded motorist. Soreness and scrapes on knees
## 22426 EE collided with another vehicle, when vehicle attempted to make a left turn in EE path. Injured left arm and wrist.
## 22427 EE comes in contact w/claved material and face starts to tingle and burning sensation
## 22428 EE coming back from break and passed out in hallway.
## 22429 EE coming back from lunch and stepped off sidewalkonto cement into a split in concrete.
## 22430 EE coming back from lunch-walking down walkway andstepped in hole hidden by grass
## 22431 EE coming back from restroom tripped on curb outside booth breaking nose, bruise lip, hip, knee & damaged glasses
## 22432 EE coming back inside-closed door-resident came down hall looked out window then tried to get out EE tried to stop him and he pushed EE against door
## 22433 EE coming back to work from lunch at about 1410 eefell in bell tower parking lot and broke 2 bones above wrist in left arm
## 22434 EE coming down from ladder and struck left elbow on damper linkage.
## 22435 EE coming down hall when fire alarm went off-floors were being buffed and EE stepped on a moist spotand fell on left knee.
## 22436 EE coming down hallway stepped on slick spot on floor. Tried catch myself before I feel and hit rt index finger on doorway.
## 22437 EE coming down ladder after putting up a box and made a mis-step steppin to ground. Middle & both side of back into buttocks area - pain
## 22438 EE coming down ladder and missed bottom step straining left knee
## 22439 EE coming down ladder and slipped causing left foot to twist.
## 22440 EE coming down ladder-missed the bottome step and twisted left knee.
## 22441 EE coming down off ladder-missed one step and fellbackwards into the floor and wall injuring back
## 22442 EE coming down off step ladder-missed last step onladder to floor rt knee gave away and twisted.
## 22443 EE coming down set of steps when left foot went out from under him and e fell on his right knee.
## 22444 EE coming down stairs and lost balance falling on left knee
## 22445 EE coming down stairs and slipped on wet floor.
## 22446 EE coming down stairs and stepped off edge of stair and landed sideways on left foot
## 22447 EE coming down stairs from setting up headsets forspot operators and slipped and fell on buttocks
## 22448 EE coming down stairs he stumbled at bottom of stairs and when his foot came incontact w/floor toes hit causing sharp pain. Lt foot and toes
## 22449 EE coming down stairs in cell block on fourth flr EE tripped on next to last step and fell to floor with all weight on rt knee
## 22450 EE coming down stairs on fourth or fifth step whenhe told davenport ill be back. EE slid on something EE thinks food and fell into officer rt knee.
## 22451 EE coming down stairs slipped on metal edging of stairs legs folded bending at knees causing body to bounce down approx 4 stairs
## 22452 EE coming down stairs, foot went out from under eefell back bruise to back
## 22453 EE coming down stairs, rt foot slipped on carpet. EE stumbled several steps before falling on 3rd step & hitting head against rail
## 22454 EE coming down steps & twisted left knee
## 22455 EE coming down steps and fell.
## 22456 EE coming down steps and lost balance and fell into entrance foyer.
## 22457 EE coming down steps and missed two steps falling on knees
## 22458 EE coming down steps and slipped and fell on left elbow, hand, rt shin, foot, hip
## 22459 EE coming down steps and slipped, attempted to catch self and stepped wrong felt a pain in rt hip
## 22460 EE coming down steps mopping and l/balance sprain left ankle.
## 22461 EE coming down steps of control tower, when he slipped and fell striking his back on the rail.
## 22462 EE coming down steps slipped and twisted right foot
## 22463 EE coming down steps to house and missed last step falling and twisting rt ankle
## 22464 EE coming down steps, before she reached the bottom she slipped to right and missed last step falling and twisting her ankle
## 22465 EE coming down steps-loose construciton tape came loose causing EE to fall hitting knee and head.
## 22466 EE coming down stree, vehicle ran the stop sign and pulled into my vehicle off bluford st.
## 22467 EE coming down the stairs and her foot slipped from underneath causing her to fall down each step
## 22468 EE coming down tower steps, EE slipped on wet stepcausing her to fall down one section of stairs on her lt side of body. Injured lt side arm, leg
## 22469 EE coming from 4th to 5th floor. Elevator not even with floor. EE's shoe caught and she fell on floor. No inj specified
## 22470 EE coming from across the hall other pt coming dwnhall hit EE and EE fell hit head on wall
## 22471 EE coming from back area and missed a step fell down on rt knee, left arm and shoulder
## 22472 EE coming from d-dorm, noticed newspaper that Miss-Ed the trash can. Bent down to pick it up too fastlost balance, catching self on bars
## 22473 EE coming from ladder and slipped and fell injuring left hip, knee, ankle and ribs.
## 22474 EE coming from meeting towards bldg on sidewalk water on sidewalk-EE slipped & fell injuring rightankle & knee
## 22475 EE coming in back door of office facility, another EE going out which resulted in door hitting EE fotand tearing off toenail,
## 22476 EE coming in door and client stepped on left foot
## 22477 EE coming in door and slammed door on finger.
## 22478 EE coming in from outside, it was raining. She came through the door when she slipped and her feet came out from under her and fell
## 22479 EE coming in to work-approaching electric door- door opened and caught EE's big toe on rt foot.
## 22480 EE coming into bldg and missed a step and fell on rt knee.
## 22481 EE coming into bldg and shoes were wet slipped andfell on floor injuring left/rt knee
## 22482 EE coming into bldg slipped and fell where tile and carpet meet spraining ankle.
## 22483 EE coming into bldg-slipped on icy covered steps lost footing and broke fall with rt hand.
## 22484 EE coming into building slipped and fell forward oonto floor, abrasion rt fore arm
## 22485 EE coming into building using basement entrance on4th st and fell down the steps to entrance. Left elbow and back.
## 22486 EE coming into entrance and fell on buttock and lower back.
## 22487 EE coming into work an a bee stung EE on left arm
## 22488 EE coming into work on day it was snowing, opened the door, stepped on linoleum floor and feet went out from under her, fell flat on back
## 22489 EE coming into work slipped and fell on acorns on sidewalk causing mult injuries
## 22490 EE coming into work slipped and fell on icy pavement landing on left hip.
## 22491 EE coming into work walking on sidewalk, tripped on uneven brick, and fell on knees & elbows and hand.
## 22492 EE coming into work, tripped over curb & fell hitting right side of face. ()
## 22493 EE coming on duty through second gate, closed before he cleared gate catching rt hand. Painful rt hand with some edema.
## 22494 EE coming out of back door of gym and stepped wrong causing foot to turn under causing EE to fall
## 22495 EE coming out of building---student ask a question---door closed on EE left hand.
## 22496 EE coming out of closet carrying coffee pot, slippdon water on floor fell cutting rt hand on broken glass, hurt left hip
## 22497 EE coming out of medicare pt pushed EE back in rm closed door, pulled EE, EE broke nail on left index finger
## 22498 EE coming out of office foot slipped on slick spoton floor and fell on her left side.
## 22499 EE coming out of office tripped/fell over box sitting at door spraining left ankle
## 22500 EE coming out of restroom and slipped and fell injuring rt knee, hand, and back.
## 22501 EE coming out of staff dining hall, foot slipped out and fell on right hip. No water on floor seemto be just waxed. Bruise to right hip and elbow
## 22502 EE coming out of surgery room with machine-slippedin oil in floor & fell back onto buttocks, back & neck
## 22503 EE coming out of the back door of the manor when tripped & fell left wrist sore, face & right knee scrapped
## 22504 EE coming out of the bathroom with pt, pt fell and EE went down with pt
## 22505 EE coming out shower both feet slipped from under him, causing him to fall backwards hitting his head on barrier.
## 22506 EE coming through avery bldg carring food and drinks for dinner, slipped and fell on wet floor injuring lower back and hip
## 22507 EE coming through door, as jailer on other side. EE blocked door with right hand, struck hand with door, fingers would not move. Applied ice
## 22508 EE coming through swinging doors carrying computerin box-door closed on EE's arm.
## 22509 EE coming throught through gate to report to work gate began to close on rt knee
## 22510 EE coming to aid co-worker being attacked by inmatstrained neck/rt shoulder/rt hand/fingers
## 22511 EE coming to aid of another correc. Officer whom was being assaulted. EE states he was taking inmatdown, glasses knocked off & bent, watch broken.
## 22512 EE coming to aid of other EE on arrest, EE stepped in hole and fell down embankment abrasion to rt knee and hip
## 22513 EE coming to work and fell on uneven brick at entrance of building
## 22514 EE coming to work crossed street from parking deckwent up 1st set of stairs/fell after 1st or 2nd step on 2nd flight of stairson mall across frmbldg
## 22515 EE coming to work, walking through parking lot tripped over iron rod in 6
## 22516 EE comint into work up steps a wrong step made and EE tripped but caught self before falling pulled back
## 22517 EE complain of pains in hands, after mass mailing pain got worse.
## 22518 EE complained of a very strong paint and chemical smell coming through the ventilation system and in the ambient air in sections of the building. EE complained of flu like symptoms, scratchy throat, chills and body aches. EE thinks illness is from fume
## 22519 EE complained of chair moving back uncomfortably. EE also later complained of right shoulder hurting
## 22520 EE complained of chest pain after lifting patient.
## 22521 EE complained of chest pains during baton training
## 22522 EE complained of discomfort in jaw and arms. Showed symptoms of possible heart attack.
## 22523 EE complained of dizziness, hyperventalation, weaknesss & chest pains
## 22524 EE complained of left wrist hurting for weeks while performing job duties & has worn wrist bracethis morning pain was unbearable
## 22525 EE complained of nausea and headache from paint fumes-felt faint. Walked to door and fainted in fellow EE's arms.
## 22526 EE complained of pain and left work and went to doctor without advising supervisor-pain to shoulder neck, arms, back
## 22527 EE complained of pain in his lower abdomen a few hours after assisting another employee lift a portable generator onto the bed of truck
## 22528 EE complained of pain in right foot since walking down steps w/ a slight twisting injury. ()
## 22529 EE complained of pain in rt hand wrist EE stated that pain has been ongoing but has recently became much worse
## 22530 EE complained of pain in shoulder from painting
## 22531 EE complained of pain in wrist/ EE types information in computer
## 22532 EE complained of severe pain and pressure in her chest. Supvr advised to lay on floor until ambulance arrived.
## 22533 EE complained of soreness/stiffness of right thumb and joint popping due to repetitive scrubbing of tubs, etc. ()
## 22534 EE complained of wrist hurting... No incident noted
## 22535 EE complaining of pain (poss. Carpel tunnel) due to repeditive job duties, I. E. Data entry
## 22536 EE complaining of pain and numbiness in both handsfrom computer, calculator and typerwritter
## 22537 EE complaining of possible muscle pull in left side.
## 22538 EE complaining of tendonitis due to moving and packing boxes.
## 22539 EE complaining of tightness in chest and head and shortness of breath dut to fumes inhaled
## 22540 EE complains of ailments that usually occur while at work... Unbearable smell, and exposure to contaminated air
## 22541 EE complains of chronic lt shoulder/back pain possibly attributed to ergonomically inadequate furniture
## 22542 EE complains of discomfort in lower back after lifting resident from chair
## 22543 EE complains of headache, nausea, sore throat, congestion, blurry vision and bitter taste in mouth
## 22544 EE complains of left wrist pain and cramps from repetitive motion
## 22545 EE complains of leg pain (r&l) due to pulling linen bins
## 22546 EE complains of numbness in rt hand-carpal tunnel ***left hand cts denied***
## 22547 EE complains of pain in lower bac and rib cage area when pushing food serving trucks
## 22548 EE complains of pain in right hand. Specifically the mid finger; injury occurred over 15 yr period
## 22549 EE complains of pain in the groin area
## 22550 EE complains of tingling in leg with sharp pain inleg and lower back
## 22551 EE complaint of pain, stiffness & tingling in fingers from repetitive motion due to job activities. Injury found not to be releated to job activties
## 22552 EE completed a 13. 1 mile endurance challenge and felt nauseated and was taken to the hospital. Also injured both feet while running
## 22553 EE completed a driving course for students in a driver's education class and loading traffic cones on a trailer. EE heard a pop in right shoulder and experienced pain.
## 22554 EE completed a maint. Assignment & was walking through the parking lot & tripped on raised concrete causing him to fall.
## 22555 EE completed bathing client-client leaving bath area plcd fingers in doorway-EE lunged to prevent door closing on clients hand and fell on wet floor
## 22556 EE completed nailing forst course of roofing paperdown and started on second. Fisrt course came0 loose and EE slid off roof landing on feet.
## 22557 EE completed painting area on scaffold, when the scaffold needed to be relocated, EE climbed down &slipped, right leg landing on floor with bend knee
## 22558 EE completed rehab task and was walking down deiced w/c ramp the had to walk through some ice and fell injured hip, knee and slid up under a car.
## 22559 EE completed search, went to stand up- hit head onthe table
## 22560 EE completed the curfew check and stepped onto uneven pavement and broken cement in a hole causing her to lose her balance and fall.
## 22561 EE completed the locker inventory. She stepped back on her left leg. When she stepped back she stepped on an empty bag and hit shoulder on bar.
## 22562 EE completing fire drill, responsible for closing doors in timely fashion-tried to turn and run and fell on both knees, rt thigh and elbow
## 22563 EE completing inspection, lying on back on creeperas reached back above head towards brake chamber, heard pop in shoulder, strong pain immediately
## 22564 EE completing vertical wrist release, pressure on EE shoulder caused pain and EE felt it was injuredsprain to rt shoulder
## 22565 EE completly sterile transfer of dragwabs & bpw into bags. Light & blower turned on. EE not aware fo light. Burned rt & lt eye.
## 22566 EE concentrating on sample over boiling water, spilling solvent boilig water caused solvent to boil over - burn to face and neck.
## 22567 EE condcuting licenses checkpoint. Motor cycle approached & stopped. Accelerated pass my locationgrabbed him - noticed pain in elbow
## 22568 EE conducted a lab experiment that was not under proper ventilation & inhaled vapors irritating lungs & sinuses. Worked next scheduled shift.
## 22569 EE conducted veh. Stop on buffalo shoals rd, when EE noticed passenger was wanted, passenger fled & EE chased thru field, jumped l ditch & fell r shoul
## 22570 EE conductig search of bed area during inspection of bottom bunck in f-dorm. She stood up hit her ltshoulder on bed rail - lt shoulder pain.
## 22571 EE conductiig office interview with probatiner during interview offender coughed in close proxim-ity. Upon leaving told she had TB.
## 22572 EE conducting EE perimeter check while walking on the upper yard when foot was caught in pot hole
## 22573 EE conducting a cell search & bent down to look under the bed & table & leaned back on legs & felt left knee pop & cause a burning sensation
## 22574 EE conducting a controlled burn around woodpecker trees, wind shift caused ash and smoke to blow in left eye ()
## 22575 EE conducting a home visit to juvenile on her caseload; and was bit on the lower left leg by dog ()
## 22576 EE conducting a lab class of farm-poison ivy all over the farm-EE had alergic reaction to rash, arms, neck and chest.
## 22577 EE conducting a rock filed study out in the woods walking down steep slope, slipped on slippery log lost balance, fell to ground, felt pop in rt knee
## 22578 EE conducting a search of an inmate bunk when he bent over to lift mattress he pulled a muscle or injured his lower back. Low right back.
## 22579 EE conducting a security door check & stepped in ahole in the prayer circle yard. EE states this caused his right ankle to twist & he fell on knee.
## 22580 EE conducting a sercurity check, she turned to go back to truck, slipped mud & fell, catching herselfw/her lt hand. Injured lt knee/shoudler/wrist.
## 22581 EE conducting a site visit for a complaint investigation walking around property hand was scraped on something rt hand
## 22582 EE conducting a tour of dormitory 1, she slipped because of water puddled by bathroom door. Swelling rt knee. Surgery 10/7/98 - Dr Sutton
## 22583 EE conducting a traverge during geologic - EE was travorgins through crabapple thicket thorn embedded into lt calf. Lt calf, lt side below knee
## 22584 EE conducting a wall locker search, inmate grabbedtwisted & pulled on right arm
## 22585 EE conducting an investigation-unwrapped syringe to see if it had been used-needle stuck EE's rt thumb
## 22586 EE conducting bodies in motion exercise program when patient raised arm striking EE under chin. Pain in both sides of jaw, EE bit tongue
## 22587 EE conducting cell search, when inmate attacked eestriking him on lt. Cheek & eye.. While struggling inmate scratched EE on lt hand with ball point pen
## 22588 EE conducting cell search. Inmate became angry duestruck EE in face hitting lt eye inmate handcuffedat the time. Lt eye red
## 22589 EE conducting curfew check, attempting to turn leftinto kings way mobile home park, when the vehicle behind her failed to stop. Chest, back, neck sprain
## 22590 EE conducting cvsa inspection-walked to trailer & attempted to wipe clean vin plate when pain went down left hip/leg
## 22591 EE conducting home visit - offender's dog came up to offender and bit right ankle ()
## 22592 EE conducting home visit at residence, a black & bbrown chow dog approached EE from behind and bit EE on left buttock
## 22593 EE conducting in-service firearms training. During training, EE sprained right hand/palm cuasing extreme pain and abnormal swelling. ()
## 22594 EE conducting inside recreation upon placing inmate in cell inmate turned & headbutted EE in head
## 22595 EE conducting inspection-lost balance & fell from catwalk injuring left arm-possibly broken
## 22596 EE conducting live fire excercise. EE rose to force door open when he was burned on ears.
## 22597 EE conducting locker search, unrolling pair of socks, left index finger was punctured by tatoo gun.
## 22598 EE conducting locker search-backed up and stuck pencil in right elbow that was on locker door
## 22599 EE conducting nci testing, involving lifting, right elbow increasingly painful
## 22600 EE conducting orientation for new workers when his lt eye started to itch.
## 22601 EE conducting prescribed burning, right foot became tangled in brush causing EE to fall and pull right heel. Heel severely bruised. ()
## 22602 EE conducting rescue instructor qualification exams, pulled lt arm while trying to support the ladder.
## 22603 EE conducting residence check/the offenders dog nipped the back of his left calf then bit the side of his l leg in the calf area
## 22604 EE conducting rope challenge course, mounting incline began her foot slipped and fell. Injured lt neck and shoulder.
## 22605 EE conducting search of residence-walking back to vehicle-dog belonging to residence bit EE on lowerleft leg
## 22606 EE conducting security patrol checking inside mechanic rm tripped over object & fell to concretefloor lt shoulder sprain pain in neck
## 22607 EE conducting security rounds-began to feel dizzy when he attempted to sit-fell hitting head & rt shoulder
## 22608 EE conducting take down twisting knee
## 22609 EE conducting traffic stop when driver exited his vehicle, drew a. 45 caliber handgun and struck EE in lt thigh, upper chest, rt side, lt side
## 22610 EE conducting vehicle stop on greenfield pkwy was tackled and forced to ground, EE fell and right shoulder popped
## 22611 EE conducting yard inspection, EE foot went into ahole and EE twisted ankle, rt
## 22612 EE conductinga fire drill in inmate housing unit EE slipped on water dripping from fire when rewinding hose on reel. Lower back & lower abdomen
## 22613 EE confiscated disposable razor when she received a cut to her rt index finger
## 22614 EE confronted a hunter who challenged EE with lethal force
## 22615 EE connecting patrol boat & agency patrol boat car& made a mis-step on rt foot rolled when lost balance. Fractured small bone, lower rt knee
## 22616 EE constantly lifting residents and has been experiencing reoccuring back pain.
## 22617 EE constantly sneezed, which caused respiratory problems & headaches. EE did not take time off, continued to work, difficulty breathing.
## 22618 EE contact w/drain cleaner/chemical in ladies bathroom - allegric reaction to envir. Poison/chemicalsubstance product.
## 22619 EE contacted a tick that attached itself to EE rt leg while on reg. Patrol.... Later tick found andremoved
## 22620 EE contacted dermatitius on right wrist and left forearm.
## 22621 EE contacted poision ivy during permitting site visit. EE indicates severe inflammation of lf wrist/hand area.
## 22622 EE contacted poison ivy while in a wooded area.
## 22623 EE contacted poison ivy while in wooded area on rt arm
## 22624 EE contends rep motion during use of wordprocessorcaused condition, pain in rt wrist
## 22625 EE continually inputting admission application data in two systems on 5-1-07, started having painin wrist & hands. 8-6-07 radiating pains arm/neck
## 22626 EE continually works with computer systems using repetitive movements. Right hand/wrist/elbow.
## 22627 EE contract conjunctivitis from client
## 22628 EE contracted "fish poison" infection to middle finger of lt. Hand from handling fish without gloves too often.
## 22629 EE contracted MRSA (occupational illness) from client.
## 22630 EE contracted MRSA from client.
## 22631 EE contracted conjuctivitis by treating contaminated patient
## 22632 EE contracted conjunctivitis from a client.
## 22633 EE contracted infection in right eye through casual contact with patient providing meals.
## 22634 EE contracted poison ivy or some kind of rash while on property.
## 22635 EE contracted poison ivy while searching for birdsnests in a woody observation area
## 22636 EE contracted rash after scuba diving in the polar bear pool. Rash on legs, arms and back
## 22637 EE contracted scabies from unit- rx prescribed
## 22638 EE contracted scabies while EE was interpreting for patient
## 22639 EE contributes back pain to daily lifting
## 22640 EE cooking blueberry filling, filling boilded overburn right hand/wrist 2 degree burn
## 22641 EE cooking in deep fryer right index finger slipp-ed into hot grease
## 22642 EE copying inside warehouse tripped on a wooden pallet & fell, landing on arm. Contusion to left wrist
## 22643 EE correcting inmate for entering secured dorm ()
## 22644 EE coughing, choking, shortness of breath and sickon stomach. Several other EE felt bad but did not get sick.
## 22645 EE could not drive boat onto trailer and had to hand wench it hurting his back. ..
## 22646 EE couldn't tell whether the floor was wet and I slipped and twisted rt ankle.
## 22647 EE counseling a student---student charged out of room---EE tried to prevent student from exiting---hit left arm on door. Contusion.
## 22648 EE crashed knee into cement during appehension of suspect
## 22649 EE crashed while riding in a helicopter *************fatality********************
## 22650 EE crashed while riding in a helicopter ************fatality*************************
## 22651 EE crawled in manhole to inspect steam value, feltsomething go down his shirt bitting stomach
## 22652 EE crawled under a coworker's desk to unplug a computer when she came into contact w/ an irritantcausing itching & red bumps on her r arm.
## 22653 EE crawling across some duct and hit knee where duct joins together.
## 22654 EE crawling under building came in contact with broken glass injury cut right wrist and injury to right hand and arm
## 22655 EE crawling under chill water pipes - got up and twisted and fell to one knee-felt pain in back.
## 22656 EE crawling up into 25 ft boat parked on trailer to retrieve book, strained lower back
## 22657 EE crew was unloading a tank from a truck when one(1) of the men knocked a lid shut which fell onto EE's hand, smashing lt little & lacerated ring fgr
## 22658 EE crossed drainage ditch at night to retrieve deer shot in thicket & rt eye of EE made contact with clump of briars. Laceration outer rt eye.
## 22659 EE crossed in front of forklift-driver could not see him-struck by pallet on forklift-injured rt ankle, lt knee, hand and elbow
## 22660 EE crosses the street and truned around on side- walk and was struck in the right eye area by an unknown object about size of golf ball.
## 22661 EE crossing a ditch to examine accident vehicle when EE hyper-extended left knee
## 22662 EE crossing hallway to clock out for day and fell on rt side.
## 22663 EE crossing large tree when he pierced his right calf by branch, trying to evade futher injury he pulled leg away causing knee to twist
## 22664 EE crossing over barbed wire fence, EE became tanglin fence and was cut by fence, tetanus shot reqrd due to rust on fence, cut inside left knee
## 22665 EE crossing small creek slipped and fell on slick rock injury to back
## 22666 EE crossing through hallway in medical slipped on wet floor fell hard on fresh mopped floor causing contusion rt elbow/ankle/shoulder/knee & lt hip
## 22667 EE crushed four fingers on right hand in file cabinet while moving file cabinet
## 22668 EE cuffing inmate who had been fighting w/ inmatesduring process-EE's hand became contaminated w/ blood
## 22669 EE cut 2 fingers while opening inmate mail
## 22670 EE cut 3rd finger on right hand
## 22671 EE cut a deep wound into index finger on a rotary micro-tome blade while attempting to wipe off wet wax on the blade using a kim wipe towel. ()
## 22672 EE cut across grass toward rear door-tripped over hole & landed on knee-elbow-hip & hands
## 22673 EE cut back side of rt hand while removing old water heater from underneath counter
## 22674 EE cut finger on bathroom door. ()
## 22675 EE cut finger on can in trash can, cut rgt finger. EE finger got infected.
## 22676 EE cut finger on doorknob
## 22677 EE cut finger on edge of pan
## 22678 EE cut finger on instation band pulling pipe out.
## 22679 EE cut finger on metal filing cabinet
## 22680 EE cut finger on outlet plate when wipping it off
## 22681 EE cut finger on paper cutter
## 22682 EE cut finger on piece of glass that was on table. She didn't see it and cut herself when she picked up some bread. Cut to thumb
## 22683 EE cut finger on piece of glass when she searchingthrough a patient's belongings on admission.
## 22684 EE cut finger on sharpe edge of light switch
## 22685 EE cut finger on surgical blade while cleaning up surgery table. ()
## 22686 EE cut finger on the chain of the saw while assembling it.
## 22687 EE cut finger on wood as he was loading it
## 22688 EE cut finger when a glass that was being used foran experiment broke.
## 22689 EE cut finger when pulling trash from the trash can. ()
## 22690 EE cut finger while cutting a strap of a roll of sheet metal. EE seen at urgent care and rtw same day. ()
## 22691 EE cut finger while learning how to uncap honey frames.
## 22692 EE cut finger while pulling wires from a ballast and now the finger is infected. ()
## 22693 EE cut finger while reciprocating saw
## 22694 EE cut finger while seperating hamburger patties
## 22695 EE cut finger while trying to secure badge under seat in state car
## 22696 EE cut finger with utility knife
## 22697 EE cut finger/hand on dirty scapel after using it on patient who had a abcess on foot.
## 22698 EE cut fingers on tomato slicer as she was wiping it down after use. ()
## 22699 EE cut from box and box fell on finger. Large blood blister 3rd finger with contusions on posterior side.\\
## 22700 EE cut hand on a rusted nail that was sticking up punctured my rt hand
## 22701 EE cut hand on brass tab on evenvelope while sorting mail
## 22702 EE cut hand on exposed screw while moving a desk in a flooded building during storm cleanup
## 22703 EE cut hand on light fixture.
## 22704 EE cut hand on metal file cabinet while attemptingto remove a metal divider from shelf. Rt middle finger.
## 22705 EE cut hand on saw blade helping hold plyglass.
## 22706 EE cut hand on table saw, while cutting plyboard for project.
## 22707 EE cut hand while wrking on fam
## 22708 EE cut her finger on an envelope clasp... Right thumb
## 22709 EE cut her finger on side of a can while removing lid. Cut to left middle finger
## 22710 EE cut her finger while assisting resident recline in chair
## 22711 EE cut her finger while working on refrigerator right index finger
## 22712 EE cut her finger with scissors while cutting client's belt
## 22713 EE cut her left hand on a lid of a can
## 22714 EE cut her left index finger on a razor inside an evelope that she was going through.
## 22715 EE cut her left index finger on the lid of can of sterno.
## 22716 EE cut her left index finger with a pocket knife.. Received 8 stitches
## 22717 EE cut her left pinky finger on a chart
## 22718 EE cut her left ring finger as she was openning a box of oranges with a box cutter.
## 22719 EE cut her left thumb while closing metal storage door cabinet while teaching class
## 22720 EE cut her lt hand middle finger while turning a door knob
## 22721 EE cut her right mid finger on a blade.
## 22722 EE cut her upper left outer thigh when she was disposing a downed tree with a chainsaw.
## 22723 EE cut himself with a scapel while operating
## 22724 EE cut his finger handling sheet metal
## 22725 EE cut his finger inside a washer/dryer ()
## 22726 EE cut his finger on rotary cutter... Left hand
## 22727 EE cut his finger on testing apparatus middle finger... Rt hand
## 22728 EE cut his finger on the filing cabinet... Left middle finger
## 22729 EE cut his finger while cutting fringe from a piece of paper right little finger
## 22730 EE cut his knee with saw while pruning tree limbs ()
## 22731 EE cut his left index finger with a pair of scissors.
## 22732 EE cut his left thigh with a hedger while trimmingshrubs
## 22733 EE cut his left thumb with scissor while doing plaster work.
## 22734 EE cut his left wrist on a metal edge while putting on a roof panel
## 22735 EE cut his leg on barbed wire while chasing runaway.
## 22736 EE cut his lt forefinger while replacing a bolt with an air wrench
## 22737 EE cut his lt hand finger while waiting for the sallyport gate to open
## 22738 EE cut his lt knee on barnacle
## 22739 EE cut his lt middle finger on the tail gate lift of a truck
## 22740 EE cut his middle index finger with a knife
## 22741 EE cut his right hand on the sliding door between albemarle control and sergent's office while re- sponding to a code yellow on safekeeper yard.
## 22742 EE cut his right hand with a piece of broken glass
## 22743 EE cut his right thumb on the edge of a file cabinet
## 22744 EE cut his right thumb when the gun that he was cleaning went off.
## 22745 EE cut his right thumb while cutting fruit (watermelon) ()
## 22746 EE cut his right thumb while using a saw
## 22747 EE cut his right thumb with a knife while repairing a projection unit
## 22748 EE cut his rt hand finger while checking inmate's personal property
## 22749 EE cut his rt hand on a fence razor wire
## 22750 EE cut his rt thumb on a aluminum pipe
## 22751 EE cut his small finger on left hand while trimming piece of foam.
## 22752 EE cut is rt index finger with a razor blade
## 22753 EE cut l small finger on metal kick plate just below the handle on the door into medical, when EE pushed down on door handle her hand slipped hit plat
## 22754 EE cut left arm on broken glass while transferringwater from one beaker to another
## 22755 EE cut left arm on file cabinet while trying to catch falling client
## 22756 EE cut left foot on oyster shell.
## 22757 EE cut left hand and left knee on shattered glass while attempting to extract driver form vehicle. Lt hand & lt knee
## 22758 EE cut left hand index finger on meat slicer
## 22759 EE cut left hand on sharp edge of metal lid she was removing from crates.
## 22760 EE cut left hand trying to remove glass bottle from sampling holder.
## 22761 EE cut left hand underneath vehicle the class was working with
## 22762 EE cut left hand while cutting potatoes
## 22763 EE cut left heel on chair caster
## 22764 EE cut left index finger on meat slicer
## 22765 EE cut left index finger when a broken glass pipette jabbed into it.
## 22766 EE cut left index finger while attempting to repair 3 hole punch
## 22767 EE cut left index finger with a knife while attempting to remove spinal cord from a dog.
## 22768 EE cut left index finger with exacto knife while trimming boxes.
## 22769 EE cut left leg with box cutter. ()
## 22770 EE cut left leg with thinning knife while thinningcorn.
## 22771 EE cut left middle finger with paper cutter
## 22772 EE cut left middle finger with razor blade
## 22773 EE cut left ring finger on desk
## 22774 EE cut left ring finger on sharp edge of table frame
## 22775 EE cut left thumb during fire arm practice.
## 22776 EE cut left thumb on scalpel plate while trying to open a vial
## 22777 EE cut left thumb when cutting back lirriope with a hand prunner ()
## 22778 EE cut left thumb while cutting clips from computer cables.
## 22779 EE cut left thumb while disposing of razor
## 22780 EE cut left thumb while removing borer bit.
## 22781 EE cut left thumb while working on case
## 22782 EE cut left thumb with knife while working in lab.
## 22783 EE cut left thumb with utility knife being used tocut material. Referred to glenda.
## 22784 EE cut limb off of oak tree and was pushing it outof the way. The limb hit EE on the right palm.
## 22785 EE cut little finger on plastic banding
## 22786 EE cut lt forearm on broken auto radio antenna parked by the summer ventures cottage
## 22787 EE cut lt index finger w/ some scissors.
## 22788 EE cut lt index finger with hubcap while changing tire on his patorl vehicle.
## 22789 EE cut lt leg on the drawer of desk.
## 22790 EE cut lt middle finger on chain link fence clmt has already rec'd 50% ppd to middle finger **do not pay labcorp charges-not work related**
## 22791 EE cut lt pinky finger on can while opening it
## 22792 EE cut lt ring finger on can while opening it
## 22793 EE cut lt thigh while carving wooden sign
## 22794 EE cut lt thumb with knife.
## 22795 EE cut metal band which was around a bundle of wood band popped and cut right thumb
## 22796 EE cut off part of left thumb with electric slicinmachine.\\
## 22797 EE cut off valves to sight glass on temp boiler, started to turn gasket nut and glass blew out cutting right forearm.
## 22798 EE cut palm of hand with utility knife while cut- ting a plastic bottle. EE indicated that accident was not work related.
## 22799 EE cut r pinky finger with a saw blade. EE treated at urgent care and released to rtw on same day ()
## 22800 EE cut r thumb using a saw to mold a seat. EE was seen at urgent care and rtw on 5-8-09. No missed time, medical only
## 22801 EE cut right index finger on knife blade while cleaning the utensil.
## 22802 EE cut right index finger on mixing bowl when it fell on her hand. She was helping another EE move bowls. Cut to right index finger
## 22803 EE cut right index finger while cutting a piece of rope
## 22804 EE cut right little finger with knife while preparing lunch
## 22805 EE cut right ring finger at tip on chipped edge ofglass blender jar while mixing milk powder.
## 22806 EE cut right ring finger while providing cpr to injured suspect who is hiv positive.
## 22807 EE cut rt finger on dish conveyor assembley belt
## 22808 EE cut rt hand on sheet metal while moving it acroos the table
## 22809 EE cut rt hand on the jagged edge of a bean can while preparing lunch for a resident
## 22810 EE cut rt hand when trying to retrieve a laptop computer from the cabinet
## 22811 EE cut rt index finger on razor blade found in match book during shake down
## 22812 EE cut rt little finger while loading stainless steel trays into a trailer
## 22813 EE cut rt middle finger while installing window unit
## 22814 EE cut rt middle finger while trying to uncuff inmate through trap door
## 22815 EE cut rt ring finger on his handcuffs
## 22816 EE cut rt ring finger on piece of broken glass that apparently fell thru window & stuck in arm rest
## 22817 EE cut rt thumb on box cutter while picking it up from under handtruck
## 22818 EE cut rt thumb on client on razor.
## 22819 EE cut rt thumb on glass while picking up pieces off the floor
## 22820 EE cut rt thumb on metal stud while hanging sheetrock
## 22821 EE cut rt thumb on razor blade left in desk drawer
## 22822 EE cut rt thumb while using a microtome to sectiontissue sample
## 22823 EE cut rt wrist on corner of wall locker.
## 22824 EE cut second finger on rt hand while retrieving files.
## 22825 EE cut self on sharpe edge of tire rim
## 22826 EE cut the inside of his lt wrist
## 22827 EE cut the top of his left finger with a kitchen knife.
## 22828 EE cut thru a piece of tape & cut his left index finger
## 22829 EE cut thumb ()
## 22830 EE cut thumb at joint on a rotary cutter blade used in a device that Dr. Cornier isbuilding for a research project.
## 22831 EE cut thumb on broken glass while breaking a glass ampoule
## 22832 EE cut thumb on meat slicer
## 22833 EE cut thumb while attempting to weigh and measure fish
## 22834 EE cut thumb while preparing veggies
## 22835 EE cut thumb with pruners while removing blueberry hardwood cuttings
## 22836 EE cut thumb with razor blade ()
## 22837 EE cut tip of left thumb with knife while dicing peppers.
## 22838 EE cut tip on rt thumb on blade of meat slicer while cutting turkey
## 22839 EE cut to index finger while operating a bandsaw.
## 22840 EE cut top of head while positioning wet tap machine.
## 22841 EE cut wrist and hand while breaking a car window that was locked and hit a pole.
## 22842 EE cutting & putting reflective tape on the entry gates when the knife she was using to cut the tapeslipped out her hand & stabbed her in the toe
## 22843 EE cutting 3/4 plywood when the wood caught a rough spot on the saw and the wood flew back and hit him across abdomen and took his breath.
## 22844 EE cutting a brain as part of the autopsy, tip of the scalpel punctured her left index finger through two pairs of gloves.
## 22845 EE cutting a hose with a razor blade cut right thumb
## 22846 EE cutting a piece of conduit knife slipped cutting right thumb
## 22847 EE cutting a rope holding a trashcan to tree. EE cut throug rope and accd. Stabbed leg. Puncture wound to lateral rt calf approx 4" dstal to knee.
## 22848 EE cutting a strap off a battaing cage net when heslipped and cut rt hand.
## 22849 EE cutting a total knee replacement bone and rt index finger tapped the saw and was cut
## 22850 EE cutting back linriope with a push mower when he stepped back in a hole that was covered and sprained knee
## 22851 EE cutting biscuit, cutter slid right elbow sore
## 22852 EE cutting board. Saw kicked back and hit him in groin and leg.
## 22853 EE cutting body tower glue stuck to bottle with razor blade. Blade slipped out of her hand cut lt thumb.
## 22854 EE cutting box on his lap, knife slipped and cut his leg above right ankle
## 22855 EE cutting boxes and cut hand below left thumb.
## 22856 EE cutting brace post for fence. Went to make downcut with chainsaw, the saw grabbed the wood caus- ing it to swing aroud stricking inmate asst. Him.
## 22857 EE cutting bread and accidently cut finger with knife. Laceration lt index finger.
## 22858 EE cutting bread for croutons. Knife slipped & he cut his finger
## 22859 EE cutting bucket lid-knife slipped out and cut left thumb.
## 22860 EE cutting cabbage up and cut left thumb
## 22861 EE cutting down boxes and cut lt index finger with box cutter.
## 22862 EE cutting fallen tree to clear road. Chain saw pinched by tree as it shifted. Used second saw to free saw. Fx to lt hand.
## 22863 EE cutting fallen trees, limb fell on head. Injury to head.
## 22864 EE cutting frozen meat with knife & cut finger of right hand
## 22865 EE cutting instalation with gloves on-cut through gloves cut left hand.
## 22866 EE cutting lock out of door when saw kicked back &blade jammed. Jammed index finger on lt hand.
## 22867 EE cutting lumbar-went to pull a piece of wood outfrom side of guard and blade cut rt hand/finger
## 22868 EE cutting magnetic tape strips w/scissors and scissors slipped and closed on rt hand.
## 22869 EE cutting meat on slicer and cut left thumb.
## 22870 EE cutting metal rod with bolt cutter, used chest for support, felt pop in chest.
## 22871 EE cutting metal rods with saw and sparks off of saw caught pant leg on fire, burned three or four inch spot on right leg.
## 22872 EE cutting out a model, cut tip of middle finger. Right finger. **r/I # 138030**
## 22873 EE cutting out felt valentines using scissors to cut when scissors went through the material. Left pointer and thumb cut.
## 22874 EE cutting paper & had sharp pain in right wrist still ached next day
## 22875 EE cutting paper-arm of cutter slipped out and cutee's finger.
## 22876 EE cutting pcr bound out of a gel over a uv transilluminator box. Uv burn to both eyes.
## 22877 EE cutting piece of tubing and knife went through and cut left thigh.
## 22878 EE cutting pieces of an apple, cut ring finger with a knife
## 22879 EE cutting pipe with pipe cutter and grit came offpipe and went into EE eye.
## 22880 EE cutting plastice off of spoons-pushed nail scissors to hard and cut hand.
## 22881 EE cutting shrubs when a foreign object cut EE on back and neck.
## 22882 EE cutting steaks & took steak off slicer & got her finger into slicer blade causing laceration
## 22883 EE cutting storm damaged trees when EE stepped over and slipped twisting left ankle ()
## 22884 EE cutting strap on box of text books when the knife slipped and cut left thigh
## 22885 EE cutting the lights on and cut her right pinky finger on the switch plate
## 22886 EE cutting trap pan covers out of wire screen, rt thumb became numb from continuous application of pressure on a nerve
## 22887 EE cutting tree down and moving log from tree and felt a pull in left arm and lower back
## 22888 EE cutting tree down-pushing to make fall when a limb fell and hit EE in the top of the head.
## 22889 EE cutting tree limb off fence. Limb was wedged against fence, when limb was cut, it snapped off fence hitting EE arm.
## 22890 EE cutting tree that was lying across road. EE states tree split, EE started cutting again, next thing EE remembers, EE was under tree.
## 22891 EE cutting tree with chain saw, as tree started tofall, saw kicked back causing chain to cut through laceration to upper thigh
## 22892 EE cutting tubing and cut finger w/razor blade.
## 22893 EE cutting tubing with razor blade, hand slipped and hit knuckle
## 22894 EE cutting twisted tape off extension cord way from body when knife slipped & cut into hand cutting lt middle finger
## 22895 EE cutting using a 10' miter saw. He reached acrossw/ his lt hand to hold the moulding down & pulled the saw down & his view was not clear to cut.
## 22896 EE cutting vinyl floor tile w/knife-knife slipped and cut left thumb.
## 22897 EE cutting wire and it recoiled after being cut and cut EE on left arm
## 22898 EE cutting with knife that slipped and cut left index finger.
## 22899 EE cutting wood when bee stung him. EE allergic to bee stings.
## 22900 EE cutting wood, accidently touched blade of saw cutting right thumb
## 22901 EE cutting wood, reached to pull through, wood kicked back taking EE lt hand to saw blade. Blade guard not attached. Lacerationns fingers & hand
## 22902 EE cutting wrap from pallet a& cut left index finger on box cutter/utility knife
## 22903 EE cutting/spraying herbicide on trail and stepped over vine, foot caught and twisted knee ()
## 22904 EE damaged glasses during pic training.
## 22905 EE dancing with class and fell spraining rt foot
## 22906 EE de-bunking beds w/co-worker when bed came apartand fell on left thumb.
## 22907 EE dealing with an out of control juvenile and hurt her left wrist & left knee during altercation
## 22908 EE decided to move her desk and hurt her back while pushing desk
## 22909 EE deer crashed into the side of the state vehiclethat the EE was driving... Head, neck, shoulders, side, back, and hips
## 22910 EE defensive tatics training at wildlife training school injury to right shoulder due to falling wrong
## 22911 EE delivering boxes of booklest to sch of education while pushing dolly up stairs felt sharp pain in back.
## 22912 EE delivering copy paper when taking case off counter strap broke-put other hand out to catch case and pulled shoulder
## 22913 EE delivering dinner tray to student locked in room. Student attempted to come out of room swining his fist hitting EE in rt eye sal contin
## 22914 EE delivering medication from window. Closed window door slammed into her back, inmate slammed door into her. Injured back, head, & neck.
## 22915 EE delivering medications to dorms in the rain andslipped & fell in front of medical unit
## 22916 EE delivering package-stumbled while entering bldgand fell into door injuring rt knee.
## 22917 EE delivering paper to davie hall-packing/putting cases on hand trk to deliver-felt pain in rt leg.
## 22918 EE delivering papers to pt office when leaving room foot turned and EE slipped and fell in hallway injuring rt foot.
## 22919 EE delivering supplies, when strap around one of the boxes broke. EE tried to catch it, and injured upper left arm.
## 22920 EE demonstrated to students how to pull weed out of garden bent down at knees pulled weed felt severe pain in back
## 22921 EE demonstrating cutting process-went to pick up a piece of sheet metal and severly cut rt index finger
## 22922 EE demonstrating defense training and fell landingon ankle
## 22923 EE demonstrating pitching techniques when right knee collapsed
## 22924 EE demonstrating pulling hose for class-pulled back out of place.
## 22925 EE demonstrating quick stop on motorcycle-applliedbrakes and tire slid-EE fell and motorcycle fell on EE left leg.
## 22926 EE demonstrating rapelling and foot slipped and twisted
## 22927 EE demonstrating use of hobble restraining device after having his leg restrained with hobble. Lost balance and fell from chair hitting head/shoulder
## 22928 EE deployed his stop stics during a high speed chase-reel and string was pulled from EE's hand byveh causing cuts and burns to left hand
## 22929 EE descending steps at the frt of telcom ctr and missed last step and fell.
## 22930 EE descending steps reached to press garage door opener missed and tripped and sprain left leg.
## 22931 EE descending steps, reat dock, when she slipped on drippings from trash and fell to the bottom of steps
## 22932 EE descending steps-shoe heel caught in steps and EE fell.
## 22933 EE descending the rear metal steps from lobby stepped on acorn and lost balance causing ankle to rune inward falling down the last few steps on to the concrete walk. ()
## 22934 EE described shoulder pain from repetitive use ()
## 22935 EE desk drawer was stuck and she attempted to pullit open and the top drwaer and her rt thumb.
## 22936 EE developed a hernia after lifting and carrying stack of boxes... Rt hernia repair only.. ..
## 22937 EE developed a microbaterium lesion on his right pinky finger after being exposed to a dying aquatiseahorse
## 22938 EE developed a rash on hands after wearing latex gloves to clean.
## 22939 EE developed a rash on inner left arm aftr contactwith unknown substance or material.
## 22940 EE developed a rash on legs above ankles
## 22941 EE developed a rash since she has been at work.
## 22942 EE developed a reaction to flu shot
## 22943 EE developed a red macular skin rash of both hands after washing and drying hands w/ brown paper towels
## 22944 EE developed a red rash on face - think it May be caused by lymes disease.
## 22945 EE developed a sever back pain while cleaning baseboards and running a buffer
## 22946 EE developed allergic reaction while mopping floors in lab area
## 22947 EE developed an allergic reaction while wearing latex gloves
## 22948 EE developed back pain after moving a bed on ward. Right low back pain.
## 22949 EE developed back pain from wearing a duty belt while performing maintenance tasks
## 22950 EE developed bilateral tenderness in his elbows from repetitive loading and unloading 45 lb oysterbaskets
## 22951 EE developed bronchitis as a result of working in smoky, dusty conditions on fires in florida.
## 22952 EE developed carpal tunnel syndrome in both hands due to computer work on the job
## 22953 EE developed chest pain while mowing grass.
## 22954 EE developed chronic pain over recent weeks in hisright hand, source of long computer usage. EE has continued to work pending approval of medical tx
## 22955 EE developed contact dermititis on arms, hands, neck, and behind ears.
## 22956 EE developed cts in both wrist. Use of office machines caused cts
## 22957 EE developed flu-like symptoms while traveling hearing impairment and tinia.. Right ear
## 22958 EE developed headache and her eyes became irritat-ed from inhaling fumes of bleach cleaning solutionafter inmate cleaned office area.
## 22959 EE developed lower back pain after mopping steps, classrooms and hallways.
## 22960 EE developed pain in left forearm (shoulder) extending down to wrist and fingers. EE does repetitive duties at times.
## 22961 EE developed pain while preventing resident from hitting head on floor.
## 22962 EE developed rash after contact with poison ivy plant. Received med. Treatment after rash appeared on skin.
## 22963 EE developed rash after using chemicals for lawncare
## 22964 EE developed rash on arms, legs, stomach and neck after contact with weeds in pond. ()
## 22965 EE developed rash on both arms after searching suspect's apartment for stolen property.
## 22966 EE developed rash under rt breast area, 3rd reportof dermatitis from th g3 unit.
## 22967 EE developed red irritation on his hands from dish washing
## 22968 EE developed red spots on right lower leg that developed into blisters
## 22969 EE developed right arm/elbow/wrist/thumb pain diagnosed as being caused by repetitive motion
## 22970 EE developed ringing in ears during stack test observation & inspection.
## 22971 EE developed soreness & swelling in left foot overtime. Diagnosed with acute gout. Medical provider notified EE that gout is not work related.
## 22972 EE developed soreness in left hand over time
## 22973 EE developed soreness, numbness and tingling pain in right shoulder, arm, wrist and hand over time ()
## 22974 EE developed tendonitis in right shoulder as result of extensive use of machete to create trails.
## 22975 EE developed well pages and electronic course materials using a mouse-felt pain in rt arm, wristand hand
## 22976 EE diagnosed with carpal tunnel right hand on 4-2-08. Right elbow/wrist/hand/lower arm.
## 22977 EE diagnosed with carpal tunnel syndrome
## 22978 EE diagnosed with carpel tunnel rt wrist - result of repetitive use of rt hand/wrist. EE keyboard ison desk to high - causes cts. Rt hand & wrist.
## 22979 EE diagnosed with rt carpal tunnel syndrome or rt forearm and wrist.
## 22980 EE did a brake fall and came down more on her right side. ()
## 22981 EE did his warm up by swimming for a few minutes and then he got his surfboard and started surfing when he fell and hit his head on the ocean floor.
## 22982 EE did indicate problems with hand while employed
## 22983 EE did not know floor was wet and slipped, injuring his right knee/right hand.
## 22984 EE did not move his hand out of the way in time resulting in his hand getting caught in between door & lockback.
## 22985 EE did not realize how heavy recycling materials were and injured left wrist when lifting materials
## 22986 EE did not report that injury had occurred nor did she have any difficulty walking during shift next day went to er-did not indicate any injury
## 22987 EE did not secure collimater plate on camera and it fell on both feet. Right foot fracture.
## 22988 EE did not see a on coming truck while making a lt turn on from the wrong lane
## 22989 EE did not see crane in the middle of walking pathand fell over it.
## 22990 EE did not see dog and stepped on him causing the dog to bite his knee.
## 22991 EE did not see fire ants, and ants bit EE extensively over body.
## 22992 EE did not see puddle of water at end of truck slipped and fell on both knees
## 22993 EE did not see step down at sidewalk - fell twisted ankle.
## 22994 EE did not yield off a ramp. She hit side and thenback of transfer truck.
## 22995 EE didn't know how it happened noticed rt shoulderwas hurting after finished putting clients to bed. Rt shoulder
## 22996 EE didn't know when it happened, relized that metalwas in eye late wednesday when it started to bother EE.
## 22997 EE didn't notice how close she was to the building and backed into it. ()
## 22998 EE didn't see the last step (no light at entrance)missed last step and fell to the ground. Fracturedrt ankle.
## 22999 EE didn't see the wood and stomped on one side of it and turned his ankle
## 23000 EE digging a hole and hit rt hand on top of shovel
## 23001 EE digging fire line & a stick went in his ear canal scratching & bruising lt ear drum
## 23002 EE digging hole in ground to place 4x4 to stabilize deck and strained rt wrist.
## 23003 EE ding a lesion on a stdt's pina, some purulent/ bloody fluid squirted hitting EE on face, some in to eye. EE irrigated & instilled eye.
## 23004 EE dipensing medication - got needle stick. Inmaterecap the needle like usual do & she noticted she picked up needle stuck rt thumb
## 23005 EE directed client to go to another area, client grabbed his right arm and bit him on the right wrist
## 23006 EE directed visually impaired students hand to a bloody cloth for applying pressure and blood got on left hand of EE.
## 23007 EE directing a tour, when EE was stung on left hand by a hornet. Punctured by insect.
## 23008 EE directing client to come in when cleint took EE's rt arm and yanked it back.
## 23009 EE directing client to table when client hit EE with open hand to rt side of face
## 23010 EE directing consumer to put her shoes on then consumer became physically aggressive and kicked EE in abdomen.
## 23011 EE directing resident to class as work assignment resident aggressed toward staff resulting in superficial scratch under right eye & finger
## 23012 EE directing traffic when a vehicle made aggresivemaneuver (turning) EE moved quickly to avoid car causing rt achillies tendon strain
## 23013 EE directing traffice after basketball game-a veh came straight at EE-EE hit palm of hand on hood ofveh and roll to side straining back.
## 23014 EE disasembling lrg tables on his knees, bending & stooping to get tables apart. Pulled pieces up stairs felt pain in left leg.
## 23015 EE disassemblin old lab experiment hand slipped and was cut on piece of metal
## 23016 EE disassembling a herman miller unit EE saw that panel was about to fall on another EE & grabbed itthe panel then fell on top of EE's left foot.
## 23017 EE disasssembling bunk, fingers were pinned between springs and top of bar on bunk.
## 23018 EE discarding books using blade to remove pockets and spine lables and cut left hand.
## 23019 EE discarding of needle into sharp box, tubing coiled up, needle hit side of opening, bounced up and stuck gloved right index finger.
## 23020 EE discarding plastic trash can and cut rt ring finger
## 23021 EE disconnecting iv tubing when blood and splashedon EE's face and left eye.
## 23022 EE discovered a rash on his abdomen after working with treated wood. ()
## 23023 EE discovered a tick attached to lower abdomen
## 23024 EE discovered a tick on his left hip after shower-ing and beign out on timber exam most of the day.
## 23025 EE discovered an object in an inmates pocket, object came thru the pants and into EE right thumb, ear piece from a pair of glasses, thumb left hand
## 23026 EE discovered imbedded tick 1 week earlier then joint pain, fatigue and discoloration to area ()
## 23027 EE discovered offender cooking meth-came into contact with phosphorus & ioding-hands burning
## 23028 EE discovered rash on left thigh during shower
## 23029 EE discovered tick on his left leg joint
## 23030 EE disinfecting dorm for lice and crabs. Other officers were spraying quads with lice spray. Fumes from lice spray got into lungs causing pain.
## 23031 EE disinfecting stall spray got onto hands-notice blisters and itching on hands.
## 23032 EE dislocated his finger while trying to apprehenda suspect; fifth digit finger on right hand
## 23033 EE dislocated his shoulder during defense training
## 23034 EE dislocated right thumb while attempting to push stopper into sink drain. ()
## 23035 EE dislodge a 4 ft section of tree result of middle finger on left hand tearing the skin & mashing the knuckle ()
## 23036 EE dismantleling metal shelving to relocate-shelving fell and hit EE in the head.
## 23037 EE dismantling fence when a board w/nail sprang forward and hit EE in the forehead.
## 23038 EE dismantling sterilizing biohazard caging water bottles too hot and burned EE on left calf
## 23039 EE dismounted tractor in a field and stepped in a hole with his right foot.
## 23040 EE disposed of some furniture drawers and noticed pain in his back saturday morning when waking up. ()
## 23041 EE disposing needle and stuck finger on left hand
## 23042 EE disposing of syringe into sharps container stuck left third finger.
## 23043 EE disposing of trash at dumpste and finger got caught in strike plate
## 23044 EE disposing of trash butterfly needle came through the rubber part and cut EE left hand
## 23045 EE distracted by 2-way radio-when sawing piece of wood-EE slipped on sawdust on floor and reached tocatch radio when his rt thumb caught on sawblade
## 23046 EE distracted by construction work and turned and walked into a traffic sign,
## 23047 EE disturbed a bees nest and was stung on the hands
## 23048 EE disturbed a nest with yellow jacket and was stung by a yellow jacket on the lt wrist
## 23049 EE does 80% of all phlebotomy work. Hands are heldin hinged position with venipuntive due to uncoopertiveness of clients.
## 23050 EE does a court run every morning walked to the court house went up step to entrence fell after entering the first set of doors
## 23051 EE does a lot of data entry on computer & this has over a period of time caused pain in her wrist & arm.
## 23052 EE does a lot writing and typing in job and is having pain in her wrist and hand.
## 23053 EE does data entry
## 23054 EE does data entry 90% of the time
## 23055 EE does data entry all day and noticed swelling inher left wrist
## 23056 EE does data entry daily - trigger finger for middle finger of right hand is a possible result per physician
## 23057 EE does keyboarding as key function of job - pain in rt wrist
## 23058 EE does not indicate on injury report a specific injury only states hurting when left work slightlywhen awoke next day, couldn't move neck
## 23059 EE does not know what occurred to cause his eyes scratchy and watery or why rash appeared
## 23060 EE does not know when or with whom she hurt her back. Complains of dull ache in lower back.
## 23061 EE does repetitive work on the computer, process massive form of work on computer.
## 23062 EE does significant amount of computing use required. EE does repetitive motion with wrist in awkward environmental condition,
## 23063 EE doesn't know how injury happened but lt eye was scratched
## 23064 EE doesn't know how injuty occured stated went for physical and was told he might have a biceps tear
## 23065 EE doing 3am round and slipped and fell on wet floor injuring left hip
## 23066 EE doing a call search EE involved in use of forceinmate placed on floor EE scrapped left inside armon door frame, left
## 23067 EE doing a security check of nurse trailer. He slipped while coming up steps of building. EE has pain in back.
## 23068 EE doing administratin duties in lt office, she turned to answer telephone and bopped her rt knee on desk.
## 23069 EE doing bench presses as part of physcial assese-ment evaluation. Strained rt shoulder while doing a bench press. Rt arm - pain/discomfort
## 23070 EE doing body check with pt, turned pt to side, pt head went off table, EE grabbed pt knees to keep pt from falling, EE twisted middle back
## 23071 EE doing cartwheels went into split rt patella dislocated pushed back into place.
## 23072 EE doing cleaning and cut rt hand on cart
## 23073 EE doing cleaning in room and went to turn on light switch and got shock on rt amr
## 23074 EE doing computer data entry. Injured neck, arms, leg, hands.
## 23075 EE doing construction of decking, went to put board in place and his hand came in contact with a splinter.
## 23076 EE doing cpr, helped other staff transfer resident from stretcher to tray in morgue. Herniated disc.
## 23077 EE doing crunches for warm-up exercises EE felt grinding in her lower back which left her unable to get off floor. Middle lower back pain
## 23078 EE doing curfew check on a officer, he was closingfront door jammed and pulled wrist and hand. Shoting tendonitis of lt wrist.
## 23079 EE doing curfew check, after leaving probation house traveling down walter gibson rd. Deer jumpedin road causing object into chest and stomach
## 23080 EE doing curfew check-walking back to car-stepped in hole stretching left calf muscle causing pain in leg/foot/toes
## 23081 EE doing daily routine when he twisted rt foot on deck.
## 23082 EE doing daily weed extraction-contracted poison ivy on rt arm-lower neck & stomach
## 23083 EE doing demonstration walked around vehicle when he stepped on loose asphalt causing him to turn rt ankle
## 23084 EE doing everyday work in smoke filled building
## 23085 EE doing field visits. Stopped at stop sign. Thought it was clear to move fwd, however truck infront of EE did not move. No injury.
## 23086 EE doing her normal work duties, data entry, letters, filing, and she noticed a crackling sound whenshe moved her wrist, numbness in fingers and hands
## 23087 EE doing his duties as the porch yard officer nearnorth yard gate he was bitten by a spider or mosquito, swelling occured over night. Lt hand
## 23088 EE doing his house cleaning chores and his ankle started hurting. He was not sure how he hurt it. Sprain ankle
## 23089 EE doing home visit-offender refused to respond toverbal command & was taken down-he then kicked EE behind her left ear with cowboy boot
## 23090 EE doing home vist, dog ran around the side of house and bit EE on leg.
## 23091 EE doing inspection fire safety equipment c/o large tripped orver a mop bucket falling backwardslanding in small of back. Pain in small of back.
## 23092 EE doing inspection in attic and left elbow hit roof truss member.
## 23093 EE doing intensive computer work injury elbow
## 23094 EE doing inventory on boat-jumpmed from boat to ground and turned ankle.
## 23095 EE doing job everyday spending most of time at computer keyboard.
## 23096 EE doing job. Checked self for ticks after coming out of woods on 4-19. EE found a tick embedded onsaturday 4-26 behind right knee
## 23097 EE doing knee bends and other exercises during "staying healthy on the job" workshop & felt pain in right knee
## 23098 EE doing labwork----tilted a cup of formaldehyde 4% on floor----splashed into right and left eye.
## 23099 EE doing multiple duties above head using both arms noticed pain in both elbows.
## 23100 EE doing paperwork. She moved the engraver ( used for debit cards) to the left & hit the point of itw/wrist.
## 23101 EE doing pelvic exam-collecting specimen when qtipcame out of test tube went up in the air striking EE on head-EE emotionally traumatized.
## 23102 EE doing physical fitness training for sort & injured his rt knee while carrying another ofcr over his shoulder
## 23103 EE doing physical fitness training-running in gym stepped on cushioned mat, rolled ankle & fell to floor. Lt ankle.
## 23104 EE doing prescibed boxing exercise and was punchedby another cadet, strain to right back muscle
## 23105 EE doing prescribed boxing exercises and punched in hed by another cadet. Bruise to head
## 23106 EE doing roll & rock exercise to learn how to fallee dropped down from standing position & rolling back. After training back got worse - bruised.
## 23107 EE doing roomchecks & found broken tile in rm 12. EE reached for the broken tile, pulled lower back during process
## 23108 EE doing routine cell search - inmate assaulted her beating her in face and head with his fists 15-20 times
## 23109 EE doing routine locker search when an inmate threw a chess piece & struck EE on lt knee.
## 23110 EE doing routine patrol on I-40, conducted a traffic stop, got out of veh quickly and twisted his body, felt sharp painin lt leg and lower back
## 23111 EE doing routine patrol when hit in the rear by another veh - injury to rt arm
## 23112 EE doing routine search when he turned around and slipped which caused him to land on his right elbow.
## 23113 EE doing security check on her dorm when she slipped and fell against the wall. Injured back.
## 23114 EE doing swimming rescue of student. Soreness of lft knee.
## 23115 EE doing test on patient when patient moved abruptly, needle came out of patient and stuck EE in finger below nail bed.
## 23116 EE doing traffic enforcement struck on lt side of patrol car
## 23117 EE doing unarmed self-defense training injured rt shoulder. Put rt down to brace himself and then hurt his rt shoulder.
## 23118 EE doing warm up exercise at self defense class, istrained my lower back on left side
## 23119 EE doint pt tx on client when client grabbed EE's left arm when getting up from chair scratching the same.
## 23120 EE door on driver side of vehicle hit her in fore-head when she open it. Attempting to fuel vehicle. Hit center of forehead.
## 23121 EE downstairs loading catalogs on cart, went to get inserts off shelf, lost balance & fell back- wards over boxes.
## 23122 EE dragging canoe from catawba river and hurt his lower back
## 23123 EE draining moisture from air line, valve was stop-ped up with rust, air pressure pushing rust particlinto the skin of left hand.
## 23124 EE drank from a bottle he had left unattended in the dormitory and discovered that someone had urinated in the bottle.
## 23125 EE drank water contaminated with body fluids
## 23126 EE draw blood on immate. After completing this task she accidentally stuck the needle into the second finger of her lt hand
## 23127 EE drawing blood & received a needle stick to rt 3rd finger
## 23128 EE drawing blood from a eee positive chicken. 1st try unsuccessful. 2nd try chicken moved & EE punctured lt thumb with contaminated needle.
## 23129 EE drawing blood from client-client jerked arm andneedle pricked EE on left thumb.
## 23130 EE drawing blood from inmate and lt hand hit on needle lt on counter in upright position in needleholder. Lt hand palm near thumb punctured.
## 23131 EE drawing blood from inmate as ordered by MD, suffered needle stick to rt thumb, blood contaminated
## 23132 EE drawing blood from inmate needle stick injury while attempting to dispose of needle.
## 23133 EE drawing blood from inmate per doc protocol. Needle came out of arm. Needle fell and stuck EE in rt thumb.
## 23134 EE drawing blood from inmate, after comp'd, was disengaging needle from lab cover & accidentally stuck 2nd index finger with needle
## 23135 EE drawing blood from inmate, inmate became agitated, inmate knocked cathater out of hand causing needle to nick outer lt arm
## 23136 EE drawing blood on student was returning - needleto container - needle piercing finger. Puncture 2nd finger rt hand.
## 23137 EE drawing lab from inmate and sustained a needle stick after blood draw completed area bleed and cleaned and soap and alcohol
## 23138 EE drawn blood on inmate, was gathering equipment to disposs of properly when picked up needle pokedlt thumb with it. Injured lt thumb.
## 23139 EE dressing client and saw something sticking out of left thumb-thought it was a splinter-turned outto be insulin needle.
## 23140 EE dressing client in bed-rolled client to put lift pad underneath and hit finger on bed.
## 23141 EE dressing client who grabbed EE's little finger and bent it backwards.
## 23142 EE dressing client. EE attempted to pull up pants when pain in back of neck or perhaps when EE attempted to pull client up in bed
## 23143 EE drew blood on patient with menlagacorcal meningitis.
## 23144 EE drew pt blood, trying to pull up the safety piece and stuck right thumb
## 23145 EE drillin hole through stainless steel to put a rack together & the bit popped through & went in his right index finger.
## 23146 EE drilling a block and broke, EE lunged forward and punctured his index finger with the drill bit
## 23147 EE drilling a hole and the drill bit ran off ctr and drilled a hole in left thumb
## 23148 EE drilling awkward position for extended period time. Noticed back giving him trouble. Pain going down leg.
## 23149 EE drilling hole in a metal bracket when drill slid and the broken drill bit caught right wrist and cut open ()
## 23150 EE drilling holes in overhead door frame and metalgot into left eye
## 23151 EE drilling in ceiling and a piece of concrete hitright eye.
## 23152 EE drilling into concrete when dust or concrete particle got behind safety glasses & into to his eyes
## 23153 EE drilling out holes using drill press while drilling hole in angle iron. Piece slipped from hold & caught by drill
## 23154 EE drilling out old line hook to install new one and metal shavings went into rt eye.
## 23155 EE drilling weeds in plant bed and came in contact with poison ivy-rash on arms and face.
## 23156 EE drinking from cup when a bee flew onto his tongue stinging him
## 23157 EE driver of state car enroute on state business car was struck from the rear by antoher - cut handneck, back and leg hurts.
## 23158 EE driver opened door as EE was standing up from looking under vehicle, as EE stood up hit head on door
## 23159 EE drives & operates equipment. Has pain, tinglingloss of grasp in hands, wrists, and shoulders.
## 23160 EE driving a car w/seatbelt on. Someone rear ended the car he was driving
## 23161 EE driving a track pin with a sledge hammer, a small piece of metal came off pin and struck the EE on rt shin.
## 23162 EE driving a van leaving us postal service, when another vehicle hit passenger side of the van. Contustions.
## 23163 EE driving a van when a car backed into the van.
## 23164 EE driving along w morgan st & attempted to move from inside lane to outer lt hand lane collided w/another vehicle. Injury to lower rt back.
## 23165 EE driving and felt tired, pulled over put on haz ard lights was rear ended by a dodge van.
## 23166 EE driving and was struck in the rear by another vehicle at I85 & intersection of billy graham parkway, which forced EE vehicle off road & in median
## 23167 EE driving automobile when auto. Hit ice on high- way, skidded and turned over. Head injury-skull fracture with blood clot.
## 23168 EE driving back to office, a food truck turned l on red and hit the passenger side/back of car, no one hurt. ()
## 23169 EE driving car on us 64 east, car in front stopped, hit back of that car, could not stop due to rain. Neck, shoulders, arms, hands, fingers.
## 23170 EE driving down ashe street when another vehicle did not yield; hit rear of other vehicle. On impact body jerked hard pain in left knee and lower back and right shoulder. ()
## 23171 EE driving down road on wet pavement and hit the veh in front if him which stopped abruptly on brakes.
## 23172 EE driving down road when object flew into rt eye.
## 23173 EE driving east on person st. Approaching deep creek road, vehicle traveling at high rate of speed on deep creek ran stop sign and pulled out I
## 23174 EE driving fork lift when a spider fell on his face-EE began slapping spider with both hands causing hit to hit a pole
## 23175 EE driving from durham hosp as security superv. & hit another vehicle with state vehicle she was driving. Injured lt knee.
## 23176 EE driving golf cart and ran into a car in parking lot ()
## 23177 EE driving golf cart ran off road into a ditch andhit head.
## 23178 EE driving golf cart with left hand, holding client with right arm when the client bit EE's right forearm. ()
## 23179 EE driving golfcart, resident pushed brake caused golfcart to to sideways. EE flipped off
## 23180 EE driving her car to pick up food for school event, when she was hit by another car. Police report # 07-011431. Lt arm & hand contusion/sprain
## 23181 EE driving home from work & was stopped at trafficlight, turning lt. Other vehicle behind EE vehiclefailed to stop hitting EE vehicle in the rear
## 23182 EE driving in course of work, ice on road, car spun& hit guardrails, EE reported soreness next day & sent to nextcare-no lost time.
## 23183 EE driving in heavy rain below speed limit, car hydroplanned on standing water & skidded into concrete barrier.
## 23184 EE driving in patrol car, back began hurting.
## 23185 EE driving in snowy conditions car lost tration and slid into small tree. No injuries to driver or passangers.
## 23186 EE driving in storm-a tractor-trailer very close behind EE-her car hydroplaned & spun out-crossing median-when car stopped hhe slammed against door
## 23187 EE driving motorcycle conducting escort when a vehicle made left-hand u-turn into EE's path throwing EE onto pavement.
## 23188 EE driving object flew into window and hit EE in lft upper eyelid. Erythema & puritis to eylid w/ swelling
## 23189 EE driving on 2 lane rd when a car made a left turn across her lane in front of her, she swerved to avoid car and struck another car.
## 23190 EE driving on airport rd. Began to slow for traffic, car infront of EE slowed abruptly, EE took eyes off road for second, rear ended car
## 23191 EE driving on hwy, when horse ran across road in front of vehicle, EE unable to avoid hitting horseee experience soreness where seatbelt held her.
## 23192 EE driving on n. Borad and parson street, while turning hit in the bumper by another veh. No injuries
## 23193 EE driving on tyron rd, turned lt into crime lab &vehicle came around curve hitting EE in left side causing EE to get laceration to left side of head
## 23194 EE driving own veh exiting lot onto raleigh road and struck by oncoming car.
## 23195 EE driving personal car after completing a home visit, EE was struck by another vehicle-inj neck **subro - state farm ins co**subro ltr sent 4/2004
## 23196 EE driving post-post driver slipped off post as itwas being driven and contacted EE's head
## 23197 EE driving roving vehicle, when she turned around the mini-14 rifle fell from rack and hit EE on lower arm, right.
## 23198 EE driving sad on beach in wilminton area on Miss-Ion of reporting damage. Felt piece of grit or sand in eye. Tried to blink it out and rub it out.
## 23199 EE driving state car on I95. Road construction resulted in lane merging. EE hit car in front of her.
## 23200 EE driving state issued vehicle on routine duty when broad sided by another vehicle
## 23201 EE driving state issued vehicle, performing dutiesof s/o. Repeadley opens & closes door at residencepulling caused injury to rt shoulder.
## 23202 EE driving state van hit another vehicle pulled out in front causing her injury to back, neck, chest, pelvis area.
## 23203 EE driving state veh. Box truck - green light & eebegan to proceed & was struck by oncoming vehicle colliding w/veh. Rt rear- overturned veh. On l sid
## 23204 EE driving state vehicle from works site - driver pulled out in front. EE hit other vehicle on pass-anger side. Bruised & sprained shoulder, neck, arm
## 23205 EE driving state vehicle on course field trip-stopped in traffic and was rear-ended by another vehicle.
## 23206 EE driving state vehicle when deer came out of cornfield on rt side of rd and unable to avoid deer. No injury sustained
## 23207 EE driving to building assignment, and turned around on lindsay st to park on campus on sullivanst and was hit by a car. Injured back and neck.
## 23208 EE driving to campground & was struck in left eye by flying dust & debris. After flushing, still felt objects in eye.
## 23209 EE driving to client's home, car brakes failed, hit tree
## 23210 EE driving to job site and ran over pothole strained lower back.
## 23211 EE driving to school where she was to work for that day tried to pass truck & truck forced EE off road into ditch - sore neck
## 23212 EE driving tractor making fire lines when rt eye began buring.
## 23213 EE driving truck when something made a noise and caused trk to go out of control and run into a tree.
## 23214 EE driving unmarked police car struck from behind by another vehicle causing unknown injury
## 23215 EE driving van back from school related function and was hit in the rear.
## 23216 EE driving van on I-77 near statesville, involved in multi-care chain reaction - vehicle infront stopped suddenly. Whiplash, neck
## 23217 EE driving van, pulled upt to cluster 4 to pickingup clients, van was idoling - lunged forward over crub and hit building, - rt leg contusion
## 23218 EE driving veh over bridge when secured lawnmower in back of veh scraped bridge causing EE's veh to go into ditch injuring chest
## 23219 EE driving vehicle going to forest fire was stopped at intersection, was hit in back by another vehicle
## 23220 EE driving water line in ground w/sledgehammer. Eemissed pipe & finger lt hand were pinched between hammer & pipe. Cuts, bruises and fracture fingers.
## 23221 EE driving when a deer came out of road ditch on left side, hitting pickup on driver side.
## 23222 EE driving with both his driver's and right front passenger's side window open when an unknown object struck his right eye.
## 23223 EE driving work vehicle home after attending a meeting stopped a red light hit from behind by another vehicle. Injured back & neck
## 23224 EE drop full can food box on her finger ()
## 23225 EE droped some forms in the elelvator and bent down to pick them up when and turned to get out the toe of her rt shoe hit the track and caused her fal
## 23226 EE dropped 60 lb cooler on rt foot while sorting mail
## 23227 EE dropped a 10lbs can of fruit cocktail on lt foot.
## 23228 EE dropped a 60lb box on his right second toe
## 23229 EE dropped a bottle of ez scrub while cleaning out a freezer and it splashed into eye. ()
## 23230 EE dropped a bottle on a test strip and bacterial culture splashed into her eyes. Note: EE paid outof pocket for prescriptions.
## 23231 EE dropped a case on his finger... Laceration and possible broken left middle finger
## 23232 EE dropped a delivery box which landed on her left foot. The corner of the plastic box struck the top of her left foot ()
## 23233 EE dropped a glass casserole dish on floor injuring rt inner thigh
## 23234 EE dropped a grey display cube on left toe while moving it off the floor. Soft tissue erythema swelling and small fracture blister left big toe.
## 23235 EE dropped a jug of bleach and it hit the floor, cap came off and bleach splashed in his face and both eyes.
## 23236 EE dropped a large can of fruit on her big toe
## 23237 EE dropped a large stock pot full of liquid on right index finger. EE was instructing students when accident occurred.
## 23238 EE dropped a large stock pot full of liquid on rt index finger
## 23239 EE dropped a needle on his foot
## 23240 EE dropped a no parking sign on her lt foot.
## 23241 EE dropped a pallet on her lt foot
## 23242 EE dropped a paper on the floor. Bent over from chair to pick up & the rolling chair went out from under EE, causing EE to fall to floor on left elbow & left hip. ()
## 23243 EE dropped a piece of pipe on his right foot
## 23244 EE dropped a pin on the floor, reached down to pick it up, hit head on the desk.
## 23245 EE dropped a set of keys and reached to pick them up, received a small cut on left palm between his thumb and forefinger from one of the keys.
## 23246 EE dropped a sheet of paper, and while pocking it up, struck his head on the edge of a shelf causinga laceration to his scalp.
## 23247 EE dropped a table on his foot
## 23248 EE dropped a vial of glutaraldehyde in phosphate splashed in lt eye
## 23249 EE dropped a wooden pallet, cut. Bruised and scraped her right leg.
## 23250 EE dropped an envelope, the envelope fell btwn 2 tables. Her pinkie finger rt hand hit the fan when she tried to retrieve the envelope
## 23251 EE dropped back in roller. Injury to finger
## 23252 EE dropped battery and battery acid flew up and in EE's rt eye
## 23253 EE dropped bucket on head
## 23254 EE dropped car keys, bent down to pick them up & hit head on corner part of his car door
## 23255 EE dropped container of reflecta which splashed into his left eye
## 23256 EE dropped container on toe ()
## 23257 EE dropped dish and hit left hand on top of hot station
## 23258 EE dropped dorm log book on floor. Injured lower back when he bent down to pick it up.
## 23259 EE dropped easel on her right foot
## 23260 EE dropped fluid tank on rt great toe
## 23261 EE dropped head board on lower right leg ()
## 23262 EE dropped heavy shipping crate on lt foot loadingcrate onto trash truck
## 23263 EE dropped her car keys and while picking them up she turned her lt foot
## 23264 EE dropped her lunch bag and bent down to pick it up, EE was bending down the door was closing and the door hit her left wrist
## 23265 EE dropped hub cap bend down to pick it up and sliced hand with edge of hub cap.
## 23266 EE dropped id badge on floor, bent down to pick up badge, hit corner of desk pull-out table with left side of head. ()
## 23267 EE dropped intake keys at front gate of twr #3, eestood up head struck fence causing bruise to left side of head
## 23268 EE dropped laptop on right foot ()
## 23269 EE dropped large rolled plan on rt foot
## 23270 EE dropped lock bag on foot when getting change out of bag.
## 23271 EE dropped mortar box on left shin while carrying it to job site. Puncture to left shin
## 23272 EE dropped off the phone logs to the south operations yard officer he was walking back to hu#8 when he got in front of hu#8 he hit something on... ..
## 23273 EE dropped paper on floor and leaned over while inchair and chair slipped causing employee to fall on floor.
## 23274 EE dropped pencil and attempted to catch it ()
## 23275 EE dropped phone looked up and EE was left of center swerved to Miss Vehicle hit pothole took out transformer pole.
## 23276 EE dropped pickup tailgate on hand. Smashed index finger on (l) hand which led to 8 to 10 stitiches
## 23277 EE dropped pliers, caught them before they hit thefloor & point of pliers pierced right index finger
## 23278 EE dropped soda and hit forehead on jeep mirror while bending down to pick it up
## 23279 EE dropped some papers on the ground and reached own to pick them up and hit his head on the bottomof open car door. EE had seven stitches to head
## 23280 EE dropped something on the floor, when she bent down to pick it up & hit her forehead on a shelf. Helf.
## 23281 EE dropped sweatshirt on dmg battery-shook shirt off and a few drops of acid splashed on face and arms.
## 23282 EE dropped table on right foot
## 23283 EE dropped the needle by a butterfly in box and attempted to dislodge needle from tubex, lower needle jumped up, hit my lt middle finger.
## 23284 EE dropped trash can on toe and broke rt big toe
## 23285 EE dropped wite-out bottle on desk, fluid flew up into his face & right eye.
## 23286 EE drove mule up on curb - did not wear seatbelt - nose hit roll bar and knee hit dash.
## 23287 EE drove on sullivan st, driver of van ran the stop sign at winston st hitting vechicle. No injury.
## 23288 EE drove thru open gate/win blew gate toward him and he reached out to catch it causing sp6241rain to left elbow
## 23289 EE drove to residence, walked up on front porch andknocked on door, dog pushed door open, jumped up andbit EE on the lower left stomach area.
## 23290 EE drove upon broke down vehicle on I-40 w\\two elderly ladies due to safety issues EE pushed vehicle off roadway. Sore lt shoulder/upper back
## 23291 EE drying resident, as resident was being turn to the left, he hit EE in nose with fist.
## 23292 EE drying resident-resident scratched/pinched her.
## 23293 EE ducked to Miss Bag of laundry being put into line and lost control causing her to fall on rt wrist.
## 23294 EE ducked to avoid being hit by a resident and strained back
## 23295 EE due to repetitive motions with wrists and handsinjury to wrist, hand, arm and elbow.
## 23296 EE dumped trash can and felt a sharp pain in shoulder and her arm went numb.
## 23297 EE dumping cages on dirty side of the washroom, elbow started hurting and it was red and swollen
## 23298 EE dumpting wheel barrel and wind blew trash and dust into rt eye
## 23299 EE during a fire she inhaled a large amount of smoke
## 23300 EE during a pic training class she struck her lt knee on a couch
## 23301 EE during a use of force he was pinned against a screw sticking out of panel covering a light switch. Injured rt rear shoulder.
## 23302 EE during a use of force lifted an inmate off of another inmate while bending over. Injured middle area of back.
## 23303 EE during lunch hour break he was playing basket- ball in gym. EE was trying to block shot and came down on his lt knee.
## 23304 EE during normal serveillance duty work was injured in vehicle accident. Neck & rt shoulder muscle sprain.
## 23305 EE during pepper spray training she received a rash to her facial area, possibly a reacting to thespray.
## 23306 EE during routine locker search pricked tip of middle rt hand finger on a needle when handling a plastic bag.
## 23307 EE during staff/inmate basketball game, jumped & landed on inmates foot & twisted lt ankle. Sprain lt foot and ankle.
## 23308 EE during use of force twisted her right knee. Try-ing to restrain inmate and felt pop and sharp painimmediately.
## 23309 EE during use of force was pushed backwards and hit his head against the concrete wall. Injured rt side of head,
## 23310 EE during use of force, rec'd injuries resulting from bringing inmate under control. Cut finger on lt hand & cut lt wrist, some swelling lt wrist.
## 23311 EE dusting book cabinet standing on top of bed- getting down and slipped and fell on rt hand and forearm.
## 23312 EE dusting in old adm wall injury to eye
## 23313 EE eas biten by a canine patient in icu. EE was treating the patient at the time.
## 23314 EE eas lifing up board that typewriter was placed on and the board lifted up too quickly and caught rt 2nd and 3rd finger between desk and board
## 23315 EE eas pushing a large ratchet attached to top track bolt when he felt something pull in pelvic area
## 23316 EE eased pt down to floor to soften fall and then helper patient back up twice. She reported pain inleft arm and wrist. Strain to left wrist
## 23317 EE eating candy and it got hung in her throat. Injury to throat.
## 23318 EE eating chicken during lunch and swallowed a bone causing hole in esophagus
## 23319 EE eating sandwich when chair leg roller came out from under chair & fell on floor on his back when chair shifted. Inner lt elbow, scratch, lower back
## 23320 EE elevating head of client's bed upward felt pull in rt arm.
## 23321 EE ell down 6 steps while falling she straddled the steps on her back before coming to a stop.
## 23322 EE elliot stated the during cell extraction traini-ng, he enter the cell his left hand hit the wall.
## 23323 EE employee stood up and resident pulled her hand backwards. EE felt pain but thought it would be okay until that evening began to swell.
## 23324 EE emptied a water bucket when left shoulder strained
## 23325 EE emptied sea kayak of water & pulled it onto beach felt something pull/pop in lower left groin diagnosed with a left inguinal hernia
## 23326 EE emptied trash bent over to replace liner when stood back up felt pain in back.
## 23327 EE empting trash in men restroom when she finish empting trash she proceed to push trash down w/herhand & needle stuck her hand. Lt hand palm-needle
## 23328 EE empting trash, trash was heavey, when being throwing in dumpster neck poped.
## 23329 EE emptying garbage cans that were full of water injuring neck/back
## 23330 EE emptying mop bucket-bent down to pick up debrisfallen into sink-upon lifting head hit back of head on faucet
## 23331 EE emptying solvent from waste bottle-bottle brushed exposed right wrist causing chemical burn
## 23332 EE emptying towels out of barrel, felt something pull in upper back
## 23333 EE emptying trash & stocking all restrooms, and about 2pm lower back started to hurt.
## 23334 EE emptying trash can, dust from copier cartridge in the trash blew into face. Irritation eyes, dust inhalation.
## 23335 EE emptying trash cans into dumpster injury to right ring finger-laceration
## 23336 EE emptying trash, opened small bag something went into right eye causing burning/cutting sensation.
## 23337 EE encounter several unleveled inclines while conducting an inspection on June 23, 2008. EE complaints of left knee snapping on June 25, 2008.
## 23338 EE encountered suspicious, suspect ran & EE chased suspect where he fell injuring rt knee ()
## 23339 EE ending day shift & noticed a tick attached to his body above the belt line at abdomen. Removed tick & saved it - symptoms on 06. 02
## 23340 EE engaged high speed chase and was involved in auto accident. Rt thumb possible torn ligaments
## 23341 EE engaged in a conversation while stitching and placed left hand to close to the needle.
## 23342 EE engaged in a foot chase with an offender while investigating a crime as part of his job duties. EE and offender fell to the ground. ()
## 23343 EE engaged in crdt training & received 3 injuries lt wrist/shoulder & tailbone
## 23344 EE engaged in exercise in cell extraction & right thumb was injured in exercise
## 23345 EE engaged in firearm training and had difficulty holding 12 gauge shotgun, gun slipped on shoulder as EE was firing, severe pain/stiffness neck, back
## 23346 EE engaged in group activity. 4 people in sittingposition with backs joined & arms locked, proceeded to work on standing. EE pulled lt shoulder
## 23347 EE engaged in prison emergency response exercise &while moving thru woods, EE stepped into hole in ground fell forward causing injury to right knee
## 23348 EE engaged in unarmed self-defense training & involved in the side kick manuever when he tucked the wrong leg & fell to the mat & felt pain.
## 23349 EE engaging in recreational activity w/inmates twisted lft hip @ distal joint that joins lft thigh
## 23350 EE enrout to assist officers, he was running and fell on concrete sidewalk. EE states the area was wet from rain
## 23351 EE enroute in personal vehicle to local vendor. Eeveh. Was rear ended, when he pulled onto left sideof hwy. Contusion shoulder & neck.
## 23352 EE enroute to a meeting involved in auto accident head, neck and nose
## 23353 EE enroute to call for svc-road wet-turned curve- lost control ran off road-struck ditch & overturnefracture spine-cuts to head-contusion right hand
## 23354 EE enroute to her car in parking lot when she stepped on a rock twisting her rt knee
## 23355 EE enroute to his residence-end of shift-suffered seizure causing vehicle to speed up across inter- section-off road-colliding with a backhoe
## 23356 EE enroute to job and slipped and fell on wet floor injuring left knee.
## 23357 EE enroute to training session. Stopped @ stop light hit in rear
## 23358 EE enter in stair way put hand forward hitting wall sprained left hand, little finger
## 23359 EE entered 2nd floor tunnel & slipped in puddle ofwater from leaking roof (raining). She fell to left knee & slipped again falling on bottom.
## 23360 EE entered a dark room with a wet floor and slipped
## 23361 EE entered a dog cage to give oral medication to the dog (patient), the dog lunged at her and bit her finger. ()
## 23362 EE entered a hatteras "a" block when an inmate was washing the windows and the cleaner accidentally went into EE eyes.
## 23363 EE entered a inmate cell and and trhere was a odorit made EE sick to stomach, lightheaded, and bad taste in EE's mouth.
## 23364 EE entered a inmate cell and smelled a foul odor and it made EE sick to stomack. Lightheaded, and bad taste in mouth.
## 23365 EE entered a manhole with a condensate leak with rt foot into water
## 23366 EE entered a pipe closet to adjust water pressure from an inmate's toilet when some of the urine splashed into face and rt eye
## 23367 EE entered a room inside the daily bldg, with a worker from overhead door and both fell into a pit approx. 6x7 into the room. Room had no light
## 23368 EE entered admin building check mail, shoes were wet from rain outside, wiped feet on floor mat. Fell and hit head on door. Injured top of head.
## 23369 EE entered an inmate cell and smelled a strange odor and became light headed, nausea, and a bad taste in mouth.
## 23370 EE entered bld & slipped on wet floor-twisted rt leg & fell on right hand
## 23371 EE entered bldg to investigate cause of fire alarmwhich May have caused ear discomfort.
## 23372 EE entered building entrance while it was raining and began to slip when she stepped on to the landing. Lost balance and fell with weight on left knee&foot. Twisted back while falling. ()
## 23373 EE entered building from out doors where it was raining. EE walked across floor mat onto waxed floor. EE's foot slipped causing her to fall
## 23374 EE entered building that was treated for insecticide several times, EE experienced bleeding in his nose
## 23375 EE entered building through loading dock area, tripped on buckled rug, which caused EE to fall. ()
## 23376 EE entered building to go through the security check and fell on stone flooring injuring right knee.
## 23377 EE entered building water on floor, no sign, floorhad been mopped, causing EE to twist left knee
## 23378 EE entered building- did not see thin layer of rain which caused her to slip and fall- knee, elbow, left ankle, foot and neck area
## 23379 EE entered c-block door and it began to close and hit his right elbow
## 23380 EE entered cafeteria on break-stepped on wet spot on floor and fell forward hitting rt side of head, left knee and shoulder.
## 23381 EE entered cell to open a window to help smoke escape. Exhaust fan was brought to cell door and wind caused dry chemical to get in eyes and nose
## 23382 EE entered cell to remove a blanket, inmate grabbed baton; EE & inmate fell onto the floor & EE fell against cell door injuring rt arm.
## 23383 EE entered cell when contact was made w/inmate using security shield. Hand accidentally left handles of shield & struck back of shield.
## 23384 EE entered core area of central control and slipped and fell on wet floor. Cut left forearm and bruised arms causing swelling
## 23385 EE entered d-block housing and a broom came through the window beside the door. Glass flew into EE's face and chest. There were no noted injuries.
## 23386 EE entered dark hallway and atttempted to turn on light and it did not work and tripped over metal debris that was left behind.
## 23387 EE entered dishroom and slipped and fell twisting rt ankle.
## 23388 EE entered door to the administration building from outside and slipped and fell. Pain in right shoulder, lower back, right hip and right knee
## 23389 EE entered elevator door started to close was trying to push door open when finger got cut on sharp object
## 23390 EE entered elevator on 3rd floor when elevator doors closed on his lt arm near lt elbow.
## 23391 EE entered essex unit elevator the steel elev doorslammed to crushing the end of right middle finger
## 23392 EE entered exam room and patient was off leash with owner. EE introduced self to owner and patient lunged at EE and bit hip and fingers. ()
## 23393 EE entered green unit first door then opened the second door when the first door closed on EE left hand middle finger
## 23394 EE entered hallway, feet slipped on marble type floor, lost balance and fell, landing on buttocks and lower back. Pain in hips and back
## 23395 EE entered his patro; car and attempted to close his door as he grabbed the door handle he heard his fingers pop
## 23396 EE entered horse stall, while holding horses halterwith right arm, horse swung head up quickly pullingee's arm and shoulder.
## 23397 EE entered immate's room to give him his breakfast tray as she attempted to sit tray on table EE hit leg on his wheelchair
## 23398 EE entered inmate cell to assist co-worker in sub-dueing an inmate that was assaulting staff. During struggle inmate elbow hit EE in mouth
## 23399 EE entered inmates cell to place restraints on herand she spit in EE's left eye
## 23400 EE entered into room to check and slipped and fellinjuring wrist/arm.
## 23401 EE entered into the bsl-3 facility to carry out a growth curve on brucella cultures and discovered that one of my 50ml flasks that I had previously inoculated was empty. ()
## 23402 EE entered into work(building 29) stepped into water and twisted her ankle.
## 23403 EE entered juvenile room & was struck on rt side of head. EE injured rt hand & scraped knuckle while restraining juvenile. Rt hand/rt eye & head
## 23404 EE entered kitchen to get afternoon snacks for residents, when she lost footing on wet floor and fell on right knee
## 23405 EE entered lab to clean she saw fog and smelled fumes she felt light headed and throat was burning
## 23406 EE entered lobby; slipped and fell hitting his buttocks, back & head on the floor. Flr was being cleaned. EE states that there was no sign indicating wet
## 23407 EE entered manhole upon entry bent down which caused him to pull lower back
## 23408 EE entered me room, looking at new pipes in ceiling and tripped, straining lt knee
## 23409 EE entered mop closet to get supplies, EE noticed bottle hidden in pipes over door, EE took it down as EE put bleach backsome spilled in both eyes
## 23410 EE entered mossman building, floor was wet from rain and slick from being waxed, she slipped and twisted her right knee
## 23411 EE entered north gate, by operation and lock on the gate lock was difficuly to close, EE hit it with palm of her rt hand
## 23412 EE entered office & stepped onto plastic chair matleft foot skidded on mat out from under EE causingright ankle-twist over. Fell & bruised l hip-knee
## 23413 EE entered pt's room to assist getting pt off transport board, pt spat in EE's face ()
## 23414 EE entered room and heard hissing noise. He was trying to locate the noise but he had to leave because odor was too strong.
## 23415 EE entered room to clean it and slipped on liquid on floor, and fell on rear and back and hand.
## 23416 EE entered side of van and his head hit top of door frame. Abrasion/knot to top of head
## 23417 EE entered staff meeting and sat in chair which collapsed she fell backward in chair hitting aganist floor wall
## 23418 EE entered stall to clean and horse kicked EE in the stomach
## 23419 EE entered the building, starts to itch on her handarms and face. Eyes felt like they were swelling.
## 23420 EE entered the c/3 office from outside during a rain storm, slipped on the tile floor and fell on his right shoulder.
## 23421 EE entered the cosmotology area, where smoke was coming from an overload dryer. EE attempted to extinguish the fire, entering and existing the.... ..
## 23422 EE entered the courtroom to prepare the recorder for court. The area was not well lighted and she sis not see step down. She fell on her right knee.
## 23423 EE entered the door and the door closed on the shoudler and arm were caught in the door.
## 23424 EE entered the gatehouse after getting off duty slipped and fell, the janitor was stripping the gatehouse floor.
## 23425 EE entered the gatehouse to relieve officer when he was exposed to a very strong odor and his eyes and nose began to burn.
## 23426 EE entered the highway into the path of another veh and was hit on the rt side.
## 23427 EE entered the lobby area and slipped on floor that was slippery after it had been mopped by inmate. Right knee bruised.
## 23428 EE entered the marting bldg, water on floor, slipped & fell landing on lt hip, lt wrist & hand
## 23429 EE entered the office on the admin office asst stated she had been sprayed nad was going to the er and then left the office.
## 23430 EE entered the room looking for the light switch &missed her step & fell down the stairs breaking her right wrist.
## 23431 EE entered unit & hit rt 1st finger on side of door frame & cut finger
## 23432 EE entered vacant house to acess heating tank for us t purpose area unlit EE missed floor boards EE stepped in heating vent hurting rt arm & elbow
## 23433 EE entered warehouse room and property stand fell on EE rt side.
## 23434 EE entered yard vehicle, hit the corner of lt eye on vehicle rear door.
## 23435 EE entering #165 that leads into custody. Opened door and walked in. EE preventing theo door from slamming he mashed third & fourth finger.
## 23436 EE entering admin. Conference room door shut on rthand
## 23437 EE entering bathroom before wet sign put up fall on wet floor injury to left shoulder, arm and hip
## 23438 EE entering bathroom in c4-a, when they closed thedoor EE caugh finger between door & door jamb. Third (3rd) finger right hand
## 23439 EE entering bld and missed a step twisting left ankle
## 23440 EE entering bldg and slipped and fell on wet floorand sprained rt ankle.
## 23441 EE entering bldg and slipped on wet floor and caught self w/hand.
## 23442 EE entering bldg slipped and fell on icy sidewalk injuring back.
## 23443 EE entering bldg, slipped on wet floor while on wayto work
## 23444 EE entering bldg, tripped on steps, fell, scraping right knee/wrist/left shoulder ()
## 23445 EE entering bldg-reached to open door and twisted rt ankle.
## 23446 EE entering boat on dock-as he stepped on the gumwale his foot slipped form under him falling into the boat on his back.
## 23447 EE entering building and tripped over steps straining left shoulder and rt elbow
## 23448 EE entering building from personal car, ice and leaves, parking lot wet in area where fall occurred EE slipped and fell, sprain to right hand, lft knee
## 23449 EE entering building from personal car. There was some ice and leaves, parking lot was wet in the area where fall occurred. Slipped and fell. Mult
## 23450 EE entering building on 1st floor floor was wet EE slipped and fell on right knee and landed on left knee
## 23451 EE entering building on rainy morning, placed her left foot too close to the door and sharp corner of door across the outside of left foot.
## 23452 EE entering building through sliding doors fell to floor (nothing noted on floor) landed on both knees
## 23453 EE entering cell during planeed use of force, struck rt knee against cell wall as he attempted to gain control. Injured rt knee and lt foot.
## 23454 EE entering cell remove a breakfast tray to give water. Patient attacked EE from behind grabbing her neck & hands. Injured rt upper arm - lacerat.
## 23455 EE entering classroom with boxes and rt foot got caught on loose floor tile causing EE to fall landing on rt hip/wrist.
## 23456 EE entering compound through gate when the gate closed on her wedging her between fence & gate. Injured rt arm.
## 23457 EE entering control room and foot slipped causing EE to fall on rt knee also catching self with rt hand
## 23458 EE entering court, slipped and fell on left knee
## 23459 EE entering door same time client exiting and got hand jammed- left hand
## 23460 EE entering doorway and it was closed by officer in control booth. Injured rt shoulder.
## 23461 EE entering double doors from hallway, another EE accidently pushed one of doors into her left shoulder -
## 23462 EE entering front door with client EE hit right hand on door as it was closing
## 23463 EE entering gate house for duty & cut finger on metal door
## 23464 EE entering his vehicle after completing accident investigation. When another vehicle skidded on icestriking EE and knocking him into his car.
## 23465 EE entering housekeeping office and closed door on ring finger of left hand
## 23466 EE entering in front doors, door closed causing the metal door stop to catch his shoe and pull it off, laceration to right heel
## 23467 EE entering institution & felt pain like bee stingon left side of abdomen
## 23468 EE entering into pe bldg-slipped on wet floor fellbroke left wrist and bruise left hip
## 23469 EE entering men's room and slipped on wet floor abrasion to rt elbow.
## 23470 EE entering narrow bathroom stall & hit l elbow on sharp edge on metal door latch cutting elbow
## 23471 EE entering office when she slipped and fell on wet floor. Injured rt knee.
## 23472 EE entering old dorm on east side, EE tripped and fell on steps on her left knee. EE stattted that knee was ok.
## 23473 EE entering receiving area, foot slipped, fell back-wards, caught his balance then proceeded to walk into the receiving area.
## 23474 EE entering restraint room and stepped on wet spot on floor twisting left knee
## 23475 EE entering restroom and shut left index finger inbathroom door. Injured lt index finger/fingernail and area above
## 23476 EE entering room and tripped over slightly elevated floor causing her to fall on left arm & right knee
## 23477 EE entering shiloh headstart when computer bag turned over sideways twisting lt-wrist
## 23478 EE entering single cell to do search & struck his hand against door. Right knuckle middle finger swollen
## 23479 EE entering stairwell & tripped hitting the back of her head on doorway
## 23480 EE entering state archives building tripped on raised threshold, falling to knees jarring back, knees& jaw
## 23481 EE entering student lounge and slipped on wet floor injuring left knee.
## 23482 EE entering through door and slipped on wet floor injuring rt knee, hip, left ankle.
## 23483 EE entering tower 3, slipped & twisted rt ankle. EE implyed the accident was a result of mud fixated on her shoe.
## 23484 EE erecting a roadside side-when tamping the sign post dropped tamping rod on rt foot.
## 23485 EE escorted client to bathroom. Client became upset, started jumping, yelling trying to strip. Client almost fell, EE pulled back catching her.
## 23486 EE escorted inamte into treatment room w/officer, went to change dressing & inmate hit in face with fist. Rt side face swollen & upper & lower lips.
## 23487 EE escorted inmate to rec cage, proceed to take thehandcuffs off and the inmate stuck EE on right side of head.
## 23488 EE escorted patients to time out room. One patientwas being taken in pcl hold. While lifting patientee felt pull in upper back.
## 23489 EE escorted pt to eto, EE turned to close door and pt ran up and kicked door and EE on l knee, during restraint pt kicked EE r leg
## 23490 EE escorting a client to a van client became confused and threw briefcasw with two hands from over head. Bruising rt arm, breast, palm & hand.
## 23491 EE escorting a patient to the dining room for supper; another patient came after EE, attacking EE. The patient slightly nicked EE on lower left cheek, pushed EE against wall causing EE to bump head. ()
## 23492 EE escorting arrestee down icy steps-arrestee losthis balance-EE att to catch arrestee from falling and twisted his back.
## 23493 EE escorting cleint to room stepped on a rock on sidewalk and twisted rt ankle.
## 23494 EE escorting client down hallway-client attempt torun ramming his head into wall and fighting EE
## 23495 EE escorting client from bathroom to day room, client would not relase EE's left arm causing strain to elbow
## 23496 EE escorting client from bathroom- client became aggitated -tried to hit EE in face, EE tried to cover face, client grabbed EE l thumb and twisted it
## 23497 EE escorting client ot sun porch holding hands- client squeezed and pulled twisting EE left hand
## 23498 EE escorting client to bedroom-client become unsteady and fell-resulting in EE falling landing on left wrist/knee
## 23499 EE escorting client to itd-client bit EE on rt hand.
## 23500 EE escorting client to lto when client shoved EE unto door pinning rt hand.
## 23501 EE escorting client when client began to fall-EE caught client and was pinned to wall injuring back.
## 23502 EE escorting client, client started falling to flooee tried to support fall with body, twisting back.
## 23503 EE escorting clients out of pt bedroom when clientfell and clt head struck EE in low left back
## 23504 EE escorting inmate back to cell from shower, wheninmate sprayed EE in eyes & face area then head- butted EE in face lt side cheek
## 23505 EE escorting inmate back to cell. After removing handcuffs inmate jerked EE's hand back in cell jamming the back of hand on door.
## 23506 EE escorting inmate from emergency room-inmate lost balance and fell into shrubs-EE asst inmate and lost balance and twisted left knee
## 23507 EE escorting inmate to cell and slipped on wet floor landing on buttock
## 23508 EE escorting inmate to cell and was assaulted by inmate.
## 23509 EE escorting inmate to cell in when antoher inmate threw urine through bars. Urine went on eesarm.
## 23510 EE escorting inmate to diagnostic center when she slipped and fell on ice outside.
## 23511 EE escorting inmate to dining room stepped off edge of sidewalk causing her to twist rt ankle & falling down on both knees.
## 23512 EE escorting inmate to his cell, inmate became verbally disruptive, agressive move towards EE, causing EE to use force, fractured l hand finger
## 23513 EE escorting inmate to medical when inmate attempted to get away from him. EE hand caught in chains at handcuffs. Three fingers rt hand & lt elbow
## 23514 EE escorting inmate to visit when officer in c-3 closed door on EE left knee.
## 23515 EE escorting inmate when he slipped in water on floor causing injury to rt leg and rt shoulder
## 23516 EE escorting inmate when inmate turned & assaultedee by kicking him in the ribs
## 23517 EE escorting inmate who was placed in restraints to segregation. Inmate resisted escort. Fingers of left hand caught between cuffs as inmate squeezed his arms together. ()
## 23518 EE escorting inmates for showers in unit iv when he slipped on wet floor-pulled something in lower left rib area
## 23519 EE escorting inmates from one building towards main building. Standing on step outside main building, stepped on bottom step, fell on his back
## 23520 EE escorting inmates from sgt area, inside fence area to exit. Inmate disruptive, taking fence door& striking officer. Lt forearm, bruised.
## 23521 EE escorting inmates out of cellblock due to paperfire.
## 23522 EE escorting inmates to & from showers states she fell & hurt rt knee & hip due to food/liquid on floor.
## 23523 EE escorting patient in cafeteria, patient tried torun away & while I was holding on to her... Patientjerked arm & I felt catch in back
## 23524 EE escorting patient to seclusion room; patient became combative & hit EE on left cheek. Right side of collarbone & left middle finger
## 23525 EE escorting pt through tunnel. Pt began swinging at EE, pulled hair, EE fell against wall hitting head, & lt shoulder, rt 5th finger/low rt back.
## 23526 EE escorting resident to unlocked thime out, staff& resident stumbled into corner of wall, hitting back upper lt arm causing bump & bruise.
## 23527 EE escorting student back to room EE placed his hand on students shoulder student pushed his arm EE felt something pull injury to left shoulder
## 23528 EE escorting student to his room when he kicked eein back of his leg in knee area.
## 23529 EE escorting students into a locked unit as EE turned key felt sharp pain through arm.
## 23530 EE escourted inmates to their housing when she twisted or pulled her left knee
## 23531 EE evacuating inmates from fire in cellblock. Did have an air pack on. EE also states put another fire out in cellblock. No air on
## 23532 EE evacuating inmates from paper fire in cell- block
## 23533 EE evacuating inmates out or cellblock due to fireee was wearing a scott air pack.
## 23534 EE evaluating patient when he hit her in lt hip and back area. Lt low back strain.
## 23535 EE examing child & was exposed to pertussis
## 23536 EE examing fire scene and fell through floor injuring groin.
## 23537 EE examinied dna fragment in an agaror gel, he us-ed the wrong shield for protection, uv irradiated face and eye.
## 23538 EE examining a dog and was bit.
## 23539 EE examining gel with students using uv light, EE not wearing protective eye glasses, prolonged exposure to uv light injuring eye
## 23540 EE exerted during a exercise work out and complained of pain to lower wrist.
## 23541 EE existing work vehicle and stepped onto gravel surface when pain was felt in left foot. Pain continued for 2 days before reporting ()
## 23542 EE exit d cell block slipped on some butter that on the floor
## 23543 EE exited building and tripped on sidewalk, scraped cheek, shoulder, and knee
## 23544 EE exited building and tripped on uneven sidewalk. Scratches, bruises & swelling rt knee, abrasions both hand, rt wrist swelling and pain.
## 23545 EE exited dorm and slipped and fell on steps. Injury to right leg
## 23546 EE exited elevator, weaved way thru students waiting for elevator, headed down hall & fell on her face. Broke 2 teeth @ gumline & cracked 3 more
## 23547 EE exited examination room the infirmary, slipped newly waxed floor. No signs up. Acute contusion and abrasions rt knee.
## 23548 EE exited from one office room to the testing lab and felt left ankle give way/twist. Two ees assisted in picking her up from the floor. ()
## 23549 EE exited his car to report for duty in the parking lot he stepped on an icey spot and los his balance and fell to the ground struck head
## 23550 EE exited his patrol car to retrive an item of hispersonal car which was parked alone side of the patrol car, facing in the opposite direction.. ..
## 23551 EE exited his patrol vehicle and felt a strain in his low abdomen and testicle area.
## 23552 EE exited his patrol vehicle to aprehend violator as the EE placed his left foot onto the pavement, he twisted his left knee.
## 23553 EE exited his vehicle to check his front tires due to a low warning light. EE exited his vehicle, lost his footing, attempted to break his fall, and struck his right hand against the left front tire spraining his right hand.
## 23554 EE exited patrol vehicle and slipped on leaf covered slope. Left knee strain.
## 23555 EE exited philips by back steps, slipped and felldown steps due to ice. Injured foot, side, ankle, thigh, shoulder.
## 23556 EE exited pool & slipped on wet surface; injured left great toe & foot
## 23557 EE exited sliding door of van and struck head on frt passenger when it opened.
## 23558 EE exiting & realized oily substance on floor grabbed wall & door closed onto left index finger
## 23559 EE exiting - reaching through door slot to push open outer metal door. Wind caught door closing lthand middle finger - mashed
## 23560 EE exiting a-wing & hit head on top of door frame which caused him to fall-contusion head
## 23561 EE exiting area after filling state vehicle with gasoline, went to turn right & steering wheel locked causing collision with another vehicle
## 23562 EE exiting back door, slipped on concrete & fell. Rt hand hit asphalt, left knee impacted cement.
## 23563 EE exiting back of mechanical tree planter, hold- ing hand rail. Foot slipped off back weights caus-ing him to loose grip fell on ground-rt knee
## 23564 EE exiting basement hit top of head on window header.
## 23565 EE exiting bldg -side exit. Carrying paperwork against her chest & step up from sidewalk to grasstripped&fell. Lt clavicle, shouler, rib, wrist, back.
## 23566 EE exiting bldg and foot slipped on steps-lost balance and fell landing on left ankle.
## 23567 EE exiting bldg and foot slipped-EE fall forward injuring rt knee and foot.
## 23568 EE exiting bldg missed step near platform ground causing rt foot/knee to twist
## 23569 EE exiting building and fell on concrete sprainingleft pinky finger
## 23570 EE exiting building and fell on sidewalk injuring rt knee, neck, shoulder and back.
## 23571 EE exiting building during fire alarm, stairs wet from snow flurries, missed last step & fell injured ankle/foot.
## 23572 EE exiting building to deliver packages to ups drop box; EE tripped over wooden pallets & fell, injuring hand and arm
## 23573 EE exiting building, caught in revolving door. Contusion to right knee & right hip
## 23574 EE exiting bus began descending steps bus jerked caused EE to slip down steps to ground he support fall by holding on bar caused strain lt elbow
## 23575 EE exiting bus, jammed her knee & fell to the ground (2005 chancellor's state tour stop)
## 23576 EE exiting c & d cellblock EE opened metal slidingdoor from block to lobby and fire alarm went off closing doors auto, struck EE on left side of head
## 23577 EE exiting cell block bc-10 westside door was openslowly so he attempted in pull it open. Small abrasion rt middle finger.
## 23578 EE exiting central bath when client struck EE on left check causing EE to fall and hit head againstwall.
## 23579 EE exiting door and going into another bldg tripped over door stop in walkway straining knee.
## 23580 EE exiting dorm when EE caught second left finger betwn metal and wood doors mashing end severely nail remover
## 23581 EE exiting food service office in dining hall tripped over telephone cord causing fall hitting head on lt side.
## 23582 EE exiting from building and missed a step and fell. Clinchered 3/31/06 at $65k plt atty-scott galagier ag gary scarzafava
## 23583 EE exiting from veh when EE dropped item, reached to pick up item bumped head on veh door.
## 23584 EE exiting living area, collided w/ another EE who is vision impared
## 23585 EE exiting main bldg using concrete ramp; foot caught rough area of material and fell forward onto knees, using hands/wrists to catch fall ()
## 23586 EE exiting office suite, hit rt elbow on railing. Still treating
## 23587 EE exiting operations she slipped on wet floor in hallway in front of operations. Injured rt elbow, area of redness, slight swelling.
## 23588 EE exiting patol veh and stepped into a hole felt a sharp pain in left knee.
## 23589 EE exiting patrol veh and heard a pop coming from left knee and felt pain.
## 23590 EE exiting patrol vehicle & felt burning sensationin right inner leg/thigh-pain worsened as day continued
## 23591 EE exiting restroom door, when another EE enteringrestroom door, causing door to strike EE's right wrist, arm & shoulder
## 23592 EE exiting ship/receiving & scrapped lower left leg on iron pole
## 23593 EE exiting storage room caught foot in strap fell on floor injuring left arm, left knee, right lower back
## 23594 EE exiting tower 2 through trap door above slamming down to top of head causing EE - head pain, shoulder and neck pain.
## 23595 EE exiting transfer bus, when he ran into the dooroverhang. Injury occured on forehead and bridge of nose.
## 23596 EE exiting van falling on side. Injury to knees. **claim received 1/11/2008-friday**
## 23597 EE exiting van through passenger door-lost balanceatt to catch self w/left hand and broke a bone on rt hand.
## 23598 EE exiting veh 550 in reverse-EE backed into a free standing cylinder rolled down the log to foot
## 23599 EE exiting ward missed step & fell rt knee struck concrete scraped knuckle lt 4th finger
## 23600 EE exiting work van, stepped on a patch of ice, rt knee popped
## 23601 EE experencing tingling to l arm above elbow down to finger tips. EE used mouse with left hand for 10 years
## 23602 EE experience a needle stick in her left fourth finger by dental ass. During cross reach in procedure.
## 23603 EE experience pain in left wrist and hand with increased pain when using the computer keyboard
## 23604 EE experience rise in his blood pressure and pulse while stressful situation ()
## 23605 EE experienced a popping feel in rt knee while walking from grass area to concrete walk in kc park
## 23606 EE experienced a respiratory reaction to the air in the room in which she was teaching.
## 23607 EE experienced a sharp pain in his left shoulder while swing a baton during training
## 23608 EE experienced a sudden sharp pain in lower back while lifting a 30-40lb pan.
## 23609 EE experienced breathing problems, kept working day after day, but ran out of breath as the day wore on.
## 23610 EE experienced burns on fingers and started feeling ill - shortly after drug bust where he handled drugs
## 23611 EE experienced constant harrassment, stress, and work overload. ()
## 23612 EE experienced difficulty breathing. Making wheezing noise. EE states this is from the smell of clorox being used to clean up in dormitory.
## 23613 EE experienced discomfort in rt hand & wrist & at time - computer terminal.
## 23614 EE experienced headache & respiratory problems when carpet was removed from her work area.
## 23615 EE experienced headache, dizziness, irritate eyes/throat, coughing and tightness in chest due to torched tar fumes in grants and contracts suite. ()
## 23616 EE experienced irritation to left eye during work
## 23617 EE experienced nausea & vomiting after exposure tofume from fire extinguisher & smoke from fire thatinmate had started.
## 23618 EE experienced neck cramping and spasms while painting ceilings in eagles dormitory.
## 23619 EE experienced numbness & pain in hand wrist & armduring keying.
## 23620 EE experienced numbness and tingling in both wrists and hands from repetitive motion.
## 23621 EE experienced numbness in fingers and thumb and pain at base of wrist on left hand
## 23622 EE experienced numbness/tingling in right hand, arm, shoulder
## 23623 EE experienced paid after lifting client on and ofrides at six flags in georgia sprain to back
## 23624 EE experienced pain & burning in shoulder & neck restraining client.
## 23625 EE experienced pain and swelling in elbow when lifting boxes
## 23626 EE experienced pain and swelling in hand due to writing.
## 23627 EE experienced pain in back and feet after over 8 hours standing on uneven surface with duty belt onduring shift. Referred to glenda.
## 23628 EE experienced pain in both wrists and numbness in hands.
## 23629 EE experienced pain in both wrists. She believes it's carpal tunnel syndrome. EE keys data entry for 8 hours.
## 23630 EE experienced pain in her right shoulder and right side of her neck when she turned her body to the left when opening/stamping incoming mail and packaging/lifting of archive boxes. ()
## 23631 EE experienced pain in lt forearm after scanning very large patient. Forearm ached and tingled.
## 23632 EE experienced pain in r side of neck, shldr, and back due to lifting multiple dogs onto exam table
## 23633 EE experienced pain in rt rib cage area while attempting to lift a box with computer monitor enclosed
## 23634 EE experienced pain while sleeping in rt shoulder
## 23635 EE experienced pain while walking, performing workrt. Foot
## 23636 EE experienced pain while working. The cause is unknown. EE injured back.
## 23637 EE experienced repetitive trauma to shoulder over two years by two clients.
## 23638 EE experienced right wrist pain from continued use of mouse.
## 23639 EE experienced severe trauma, anguish, anxiety, depressiom, post traumatic disorder.
## 23640 EE experienced sharp pain from her wrist to the pads of her hands, mainly in the thumb area. ()
## 23641 EE experienced sharp pain in left wrist subsequent to extended keyboard usuage
## 23642 EE experienced sinus irritation, throat & eye irritation while breathing kodak cleaning fumes.
## 23643 EE experienced soreness in hands, mostly right hand, but sometimes left. Seems to be worse when she works extensively on computer.
## 23644 EE experienced stinging sensation in back while helping two clients move a box of supplies
## 23645 EE experiences gastrointestinal & anxiety related symptoms.
## 23646 EE experiences pain in both wrists and hands after use of computer - part of regular responsibilities
## 23647 EE experiencing burning in both hands which she says comes from typing
## 23648 EE experiencing intense pain when speaking on the phone (8 hrs a day). Unable to turn head to the ltdiagnosed with tmd (tmj).
## 23649 EE experiencing pain in both hands & wrists while keying.
## 23650 EE experiencing pain in both wrists since 2007, diagnosed with tendonitis in right hand/wrist on 1/30/09.
## 23651 EE experiencing red rashes on both cheeks while atwork. May have been exposed to mold, or other irritant
## 23652 EE experiencing sharp pain and tingling in l wristwhile working at computer
## 23653 EE experiencing some discomfort in lower arm with a tingling sensation from the elbow down towards the wrists.
## 23654 EE experiencing tremors in right hand, after shooting shotgun pain in neck & rt shoulder
## 23655 EE explains that rt hand and wrist became numb and tingles, EE feels that injury is related to job duties.
## 23656 EE exploring nature trails at park when bitten by ticks on lower rt arm
## 23657 EE expose to inmate's blood to right and left forarms
## 23658 EE exposed rt hand to liquid nitrogen while trying to retrieve dropped object
## 23659 EE exposed to TB-tested positive on skin test.
## 23660 EE exposed to a person having tuberculosis.
## 23661 EE exposed to acid aerosol resulting from imhersonof metal into sulfuric acid bath while retriving equip. -eyes/skin/hands/throat
## 23662 EE exposed to chemicals used by contractors, EE haschemical irriation in throat & chest causing infection
## 23663 EE exposed to chemicals which caused a bag reactioon.
## 23664 EE exposed to client who died of meningitis
## 23665 EE exposed to coworker with confirmed case of TB.
## 23666 EE exposed to fumes due to repair work being done on lrg animal stall-broke out w/rash on neck, stomach, arms, legs, headache, eyes burning
## 23667 EE exposed to iodine sprayer which caused rash on both hands, forearms and elbows.
## 23668 EE exposed to paint fumes/carpet fumes while working at her pc
## 23669 EE exposed to poison ivy during field research
## 23670 EE exposed to smoke from a paper fire
## 23671 EE exposed to students blood
## 23672 EE exposed to sulfuric acid fumes
## 23673 EE exposed to the pepper gas by being sprayed in the face by captain kenworthy. Head/scalp area
## 23674 EE exposed to toxic chemicals resulted in liver damage
## 23675 EE exposed tp client who died on 4/21/96 of menagitis at time of death, EE is preganat
## 23676 EE extended back while doing research work.
## 23677 EE extented right leg to press pedal for blower ()
## 23678 EE extracting inmate's tooth when elevator slippedpuncturing skin on right 1st finger
## 23679 EE extraction training he was the shield man when inmate hit EE in the left knee with his helmet
## 23680 EE fail appox. 1 1/2 feet to same level dry floor when conducting air tank inspection. Injuried (r) knee - EE recently had knee surg. For n-related
## 23681 EE failed to reduce speed for stopped traffic and struck a vehicle in the rear.
## 23682 EE failed to stop due to not observing stop sign. No injuries
## 23683 EE failed to yield the right of way of on coming vehicle.
## 23684 EE fainted due to very high stress level in day care the director died on sun. & EE was told just before fainting
## 23685 EE fainted in office chair. Fell on floor and impact caused laceration in chin, jaw and face soreness and headache. Referred to glenda.
## 23686 EE fainted in office requiring med attn, when ems was loading EE onto elevator, EE foot was caught in rail causing severe muscle sprain to foot, ankle
## 23687 EE fainted in the bathroom and hurt her head. EE is in the hospital.
## 23688 EE fainted walking down hall and hit face against wall and floor
## 23689 EE fainted while putting up the mail.
## 23690 EE fainted, blood pressure elevated.
## 23691 EE fall and slipped on water that has leaked on floors--injuring rt hip, rt arm/shoulder
## 23692 EE fall going down steps from judges bench to clerks desk. Taking EE from second step to the bottom.
## 23693 EE fall of top step in the back of bldg 44 and injured knee and foot.
## 23694 EE fe; t pain in lower back while putting away diaper boxes.
## 23695 EE feall on wet ramp coming out of trailer #24 injuring left wrist and left knee.
## 23696 EE fee on concrete while attempting to arrest person for driving while impaired. Injury to left elbow, right hand and right knee
## 23697 EE feeding client jello when client balled up fist and hit EE in rt eye
## 23698 EE feeding client when hand went up in the air andhit EE under the chin causing EE's bottom teeth to break.
## 23699 EE feeding client, client is usally in restraint was taken out as bsp, staff was holding client hand, client lowered head & bit staff.
## 23700 EE feeding client-client got up walked a few stepsturned and fell on EE hitting his leg with head
## 23701 EE feeding inmate who grabbed EE left arm pulled it inside cell proceeded to cut EE on left arm from elbow to wrist
## 23702 EE feeding student when chair tilted over, causingback of chair to hit EE on the head, near left ear.
## 23703 EE feel forward onto platform, landed on hands and knees. Bruise (r) knee - (r) knee problems pre-existing.
## 23704 EE feel on hip while in shower.
## 23705 EE feel that using her wrist and arms repeatly over the years has caused her problems. Injured lt wrist.
## 23706 EE feels burning, itching and stinging on both hands, pain comes and goes.
## 23707 EE feels due to poor computer/desk configuration has caused possible tendonitis of elbow.
## 23708 EE feels injury was caused by repeated typing and writing in a poorly designed workspace
## 23709 EE feels repetitive work has caused pain in left hand.
## 23710 EE feels she has early stages of carpal tunnel syndrome
## 23711 EE feels that constant use of keyboard feels that keyboard caused carpal tunnel syndrome
## 23712 EE feels that she injured her back when she was getting a patient dowm that hung herself.
## 23713 EE feels that this was a flare-up from previous injury that happened on 03 July 2013, while buffering gatehouse in the past. ()
## 23714 EE feels using her wrist & arms repeatly over the years has caused her problem. Injured lt wrist.
## 23715 EE feet got caught in fig tree limbs, he fell cutting his forehead, he unable to catch self due to the fact his hand were full.
## 23716 EE feet slipped on step of transfer but and in attempt to catch himself injured rt shoulder.
## 23717 EE feet slipped while walking down stairs/ injuredface, eyes, nose, wrist & hands
## 23718 EE fel in the parking on her way to he car. Broke lt forearm.
## 23719 EE fell & hit head on door. Bruise to multiple parts above waist
## 23720 EE fell & hurt rt knee while apprehending a suspecwho had a shot gun in his pants. Suspect attemptedto run, officer grabbed supspect and both fell
## 23721 EE fell & twisted ankle. Scraped knee
## 23722 EE fell across top of a visitor's folded stroller injuring left arm, shoulder, upper back, elbow and rt knee.
## 23723 EE fell after a chair rolled from underneath her.
## 23724 EE fell after slipping on wet floor. Injuring rt forearm.
## 23725 EE fell after tripped over floor fan.
## 23726 EE fell against a log while trying to evacuate a camp quickly. Finger jammed
## 23727 EE fell against wire reel and concrete floor whilechecking wire inventory on shelf.
## 23728 EE fell and bruised her rt knee and ankle
## 23729 EE fell and caught herslef with her left hand.
## 23730 EE fell and fractured lt arm
## 23731 EE fell and hit his chest on the side of the truck
## 23732 EE fell and hit his head on door/doorway; laceration above his right eye
## 23733 EE fell and hit the back of her head and right hand on the desk... Right hip bone hurting also
## 23734 EE fell and hit the floor; became nauseated; not sure of injury at time of accident
## 23735 EE fell and hurt left elbow while struggling with an aggressive patient. Contusion to left elbow
## 23736 EE fell and injured her knee
## 23737 EE fell and injured her left foot
## 23738 EE fell and injured her right hand
## 23739 EE fell and injured his back while trying to catcha patient
## 23740 EE fell and injured his knee
## 23741 EE fell and landed on lt elbow and lt knee
## 23742 EE fell and lost his balance falling on buttock
## 23743 EE fell and slipped on a wet floor causing back injury
## 23744 EE fell and slipped on metal object that was attached to floor--striking both elbows and lt knee
## 23745 EE fell and slipped on wet floor injuring his rt shoulder
## 23746 EE fell and struck head on floor
## 23747 EE fell and struck her head on pavement
## 23748 EE fell and struck his rt knee aganist the toilet and floor inside the cell while trying to gain control of an inmate
## 23749 EE fell and tripped while stepping over a curb injuring lt knee
## 23750 EE fell and twisted his lt knee while climbing a ladder
## 23751 EE fell and twisted left ankle.
## 23752 EE fell and twisted rt knee
## 23753 EE fell appox 20-30 ft off rock face and waterfallback began hurting badly
## 23754 EE fell as she approached the steps. She struck her chest on the bottom step and her chin on next step.
## 23755 EE fell as she was getting out of van-broke fall with rt arm and hit left ankle/elbow on van and asphalt
## 23756 EE fell as she was going to printer, and twist left foot/ankle.
## 23757 EE fell as she was walking down stairs. Broke 3 bones in ankle.
## 23758 EE fell as she was walking in the parking lot intowork. Sprained right wrist.
## 23759 EE fell asleep at the wheel and ran off the road striking guardrails on both sides of the road- complaining of headaches and back pain
## 23760 EE fell at front gate from a crack in the pavement
## 23761 EE fell back in chair when after someone had sat in her chair & readjusted it.
## 23762 EE fell back into a chair striking a bookshelf injuring rt shoulder
## 23763 EE fell back trying to sit in desk chair & hit the back of head on desk ()
## 23764 EE fell back when she opened door to the small supply refrigerator.
## 23765 EE fell backward onto steps-bruised lt hand and knee
## 23766 EE fell backwards after falling when her feet slipped out from under her. Injured neck, back.
## 23767 EE fell backwards landing on her buttocks/tailboneon the paved parking lot and hit the back of head on car parked nex to her and twisted foot.
## 23768 EE fell backwards off of the back of a truck.... Injuring his right shoulder, left wrist, and left side
## 23769 EE fell backwards on hand drill while holding mast for weather station, injured shoulder, back.
## 23770 EE fell backwards out of office chair and strainedback
## 23771 EE fell backwards when client jerked away from EE and her rt leg was twisted under her.
## 23772 EE fell backwards while holding the student landing ackwardly on some chairs, strain to lower back
## 23773 EE fell backwards while trying to rise from a wheeled lab chair injuring rt knee
## 23774 EE fell backwards, during stream cleanup, caught balance on object that cut hand-wrist area
## 23775 EE fell between dock and boat getting caught on a line from the boat to dock injury to right side ofbody from ankle to upper arm and chest
## 23776 EE fell causing head to strike floor and bruised lt eye
## 23777 EE fell coming down steps and broke left wrist unknown reason.
## 23778 EE fell coming down steps inside the building injuring left knee and rt arm
## 23779 EE fell coming downstairs across rope blocking stairs. Injury to right wrist
## 23780 EE fell coming into building landing on right knee. **clmt deceased 1-20-2003 as result of lung cancer
## 23781 EE fell doen stairs
## 23782 EE fell doing down stairs as she was leaving work contusion rt elbow & rt thigh
## 23783 EE fell doing floors
## 23784 EE fell down 2 steps leading from dart office to ground-injured right arm
## 23785 EE fell down 3 steps will walking to a table-fractured right foot
## 23786 EE fell down 3 wet steps leading to soap plant. Sustained injuries to both wrists, right elbow and lower back.
## 23787 EE fell down 5 stairs at meck. County courthouse ()
## 23788 EE fell down 6 stairs & landed on lt shoulder/arm & right leg.
## 23789 EE fell down 7-8 steps at rowan co. Courthouse. Injured forehead and knee.
## 23790 EE fell down a few steps in the rear stairwell. Injured left hand & arm.
## 23791 EE fell down a flight of stairs & has pain in left groin & pelvis area.
## 23792 EE fell down a flight of stairs before leaving bldg at the end of the work day - wrenched r wristsprain r ft, battered both knees, abrasion r hand
## 23793 EE fell down a flight of stairs while walking froma business meeting back to her office.
## 23794 EE fell down a flight of stairs. Right shoulder & left elbow.
## 23795 EE fell down a flight of steps contusion left arm & buttocks
## 23796 EE fell down about 4 steps landing on both knees.
## 23797 EE fell down aprox 5 stairs located in plaza outside courthouse. Happened on EE's lunch hour. Scrapped knees & elbow.
## 23798 EE fell down cement steps walking to parking lot, could not get up, emg called and took her to e/r, no fxs,
## 23799 EE fell down embankment during basic law enforcement training. EE slipped while trying to clear brush from embankment.
## 23800 EE fell down flight of stair bruising left arm andwrist.
## 23801 EE fell down flight of stairs after close of courthead, tooth, hand, hip.
## 23802 EE fell down flight of stairs at the sedug conference
## 23803 EE fell down flight of stairs going from office toclerks office. Bruised left hip and tailbone.
## 23804 EE fell down flight of stairs, missed a step - contusion.
## 23805 EE fell down flight of stairs.
## 23806 EE fell down front steps outside building.
## 23807 EE fell down in corridor. Fell on something(piece of banana smeared on floor. Slipped & fell on her hip
## 23808 EE fell down in ditch because ground is not level.
## 23809 EE fell down indoor stairs, injuring head and rt knee ()
## 23810 EE fell down last 3 steps, feet got tangled, landedon knee and elbow.
## 23811 EE fell down loading dock steps at pharmacy
## 23812 EE fell down on bleachers ()
## 23813 EE fell down on low spot and fell on rt shoulder when picking up papers and trash on the site of the road when this accident happened.
## 23814 EE fell down on path going to parking lot. She slipped on wet leaves on stepping stones.
## 23815 EE fell down ouside stairwell causing both knees to swell
## 23816 EE fell down outside steps coming to work
## 23817 EE fell down over some chairs while attempting to subdue an out of control juvenile.
## 23818 EE fell down side steps at security services building. Strained muscles
## 23819 EE fell down some stairs at the chamber of commerce following a meeting of the education committee
## 23820 EE fell down some stairs injuring his lt leg
## 23821 EE fell down some stairs while taking mail to the judge. Injured waist, hip, hand.
## 23822 EE fell down some steps and was transported to hospital by ambulance to raleigh community hosptl.
## 23823 EE fell down some steps. Injured elbow, knee, leg
## 23824 EE fell down staircase ()
## 23825 EE fell down stairs
## 23826 EE fell down stairs and broke his right ankle
## 23827 EE fell down stairs and fractured rt ankle
## 23828 EE fell down stairs and injured left hand
## 23829 EE fell down stairs bruised lt hand and arms and has pain in back
## 23830 EE fell down stairs fx rt shoulder and sprain rt ankle
## 23831 EE fell down stairs in council bldg. Injured knees
## 23832 EE fell down stairs in the back of the building and as she stood up again she slipped and landed with her back against the stairs. ()
## 23833 EE fell down stairs of basement when attempting to retrieve old files for destruction-injury left shoulder blade/lower back
## 23834 EE fell down stairs on left side fracturing arm and breaking glasses
## 23835 EE fell down stairs onto buttocks hands
## 23836 EE fell down stairs when responding code 300 on canada unit
## 23837 EE fell down stairs while light was turned off.
## 23838 EE fell down stairs while returning to file to clerk.
## 23839 EE fell down stairs-headaches/right shoulder/rightarm/back/neck
## 23840 EE fell down stairs. Injury to left ankle
## 23841 EE fell down stairs. Landed on back and butt lt elbow. Elbow felt most pain.
## 23842 EE fell down stairwell
## 23843 EE fell down stairwell where they had installed a new gate. EE opened gate and walked around it but missed footing on first step and slid sideways down the rest of stairs. ()
## 23844 EE fell down stairwell with full doty weight on left wrist.
## 23845 EE fell down steps ()
## 23846 EE fell down steps and fractured her ankle left ankle
## 23847 EE fell down steps and landed face forward on landing hitting her left leg on the corner of the stairs. ()
## 23848 EE fell down steps and severly cut l hand
## 23849 EE fell down steps and sprained ankle her left ankle and foot
## 23850 EE fell down steps and sprained both feet.
## 23851 EE fell down steps and wrapped arm around banisterto catch self.
## 23852 EE fell down steps at police department and hit head
## 23853 EE fell down steps at trailer an fell.
## 23854 EE fell down steps due to missing a step and injured rt hand, lt leg/knee.
## 23855 EE fell down steps in william jones bldg., foot slipped off of the step and foot skidded across the floor causing employee to fall.
## 23856 EE fell down steps injured both arms and right knee
## 23857 EE fell down steps injuring neck, leg & r lower back
## 23858 EE fell down steps injuring rt elbow and rt ankle
## 23859 EE fell down steps leaving from womens hospital & sprained knee/foot & cut foot
## 23860 EE fell down steps of office building while going to meet a cab to go to a doctor's appointment.
## 23861 EE fell down steps on lower back and tail bone
## 23862 EE fell down steps spraining her rt ankle
## 23863 EE fell down steps striking forehead and rt knee
## 23864 EE fell down steps twisting her right foot
## 23865 EE fell down steps when shoe heel caught on step & broke. EE twisted her ankle. EE was leaving for the day. Painful left ankle & foot.
## 23866 EE fell down steps while on her way to a meeting injured arm, knee, and foot on the right side of her body
## 23867 EE fell down steps, EE skipped 1 step due to EE waswearing glasses(cold) & ususally wears contacts - changed her distance perception, lip, leg, ft, ankle
## 23868 EE fell down steps..... Shoulder, neck and back
## 23869 EE fell down the front steps and twisted her ankle
## 23870 EE fell down the narrow, poorly lit back stairs while carrying meeting materials and equipment to her car.
## 23871 EE fell down the stairs in courtroom injuring ankle
## 23872 EE fell down the stairs.. Injured right arm, ear, neck and both legs
## 23873 EE fell down the step and twisted lt ankle and rt knee was bleeding. Fell down the step on a twisted carpet
## 23874 EE fell down the stepps outside & broke lt wrist in 2 places/ strain ankle
## 23875 EE fell down two steps twisting rt foot.
## 23876 EE fell down walking to lunch injuring rt shoulder
## 23877 EE fell down wet stairs in front of building injuring leg and knee. ()
## 23878 EE fell down wet stairs, dislocating rt shoulder
## 23879 EE fell down while trying to defrost a vehicle to return it. Injured head, tailbone, and elbows.
## 23880 EE fell downstairs and bent leg under her. Foot twisted
## 23881 EE fell due to slippery, newly waxed floor at the elevator injuring her knees.
## 23882 EE fell due to some ice on his deck. Injured back, shoulder.
## 23883 EE fell during entry to cooling tower and sprainedwrist
## 23884 EE fell during fitness training to avoid an attacking dog - lower back and left hip
## 23885 EE fell during self defense training.
## 23886 EE fell during train and hurt his hand
## 23887 EE fell face down in the parking lot breaking nose and cutting nose, chin, lip and knees
## 23888 EE fell face down while in the bathroom injuring her rt knee and foot
## 23889 EE fell face first in hall while responding to et call. Upon arrival to pt room, pt attacked EE hitting & kicking EE on rt side. Rt side/lt flank.
## 23890 EE fell face forward on a sidewalk
## 23891 EE fell face forward on the floor. She fell on herhands and knees.
## 23892 EE fell face forward onto knees and hands. Abrased both knees, sore hands and wrists, back and neck
## 23893 EE fell forward on the floor outside of her officeinjuring rt knee as she was away from door. F18 filed.. ..
## 23894 EE fell forward on uneven brick walkway, sprained left wrist.
## 23895 EE fell from 2 step stool while reaching for box at stationery from top of bookcase.
## 23896 EE fell from a 6 foot ladder & injured his right shoulder.
## 23897 EE fell from a groove on indenton in the pavement on the sidewalk.
## 23898 EE fell from a scaffold injurying his back, spleen, chin, ribs--EE is having severe headaches and passing blood
## 23899 EE fell from bike while returning to the office after parking - disloaction of left shoulder
## 23900 EE fell from bobcat nad slipped on ice and injured leg.
## 23901 EE fell from broken chair injuring lt hip and arm.
## 23902 EE fell from chair when EE leaned back to read a report chair fully reclined and broke injury lower back
## 23903 EE fell from chair while reaching for book on shelf.
## 23904 EE fell from chair, as a result losing her balance. Upper/lower back.
## 23905 EE fell from gas vehicle injuring face.
## 23906 EE fell from geni lift approx 15' - possible spinal cord and neck injury
## 23907 EE fell from loading dock while loading a truck. EE stepped backwards off edge as a result of a misstep ()
## 23908 EE fell from steps leaving the courthouse falling to the ground injuring back.
## 23909 EE fell from steps of judges bench injuring lft ankle, lft hand, right side & elbos
## 23910 EE fell from table trying to silence alarm
## 23911 EE fell from the stairs and hit face and knee.
## 23912 EE fell from the stairs of the front of the building.
## 23913 EE fell from trailer steps while loading video equipment for unit volunteer program
## 23914 EE fell from utv tailgate and incurred a laceration on the inside of left arm near his elbow ()
## 23915 EE fell going down stairwell and fractured left ankle.
## 23916 EE fell going down steps out of building. EE has contusion and abrasion to forehead.
## 23917 EE fell going down steps out of parking lot injuring left leg.
## 23918 EE fell going down steps while going to deans office in macneider, broke lt shoulder and trauma to lt side of body.
## 23919 EE fell going down steps.
## 23920 EE fell going into test kitchen. Shoes got stuck on floor & employee fell.
## 23921 EE fell going to park deck scraping right lens of glasses and bruise r cheek and eye lid.
## 23922 EE fell going to the car. Someone had picked EE up and EE went down on rt knee.
## 23923 EE fell going up front steps at ward hall, injured neck, left &rt wrist
## 23924 EE fell going up office steps hitting rt knee
## 23925 EE fell going up outside steps to make dept delivers injuring rt leg and back.
## 23926 EE fell going up stairs
## 23927 EE fell going up stairs.
## 23928 EE fell going up the mailroom steps, rainy weather ()
## 23929 EE fell hit left wrist and elbow on bed trying to separate two students who were fighting
## 23930 EE fell hit the floor, injured knee.
## 23931 EE fell hitting a desk at which time the computer that was on it slid down hitting him on the right cheek
## 23932 EE fell hitting head & knees on floor during the restraint of a student. Mild head contusion & contusion to both knees.
## 23933 EE fell hitting his arm on the dish machine
## 23934 EE fell hitting the hand bar on the school bus when the bus stopped abruptly..... Left leg, right arm, and pain in chest
## 23935 EE fell hurting right arm & shoulder
## 23936 EE fell in a 5 foot hole that was covered by black plastic. ()
## 23937 EE fell in a boat during rough water/high wave
## 23938 EE fell in a hole in the parking lot
## 23939 EE fell in a hole near rjr bldg parking lot injuring ankle.
## 23940 EE fell in a hole walking from one building to another and sprained her rt ankle
## 23941 EE fell in a parking lot injuring her lt arm and nose
## 23942 EE fell in bathroom injury left hand and fingers upper right leg and tailbone
## 23943 EE fell in bed of truck and injured his back and leg
## 23944 EE fell in floor while trying to put patient in pic hold.
## 23945 EE fell in garbage dumpster while unloading garbage from pick up truck and scraped leg.
## 23946 EE fell in grease that had spilled the night before, twisting left ankle ()
## 23947 EE fell in hall on knees ag file # 021061
## 23948 EE fell in hallway coming from the rest room, injuring rt knee & hip. ()
## 23949 EE fell in hallway landing on her rt knee/arm
## 23950 EE fell in hallway near kitchen. Hit head and hip. Scraped arm. ()
## 23951 EE fell in her office
## 23952 EE fell in hole due to poor lighting in parking deck injured left elbow, knee and ankle.
## 23953 EE fell in lobby of weisiger-brown, arriving early for work
## 23954 EE fell in p/lot of bldg blocks daycare.
## 23955 EE fell in parking lot at education building and struck left cheek and chin on pavement
## 23956 EE fell in parking lot behind allman. Injured ankle & leg--rt side.
## 23957 EE fell in parking lot coming into work, bruised rt side, hand and knee
## 23958 EE fell in parking lot en route to her car and bruised rt shoulder
## 23959 EE fell in parking lot injuring her left knee, shoulder, arm, hand and right foot
## 23960 EE fell in parking lot on ice when entering bldg hitting head
## 23961 EE fell in parking lot sprained left ankle.
## 23962 EE fell in parking lot taking work to car to complete at home.
## 23963 EE fell in parking lot when taking picture when his foot hit concrete edge. He fell down & injuredhis right arm and elbow
## 23964 EE fell in parking lot while climbing out of a dump truck injuring his rt arm/elbow
## 23965 EE fell in parking lot while on field trip and cut rt knee
## 23966 EE fell in parking lot while walking to car. Foot caught in pot hole at cherry hospital, royster bld.
## 23967 EE fell in parking lot, twisting right ankle. Swollen.
## 23968 EE fell in parking when entering building landing on back
## 23969 EE fell in play area while supervising children bruised both knees
## 23970 EE fell in puddle of water at walker complex. EE thought she got all of water off floor when mopping floor.
## 23971 EE fell in rain water on her way to a meeting in the winningham bldg. Twisted right knee strained right arm.
## 23972 EE fell in small hole on the playground while interacting with resident. Twisted left ankle
## 23973 EE fell in some water on the floor during a tornado drill. Injured ahnd/knee
## 23974 EE fell in stairwell between second floor and plaza floor twisting ankle
## 23975 EE fell in stairwell fracturing her ankle
## 23976 EE fell in standing water in ladies bathroom ()
## 23977 EE fell in water that was left on floor from cleaning machine as EE was exiting bedroom and slipped and fell injury to left knee cap
## 23978 EE fell in wet spot in hallway. Injury to left knee
## 23979 EE fell injuring her left hip and side
## 23980 EE fell injuring her left knee
## 23981 EE fell injuring his hitting his arm on railing left arm
## 23982 EE fell injuring his lt knee
## 23983 EE fell injuring his right knee while assisting with the apprehension of a suspect
## 23984 EE fell into a 24 ft ditch injurying his back and rt leg
## 23985 EE fell into a hole in the parking lot returning from fire drill
## 23986 EE fell into a low spot in yard injuring rt ankle
## 23987 EE fell into an open basement of an out building injuring neck, arm, back, leg, and shoulder
## 23988 EE fell into center of raised platform of stage during a performance.
## 23989 EE fell into mail tub while loading vehicle, contusion side and ribs
## 23990 EE fell into sinkhole that was covered with pine straw and injured rt knee while performing stream assessments.
## 23991 EE fell into the door when steped on raised floor. Sprained left ankle, cut under left knee cap.
## 23992 EE fell lost footing and fell off a bank
## 23993 EE fell of corner of a ramp, twisting lt ankle
## 23994 EE fell of trailer being pulled by a tractor. Contusion, lower back, sprain/pain, sprained rt foot, muscle spasm & sharp pain in pelvis, back.
## 23995 EE fell off a bike fracturing his clavicle--- (collarbone)
## 23996 EE fell off a cart while driving the cart striking back of head
## 23997 EE fell off a chair while changing clocks that were hung on the wall. ()
## 23998 EE fell off a chair while trying to remove a tail rotor drive shaft from tail boom of a helicopter EE lost balance while stretching hit foot wrong.
## 23999 EE fell off a horse injuring his rt elbow/shoulder
## 24000 EE fell off a ladder and landed on left arm
## 24001 EE fell off a two foot cement wall
## 24002 EE fell off back of tram injuring left hand & knee
## 24003 EE fell off back of truck gate/platform onto gaylord box. Struck box on right side. Fracture, bruise to lower right rib
## 24004 EE fell off back of truck onto tailbone EE is maintenance
## 24005 EE fell off bike when he hit a tree root. EE landed on root with his back.
## 24006 EE fell off boat trailer-rt hand 3 stitches, bruises to rt calf and left leg
## 24007 EE fell off chair
## 24008 EE fell off corner of sidewalk & hit the ground falling on right wrist. *** work 704 852 3123 ****
## 24009 EE fell off curb and lost balance, fell on sidewalk and pavement. EE fractured wrist.
## 24010 EE fell off golf cart and her cart ran over her right foot ()confirmed with wca no lost time.
## 24011 EE fell off golf cart when it overturned, bruisingfigner and thumb.
## 24012 EE fell off golfcart as passenger when driver tooka sharp turn
## 24013 EE fell off ladder while doing work injuring rt knee
## 24014 EE fell off ladder while trying to cross over a picket fence at state fair.
## 24015 EE fell off of a chair she was standing on and strained left knee
## 24016 EE fell off of a ladder....... Injured his lower back
## 24017 EE fell off of a work station. Injured elbow, wrist. Low back, shoulder.
## 24018 EE fell off of back of truck injuring right shoulder and right elbow.
## 24019 EE fell off of dock and landed on back onto unc marine sciences boat. Injuredback/neck.
## 24020 EE fell off of his patrol motorcycle; concussion, contusion; shoulder, hip, face, hands, knees
## 24021 EE fell off of ladder and strained back
## 24022 EE fell off of the back of a truck while unloadinga wheel barrow
## 24023 EE fell off of the tractor when his pant leg got caught on the clutch pedal
## 24024 EE fell off of truck while trying to clean top of dumpster-injuring rt back, hip and legs
## 24025 EE fell off platform and hit the ground while participating in a training excercise.
## 24026 EE fell off running board of frame injurying knee.
## 24027 EE fell off scaffold and broke left foot. **statutes has expired for any future ttd benefits
## 24028 EE fell off scaffold injuring rt ankle and left elbow
## 24029 EE fell off sidewalk while snapping pictures of flowers in front of the building, she was walking backwards and landed on her right hip
## 24030 EE fell off stage because of darkness injury to right knee
## 24031 EE fell off stairs injuring her right hand, both knees and legs
## 24032 EE fell off stool when attempting to sit down; stool rolled out form under her. ()
## 24033 EE fell off stool when reaching for bulletin boardonto lt hip and ankle
## 24034 EE fell off stool while reaching for files on top of filing cabinet, fell back towards hit arm on doorway.
## 24035 EE fell off the back of a stage when she moved herchair. Landed on her head, causing a concussion &brusing her back.
## 24036 EE fell off the climbing wall while demonstrating a simulating a practice fall ()
## 24037 EE fell off the curb while moving a refridgerator, contusion left lower leg
## 24038 EE fell off the forks of the fork lift.
## 24039 EE fell off the front bumper of the truck. Rt handwas caught in the engine, and his middle finger was cut.
## 24040 EE fell off the stool, moderate swelling on r sideof head.
## 24041 EE fell off top of van while loading backpacks. Whilr strapping jacks down board broke landing on edge of truck. Fine line rib fracture & bruises
## 24042 EE fell on a floor injurying his back while tryingto get away from a pt who attemped to attack him.
## 24043 EE fell on a fresh waxed floor striking lt hip andelbow against a door frame
## 24044 EE fell on a magnolia burr while on the way to a client meeting and twisted ankle/bruied knee.
## 24045 EE fell on a nail that was being used as a weapon. Injury to left hand
## 24046 EE fell on a patch of ice coming into the buildingthis morning. Abrasions left wrist and elbow, fracture of left toe.
## 24047 EE fell on a raised portion of the sidewalk.... Injuring her left arm/elbow and right knee
## 24048 EE fell on a ramp injurying his lt arm, shoulder, and neck.
## 24049 EE fell on a rocky terrain while fighting a fire injured his back
## 24050 EE fell on a slippery floor while talking with an instructor in the diesel shop
## 24051 EE fell on a wet floor injuring his rt foot
## 24052 EE fell on a wet/wax floor w/o sign being displayed. Injuring back and groin area.
## 24053 EE fell on an icy pathway while taking a shortcut into work. Injured back & side.
## 24054 EE fell on an uneven pavement injuring her rt knee
## 24055 EE fell on an uneven sidewalk injuring his rt knee
## 24056 EE fell on anuneven sidewalk leaving work
## 24057 EE fell on back of stairs of bynum hall and hit head concemt wall.
## 24058 EE fell on back while playing basketball. He jumped to block a shot.
## 24059 EE fell on bathroom floor in clients room hitting head.
## 24060 EE fell on black ice when crossing street. Scrappedand bruised r palm and r wrist.
## 24061 EE fell on black ice. Landed on her back, heard a pop. Sprained right leg, strained back and neck
## 24062 EE fell on both knees and hands
## 24063 EE fell on brick outside of student union injuringarm, elbow and wrist
## 24064 EE fell on bricks that were not leveled injuring both knees
## 24065 EE fell on broken exhibit and hit head, shoulder on rock work.
## 24066 EE fell on buttocks while participating in ropes course
## 24067 EE fell on carpet in atkins building bruising leftknee
## 24068 EE fell on cement due to slipping on gravel at thecollege. Hard blow to the back of right hand.
## 24069 EE fell on chair under patient when assisting w/ placing patient in nci hold. Out of work 5 days.
## 24070 EE fell on concrete steps and struck chin on step jarring head, cut left hand and knees
## 24071 EE fell on concrete walk while returning from chkng the mail- scraped her l hand, l foot, and ankle
## 24072 EE fell on concrete while running after an inmate injurying lt knee and back
## 24073 EE fell on concrete while trying to subdue an inmate.
## 24074 EE fell on cracked protruding cement in the side-walk while walking back from mem. Bldg
## 24075 EE fell on cracked sidewalk and injured left palm of thumb
## 24076 EE fell on debris in the parking lot & hit her face on the side of her car, breaking her nose, lacerating her face & causing a leg contusion
## 24077 EE fell on deck of patrol boat while in the process of posting signs... Left ankle
## 24078 EE fell on dishroom floor due to wet tiles, land- ing on rt side.
## 24079 EE fell on envelopes on the floor during mail opening at our raleigh service center training area.
## 24080 EE fell on floor in dining hall. Injured head.
## 24081 EE fell on floor mat exiting the building causing knee contusion
## 24082 EE fell on floor that was extremely slippery at the elevators.
## 24083 EE fell on floor while mopping injuring her lt knee
## 24084 EE fell on frozen rocks and got hand lodged between rocks.
## 24085 EE fell on gravel while trying to break up a fight and strained back
## 24086 EE fell on hip due to ice on a sidewalk-pain in back and neck.
## 24087 EE fell on his knee while struggling with subject he was arresting/sprain right knee
## 24088 EE fell on his left knee while teaching
## 24089 EE fell on his left right hand while he was unrolling mats
## 24090 EE fell on his rt arm while avoiding a fox that was released from unlawfully set trap
## 24091 EE fell on ice and broke left hip
## 24092 EE fell on ice and hit her left shoulder and left side of her leg
## 24093 EE fell on ice and injured her left knee and buttocks
## 24094 EE fell on ice and twisted ankle returning to garage after assisting stuck patrol car in distric3 parking lot
## 24095 EE fell on ice at camp activity ()
## 24096 EE fell on ice contusion to back
## 24097 EE fell on ice covered trail; attempted to controlwhen she received injury to right lower abdomen
## 24098 EE fell on ice getting to car. Hurting her foot, knee, and ankle.
## 24099 EE fell on ice in front of ice plant while loadingsupplies for kitchen to van. Injured shoulder, elbohand, wrist, hip.
## 24100 EE fell on ice in p/lot getting into car to leave work.
## 24101 EE fell on ice in parking lot and hit head on concrete.
## 24102 EE fell on ice in parking lot walking to back of prison bus to unclock door. Back of neck.
## 24103 EE fell on ice in parking lot. Bruised right hip
## 24104 EE fell on ice in parking lot. Injured knee.
## 24105 EE fell on ice in the parking lot while entering the building to report for work. Injured knee, elbow
## 24106 EE fell on ice injuring her left shoulder and hip
## 24107 EE fell on ice patch on breezway bruised lf wrist.
## 24108 EE fell on ice returning to south building from trailer #41
## 24109 EE fell on ice walking from car to bldg.
## 24110 EE fell on ice when loading car to leave for clinic
## 24111 EE fell on ice when she was exiting a building a to go home and fell on rt side.
## 24112 EE fell on ice when walking into work. ()
## 24113 EE fell on ice. Full body weight on lt elbow.
## 24114 EE fell on icy sidewalk on her way to work... Knee
## 24115 EE fell on icy stairs, chipping tailbone
## 24116 EE fell on icy steps while reporting to work, front entrance - sontusion to rt knee
## 24117 EE fell on icy stiars, sprain right wrist, bruisedback, left knee and ankle
## 24118 EE fell on icy street while walking from vehicle to bldg
## 24119 EE fell on l knee when putting pt on floor
## 24120 EE fell on l shoulder when electric wheelchair pushed her into wall and knocked her off her feet
## 24121 EE fell on last two staris-rt leg swollen, left ankle twisted
## 24122 EE fell on left hip while carrying trash to dumpster. EE landed hard on concrete.
## 24123 EE fell on left knee during "pic" incident with patient.
## 24124 EE fell on left knee during pit incident
## 24125 EE fell on left knee when trying to assit a agitated client
## 24126 EE fell on left knee while assisting a client
## 24127 EE fell on loose gravel in parking lot, hit head and paving. Injured hand, knee, head, nose(fracture).
## 24128 EE fell on loose gravel on roadway - north side ofkennedy-abrasion to lt arm.
## 24129 EE fell on loose gravel..... Her head went into thebuilding...... Head & right hand
## 24130 EE fell on microphone pack and bruised lt rib
## 24131 EE fell on parking deck of courthouse. Deck was covered in ice and snow. Injury to right arm
## 24132 EE fell on paved parking lot at federal building while pursuing a juvenile that escaped from securecustody.
## 24133 EE fell on pavement and injured left foot, right shoulder, wrist and knee
## 24134 EE fell on pavement due to ice head and back
## 24135 EE fell on porch while walking to probation resident striking her knee and injurying her forehead
## 24136 EE fell on raised cement.
## 24137 EE fell on ramp... Right hand... Wrist?
## 24138 EE fell on right ankle while demonstrating a practical.
## 24139 EE fell on right knee while taking probationer to the ground to be handcuffed.
## 24140 EE fell on right knee while trying to close door on tower 7 during a hail storm
## 24141 EE fell on right knee while trying to put a patient in seclusion.
## 24142 EE fell on right leg, but caught herself with her right hand
## 24143 EE fell on right shoulder walking across kitchen floor.
## 24144 EE fell on right shoulder while participating in in-service ground fighting training
## 24145 EE fell on right wrist injury sprained
## 24146 EE fell on rt hip while walking quickly in hallway to restroom
## 24147 EE fell on rt knee while holding client who was agitaed
## 24148 EE fell on rt knee while patrolling
## 24149 EE fell on rt knee while trying to put patient in therapeutic hold -contusion to rt knee
## 24150 EE fell on side walk while walking. Caused small abrasions on jaw, elbow & shoulder (right)
## 24151 EE fell on sidewalk and hurt left knee, elbow, shoulder, hip and ankle; right foot jammed, scrapped knee
## 24152 EE fell on sidewalk breaking a bone in her left hand
## 24153 EE fell on sidewalk exiting stairs from parking lot injuring chin, knee and rt hand
## 24154 EE fell on sidewalk twisting left ankle
## 24155 EE fell on sidewalk while getting files from veh for use in teaching a class injuring rt foot and toes.
## 24156 EE fell on sidewalk while going across the street from worksite to pick up a replacement id badge from facility svcs. Fell on right knee.
## 24157 EE fell on sidewalk while returning to work. Injured rt foot.
## 24158 EE fell on sidewalk while stepping up on curbside to entrance of building. ()
## 24159 EE fell on sidewalk with both hand and knee. EE hurt her right hand and her back
## 24160 EE fell on sidewalk, scrapping left leg and both hands/superficial abrasions
## 24161 EE fell on sidewalk; struck her foot on broken pitted sidewalk; injured both knees, palms, bruised left elbow, bruised right breast
## 24162 EE fell on slick floor trying to assist in a restraining a resident. Injured knee.
## 24163 EE fell on slippery floor and injured his left knee
## 24164 EE fell on slippery floor while trying to unstop clogged drain.
## 24165 EE fell on slippery stairs
## 24166 EE fell on slippery walkway in frt of bldg and landed on buttock.
## 24167 EE fell on snow and ice outside while taking out trash. EE injured l hand, l wrist, l elbow, l knee
## 24168 EE fell on snow and ice when trying to get to office
## 24169 EE fell on some water that was on the cafeteria floor.
## 24170 EE fell on stair steps. Sm laceration of knee scrape on rt skin area between thumb & forefinger lft hand
## 24171 EE fell on staircase, used hand to break fall injured right wrist.
## 24172 EE fell on stairs & landed on her left side, twisted her ankle & hit her thigh & elbow
## 24173 EE fell on stairs (wet leaves) injuring left hand & knee. Swelling around thumb of left hand.
## 24174 EE fell on stairs - dislocated 5th didgit rt hand
## 24175 EE fell on stairs and injured right hand and ankleon 12/2 EE was replacing paper in copier and reinjured hand on equipment.
## 24176 EE fell on stairs and twisted right ankle
## 24177 EE fell on stairs going to mail
## 24178 EE fell on stairs injuring her lt arm and both shoulders
## 24179 EE fell on stairs outside building injuring left knee.
## 24180 EE fell on stairway which was wet when EE was leaving building. Bruised left knee, hip, shoulder, slight abrasians to hands.
## 24181 EE fell on step and injured back
## 24182 EE fell on step while trying to catch patient. Injured ankle.
## 24183 EE fell on steps and injured her right leg, hip, and ankle
## 24184 EE fell on steps between 1st and 2nd floors. She missed a step and fell forward and to the left.
## 24185 EE fell on steps between first and second floors.
## 24186 EE fell on steps bracing fall with left side.
## 24187 EE fell on steps coming out of personnel office. Steps were very wet and floor was slippery.
## 24188 EE fell on steps in brooks hall basement. The lights were not on and the hallway was very dark. ()
## 24189 EE fell on steps in front of entrance of building injuring left eye.
## 24190 EE fell on steps landing on rt foot/ankle/heel
## 24191 EE fell on steps while removing bicycle from storage area laceration to legs and wrist.
## 24192 EE fell on steps, striking knees on marble steps and catching self on hands
## 24193 EE fell on the floor twisting back while pushing a riser under the counter in the sinkroom. Strained low back
## 24194 EE fell on the floor while attempting to sit back in chair... Lower back
## 24195 EE fell on the floor while performing defensive tactics technique and dislocated left shoulder
## 24196 EE fell on the floor while restraining student- inj rt shoulder - salary continuance EE pl atty- t. Taft***EE rec'd prior 5% ppd/Dr Parent
## 24197 EE fell on the floor while running after a resident. Right hip pain
## 24198 EE fell on the ice when moving from the dock to the ice covered estuary injured left ankle and leg
## 24199 EE fell on the tile floor of the lounge in the lobby, as she was attempting to carry a small table from the lobby to conference room.
## 24200 EE fell on the wet floor outside of the elevator
## 24201 EE fell on tile floor in lobby, injuring left ankle, rt knee and rt hip
## 24202 EE fell on to floor hitting his right knee while trying to restrain a student
## 24203 EE fell on unclean floor injurying unspecified hipunsure if EE tripped or slipped on floor
## 24204 EE fell on uneven pavement in parking lot and injured her thumb and knee. EE did not have any lost work days.
## 24205 EE fell on uneven sidewalk in washington dc returning from a meeting on capital hill and going to hotel. Injured finger, hand thigh.
## 24206 EE fell on very old stairs while preparing to file injuring left knee.
## 24207 EE fell on walkway and fell on right hand that wasoperated on 062003, also twisted her ankle
## 24208 EE fell on wet floor
## 24209 EE fell on wet floor and injured back, head, and arm
## 24210 EE fell on wet floor and there were no wet floor signs. Fell going to work.
## 24211 EE fell on wet floor going down hall-way after being mopped up front in administrative area. No wet floor signs were out. Twisted left leg &ankle
## 24212 EE fell on wet floor injuring head (struck the wall), neck, shoulder, right hip, and left knee
## 24213 EE fell on wet floor injuring left knee
## 24214 EE fell on wet floor injuring wrist, hip, elbow.
## 24215 EE fell on wet floor on admin wing at whitaker school, EE fell on rt knee, wrist(hand).
## 24216 EE fell on wet floor while mopping it. Injured fingers.
## 24217 EE fell on wet floor while trying to restrain patient. Injury to rt knee
## 24218 EE fell on wet floor, fell on my back and rt side injuring rt elbow and arm.
## 24219 EE fell on wet floor- no wet floor sign ()
## 24220 EE fell on wet floor. Cracked knee in 3 places. Surgery refused.
## 24221 EE fell on wet floor; there were no signs; injured left knee
## 24222 EE fell on wet grass and twisted left ankle.
## 24223 EE fell on wet grass on incline and fell on back.
## 24224 EE fell on wet metal stairs... Contusion of coccyx
## 24225 EE fell on wet sidewalk; injured left leg
## 24226 EE fell on wet spot on floor on both hands & kneesinjured hands & knees.
## 24227 EE fell on wet stairs injuring lower back and tailbone
## 24228 EE fell on wooden sidewalk injured her upper arm left shoulder near collar bone
## 24229 EE fell on wrist while going out to state van right wrist
## 24230 EE fell on wrist while preparing food.
## 24231 EE fell onto floor, while escorting pt to timeout. Right elbow/knee/hip.
## 24232 EE fell onto his right knee and elbow after stepping off a change elevation of sidewalks on waterside of building ()
## 24233 EE fell onto sidewalk injuring her left hand, and thumb
## 24234 EE fell out of a chair. ..
## 24235 EE fell out of aircraft pulling a muscle in his rt groin area
## 24236 EE fell out of broken chair and strained back
## 24237 EE fell out of chair and hit floor hitting back and leg.
## 24238 EE fell out of chair and struck elbow against pipe
## 24239 EE fell out of chair in her cubicle; injured right shoulder/back
## 24240 EE fell out of chair while talking on the phone rt knee/ankle
## 24241 EE fell out of golf cart and fell face down on sidewalk.
## 24242 EE fell out of golf cart and hit right side of face on parking lot pavement.
## 24243 EE fell out of golf cart at EE picnic at bermuda run course. Chest and ribs
## 24244 EE fell out of his chair three times during the course of the hearing and at least one of the times he hit the wall. ()
## 24245 EE fell out of passenger side of state veh
## 24246 EE fell out of roller chair bending down to pick up something and injured left shoulder and leg
## 24247 EE fell out of the chair and hit the floor.
## 24248 EE fell out of tree. Back and neck.
## 24249 EE fell outside aiken building on cracked pavementmutiple injuries occurred-infraorbital superficialabrasion-right upper lid v-shaped laceration
## 24250 EE fell outside building 44 hurt hand, leg, foot, and ankle.
## 24251 EE fell outside on wet pavement. EE was carrying boxes.
## 24252 EE fell over a box while carrying a box injuring his rt leg
## 24253 EE fell over a dolley and injured her lower back, hip and left knee
## 24254 EE fell over a walker as EE was moving it to make path safer for participant from in front of a firedoor; injury right elbow, head, and lt knee.
## 24255 EE fell over an open drawer.... Injured both legs, shoulder
## 24256 EE fell over bicycle rack on a dark, rainy night. Sprain to right elbow
## 24257 EE fell over boxes
## 24258 EE fell over briefcase left in floor. Fell to floor face down. Knee was hit on floor. Eyeglassescut face.
## 24259 EE fell over carpet and injured wrists and right ankle
## 24260 EE fell over concrete packing bumper in parking lot
## 24261 EE fell over floor mat and injured her left knee
## 24262 EE fell over her draw, and landed on her left knee.
## 24263 EE fell over mop landed on rt elbow against wall.
## 24264 EE fell over pipe and hit EE on head and rt shoulder- laceration to rt forhead and contusion of rt shoulder.
## 24265 EE fell over raised door mat when entering bldg injuring chest, arms, left ankle & upper thigh
## 24266 EE fell over students foot, injuring her back
## 24267 EE fell over typewritter cord and injured wrist, shoulder, lt arm.
## 24268 EE fell over weight bench and injured her back
## 24269 EE fell over wet mat in front of door injured right shoulder
## 24270 EE fell ramming his elbow into his rib cage... Bruised only
## 24271 EE fell several times injuring her knees while performing therapeutic holds on a dummy
## 24272 EE fell spraining her left ankle, hairline fx lefthip and tendon in left shoulder
## 24273 EE fell stepping up onto curb. Fracture lt foot.
## 24274 EE fell stricking her forehead against the wheel well causing a laceration
## 24275 EE fell through a step while conducting a migrant housing inspection in robeson county. The step broke when EE stepping down-appox. 1ft.
## 24276 EE fell to a mat and dislocated his lt shoulder during staged cell extraction f18 filed
## 24277 EE fell to floor when using her rolling office chair to get from the computer to opscan machine. ()
## 24278 EE fell to floor while attempting to restrain a violent inmate landing on rt shoulder and also injury his back in fall. Injury to shoulder & back
## 24279 EE fell to floor while trying to remove patient from another EE, pt & other EE fell onto this EE.
## 24280 EE fell to ground and 2nd trainee fell on top him
## 24281 EE fell to ground striking face, rt hand, and lt knee
## 24282 EE fell to ground while trying to restrain juvenile and bruised both knees
## 24283 EE fell to his (right) knee during cpi physical intervention ()
## 24284 EE fell to the floor and landed on face after donating blood.
## 24285 EE fell to the floor as a result of an emt that had fallen on the wet floor as he came in due to an emergency.
## 24286 EE fell to the floor injuring his left elbow
## 24287 EE fell to the floor to prevent two juveniles from fighting .
## 24288 EE fell to the floor when he interferred in an altercation between two patients... Right arm
## 24289 EE fell to the floor while trying to place patientin pt hold and elbow struck floor. And patient fell on top of EE.
## 24290 EE fell to the ground attempting to take cover from gun fire. ()
## 24291 EE fell to the ground injuring her left ear, shoulder, hand and knee
## 24292 EE fell to the ground stepping off top step from trailor.
## 24293 EE fell to the ground to avoid getting hit by a truck door the wind was slamming shut.
## 24294 EE fell to the ground while to stop a fight injur-ing his elbow.
## 24295 EE fell to the ground, struggling with suspect, eestruck his left knee on the pavement/contusion to left knee
## 24296 EE fell trying to attach the boat trailer to the back of the tour vehicle; injured his left forearm
## 24297 EE fell trying to get to a resident whowas having a seizure. Tried to catch herself using her lt arminjuring lt shoulder.
## 24298 EE fell twice on snow in sidewalk injuring rt side and back and hips
## 24299 EE fell twising his rt ankle
## 24300 EE fell up entering bldg, attempted to stand up and fell again.
## 24301 EE fell up stairs outside the mail room.
## 24302 EE fell up steps of f, landed on knees ()
## 24303 EE fell up steps. Right shoulder and knee.
## 24304 EE fell upstairs and twisted her rt foot/ankle.
## 24305 EE fell walking down steps which were ice and snowcovered. Left thumb, right side and back.
## 24306 EE fell walking down the stairs coming out of worklocation, she grabbed the hand rail & there was a sharp pain in her left hand and wrist.
## 24307 EE fell walking down the steps of u1 bldg ()
## 24308 EE fell walking from classroom to parking lot and fracture right foot
## 24309 EE fell walking from projection booth into anotherroom - heel of shoe got caught on step of staircase - broken rt foot
## 24310 EE fell walking in hallway
## 24311 EE fell walking to car, stepping off curb
## 24312 EE fell when EE's foot got caught on the floor mat rug as EE was leaving the courthouse EE fell forward and landed on EE's knees
## 24313 EE fell when a broken chair she was sitting in gave away causing back and neck pain
## 24314 EE fell when coming out of bathroom during bathingof patients. Struck lt shoulder on floor. Did not strike head.
## 24315 EE fell when getting up off commode. Her right leggave way causing her to fall. Left foot sprain
## 24316 EE fell when he stepped on ice; hurting his left arm and shoulder
## 24317 EE fell when patient fell while EE was cleaning pt - EE hit wrist on metal part of bed
## 24318 EE fell when she was attempting to stop a fight between two patients... Right leg
## 24319 EE fell when starting down stairs falling on lower back
## 24320 EE fell when stepping off curb. Injured left foot, head, both knees.
## 24321 EE fell when the chair that he was sitting in broke... Injured left elbow
## 24322 EE fell when trying to retrieve a steering ball that fell off and ind. W/c
## 24323 EE fell when walking across parking deck covered with ice and snow.
## 24324 EE fell while attepmt to move self & safety line next to tie in point. Mulitpe injuries to ribs, hip, leg & lung.
## 24325 EE fell while bending down to keep resident's head from touching floor
## 24326 EE fell while bowling at bowling alley for apprec-iation week. A party was given for the all of the employees at combined records.
## 24327 EE fell while bringing in the mats
## 24328 EE fell while carrying nitogen tank on uneven terrain - neck and back
## 24329 EE fell while chaperoning a ski trip
## 24330 EE fell while checking building on steps outside our academic bldg. Lt knee, rt hand/wrist.
## 24331 EE fell while climbing into truck. Rt. Foot slippedoff & he fell on left shoulder
## 24332 EE fell while climbing stairs to her office. Contusion to right ankle
## 24333 EE fell while climbing the steps on the deck at the rear of building.
## 24334 EE fell while collecting samples in ocean and cut his right hand on oyster shell
## 24335 EE fell while coming down stairs & caught herself with her left hand
## 24336 EE fell while coming into doorway in front of student ctr bldg.
## 24337 EE fell while crossing parking lot causing bruise and lacerations on rt knee and rt wrist, soreness in back and jaw
## 24338 EE fell while desending the outside steps of the gh leslie building.
## 24339 EE fell while entering building and injured rt knee
## 24340 EE fell while entering the workforce. Gripped on raised area of sidewalk behind cooper building.
## 24341 EE fell while getting into service van landing on lt hand
## 24342 EE fell while getting on handicap lift **iw has already rec'd 3-days of wp- due 4/7 wk wp
## 24343 EE fell while going down a staircase ()
## 24344 EE fell while going downstairs at work and broke his left foot
## 24345 EE fell while going up steps injuring hands and wrist
## 24346 EE fell while going up the steps.... Left wrist andhand *er- 252-492-2061 x 3469**
## 24347 EE fell while he was pursuing a suspect on foot.
## 24348 EE fell while helping client
## 24349 EE fell while helping client in bathroom and injured rt hip
## 24350 EE fell while lifting heavy boxes - sprained left knee
## 24351 EE fell while loading on a van injuring rt wrist
## 24352 EE fell while loading stroller onto tram-foot got caught in chair-fell scraping both knees
## 24353 EE fell while moving a recliner ()
## 24354 EE fell while moving heavy boxes and injured her right knee, right wrist, and right shoulder
## 24355 EE fell while moving truck of boxes.
## 24356 EE fell while on a foot chase
## 24357 EE fell while participating in a game and hit chest on tree stump
## 24358 EE fell while performing a carry in nci training went down on the knee
## 24359 EE fell while playing football with clients and injred shoulder. Ac strain
## 24360 EE fell while putting patient in prone pr.
## 24361 EE fell while putting patient in restraints and injured leg.
## 24362 EE fell while responding to assist another staff member--received a scrape to lt elbow and lt knee
## 24363 EE fell while restraining patient and hit his leg against couch. Abrasion rt leg.
## 24364 EE fell while running and struck head on floor
## 24365 EE fell while shoveling ice and snow from walks in the park-injuring left hip
## 24366 EE fell while standing in chair putting up decorations on bullentin board. Injured hand and abdomen.
## 24367 EE fell while standing. EE fell on buttocks and back.
## 24368 EE fell while stepping onto the sidewalk. EE says she couldn't see. EE injured her left wrist, treated at lmh er
## 24369 EE fell while stepping over curb. Contusion to left knee.
## 24370 EE fell while stripping floors and hurt r wrist
## 24371 EE fell while trying restrain a juvenile, on his arm causing the injury to EE 's lt arm.
## 24372 EE fell while trying to asst with resident. Injured rt shoulder.
## 24373 EE fell while trying to catch hold of two students who were fighting
## 24374 EE fell while trying to pick up her jacket and strained back
## 24375 EE fell while walking
## 24376 EE fell while walking across 6th floor while walikng around trash cart.
## 24377 EE fell while walking across campus - broke bone on ankle
## 24378 EE fell while walking down hall doing partial splint on floor and injuring back. Atty: holly cutler
## 24379 EE fell while walking down some stairs injuring lt ankle
## 24380 EE fell while walking down stairs
## 24381 EE fell while walking down stairs. Injured left leg, right ankle, and back
## 24382 EE fell while walking down steps injuring rt shoulder, arm hand
## 24383 EE fell while walking down the steps at the back door entrance of building #165.
## 24384 EE fell while walking from car to building 165. EE stepped on the curb and then stepped down onto the uneven sidewalk/parking lot and fell. ()
## 24385 EE fell while walking from housing unit injuring rt thigh and kneecap-EE is pregnant
## 24386 EE fell while walking in a wet carpet... Injuring her buttocks and right forearm ()
## 24387 EE fell while walking in frt of building-stepped on rock injuring left rib
## 24388 EE fell while walking in hallway to lock the elevator and doors
## 24389 EE fell while walking in work area-injured back and knee.
## 24390 EE fell while walking on sidewalk outside building
## 24391 EE fell while walking on the brick sidewalk in front of building and landed face down on the parking lot pavement, before falling onto back while right foot twisted & remained on the bricks. ()
## 24392 EE fell while walking over plowed field on her property. Fracture left fibula
## 24393 EE fell while walking through courtroom. Fall caused EE to sprain her right ankle
## 24394 EE fell while walking to office; injured right knee & lower body
## 24395 EE fell while walking to the parking lot for a fire drill; injured left palm, knees cut, fractured arm
## 24396 EE fell while walking up the stairs, trip and jammed finger on railing
## 24397 EE fell while walking up the steps.. Knees and right hand
## 24398 EE fell while working with a screwdriver injuring his elbow and arm
## 24399 EE fell, tripping out of car in handicap lot--- injured left 2nd toe
## 24400 EE fell---landed on butt. Injuring buttocks and tailbone.
## 24401 EE fell... Cut above eye, right arm
## 24402 EE felled and injured his rt eye on a concrete paving while running after an inmate
## 24403 EE felled and twisted her back while assisting with an agressive pt.
## 24404 EE felled off boat trailer while loading boat
## 24405 EE felled on uneven pavement while going to the atm machine
## 24406 EE fellon icy pavement in extension center parkinglot while working.
## 24407 EE felt a deep pain in low back as she lifted up bottom part of seat in van.
## 24408 EE felt a loud pop and went to take another step and felt a sharp pain around her lower back and hiprea
## 24409 EE felt a pain in left back side of neck, it was sore the reminder of the day by friday night EE was unable to move head and neck.
## 24410 EE felt a pop between her elbow and shoulder while bathing a client. ()
## 24411 EE felt a pop in her lower back after placing clients feet on the bed.
## 24412 EE felt a pop in her lt knee while loading a dryer
## 24413 EE felt a pop in left knee while going up steps.
## 24414 EE felt a pop in lower back when helping a pt to commode. Pain was then felt on the lumbar area five minutes afterwards
## 24415 EE felt a pop in lt hip while operating a floor scrubber
## 24416 EE felt a pull in back while assisting client in changing clothes.
## 24417 EE felt a pull in her left shoulder while moving a client from the wheelchair to the bed.
## 24418 EE felt a pull in her neck and back after bathing and dressing a client. EE seen in er taken out of work for 7 days, she returned to work on 9/27/09 ()
## 24419 EE felt a pull in lower stomach while transferringa non-compliant client from wheelchair to toilet stool.
## 24420 EE felt a pull in rt knee while performing lift in new employee nci class.
## 24421 EE felt a pulling pain in right shoulder and developed a bump on left mid shin, while doing the behavior intervention
## 24422 EE felt a sharp object in thumb after lifting a broom.
## 24423 EE felt a sharp pain in her left rib cage and could not move her left arm. Pain radiated to her back and right side... Chest wall pain
## 24424 EE felt a sharp pain in her neck and shoulder while placing a client in her seat.
## 24425 EE felt a sharp pain in lower back while getting trash bags.
## 24426 EE felt a sharp pain when turning a patient
## 24427 EE felt a sharp pain/snap in back of right calf while running down floor at practice. Achilles tendon rupture.
## 24428 EE felt a sharp stabbing severe pain in spine whilbuttoning clients blouse. Back strain and possiblegroin strain.
## 24429 EE felt a stinging pain in his rt ring finger while doing pushups during training from a spider bite. Finger became swollen & blistered.
## 24430 EE felt acute pain in rt shoulder/low back after lifting/transfering patient from chair to bed *iw overpaid 963. 72 due to child support not paid*
## 24431 EE felt an electrical shock when he put his hand on the control panel. EE's palm of hand was exposed to metal piece surrounded by rubber
## 24432 EE felt and or heard pop in left shoulder when struggling with a combative patient. Left shouldersprain
## 24433 EE felt arm sore kept getting worse and told supervisor. He was aerating the north side of mendenhall putting out grass seed. ()
## 24434 EE felt back pain while walking down the stairs carrying a scaffold holding back end while another person carried the front end
## 24435 EE felt bit to top of left foot-looked down & saw bug on top of foot
## 24436 EE felt bite or sting on back of right middle hamstring doing safety check
## 24437 EE felt burning in rt wrist resulting from repetitive motion of cage changing
## 24438 EE felt catch in her back while putting a towel on shelf in linen room. Lumbosacral strain.
## 24439 EE felt chest pains while installing sensors above ceiling in duct work
## 24440 EE felt discomfort after assisting patient off of the floor.
## 24441 EE felt discomfort in her shoulder and that her rtwrist was swollen. EE stated that she felt that this was a result of testing tech. On previous frida
## 24442 EE felt dizzy went to put her head in her hands to rest & passed out. She woke up on the floor with nurses & residents surrounding her.
## 24443 EE felt faint and passed out hitting head on scalecutting rt eye lid.
## 24444 EE felt faint on her way to the bathroom and fell injuring her rt knee, eye, knot on forehead
## 24445 EE felt faint, laid on floor to prevent further injury, tried to move to new location, but was unable to move very far ()
## 24446 EE felt faint, sat on bridge deck, fainted, fell hitting head ()
## 24447 EE felt itching on left shoulder
## 24448 EE felt light headed & temp. Passed out & fell on the floor face down, cut his eye with his glasses.
## 24449 EE felt lightheaded and fell backwards bruising left elbow and upper arm
## 24450 EE felt numbness and tingling in both toes when pusjing a ground truck.
## 24451 EE felt overwhelmed based on supposed undue harassment from the administration of er. Complains of having trouble sleeping/enjoying his family
## 24452 EE felt pain after unarmed self defense training treating phy- Dr Karan- nlt
## 24453 EE felt pain and stiffness in rt arm from emptyingdirty trays into garbage disposal
## 24454 EE felt pain in back after lifting client from toilet.
## 24455 EE felt pain in back after repositioning a residnt
## 24456 EE felt pain in back while assisting client
## 24457 EE felt pain in back while changing patient bed sheets.
## 24458 EE felt pain in back while lifting resident from wheelchair to changing table
## 24459 EE felt pain in chest at home in the evening afterlifting client at work that afternoon.
## 24460 EE felt pain in her back when she slid a box of files across the floor.
## 24461 EE felt pain in her back while bending over.
## 24462 EE felt pain in her back while repositioning a client in the bed.
## 24463 EE felt pain in her lower back after lifting an armful of sheets out of box.
## 24464 EE felt pain in her wrists and neck after pulling up the rails on crib bed. Rails were very hard to pull up.
## 24465 EE felt pain in hip while struggling with client during therapeutic escort.
## 24466 EE felt pain in his lt leg while working
## 24467 EE felt pain in left and right arms, wrists, hands, and fingers while typing emails to students.
## 24468 EE felt pain in left eye progress more over a few days.
## 24469 EE felt pain in left hip after running sprints.
## 24470 EE felt pain in left wrist and lower arm, continued for a few days. Developed from repetitive motion of cage changing.
## 24471 EE felt pain in left wrist just developed and progressively gottent worse.
## 24472 EE felt pain in low back while lifting crate of milk.
## 24473 EE felt pain in lower back after lifting equipment
## 24474 EE felt pain in lower back and hip area. Helping pull resident up in bed
## 24475 EE felt pain in lower back and leg after getting out of car-earlier had lifted a 65 lb concentrator
## 24476 EE felt pain in lower back when EE attempted to clean resident.
## 24477 EE felt pain in lower back while helping a patientfrom the floor w/asst w/ another staff member.
## 24478 EE felt pain in lower back while placing a client in bed.
## 24479 EE felt pain in mid back when she pulled client upin bed.
## 24480 EE felt pain in middle back after pushing client in wheelchair to workshop.
## 24481 EE felt pain in right shoulder when liftin linen after turning pt over.
## 24482 EE felt pain in right wrist and thumb area while keyboarding
## 24483 EE felt pain in right wrist while typing and it got progressively worse
## 24484 EE felt pain in rt wrist while moving resident out of bed.
## 24485 EE felt pain on low rt side after tranferring client.
## 24486 EE felt pain pain in rt shoulder of neck while getting into position to clean drain.
## 24487 EE felt painin her foot. When she got home her foot was swollen around arch area.
## 24488 EE felt pull in back when sitting down an cabinet.
## 24489 EE felt pull in her lower back when lifting a patient from gerochair to bathtub chair. Also feltpull in abdomen area
## 24490 EE felt pull in lower abdomen when lifting copier
## 24491 EE felt pull in neck while doing nci training, hurting back
## 24492 EE felt rash on lt wrist and scratched rash - rashspread about 3-4 inches.
## 24493 EE felt severe numbness & coldness in right index finger & thumb when using computer mouse copying & pasting about 23 spreadsheets for a work project. ()
## 24494 EE felt sharp a burning sensation in his rt hand was searching an inmate (needle stick clm)
## 24495 EE felt sharp pain & a knot in hand hurting x 2-days
## 24496 EE felt sharp pain in back after putting client inher chair.
## 24497 EE felt sharp pain in left arm while lifting handtruck to put into club car. Strain to left arm
## 24498 EE felt sharp pain in left side of back when lifting resident out of bed
## 24499 EE felt sharp pain in lower back when she tried to support a patient who was falling to the floor.
## 24500 EE felt sharp pain in lower back while bathing resident that was twisting around in the bath tub. Pain in back
## 24501 EE felt sharp pain in lower right back during physical training.
## 24502 EE felt sharp pain in middle of back after liftingclient to wheelchair.
## 24503 EE felt sharp pain in right knee during fitness run
## 24504 EE felt sharp pain in shoulder due to picking up & throwing paper
## 24505 EE felt sharp pain right shoulder, when she went down on the mat and the pain radiated down her lower back
## 24506 EE felt sharp pains in heel of left foot while walking down stairs.
## 24507 EE felt shoulder pop when sliding client from bed to trolley. Injured shoulder/neck
## 24508 EE felt snap in back when reaching down for an item on grocery store shelf.
## 24509 EE felt something bite his lt leg
## 24510 EE felt something bite his right arm/wrist.
## 24511 EE felt something crawling on ear so he reached up and killed spider by smashing it between his fingers. Spider bite to ear.
## 24512 EE felt something in her hair and brushed through hair with hand; felt sting on finger and stinger broke off in finger
## 24513 EE felt something in rt eye
## 24514 EE felt something on her leg and after hitting it found a small area that resembled an insect bite.
## 24515 EE felt something pull in back before lifting trays to load for delivery. Back strain
## 24516 EE felt something pull in upper abdomen when attempting to assist client off floor
## 24517 EE felt something sting ear
## 24518 EE felt something tear in right hand and finger ashe was pulling client up in chair. Right hand and wrist strain
## 24519 EE felt stiffness in both hands from repeated cage assembly.
## 24520 EE felt sting on left breast and breast started toswell.
## 24521 EE felt sting/bite when unloading recyclables
## 24522 EE felt stinging sensation on lt arm below elbow. EE had small bump similiar to insect bite.
## 24523 EE felt strain in back while helping resident
## 24524 EE felt strain in lower back while pushing food cart.
## 24525 EE felt strain to left eye when he bent over to pick up files injury detachment of retina to left eye
## 24526 EE felt sudden onset of pain in lower back while bending over and lifting the base of exercise wgt machine
## 24527 EE felt sudden pain in low back while doing a three man carry. Strain low back
## 24528 EE felt what could be described as a mosquito biteon left wrist, aprrox 10-15 minutes later a rash broke out on his left hand.
## 24529 EE fighting redman when stepped off mat twisting right knee
## 24530 EE fighting wild fires & was bite by tick
## 24531 EE fileting a fish when knife slipped & cut lt hand near knuckle
## 24532 EE filing and stood up and scraped lower back on another filing drawer.
## 24533 EE filing architecture prints in file drawer EE pulled drawer past stops. Drawer fell out & struckee rt foot causing soft tissue trauma rt foot.
## 24534 EE filing case files on a high shelf, standing on step stool. Also, she uses a computer. Injured shoulder.
## 24535 EE filing documents in a 4 drawer file cabinet. Thecabinet fell over & landed on EE lt foot, multiplefractures/contusions. Medical/lost time.
## 24536 EE filing files on top of shelf on metal cabinet when stool tipped over and EE fell cutting left foot on metal or file cabinet.
## 24537 EE filing papers while standing on step stool-lostbalance and fell injuring lower back.
## 24538 EE filing paperwork and file cabinet fell forward grazing EE's rt hand, arm and side.
## 24539 EE filled a crate of bottles with water and moved to place them on a cart, felt and heard a pop, pain starting in right side lower back, down rt thigh
## 24540 EE filled mop bucket up and attempted to life with rt hand hurt back lifting bucket
## 24541 EE filled the mop bucket with water and picked it up., pulling muscle in shoulder.
## 24542 EE filled up a mop bucket with water and carried it two small flights of stairs.
## 24543 EE filling buckets w/water to put used spectrumns in-water splashed in the corner of rt eye.
## 24544 EE filling can with bedding-bedding got into right eye
## 24545 EE filling orders for cottages and when lifting a box EE wrist twisted
## 24546 EE filling pail with water to empty into her mop bucket & felt pain in lower back
## 24547 EE filling up shavings cart, got shavings into hisright eye. Scratched right eye lid.
## 24548 EE finger became caught in lead leash of dog whiledoing obedience training and cut into left index finger
## 24549 EE finger brushed against the cutting blade of tape cutter while retrieving tape label from roller.
## 24550 EE finger got caught between a jack and a tire when assisting a student with changing a flat tire ()
## 24551 EE finger was caught between handcuff with restraining an inmate--rt hand finger
## 24552 EE finger was caught between the patient and the door when the patient resisted wa walk to his room
## 24553 EE finger was caught in between a gate door
## 24554 EE finger was caught in handcuff
## 24555 EE finger was caught when car door closed. Lacera-tion on inside of middle finger rt hand.
## 24556 EE finger was closed in door whe doscharging patient.
## 24557 EE finger was pushed to far rt while placing patient in pic hold
## 24558 EE finger was slammed in electric door
## 24559 EE finger was wedged of the bathroom door; door closed automically and skin came off rt middle finger.
## 24560 EE fingernail got caught in buckle of seatbelt causing laceration to rt thumb
## 24561 EE finished aligning front-end of patrol car when EE stepped off machine knee twisted and popped, eefell to ground, holding left knee
## 24562 EE finished cleaning break in room 131, murrow hall went to get a mop. Mop soaking when bent overto squeeze overcome by fumes. Chest/lungs.
## 24563 EE finished cleaning up water station and was returning to metrics. EE slipped and fell down, skinning her knee. ()
## 24564 EE finished hose washing window a/c and turned it 90 degrees to drain--burning sensation lower lft side of stomach to groin area. Dx=hernia
## 24565 EE finished ironing and sat iron on counter top, was washing windows when her arm hit iron
## 24566 EE finished loading cart of med records. Needed another record, pushed cart out of way to get to rec shelf, strained back.
## 24567 EE finished mowing the slope on side of building upon leaving slope the mower started sliding down slope EE fell after applying brakes to stop mower
## 24568 EE finished necropsying monkey, removed gloves, and EE had blood on left hand. ()
## 24569 EE finished putting sugar in tea, stood up reachedfor lid, when tea fell over onto cord on EE's headset, causing it to fall onto left leg
## 24570 EE finished shooting a production from a seat and could not stand up
## 24571 EE finished sweeping and went to sit back in chairfoot slipped off step and he twisted right knee
## 24572 EE finished unloading wet barrels from truck. Waspreparing to exit truck & slipped on wet floor. Suffered several contusions to l elbow, r side,
## 24573 EE finished work & was walking to his car in the park. Lot near the e. Gate when his lt leg gave out& he fell backwards w/ his lt leg pinned under him
## 24574 EE fired a shotgun and the recoil hit upper left arm.
## 24575 EE fired rifle and the recoil came back and hit him on the bridge of his nose causing it to bleed.
## 24576 EE fired up torch, hose was loose, burned right hand ()
## 24577 EE firing gun for requalification over course of firing hand became sore and began to hurt. Gradually gotten worse since that time. Rt hand
## 24578 EE firing pistol next to plastic drums during night combat firearms training. EE noticed loud ringing in both ears after shooting night combat course. Later ear drainage. ()
## 24579 EE firing shot gun, weapon slipped and hit his safety glasses causing a cut under lt eye. Small cut under lt eye.
## 24580 EE firing shotgun during training-shotgun made impact with nose
## 24581 EE firing shotgun, approx 1 foot from the left side of face and left ear
## 24582 EE first injury occurred 02/02/2008, pulling sticky-back blanket off of envelope press, re-injured 03/27/2008, and 04/11/2008 again. Back
## 24583 EE first noticed an enlargement on her rt thumb.
## 24584 EE first noticed hand numbness.
## 24585 EE first stated that her eye was hurting whn she got to the infirmary she stated that something flew in eye
## 24586 EE fisher injured his groin during physical fitness training at the nc highway patrol training academy. Cadet fisher was doing leg lifts when he felt a pull in his groin.
## 24587 EE fixing bus when fell cutting second finger right hand and striking back on steps of bus. Laceration of right index finger strained lower back
## 24588 EE fixing snacks, water in sink uneven flow, waterhot and burnt right thumb and hand
## 24589 EE fixing soap bucket water - chemical tex-phene fell off shelf and spilled on rt shoe
## 24590 EE flipped atv
## 24591 EE flipped officer over left leg & when they fell to floor-lt hand landed on floor & officer landed on top of left wrist-heard crack
## 24592 EE flushed a urinal in the men's room and water came through the pipe. As she tried to move away she fell in the process.
## 24593 EE following another EE into bldg-notice trash leaking and turned to get a bag and slipped on stairs.
## 24594 EE following behind another car, car put on brakes& veered to left, there was a truck in the road nolights on and EE collided with truck. Low back
## 24595 EE following up a hog lagoon complaint when he encountered bad smell rotten or moldly animal.
## 24596 EE following up on a complaint of discharge of waste in waters-while walking through woods becamedehydrated.
## 24597 EE foot got caught between slider ()
## 24598 EE foot got caught in hole twisted and fell to the floor and injured leg, shoulder, and back.
## 24599 EE foot got caught on concrete that surronds tank cover while coming down grassy hill and fell on his buttock and hip. Pain in hip leg & back.
## 24600 EE foot got tangled in cords/surge protector----- tripped and fell. Injured shoulder.
## 24601 EE foot patrolling woods, stepped over old stump and heards some buzzing; turned into yellow jackets coming at his face. Started running. ()
## 24602 EE foot slid forward part of foot folding underneath EE putting full weight on folded foot heard a crack broken bone left foot
## 24603 EE foot slipped causing him to fall on top of a tractor tire
## 24604 EE foot slipped of the step.... Fell injuring her left ankle
## 24605 EE foot slipped off curb in parking lot. Felt painin left foot. Fracture to left foot
## 24606 EE foot slipped off of loading dock and EE hit foot and elbow on dumpster.
## 24607 EE foot slipped off wet steps, causing sprain or twisting of left ankle or heal area.
## 24608 EE foot slipped on a rubber piece of floor and foot extended, twisted knee and she hit the concrete.
## 24609 EE foot slipped on some ice and he fell
## 24610 EE foot slipped on wet floor while she & another EE lifted client from wheelchair to recliner causing rt groin strain
## 24611 EE foot was caught in the cord of buffer when he slipped and fell injurying his neck and shoulder blade.
## 24612 EE foot was caught/tangled in cords from keyboard & mouse, causing EE to trip & fall, hurting left knee
## 24613 EE foot wasaching afetr walking around the wtc in new york.
## 24614 EE footing slipped and got finger stuck in metal grate on tractor. ()
## 24615 EE for 3 days moved 5, 000 pieces of shelves and racks from wilson library annes to surplus warehouse
## 24616 EE for job related stress in hostile work enivron-ment created by surpervisor. Stress, anxiety, deprssion.
## 24617 EE forced the door while students were fighting injured left arm/hand
## 24618 EE forcefully entered a room by pushing shoulder against door to rescue a student in immediate dan-ger of death by hanging.
## 24619 EE forehead was struck by a tiedown while unloading tire
## 24620 EE fought with 2 suspects during an arrest and fractured rt hand
## 24621 EE found a bottle in a dorm bathroom, took it to control officer and accidentally sprayed herself in the face-had irritated cheek and throat
## 24622 EE found a razor blade in the bathroom of dorm 2 and placed it in a envelope EE states that as she was writing on the envelope the blade cut her
## 24623 EE found a sealed cup in the trash that looked suspicius and and opened it and later started to get bitten by something and broke out all over body.
## 24624 EE found a tick on the back lt side of his head
## 24625 EE found a tick on upper thigh after chasing juveniles through the woods
## 24626 EE found an embedded tick on the lt side of head
## 24627 EE found and pulled several ticks from his pants and found one attached to his right upper thigh. Was later diagnosed with rocky mount scarlet fever
## 24628 EE found inmate hanging. EE states she has not been able to sleep and gets real nervous
## 24629 EE found lying on floor after everyone heard a loud nosie.
## 24630 EE found needle during search & put it in pocket, the sharp end pricked her lt thigh. After removingneedle from pocket, scratched left arm
## 24631 EE found needle in bushes, punctured finger while carrying it to trash can.
## 24632 EE found patient on floor with shoe string around neck, EE attempted to remove string from around neck and received injuries.
## 24633 EE found pt lying in floor in shower room, during struggle with the patient, EE hit her head on the wall.
## 24634 EE found pt urinating in floor, tried to correct pt, pt grabbed EE by right wrist, scratching EE ()
## 24635 EE found serval ticks on him and stared to developfever and started breaking out in a rash
## 24636 EE found tick bite on lthigh during routine inspection of service station.
## 24637 EE found tick on back of head after mowing and weedeating ground
## 24638 EE found tick on her waist after work
## 24639 EE found tick on left breast. Did not get incected or swell until 4/2/98.
## 24640 EE found tick under left arm.
## 24641 EE fractured her right elbow.
## 24642 EE fractured left 4th finger while restraining inmate.
## 24643 EE fractured left arm
## 24644 EE fractured lt ring finger trying to restrain aggressive student
## 24645 EE fractured right rib while playing basketball with children & tripped over a students foot of which caused the EE to fall.
## 24646 EE frying chicked in deep fat fryer, grease popped on her arm. Burn to right lower arm
## 24647 EE fx rt ankle when dolly tipped over, causing plywood to fall and strike rt ankle
## 24648 EE gave an immate three orders to put hands out tobe cuffed, EE sprayed with pepper spray. Immate hitee in forehead and in jaw with fist. EE fell
## 24649 EE gave an inmate a belt out of yard basket & a few minutes later his hand started to swell & hurt
## 24650 EE gave direct order to inmate. The inmate refused to compy and them pushed EE in chest
## 24651 EE gave patient medication, EE hit by patient, breaking eyeglasses. Broken eyeglasses.
## 24652 EE gave resident a shower in a shower chair. After shower, resident did not stand-pivot. While transferring resident knees buckled and staff caught resident before falling ()
## 24653 EE gave shower to patient. At 7 pm started itchingon both thighs and other parts of EE's body.
## 24654 EE get numbness in both hands from repetitive use of keyboard
## 24655 EE getting 40# box of potatoes off shelf in coolerwhile in mid-air, EE felt arm twist
## 24656 EE getting a large binder down from high shelf injury to right hand and wrist
## 24657 EE getting a wheelchair to assist with getting client off trolley. As she turned the corner to come out of the room EE twisted her right ankle.
## 24658 EE getting away from frontal choke in self-defensetraining she felt her finger hurting. Injured rt middle finger.
## 24659 EE getting back into wheelchair, missed chair and hit her side on commoded, fell on knees, hit side of head on handrail
## 24660 EE getting books from cabinet and tripped over a table and bike fell into a chair then on floor.
## 24661 EE getting cleint out of chair-cleint put feet on bed and pushed chair against EE knocking EE into another client.
## 24662 EE getting client dressed-client began swing arm and jerking away-EE tring to get client down and felt something pull in lower back.
## 24663 EE getting client out of bed and injured back.
## 24664 EE getting client up for breakfast-client became combative -kicked EE. X2 in left leg then headbutted employee in nose.
## 24665 EE getting client up to chng brief-client leaned over about to fall and EE grabbed on to clients wrist who jerked back from EE.
## 24666 EE getting dish, turned neck because truck was rolling to EE. Felt like a charlie horse went up EE neck.
## 24667 EE getting dog out of pen to bring inside-lost balance when another dog ran through EE's leg-EE hit rt foot on block wall.
## 24668 EE getting down from stool-stepped back and all weight went on rt foot
## 24669 EE getting drink crate down and felt numbness in hand-dropped crated bent over to pick it up and could not stand up.
## 24670 EE getting envelope from cabinet drawer and closedfinger in drawer
## 24671 EE getting equip out of control box while putting on equipment the slider door closed while head wasdown, hit right wrist and right rib area
## 24672 EE getting food cart ready to load for transporta-tion, cart rolling towards the kettles, EE stoppedcart - twisted lt knee.
## 24673 EE getting glazed chicken from freezer, had to remove cake from top chcken and piece of ice broke off and hit EE in the eye.
## 24674 EE getting in van to transport residents & struck head against metal door
## 24675 EE getting info. Frm cabinets foot hit chair and cut skin on rt foot.
## 24676 EE getting into car @ wal-mart when lame person came up from behind car and jumped across EE's back forcing EE into steering wheel.
## 24677 EE getting into elevator and tripped over the unbalanced elevator entrance falling to both kneesboth palms and twisting neck.
## 24678 EE getting into own veh l/balance fell and hit left knee on side of inside car
## 24679 EE getting into patrol veh w/campaing hat on-the hat caught the top of the veh's door jerking EE's neck.
## 24680 EE getting into position during a tornado drill, she bent down and struck her knee on the floor very hard
## 24681 EE getting into state car in inclement weather, a strong gust of wind blew car door striking EE onthe head, extreme pain and dazed
## 24682 EE getting into the vann at side of door, hit footslipped and EE fell, hitting his knee on door step of van. Rt knee - pain & swelling.
## 24683 EE getting into trk parked on an incline-when doorclosed struck left knee.
## 24684 EE getting into truck and twisted left knee.
## 24685 EE getting into van rt foot made contact with metal step striking her rt lower shine
## 24686 EE getting linen out of cart, leaned over cart and felt back pull
## 24687 EE getting mail out of box and received splinter in rt thumb
## 24688 EE getting money from officer in tower one when bucket was lowered for her to use in doing so she reached in & scratched her rt hand & rt thumb.
## 24689 EE getting mop from closet when door closed on right thumb. Hematoma to right thumb
## 24690 EE getting off elevator and collied with client- grabbed cleint to keep from falling both fell hurt leg, knee and back
## 24691 EE getting off elevator didn't notice it was not level-foot got stuck between landing and EE fell injuring left ankle.
## 24692 EE getting off forklift-something fell off head guard and blew into eye.
## 24693 EE getting off stool & left foot slipped on foot rail & went inside stool causing EE to loose his balance & fall to floor
## 24694 EE getting off tractor and foot got caught
## 24695 EE getting off van to help client get off van whenfoot hit the ground and twisted rt anke.
## 24696 EE getting on elevator and the door closed on her mashing her shoulder.
## 24697 EE getting on elevator, tripped on apparant uneven surface & caught herself on rail. ()
## 24698 EE getting on the back of pickup truck to unload trash when he heard a pop in his left knee.
## 24699 EE getting ont elevator-fell due to elevator not connecting with floor-injuring lower rt back.
## 24700 EE getting orange juice out of carton, dropped one, it bursted. She was going after mop to clean it up. Slipped and fell injuring left hip and leg
## 24701 EE getting out of canoe to help another camper and cut left foot on oyster rock
## 24702 EE getting out of car and slipped on block of ice bruised legs and arms.
## 24703 EE getting out of car and stepped on an object & fell injuring his neck & back (ken king, pa withdrew but wants cut of settlement
## 24704 EE getting out of car for visit, held work bag in rt hand and lt arm to close car door, closing doorand rt thumb was slammed between door and car.
## 24705 EE getting out of car slipped and fell on ice causing rt non-displaced head fracture.
## 24706 EE getting out of car when EE slipped on banana peel causing EE to fall injury to left arm, right knee, head and broken glasses
## 24707 EE getting out of car, left hand caught in car door
## 24708 EE getting out of car-door came forward striking EE on rt front lobe
## 24709 EE getting out of care unbalanced and injured left foot.
## 24710 EE getting out of hauling unit, hand slipped off handrail, fell to the ground on left knee.
## 24711 EE getting out of patrol car EE fell on cement hitting her head against vehicle door. Pain in neck and upper back - rt shoulder area
## 24712 EE getting out of patrol veh and slipped on wet leaves next to curb spraining lft ankle.
## 24713 EE getting out of patrol veh when he closed door on rt middle finger.
## 24714 EE getting out of the car and slipped on pine straw/leaves on ground. EE injured right lower leg
## 24715 EE getting out of trk and slipped on and icy area falling on his buttock.
## 24716 EE getting out of trk and stepped down on a ridge oc concrete and turned rt ankle.
## 24717 EE getting out of truck & hit knee on door
## 24718 EE getting out of van & was caught in door, lost balance. While trying to prevent himself from falling he struck neck on top panel of van
## 24719 EE getting out of van and hit head.
## 24720 EE getting out of van and the door closed on left hand--3rd index finger.
## 24721 EE getting out of van from driving and was carrying cell phone and radio. Went to close door and jammed lt hand 3rd finger.
## 24722 EE getting out of veh and slipped and fell on black ice inuring rt shoulder, neck, hip, thigh, elbow and knees.
## 24723 EE getting out of veh and stepped on curb foot hitdrain that was uncovered-metal casing broke loose and EE fell.
## 24724 EE getting out of veh and tripped and fell hurtingknees, palm of hands and left foot
## 24725 EE getting out of veh slipped on ice, abraison on rt arm and lower back pain
## 24726 EE getting out of veh to go into bldg to get a report-slipped on wet pavement and twisted ankle.
## 24727 EE getting out of veh when coming from lunch-hit rt foot on cement curb
## 24728 EE getting out of vehicle in morrisons parking lota bug hit EE on rt hand
## 24729 EE getting paper for computer printer, opening door paper stored thumb got jammed between safe door and outer office door. Injured rt thumb
## 24730 EE getting patient out of bed & patient kicked EE in the knee causing bruising & sprian
## 24731 EE getting patient under control injured lt knee. Injured lt knee.
## 24732 EE getting ready for visitation a large folding chair, which was not secure, fall on her rt foot hitting her big toe, injured rt foot, big toe.
## 24733 EE getting ready to mop and was moving (barn) doors, chairs to clean rooms ()
## 24734 EE getting ready to push had handle with pto goingback to get lever and fell into handle on hay bailer, bruise to left rib cage
## 24735 EE getting ready to sit in chair when chair rolledaway and EE fell to floor injuring rt hip.
## 24736 EE getting ready to sit in chair when it was pulled away injury EE fell to floor
## 24737 EE getting ready to wash wheelchair, turned the wheelchair up side down and rt hand slipped
## 24738 EE getting resident dressed, resident grabbed holdof her hand, tired to get resident to turn loose resident thumb backwards & poppled - sprain thumb
## 24739 EE getting resident from the floor whiel resident was exhibiting inappropraite behavior pulled muscle in rt wrist.
## 24740 EE getting resident out of bed to potty chair. Resident started spitting. Resident reached up & grabbed EE's arm with finger causing scratch& nail mark
## 24741 EE getting rid of contraband - had razor in hand, started to break in half, finger slipped on blade.
## 24742 EE getting something from underneath aircraft and injured lower back.
## 24743 EE getting supplies from housekeeping room and tripped over buffer and fell hurting rt knee.
## 24744 EE getting supplies needed for day; restocking requires lifting boxes several times during the day. Suddenly started feeling pains in left wrist & arm
## 24745 EE getting supplies out of car and accidently jammed papers in left eye.
## 24746 EE getting tissue frm shelf when box of trash bagsfell and hit EE in the mouth breaking causing top plate to break loose.
## 24747 EE getting tower key out of metal drawer it was pulled back accidently mashing finger. Lt hand middle finger mashed.
## 24748 EE getting trash out of office, upon lifting heavier than expected trash can, felt a sting on the rt side of chest, felt pain through out day
## 24749 EE getting trays off trk-when letting lift down the food cart came loose-EE holding on to cart when lift jerked rt arm.
## 24750 EE getting turkey frm freezer fell through bag onto right foot
## 24751 EE getting up from chair-another EE passing accidently hit foot causing EE to loose balance and fall hitting hip
## 24752 EE getting up from desk foot got caught in phone cord causing EE to fall to floor
## 24753 EE getting up from desk to answer phone and tripped and twisted left ankle
## 24754 EE getting up from desk to go, & foot was tangled up with the desk causing EE to fall. Injured righthip & arm.
## 24755 EE getting up from desk to help at counter and tripped over cords in floor and fell on back and hitting head.
## 24756 EE getting up from desk-foot got entangled in telephone cord causing EE to lose balance and twist rt foot.
## 24757 EE getting up from practinc cpr and fell back and caught self w/left hand.
## 24758 EE getting up from table to run after a client that was going out the door EE hit left knee on table
## 24759 EE getting up from working in frt of lawn tractor and slipped striking left hand on metal guard
## 24760 EE getting up while foot asleep-left foot over turned.
## 24761 EE getting water from water fountain falling over box that was in front of cooler injury to rt knee & rt elbow
## 24762 EE gettingup from table @ law library when trippedon a power box located in floor next to chair. EE hit rt arm on writing board & landed on rt knee
## 24763 EE gettubg out of vehicle in parking lot a bug hithim on rt hand - across knuckle area. Insect bite on rt hand across knuckle area.
## 24764 EE giving a client a breathing treatment, client rresisted & hit staff on the forearm causing an ab rasion. EE did not Miss Any days from work. Medica
## 24765 EE giving a student ointment for rash on student lower leg
## 24766 EE giving care to resident w/scabies
## 24767 EE giving client a bath-client tilted over and EE catching client frm falling felt pull in lower back.
## 24768 EE giving client a shower when client turned forward and knocked glasses off EE's face putting a scratch on nose.
## 24769 EE giving client a shower-client pushed EE backwards causing EE to slip on wet floor and caught selfin awkward position.
## 24770 EE giving client mouth care-client bit end of swaboff-EE removing objct client bit finger
## 24771 EE giving client sponge bath-trned to get washcloth notice client leaning over bed-ran to keep client from falling and client grabbed EE's left arm.
## 24772 EE giving client's meds per g-tube. Client spit inright eye
## 24773 EE giving cosmetology exam when EE slipped but caught herself so that she did not fall injury back strain
## 24774 EE giving first aid to park visitor with cuts and lacerations. Gloves became torn exposing hands to victim blood. Hands exposed to victim blood
## 24775 EE giving inmate some ice, inmate grabbed EE left arm, EE tried to free arm, inmate finger nails cut EE arm in 2 places
## 24776 EE giving insulin injection flipped protective covering down over needle didn't cover tip pricked EE's lt 2nd finger
## 24777 EE giving insulin shot started fallin forward tried to grab him so he would not fall stuck myself in lt upper palm of hand with needle.
## 24778 EE giving medication to patient who punched EE in right eye and right side of face
## 24779 EE giving medicine to inmate when she fell and twisted her ankle. Hurting knees, and hitting arm and railing. Bruised knee and arm
## 24780 EE giving meds to client-meds spilled on client and EE had to reposition client-EE noted pull in rt back.
## 24781 EE giving res a bath while rolling res over on sidee felt stinging sensation on low rt side of back
## 24782 EE giving resident his dulcolx suppository & he was fighting. Residents knee hit EE in mouth. Broken skin & bruising inside bottom lip.
## 24783 EE glasses fell off when broke fight up & studentsstepped on glasses, breaking frames
## 24784 EE going back to area after lunch & turned right ankle
## 24785 EE going back to bldg to check the mechanical room& fell down due to rain injuring his right knee.
## 24786 EE going down fire escape stairs during alarm, caught foot in front, fell down several stairs, injured both legs/knees/rt hand, swelling/bruised/cuts.
## 24787 EE going down ramp and slipped on frozen ice, lt knee and lt shoulder
## 24788 EE going down stairs and lost balance and fell on ground hitting head and hurt left ankle.
## 24789 EE going down stairs and slipped and fell falling down 3-4 steps causing injury to rt hand, left buttock, left leg/foot.
## 24790 EE going down stairs to do laundry and stepped offof the step onto a football and twisted knee
## 24791 EE going down stairs to get bag of cake mix and slipped and fell bruising left arm.
## 24792 EE going down stairs to get to her office foot slipped on wet top. Broke fall with hand rail. Lt ankle red & swollen, no broken bones
## 24793 EE going down stairs to leave for day and missed step fallin on ground injuring left leg.
## 24794 EE going down stairs-people in ft/back of EE-person in frt of EE stopped suddenly and turned around causing EE to fall down the stairs
## 24795 EE going down stairwell from 4th to 3rd floor. Herfoot slipped off the first of the top step & she ?? Down step on her bottom
## 24796 EE going down steep slope on a trail when his rt foot twisted to one side & he felt his rt knee popknee became swollen and stayed that
## 24797 EE going down step & felt pop in left ankle
## 24798 EE going down steps and foot slipped and twisted ankle.
## 24799 EE going down steps and missed a step-twisted lft foot as landing on floor.
## 24800 EE going down steps and slipped on ice landing on left hip.
## 24801 EE going down steps and stepped on pebbles lost balance and twisted knee.
## 24802 EE going down steps and tripped and fell heard something pop in rt knee.
## 24803 EE going down steps carrying letters and turned rt ankle
## 24804 EE going down steps in courthouse, on second flightee slipped & fell down steps. Fall broken by brickwall. Abrasions on hand, arm, shoulder, back, leg, shin
## 24805 EE going down steps sprained ankle
## 24806 EE going down steps to ladies room when footing slipped and EE fell down steps.
## 24807 EE going down steps w/ canoe on shoulder-canoe gothung on fence-the sudden stop pulled EE back and caused pain in lt shoulder and back
## 24808 EE going down steps, stepped off last step, feet slide on water and she fell. Neck, buttocks, leg, back
## 24809 EE going down steps, stepped on to sidewalk, too close to edge, twisted r ankle, fell on l knee
## 24810 EE going down steps, twisted right ankle & fell tothe floor. Stated her right ankle was all that was hurt.
## 24811 EE going down the exterior steps of marteena hall missed step and fell. Severe sprain of lt foot.
## 24812 EE going down the stairs fairly fast lost her balance & fell backwards injuring the lt side of her back
## 24813 EE going down wet steps and slipped and fell spraining left leg.
## 24814 EE going down wet steps and slipped-caught self before falling but strained back and shoulder.
## 24815 EE going downstairs & shoe caught on steps & started to fall, body fell into railing. Injured both arms, rt knee area, & rt ribcage area
## 24816 EE going downstairs and caught on stairs and startto fall, to catch fall EE caught railing, bruise both arms, right knee, ribcage area
## 24817 EE going downstairs when she missed last step & fell face down on concrete floor bruising ribs & knee
## 24818 EE going from dishroom back into cafeteria, when she hit standing water at drain, fell landing on both knees and l arm/shoulder
## 24819 EE going in and out of bldgs caused him to perspire due to the change of temperature in the bldg.
## 24820 EE going into bedroom, steel door flew back and eewent to catch it and door hit left hand
## 24821 EE going into bldg when rain began, slipped and fell injured rt leg
## 24822 EE going into clients room-slipped and fell on wet floor on left knee.
## 24823 EE going into court house as she walked between two cars slipped and fell truning left ankle on water and broken concrete.
## 24824 EE going into motor pool to check on vehicles and slipped on ice landing on his back
## 24825 EE going on break and hit her lt wrist on corner of cubicle wall down the aisle.
## 24826 EE going on break, client pass EE quickly & knocked EE down. Caught with rt hand and fell on left arm
## 24827 EE going on break, while adjusting her shirt, she hit her right hand on the cubical corner
## 24828 EE going on lunch break-walking on grass and stepped in a tire trench and turned rt ankle and fell
## 24829 EE going out back door and fell on steps injuring rt arm, hand, hip and fingers.
## 24830 EE going out back door and stepped off curb when rt ankle twisted and EE fell.
## 24831 EE going out back entrance and stepped on a rock and twisted left ankle.
## 24832 EE going out bldg-computer was on a rolling cart- cart got stuck on door seal and computer fell on EE's left foot.
## 24833 EE going out door and door closed on firts three fingers on left hand
## 24834 EE going out door, client pushed door real hard & jammed rt hand in door
## 24835 EE going out door-turned to closed by pulling on bars-bars popped away and fell backwards down the steps on the pavement
## 24836 EE going out exit door and tripped over student sitting on floor.
## 24837 EE going out the manning hall and fell down steps to bricked pavement injuring left forearm.
## 24838 EE going outside to put money in parking meter- slipped and fell on a large piece of glass or plastice.
## 24839 EE going through door and officer in booth closed door before EE was clear. Burised left shoulder.
## 24840 EE going through intersection on green light when ov ran red light and hit EE's veh.
## 24841 EE going through obstacle course & hit her back onthe beam, left side.
## 24842 EE going through pepper spray training he inhaled fumes causing his lungs to be infected.
## 24843 EE going through slider to take inmates to recrea-tion yard, EE in control room shut door on her. Injured rt hand near knuckles.
## 24844 EE going through the gate to work truck & tripped on curve. Landed on knees & jammed fingers tryingto balance fall.
## 24845 EE going to a meeting slipped and fell on wet floor - knee, arms, wrist, fingers, ankles and chest
## 24846 EE going to car slipped and fell on wet pavement landing on knee.
## 24847 EE going to car, & fell on wet oily pavement. Fell on back as her feet slipped out from under her.
## 24848 EE going to car, a passing car hit a large rock & threw it against EE's right ankle
## 24849 EE going to car, slipped on slick spot, feet went out from under me fell on lt side on hip, leg, shoulder and lower back.
## 24850 EE going to class and struck rt arm on window.
## 24851 EE going to class with books in hands and slipped on 3rd step from bottom, landing with legs folded under torso. Rt thigh/knee/wrist/low back.
## 24852 EE going to classroom floor wet EE crutches slipped and EE fell backwards hitting head injury to back of head on left side
## 24853 EE going to clean restrooms when student ran pass EE and stedped on left foot and coworker
## 24854 EE going to clean work area picked up spray bottlecleaner. Top came off bootle spilled onto him not-iced urine smell. Arms, ect.
## 24855 EE going to court, fell down on outside steps due to rain. Left thigh, left leg, lower back.
## 24856 EE going to develop xray-pulled cassette out of bin and cassette flipped and fell on EE's rt forearm.
## 24857 EE going to fron entrance of building and stepped on pin & twisted her ankle. Lt foot
## 24858 EE going to get crash cart for code blue. Turned the wrong way and twisted lt ankle. Sprain/strain lt achilles tendon.
## 24859 EE going to get training supplies located in bed room of home where having planning meeting. EE picked up supplies, turned, lost balance & fell
## 24860 EE going to greenville ortho. Rounded curb w/no rail. EE stepped on round part causing falling forward. Toe caught fell hurting rt shoulder.
## 24861 EE going to learning ctr to teach students w/ disabilities when a student came running out pushing open doors and striking EE in the face
## 24862 EE going to lunch and stumbled over a cement blockand fell.
## 24863 EE going to lunch, turning in wendy's parking lot when second car struck his vehicle in the rear
## 24864 EE going to lunch-going across cross walk when a car came flying up making a sharp rt turn and ran over EE's rt foot, also injuring rt knee. ..
## 24865 EE going to lunch-stepped down off steps and twisted rt foot and ankle.
## 24866 EE going to norht wing to get inmates for medica- tions time, she slipped in water on the floor. Contusion lt hip & buttocks, back strian.
## 24867 EE going to registar's office for student's info., approached the second floor landing, tripped on one step, fell on rt hand/lt knee
## 24868 EE going to see juvenile in their room-slipped on a rug as she turned the corner landing on her kneerehab nurse-tonya johnson 910-494-4941
## 24869 EE going to see supervisor she opened door & air from first floor caused door to pull back on her finger
## 24870 EE going to sit in chair and chair rolled out fromunder her causing her to fall flat on her back
## 24871 EE going to teach a class, tripped & fell on the stairs, injuring both knees ()
## 24872 EE going to work-stopped for traffic hit in the rear by ov-then pushed into another stopped veh injured forehead, neck and back.
## 24873 EE going up stairs and tripped and fell injuring rt knee.
## 24874 EE going up stairs, stumped foot on steps, fell down at top of stairs, landing on left knee/right shoulder ()
## 24875 EE going up steps and toe caught on step and fell against hand rail twisting right ankle ()
## 24876 EE going up steps and tripped on a metal strip injuring left knee and ankle.
## 24877 EE going up steps from medical office stepped on last step & fell
## 24878 EE going up steps to program office bldg, lt foot caught top step causing him to trip & fall forwardinjured lt knee.
## 24879 EE going up the stairs something felt like it had torn in her left knee
## 24880 EE going upstair onto the stage in auditorium whenhe missed step. Fell and skinned lt leg. Contusion lt leg,
## 24881 EE going upstairs to duty station, EE bumped knee on very top of step which is also the concrete floor of the station
## 24882 EE got a envelope that contained a unidentified white powder substance
## 24883 EE got a fish hook embedded in his fourth right finger
## 24884 EE got a foreign particle in eye while cleaning
## 24885 EE got a splinter stuck underneath fingernail of the 4th finger on the rt hand.
## 24886 EE got angry due to people coming by hitting his station window, punched the back glass with his right hand cracking window/right pinky finger
## 24887 EE got back pain while vaccuuming
## 24888 EE got battery acid on hands while changing batteries in flashlights
## 24889 EE got between another EE and client to block hitsthe client scratched EE's face and pulled her hairduring blocking the hits, EE hit her right han
## 24890 EE got bit by dog while trying to restrain him. O lt hand & wrist shallow puncture with swelling
## 24891 EE got bitten by dog on leg.
## 24892 EE got blood on hands while restraining inmate after fight.
## 24893 EE got blood on his hand while placing a subject under arrest.
## 24894 EE got caught in automatic door, and it closed on and hit her right forearm. ()
## 24895 EE got caught in the powered gate when the officerin the tower accidentally closed it; the gate cameto rest on EE's rt arm pressing it to gate.
## 24896 EE got caught in the seatbelt when trying to get out of the van and hurt her shoulder trying to keep from falling.
## 24897 EE got caught up in some thick briars while attempting to arrest a suspect... Right wrist
## 24898 EE got chemical burn on right side of neck.
## 24899 EE got cleaning liquid that req'd work, also got the brick & started scrubbing as I scrubbed greasesplattered onto my face
## 24900 EE got cleaning solution in right eye
## 24901 EE got debris in eye ()
## 24902 EE got debris in left eye.
## 24903 EE got dirt in his eye while he was working in theradio repair shop.
## 24904 EE got down on mat on floor to give client medication felt a pop in left knee and pain. ()
## 24905 EE got dust and small piece of metal in right eye.
## 24906 EE got dust in eye while loading truck
## 24907 EE got dust in right eye while feeding animals
## 24908 EE got end of left thumb and thumbnail caught while sanding a piece of metal on sander
## 24909 EE got finger caught in conference room door on rt hand
## 24910 EE got foot caught in crack of cement and fell forward on left hand, wrist and face
## 24911 EE got foot tangled in chain and fell spraining ankle
## 24912 EE got foreign body in eye.
## 24913 EE got foreign body in left eye
## 24914 EE got hand caught in cabinet.
## 24915 EE got hand caught in door as she was getting inmates out for school call.
## 24916 EE got hand caught in sliding glass door causing laceration
## 24917 EE got heel of shoe caught in auto door-shw jerkedher foot free as the door closed and fell backwrdshitting head on doorframe
## 24918 EE got her right foot caught in a drawer
## 24919 EE got her right ring finger caught between two metal cages.... Knuckle
## 24920 EE got his eyes burned when he was doing dna-gel straining occasionally without sheild protection.
## 24921 EE got his finger caught under a chair.
## 24922 EE got his hand caught between a cart and chairs; right hand
## 24923 EE got hit in nose by an inmate while trying to subdue him during use of force. Injury to nose.
## 24924 EE got hornet sting to neck
## 24925 EE got ice for research team meeting EE was carrying bowl of ice w/both hand up stairs. EE tripped fell up stairs. Injuring rt knee mid back.
## 24926 EE got in elvator face frward fell on fl trip fl not even
## 24927 EE got in fight with inmate, after fight was over EE observed blood on inmate & on EE right middle nuckle, which was cut & bleeding.
## 24928 EE got into a confrontation with suspect during apprehension and fractured tip of left ring finger
## 24929 EE got into a nest of ticks while making stream deteminations.
## 24930 EE got into a nest of ticks while making stream determinations. She spoke to the supervisor about it when she rtn to the office.
## 24931 EE got into altercation with inmate. She tried to put him in a head lock, and was unsucessful. Inmate then put her in a bear hug from behind.
## 24932 EE got into state vehicle and had hand on door frame when another EE closed car door closing finger in door
## 24933 EE got into van and sat down at which time the firextingusher descharged in the front of van locatedbetween the radio and seat.
## 24934 EE got large splinter in right palm.
## 24935 EE got left hand stuck in box handle-became bruised and continues to hurt
## 24936 EE got left thumb caught in handcuffs while cuffing juvenile
## 24937 EE got leg hung between return duct and crawling across catwalk
## 24938 EE got leg tangled in vacuum cord and lost her balance causing her to fall and twist her knee
## 24939 EE got lt hand caught in wheelchair spoke while cleaning it -lt wrist contusion
## 24940 EE got lt little finger caught in outside door of bldg
## 24941 EE got mulch in his eye
## 24942 EE got needle stick while suturing.
## 24943 EE got off bus, was walking to vestal hall and fell on concrete barrior. She fell flat and injured both legs and middle finger on left hand.
## 24944 EE got off elevator and was told to walk around area, EE did so and slipped and fell. No injury
## 24945 EE got off elevator walked through lobby and fell. Susan breedlove cm 336 498 3241 injured lt knee strained back ** surg knee 6/15**
## 24946 EE got off elevator, turned the corner, slipped and fell causing lt foot to turn over and felt immediate pain
## 24947 EE got off of his forklift and tripped over board and fell to the floor and injured shoulder.
## 24948 EE got off the elevator and tripped over someone's foot while leaving to go home.
## 24949 EE got on a table to get a backet off the wall and when getting down hit her foot on the uppersidflat on a chair.
## 24950 EE got on elevator on the third floor and she was going to the the ground floor. The elevator stopped between the 1st floor and basement.
## 24951 EE got on stool to cut off ceiling fan. Stool began to tip over. EE shifted her weight and strained back
## 24952 EE got on the elevator and it was stuck. He went to open the door and pushed the ? Which was jammedhe was pushing it open & slipped, hurting shoulder
## 24953 EE got out of a bob cat forklift after operating it & felt pain in his back.
## 24954 EE got out of car and did not see parking barricade-tripped and fell into second barricade broken rt wrist and nose
## 24955 EE got out of car and lost footing & slipped on the pavement covered with ice/snow. Injured back &rt. Arm/wrist.
## 24956 EE got out of car and proceeded out of the parkinglot and fell flat on her back twice. Both hands hurt in the palm and buttocks.
## 24957 EE got out of car and stepped up onto sidewalk andfell on rt side of body.
## 24958 EE got out of car to report to work and slipped on ice and fell hitting back and head
## 24959 EE got out of car, slipped on ice and fell on knees
## 24960 EE got out of car, walked around car to open other door, took bad fall, both feet went out from under her and fell flat on back. Both hands and backside
## 24961 EE got out of chair to assist she came down on herfoot. Bruised lt foot - heel.
## 24962 EE got out of chair to respond to et call and twisted knee
## 24963 EE got out of chair, lower back started hurting
## 24964 EE got out of her car and walked around to the front to step up on curb. She stepped up and fractured her left foot.
## 24965 EE got out of his vehicle at rear of ssb, step on drain and lost footing causing him to fall on rt shoulder and side.
## 24966 EE got out of the car and walked to building, slipped & fell in parking lot.
## 24967 EE got out of the fire truck, stepped down, and twisted right ankle
## 24968 EE got out of trk and stepped in a puddle of waterand fell hurting rt wrist.
## 24969 EE got out of truck-truck began to drive away-sm. Sprayer boom fell beside truck knocking EE's feet out from under him-he flipped & landed on pavement
## 24970 EE got out of van walked around front of van and sslipped on some loose gravel when EE fell EE used rt hand to try & catch fall, fell on rt hand
## 24971 EE got out of van, turned to open door for pt to get out, pt opened door hitting EE in shoulder
## 24972 EE got out of vehicle and slipped on ice and fell to ground. He put right hand out and tried to brace himself and injured right middle finger.
## 24973 EE got out of vehicle to walk to building, stepped over a gravel and rough area in pavement, foot twisted, painin top area of foot
## 24974 EE got out of vehicles stumbled and fell over the ()
## 24975 EE got out of work vehicle, slipped in muddy conditions, lost balance, fell, placing rt hand out to brace self ()
## 24976 EE got out to parking lot early sat in car, then was going to go in early to get cup of coffee. Shewas walking & fell. Fell on metal piece in ground
## 24977 EE got particle ing rt eye while working
## 24978 EE got pt out of bed was about to fall out of wheel chair, from behind I pulled her back into wheelchair to prevent her from falling. ()
## 24979 EE got ready to sqeeze door handle, slipped and fell over the mop cart injuring back.
## 24980 EE got resident up to change her and resident fell back down and EE felt pain in shoulder blade.
## 24981 EE got right hand caught in wheelchair wheel
## 24982 EE got rt index finger caught in gate causing puncture wound
## 24983 EE got rt index finger caught in truck lift causing fracture and laceration
## 24984 EE got rt index finger lodged between hand truck and liquid nitrogen tank while loading vehicle and fractured finger
## 24985 EE got rt middle finger got caught in filing in cabinet drawer
## 24986 EE got rt middle finger mashed in elevator door
## 24987 EE got scabies performing cna duties
## 24988 EE got scratches to rt wrist form briar bushes
## 24989 EE got sick after initial pepper spray training. EE was exposed to oc pepper spray.
## 24990 EE got some cleaning stuff in eye. Was putting it in some water and some poped in eye.
## 24991 EE got something in eye ()
## 24992 EE got something in eye while moving boxes.
## 24993 EE got something in lt eye while looking for something in the dispensory.
## 24994 EE got staple in finger while trying to unjam stapler.
## 24995 EE got struck on rt 4th finger by a officers batonwhile in process of physical force of control an inmate
## 24996 EE got stuck in elevator-had to climb out injuringshoulders, elbow, neck and legs
## 24997 EE got tangled in o2 tubing and fell to floor, hitting both knees and face
## 24998 EE got three tick bites while collecting water samples
## 24999 EE got thumb caught between box and edge of steel cart shelf while removing box.
## 25000 EE got thumb caught in back of potty chair while placing EE on chair and thumb was jammed back
## 25001 EE got thumb caught in cooling fan causing laceration
## 25002 EE got tick bite and later became infected
## 25003 EE got trapped in walk-in freezer when door closed behind him. EE banged on freezer door with right to get help and suffered contusion.
## 25004 EE got up & foot tangled in computer cord & EE fell into 2-drawer file cabinet striking chest rt elbow/wrist
## 25005 EE got up & turned around to start giving meds, she felt pain in her lt knee around kneecap & downthe back of knee she felt a pulling sensation.
## 25006 EE got up and turned in a hurry striking left foot on the desk
## 25007 EE got up fm desk, foot got caught under desk, fell hitting right shoulder on door ()
## 25008 EE got up from chair and knee gave way and sat back down and noticed knee was swollen.
## 25009 EE got up from chair and sat back when the chair rollers had moved causing EE to fall to the floor causing elbow to strike floor and jamming shoulder
## 25010 EE got up from chair to open door & tripped on a phone cord & fell onto her rt knee.
## 25011 EE got up from desk and struck lt knee on desk drawer that was left open
## 25012 EE got up from desk chari to remove paper jam and she caught her left heel on the edge of carpet protector and fell backwards onto floor.
## 25013 EE got up from desk to do rounds, stepped wrong and twisted right ankle.
## 25014 EE got up from desk to get a cup of coffee and began to shake uncontrollably-legs went out from under her-fell fracturing ankle
## 25015 EE got up from desk to go into hallway, tripped ashe pass corner of desk, fell onto floor between desk and bookcase - lt knee, leg, shoulder
## 25016 EE got up from desk, caught feet in telephone cord, tripped and fell, hit head on door jam
## 25017 EE got up from desk, turned to pick up glasses andfoot slipped. EE caught balance, pain went throughback and down left leg.
## 25018 EE got up from desk-tripped over computer cord & fell-injured right foot
## 25019 EE got up from her desk & caught her ankle on the inside bottom corner of the desk
## 25020 EE got up from her desk to go in hall, slipped in a puddle of water outside of door, did not fall, turned rt ankle, hit lt shin, twisted lt knee, han
## 25021 EE got up from her desk to leave area and hit her foot (toe) on filing cabinet
## 25022 EE got up from table & slipped & fell onto floor onto buttocks
## 25023 EE got up from table and was walking to drink dispenser. Stepped on tile floor and fell. Injury to left upper back
## 25024 EE got up from table while feeding resident, went to sit down and stool slipped from underneath her causing fall, complained of stabbing pain in back
## 25025 EE got up out of chair and was dizzy tripped and fell to the floor. Injured lt arm.
## 25026 EE got up to get the mail delivery and fell on herknee and ankle.
## 25027 EE got up to go to medical and as she walked around (behind)the inmate, he stuck one foot out while tying his shoe on the other foot, not realizing EE had came around him. EE tripped over foot and fell to the floor on her right hand &shoulder ()
## 25028 EE got up to open door for code yellow she accidently struck the counter w/ her lt foot & fell on lt knee.
## 25029 EE got up togo the copier and got caught in the keyboard cord and fell fell hitting both knees & rt index finger.
## 25030 EE got upout of the chair to leave and twisted her knee as she walked towards the door.
## 25031 EE got urine on feet while changing linen
## 25032 EE got wax on shoes and leaving outside medical door, EE caught herself and felt right knee pop
## 25033 EE got wet curing light on eyes, hands, feet, elbow, and knees. Caused whelps and redness of skin.
## 25034 EE grabbed a bag of trash from trash can with a lot of books & magazines. Trash can tilted, witness grabbed trash can. I wasn't balanced very well and threw bag in dumpster. ()
## 25035 EE grabbed a fleeing suspect through an open windown and struck her head on the bottom of window frame.
## 25036 EE grabbed a metal binding clip that was damaged, laceration to right index finger
## 25037 EE grabbed a pan of cornbread to put on line and turned, felt pain in lower back
## 25038 EE grabbed a patient from falling on wet floor andpatient grabbed EE and caused both to fall on the wet floor, injured back and neck.
## 25039 EE grabbed a patient to keep them from falling and EE pulled a muscle in lower back while bending over.
## 25040 EE grabbed a patient who was trying to hit anotherpatient. He felt a strain in his lower back.
## 25041 EE grabbed bathroom door to close it, slammed righ hand ()
## 25042 EE grabbed by patient which caused her to fall to the floor trying to prevent patient from fall hitting her, she pulled muscle in back
## 25043 EE grabbed by patient. Rt third finger pulled backwhen EE trying to get iv tubing out of patient hand. Rt third finger sore small amt of edema
## 25044 EE grabbed chain to metal roll up door. Finger was caught in chain and cut
## 25045 EE grabbed client by the hair and jerked her down straining neck
## 25046 EE grabbed client from going into another clients room-client grabbed EE by shoulder both went to the floor - elbow
## 25047 EE grabbed client rt wrist-client began moving arms and legs - EE pulled muscle in chest
## 25048 EE grabbed client to break her fall and felt pain in chest.
## 25049 EE grabbed client to prevent falling to floor and felt pain in back
## 25050 EE grabbed clients arm to prevent client from striking another EE, causing EE's left arm to twist and felt elbow pop
## 25051 EE grabbed door to keep it from slamming and twisted lower back
## 25052 EE grabbed gait belt of pt who was trying to run into street and pt dropped to the ground pulling EE's rt wrist
## 25053 EE grabbed resident that was falling and felt a pull in her shoulder.
## 25054 EE grabbed the door handle while entering the dining facility. After entering the building EE noticed something on his arm. Door handle had drie
## 25055 EE grabbed the pull cart the wrong way, causing handle to fall on her lt hand & cut her lt thumb.
## 25056 EE grabbed to bus door latch and when she didm it caught her finger and picked it.
## 25057 EE grabbing hot tray of food, that was sliding off serving line.
## 25058 EE grasped the lock to each trapdoor during feeding incurred a sharpe pain in rt thumb
## 25059 EE greasing air handler hand slipped off grease fitting hit sharp edge on metal cabinet. Small cuton little finger lt hand.
## 25060 EE grinding and patching concrete-possible skin irritation to both arms and legs.
## 25061 EE grinding out a keeper and grinder wheel exploded and shot metal into EE's eye.
## 25062 EE grinding, drilling & cuting metal during the dayand got some metal & rust in right eye
## 25063 EE groundfighting with student during subj/controlarrest techniques when student inadvertently elbowed above left eye
## 25064 EE guiding a table thru door, loose part of table stabbed EE in rt hand. Injured rt hand upper portion of palm.
## 25065 EE had Dr Appt 9/10/07 given nerve test possible carpal tunnel syndrome. Will get results on 9. 12
## 25066 EE had a 20lb steel valve fall on lt foot.
## 25067 EE had a allergic reaction to gloves
## 25068 EE had a allergic reaction to some food, he ate for breakfast on his way to a conference.
## 25069 EE had a bad coughing episode and ran off the right side of the road striking three mailboxes and a culvert
## 25070 EE had a bad rash onlegs and arms. Reported that he had been having this problem for quite some time and not sure if it was related to working in the heat or not. ()
## 25071 EE had a bad reaction to oc pepper spray exposure training
## 25072 EE had a bad reaction to sentainal chemical spray used in cleaning.
## 25073 EE had a chemical reaction to cleaning solution shortness of breath.
## 25074 EE had a close proximity to dry ink inhaled, throat slightly irritated and EE has asthma. Printer repair person inadvertently dropped magenta dry ink causing spillage on the floor and dry ink in the air. ()
## 25075 EE had a collison with cement pillar-injury to chest and abdomen.
## 25076 EE had a complete neervous breakdown
## 25077 EE had a flat tire on patrol vehicle and while lifting spare tire out of trunk he felt pain in lower back
## 25078 EE had a flu vaccine on 12/18/00 and on 12/21 awakened with a rash on her face
## 25079 EE had a grand mal seizure and fell - injury not specified
## 25080 EE had a headache and nauseated feeling while working in the serials area-also had trouble breathing
## 25081 EE had a headache and was nauseated while working because of a foul odor in the reference department
## 25082 EE had a headache, stood up, passed out and hit her head on floor
## 25083 EE had a home injury with a cut to her hand. When she seeked medical treatment for injury the Dr Detected carpal tunnel syndrome in right hand.
## 25084 EE had a lot of drainage in throat, EE had blood insputum, chemicals in tissue processor and stainner could be the problem.
## 25085 EE had a mild heart attack
## 25086 EE had a needle stick to left index finger during operation
## 25087 EE had a negative reaction to pepper spray. Blood pressure went up in respitory system. Eyes & lungs were irritated.
## 25088 EE had a pencil in his right hand & turned in his chair to type when the pencil hit the typewriter & lead went into his right palm near thumb.
## 25089 EE had a pile of rat cages stacked on floor, cage began to tip, EE grabbed them, twisted back.
## 25090 EE had a previous injury to his left foot and worean orthopedic boot. A client rolled a rocking chairon the EE's foot. EE was seen in the er for pain
## 25091 EE had a rash on both hands and lower part of his arm.
## 25092 EE had a reaction to ppd test.
## 25093 EE had a reaction to yellow jacket sting
## 25094 EE had a reactiong to chemicals palced in the dish washing machine. Coughing, headache, eyes burning.
## 25095 EE had a seizure and fell off loading dock. Injury to right leg and tongue
## 25096 EE had a seizure and fell. Due to the way he fell possibly has a head or back injury.
## 25097 EE had a seizure causing her to fall against the a countertop striking her head on the floor
## 25098 EE had a seizure-lost conciousness and hit head on floor.3
## 25099 EE had a seizure. Hit his head on the floor when he fell out chair.
## 25100 EE had a sever allergic reaction to poison ivy while doing camp duties
## 25101 EE had a stroke due to working in a close building with no air---this was an old building that has been shut down
## 25102 EE had a vehicle stopped and a white 4 pound maltese dog got away from the passenger and bit jumped up and bit the EE n the upper left arm. ()
## 25103 EE had a vehicle stopped off the right side of the roadway, a motorist collided with the rear of EE vehicle, forcing it into the rear of another veh
## 25104 EE had a vehicle stopped on us 70. EE was seated inside his patrol vehicle when his vehicle was struck from behind by another vehicle.
## 25105 EE had abrasions on feet which was aggravated by working on feet in combat boot during hurricane floyd relief - infection to rt leg
## 25106 EE had administered a I. M. Injection to patient eereached up to put empty tube into sharps containerbut missed tube fell to floor bounced up & hit EE.
## 25107 EE had adverse to flu shot given, EE broke out in hives and was light headed.
## 25108 EE had airborne debris blown in eye while using a gas-powered blower ()
## 25109 EE had all safety gear & was ready to start strip-ping fl & then slipped on floor hurting hip/leg
## 25110 EE had allegic reaction to latex gloves.
## 25111 EE had allergic reaction - possibly from food ingested - was also working with chemicals
## 25112 EE had allergic reaction to face mask & hair bonnets along face/hair line... Items req'd to enter any animal facility on unc
## 25113 EE had allergic reaction to flu shot.
## 25114 EE had allergic reaction to grass and passed out
## 25115 EE had allergic reaction to latex gloves injury to right and left hands, right wrist
## 25116 EE had allergic reaction to laundry detergent. Hands and lower arms.
## 25117 EE had allergic reaction to new uniform around waist and upper thighs since 1 1/2 months ago. Happens once a week
## 25118 EE had allergic reaction to paint fumes
## 25119 EE had allergic reaction to paint fumes causing ulcers in nose
## 25120 EE had allergic reaction to powder in gloves. Has worn sensi care gloves and used ointment for past year with no improvement. Rash on hands.
## 25121 EE had allergic reaction to vinyl gloves, rash noted on hands.
## 25122 EE had an accident while in company truck... Injured back, side, left arm, and hand, left shoulder
## 25123 EE had an accident with a truck, hitting and breaking side mirror causing mirror to break. Glass in mouth
## 25124 EE had an allergic reaction from a insect causing rash
## 25125 EE had an allergic reaction to a TB shot
## 25126 EE had an allergic reaction to a hepatitus vaccination.
## 25127 EE had an allergic reaction to a rabies vaccination; headache and nausea
## 25128 EE had an allergic reaction to eating a spring roll at a reception following a meeting she was attending. She used her epipen and then went to unc ed for additional treatment. ()
## 25129 EE had an allergic reaction to gloves causing lesions to hands
## 25130 EE had an allergic reaction to glue which was being used to lay ne carpeting
## 25131 EE had an allergic reaction to hepatitis shot
## 25132 EE had an allergic reaction to hepatitis vaccine
## 25133 EE had an allergic reaction to lab animal
## 25134 EE had an allergic reaction to latex gloves
## 25135 EE had an allergic reaction to latex gloves-hands have rash and deep cracks
## 25136 EE had an allergic reaction to latex paint on rt eye and face
## 25137 EE had an allergic reaction to malaria prophylaxisdoxycycline and malrone
## 25138 EE had an allergic reaction to mold
## 25139 EE had an allergic reaction to pain reliever aftertaken for a headache.
## 25140 EE had an allergic reaction to pepper spray affecting his eyes
## 25141 EE had an allergic reaction to something that he came in contact with while at work.
## 25142 EE had an allergic reaction to spray that was usedduring cadet training right eye
## 25143 EE had an allergic reaction to the gloves that shewas wearing..... Both hands
## 25144 EE had an allergic reaction to the lated gloves.
## 25145 EE had an allergic reaction to the spray thae is put on the hay.
## 25146 EE had an allergic reaction to unknown source swollen face
## 25147 EE had an allergic reaction-became sick and broke out with a rash
## 25148 EE had an allergic reacttion to the insecticide that was sprayed. EE had an existing allergy. Swelling; aplotches.
## 25149 EE had an altercation with a patient; injured jaw and neck
## 25150 EE had an altercation with patient and patient broke EE's right thumb.
## 25151 EE had an altercation with patient when he injuredhis left knee
## 25152 EE had an eye irritation, she noticed later to be discovered as scratched cornea in her left eye. Possibly done when leaf blowing. ()
## 25153 EE had an incident w/pro EE litigant - experiencedextreme pain in hand-taken to hospital where blood pressure was 210/105.
## 25154 EE had anxiety attack in attorney's office taken to hospital injury nerves, back & blood pressure
## 25155 EE had approximately 13 ticks on his body that he pulled off of him, EE was doing his job dties. EE transported to primecare, EE has lyme disease.
## 25156 EE had appt with a client @ 9:30am & during registration for lab results clt did not like lab result & hit EE on arm & rt shoulder blade.
## 25157 EE had arm around horse's neck/head to catch & halter it. Horse lifted head up & strained EE's right shoulder.
## 25158 EE had arms full of training materials with her view obstructed and fell.
## 25159 EE had arrested a subject and was attempting to handcuff him when the violator jerked his arms in effotr to free himself, straining EE's rotator cuf
## 25160 EE had arrested suspect. Suspect was handcuffed & was being unruly. EE's thumb was bent into an unnatural position when suspect lunged backwards.
## 25161 EE had arrived at the area office for managers meeting, no injury claimed.
## 25162 EE had arrived in the area office for managers meeting. No injury.
## 25163 EE had ascended to fourth step-turned to go back down stairway to close door. Lost balance and felldown 4 stairs. Injured lt ankle & leg sore
## 25164 EE had automobile accident while traveling between jobs - multiple injuries
## 25165 EE had back pain after pushing food trucks up and down the floor and washing and sanitizing them
## 25166 EE had back pain, after moving boxes of canned vegetables.
## 25167 EE had back surgery 11-19-07. Feels harrassed b/c she has to time off for appts. Harrassment has created stress & has affected healing process
## 25168 EE had backed under the trailer and pin went over the 5th wheel he had to raise the landing gear up
## 25169 EE had bad reaction to vaccine shot.
## 25170 EE had bag in rt hand and turned w/lt arm to close the door and felt a sharp pain shoot through back
## 25171 EE had bathed & was dressing client, stood client up to pull pants up & put walking belt on, client tried to sit & EE tried to hold him up pain in hip
## 25172 EE had bathed client, cleint required some liftinglater on that afternoon had pain in right shoulder
## 25173 EE had been assisting with loading livestock on a truck he was walking in muddy steer barn when his feet started to slip out from under him
## 25174 EE had been at the division offcie to pick up her work she returned to her vehicle nd when she attempted to get into her car she pulled the muscle
## 25175 EE had been carrying ladders back and forth all day; injured upper back
## 25176 EE had been cleaning pt's room, coming out of rm, pt picked up the wet floor sign hitting EE in face ()
## 25177 EE had been dispatched to a motor vehicle accidentee entered sharp curve and hit a median concrete wall
## 25178 EE had been doing a lot of latex typing noticed left and rt wrist were stiff.
## 25179 EE had been draining since her TB test.. Right arm
## 25180 EE had been handling cats & dogs all day and foundtick attached to back of left knee
## 25181 EE had been lifting and moving clients all on the weekend and injured shoulder.
## 25182 EE had been moving pots and cleaning boat which caused back strain.
## 25183 EE had been moving tables from storage trailers to3rd floor of build. EE was locking the stor. Traillock jammed & EE applied pressure & caught finger
## 25184 EE had been packing, lifting and delivering boxes of material.... Injured lower back
## 25185 EE had been pulling and pushing filing cabinet drawers in current assignment and pain occured to straining muscles in left arm
## 25186 EE had been putting hay in the feed room and wrenched back when lifting a bale of hay.
## 25187 EE had been putting supplies up on shelf standing on 5gal bucket-next day began to fell pain in lower back
## 25188 EE had been relieved from upper tower, walking in roadway when his feet slipped pulling his lower back.
## 25189 EE had been running a fever-went to doctor did notimprove-admitted to hosp-diagnosed with rocky mt spotted fever.
## 25190 EE had been squatting for quite some time fixing boiler and twisted to get a tool and felt pain in rt foot
## 25191 EE had been talking with a patient in EE's office. Patient left EE's office, then returned & seemed to be asking another question then pt began punching EE. Causing abrasions under EE's (l) eye, (rt side) neck, & across bridge of nose. ()
## 25192 EE had been testing inmates & had turned ligts offescorting inmates thru building tripped over chairtwisted lower back and hitting rt knee & leg.
## 25193 EE had been transcribing medical tapes for 8 hrs. For the past 9 days. Work station was not equippedwith correct ergonomics.
## 25194 EE had been using sharpening cutter machine which had left a metal fragment on his finger and while scratchin eye fragment stuck in right eye.
## 25195 EE had been welding the day before and the next day had redness, itching, and sensitive to light
## 25196 EE had been working all day replacing old valves that were rusty and strained lower back
## 25197 EE had began work and walked back out to her car to get something slipped on ice on curb and fell ()
## 25198 EE had bent down to get stool and raised up and hit head on cabinet door
## 25199 EE had blood drawn as part of the pilot program nc wellness program within a couple hours bruised area. ()
## 25200 EE had blood was present on handcuffs disruptive inmate feels he was not exposed to anything. Possible blood on both hands.
## 25201 EE had brought the mail to the office when he was leaving he slipped on the snow covered steps and fell down on his buttocks.
## 25202 EE had bug bite on left finger
## 25203 EE had car accident in personal car enroute to community agency-car hydroplaned and hit truck multiple injuries
## 25204 EE had ceiling tile fall in right eye
## 25205 EE had check client sugar level-did not recap usedlancet and was stuck on rt thumb.
## 25206 EE had chest pain after lunch. EE was laying carpet for nccat.
## 25207 EE had chest pains ***denied case*****
## 25208 EE had client in a therapeutic hold and strained rt little finger
## 25209 EE had climbed on side of truck to unload a sprayer and weedeater, stepped down and pulled something in right knee ()
## 25210 EE had climbed scaffold to verify valve was closedstarted climbing down & caught shoe heel on bottomrung of scaffold & fell 18 inches down on floor.
## 25211 EE had closed the cell door ordered inmate to stayinside, but the inmate pushed in an attempt to come out. Lt wrist injured.
## 25212 EE had completed mopping the stairwell and felt dizzy, faint and had a headache
## 25213 EE had computer class and was organizing materialsand securing class room. EE reached into desk and felt a prick on rt thumb.
## 25214 EE had conjunctivitis in eyes
## 25215 EE had contact with client that had scabies.
## 25216 EE had contact with person filling 50-b order. Person was arrested & quarenteened. EE was told later that person was tested positive for TB.
## 25217 EE had contact with poison ivy on wrist.
## 25218 EE had contact with poison ivy.
## 25219 EE had contact with probationer with active t. B.
## 25220 EE had cpi training during the day. Felt back pain @ 5:30 that evening, increasing throughout evening & night. ()
## 25221 EE had crossed the street and stumbled on curb, fell and hit her head
## 25222 EE had delivered meds and was walking down the steps. The steps were slick and he fell down approximately six steps and landed on left elbow.
## 25223 EE had dictaphone earplugs in ears when EE sneezedand EE felt a pop in her rt ear and then later had severe pain
## 25224 EE had discomfort in right hand and middle finger. Subacute right long trigger finger.
## 25225 EE had dishes in hand and turned to go out of room and slipped -EE started to fall and hit rt arm on metal counter
## 25226 EE had dog in arms while walking down steps. EE missed a step and twisted left ankle.
## 25227 EE had door open cleaning bathroom & the door shut mashing her left hand & four fingers ()
## 25228 EE had door pulled from hand, cut to hand, hit by client, fell to floor w/ injury to both knees, client cont hitting EE after he fell
## 25229 EE had drawn blood on inmate using butterfly needlhave difficulty unscrewing, so she separated butter-fly tubing by hand at the white connection
## 25230 EE had dropped paper work behind copy machine, EE pulled copier out, leanded over to pick up papers, lost balance and fell agianst table edge.
## 25231 EE had dust in his eye
## 25232 EE had elevator door close on left hand and would not immediately release causing bruising
## 25233 EE had entered dorm #3b preparing to count inmatesand she slipped and fell. Lt leg went back she fell on knee. Lt leg and lower back
## 25234 EE had escorted inmate to holding cell inmate had injuries to mouth and was bleeding inmate spit blood in EE face and eyes
## 25235 EE had exited vehicle and was walking up to the loading dock on the west side at brody school of medicine. He stepped on what he believed to be water and it was ice causing him to slip. EE fell and
## 25236 EE had exited vehicle to investigate collision involving second vehicle. EE was standing at passenger side when vehicle rolled forward. Knees
## 25237 EE had extreme soreness in left and right fore armhas been getting worse over time.
## 25238 EE had fallen in his office
## 25239 EE had filed paperwork in armoire-when shutting armoire door, the door struck her left knee
## 25240 EE had finished a day's work and was preparing to leave. She had her hands full, while trying to close door, lost balance and fell hitting shoulder
## 25241 EE had finished clients bath & it slipped water went on floor fell striking lt arm on rail. Bruise on lt arm.
## 25242 EE had finished ice machine and put his shoulder against the machine and to place it back in position and injured shoulder.
## 25243 EE had finished in courtroom was carring box of work to office downstairs. EE missed last two steps and stumbled. ()
## 25244 EE had finished mopping floor. She bent down to pick up the bucket of water to empty it. As EE came up she felt a tearing, burning sensation.
## 25245 EE had finished passing meds on ist floor placed med chart on the elevator to bring to 2nd floor pushed back wheel dropped into crack chart samshed ha
## 25246 EE had firearm training on 4/26/05. Stated left elbow had been hurting since training on 5/16/05.
## 25247 EE had five bags of wet laundry to take off the ward. When EE bent down to pick up laundry bag to put onto cart she felt pain in her lower back.
## 25248 EE had flat tire. After changing tire he was replacing hubcap and right thumb hit sharp edge ofhubcap
## 25249 EE had foot propped on bumper of truck, another EE was loading fertilizer, when EE finished he shut tailgate & hit EE's knee
## 25250 EE had foreign body in lt eye - does not recall how it got there
## 25251 EE had given allergy injection to patient. Upon attempting to put needle in, got needle stick to left index finger
## 25252 EE had given blood at a blood drive, fainted & hitforehead on the floor, causing a laceration above her left eye.
## 25253 EE had given blood that day... Went to restroom became light headed... Passed out hitting her head on the wall in restroom
## 25254 EE had given injection to an inmate, almost dropped needle, when she grasped & recaptured needle, she stuck herself in finger
## 25255 EE had given patient a walk and patient turned and struck EE in the mouth.
## 25256 EE had glaucoma screening and wellness fair. EE had reaction to drugs
## 25257 EE had gone to post office to pick up mail(part of daily duties) EE slammed left foot in drivers door of vehicle. Bruised, swollen toes and foot
## 25258 EE had gone upstairs in the probation bldg to do some paper work started back downstairs & fell bruising rt facial bone, lt hand, both knees, back
## 25259 EE had gotten a second hepatitis b shot and arriv-ing back on campus, began difficult breathing, dizziness, weakness, headache, side effect of shot.
## 25260 EE had gotten water into eye causing infection and pink eye
## 25261 EE had grabbed the back of an impaired driver's shirt as he was fleeing from the arrest. It causedee to strain his left shoulder.
## 25262 EE had green light and was beginning to turn north on capital blvd. Employee's vehicle was struck by another vehicle than ran a red light in the south bound lane of capital blvd. ()
## 25263 EE had hand caught in elevator while trying to hold it open.
## 25264 EE had hand come up & grab her around neck & held & hit in middle of forehead
## 25265 EE had hand in presizer trying to dislodge peanuts when co worker came along and cut machine on
## 25266 EE had hand in van door and another EE pushed door closed on hand
## 25267 EE had hand on chair started to sit down and chairmoved out from under EE, EE fell hit head on wall scraper back on front of chair, pain to back
## 25268 EE had hand on corner of door. Van door shut, injuring EE's hand and wrist
## 25269 EE had hand truck tipped back loading boxes and handtruck flipped back striking EE in the forehead
## 25270 EE had hands full and was trying to hang up a mop in the mop holder and turned wrong.
## 25271 EE had head tilted to hold the handset while working on payphone. When he turned head to normal position, experienced burning between shoulder blades
## 25272 EE had hematoma to right eardrum, then bacterial infection occurred
## 25273 EE had her 2nd hepatitis shot and she was having a reaction to it. She also had the same problem with the first one. Multiple injuries
## 25274 EE had her back turned and two students were fighting snd struck her in the back of the head.
## 25275 EE had her hand in the dish machine and another employee accidentally closed the door on EE's hand
## 25276 EE had her hand on the last toilet door, a student opened the exit door and mashed EE's fingers in the door. ()
## 25277 EE had her hand on the wall when the door opened on it.
## 25278 EE had her right hand in door joint, door closed onher pinky finger.
## 25279 EE had high dusted and lean the entire kitchen, began to wring out mop pulled down on the handle and felt a click in lower back
## 25280 EE had his finger pinned between ramp and safety chain causing broken bone on tip of index finger on right hand
## 25281 EE had his hand in the door jam when a client let the door go, causing the door to close on the EE's 3rd and 4th finger of left hand.
## 25282 EE had his lt hand on the control box and pulled th handle w/my rt hand and my finger was caught opened.
## 25283 EE had home visit w/ consumer, headed to porch, dobermnan dog came up from behind care & grabbed leg bit above ankle
## 25284 EE had hot grits on arm. First and second degree burn to right forearm
## 25285 EE had hurriedly pushed vehicle door shut when herright thumb was pinched and slmmmed against door.
## 25286 EE had initiated a traffic stop on a violator veh. After completing violator stop EE had an allergic reaction to unknown susbstance. Rash/itching/body
## 25287 EE had inmate cell opened to give him clothes, whenthe door opened the inmate assaulted EE by hittinghim with his closed fist in the mouth.
## 25288 EE had inmate in a restraint hold when inmate struggled & both men went down to floor and EE hit r elbow on floor and r shoulder popped
## 25289 EE had inmate to remove objct from toilet-EE became dizzy and began to fall-EE att to catch EE from falling an injured rt thumb and left leg.
## 25290 EE had interaction with client, client threw a 2 pound weight against the head over EE's right eye.
## 25291 EE had interactions with patient with the scabies infection. Low back, buttocks, wrists, stomach, chest.
## 25292 EE had irritation in his throat followed by heartburn which it was allergic reaction/nervous system causing swelling and hives
## 25293 EE had itching in left eye; conjunctivitis exposure by clients. ()
## 25294 EE had just brought her boys in from school and she bent over to check their shoes and felt pain in back.
## 25295 EE had just changed client wet bed and was putting shirt on, client sruck finger in eye
## 25296 EE had just completed giving blood when she passedout hitting her head on lid of closed cooler containing drinks for blood donors.
## 25297 EE had just conducted proctoring an exam. EE did a final sweep of auditorium to ensure students had exited. EE was walking up the ramp to exit the auditorium and her right foot turned sideways causing her to stumble. EE injured right foot and ankle. ()
## 25298 EE had just cut limbs fm shrubbery, stubble in wood debris, fell in to shears that were propped up ()
## 25299 EE had just escorted inmate to the ???????? The sallyport door closed on EE thumb.
## 25300 EE had just exited the elevator and fell on her right side.
## 25301 EE had just filled small carpet extractor, bent over to pick up and felt back pull falling forwardon lt wrist.
## 25302 EE had just finish welding, lifted welding hood, the metal popped and a piece of metal went into his r eye
## 25303 EE had just finished administering shots; pt was very angry about getting shots & attacked EE, hitting EE in the left eye and scratching neck & both arms ()
## 25304 EE had just finished making patient's bed and felt pain in back
## 25305 EE had just finished stocking & pulled hepcon machine from its box 3 times then got chest pain. Heart attack mi
## 25306 EE had just finished trimming on grounds, tripped over a tree root, fell on a bush axe, bush axe cut through glove and cut rt thumb
## 25307 EE had just given inmate an injection, turned to dispose of needle, laid needle on counter, washed hands & remove gloves. Pick up needle stuck in hand
## 25308 EE had just got off work, in parking lot was hit by a car ()
## 25309 EE had just gotten to work from doctors apointment where had to fast for testing; she was in the bathroom stall in the ids area; felt light headed and doesn't know if she blacked out or not when she fell or just lost her balance ()
## 25310 EE had just installed and exhaust ignator and EE was standing in the path and burned EE's eye.
## 25311 EE had just issued a speeding citation and was sitting in vehicle on shoulder of road. A vehicle ran into the rear of EE's vehicle.
## 25312 EE had just left the district office driving her state vehicle and was involvedin automobile accident.
## 25313 EE had just left work and was stepping off a curb into the parking lot when she fell. Employee stated that the pavement was uneven, and when she stepped onto it, her right foot/ ankle rolled and she fell to the ground, hitting her left shoulder. ()
## 25314 EE had just lifted some books-put them down and felt pain in rt arm
## 25315 EE had just put trash in dumpster, tripped and fell on curb around base of barrier to steele parkinglot. Rt wrist, knees, and chin.
## 25316 EE had just relieved security officer for break. As she was leaving library, she slipped on marble steps, causing her to fall on her knee & ankle
## 25317 EE had just return from lunch. She was standing and passed out. Her vitals were taken bp:158/90, blood sugar:90; pulse 100; EE hit her on the floor.
## 25318 EE had just secured suspect and was walking out of residence. Stepped in unseen hole and twisted right ankle.
## 25319 EE had just spilled liquid on floor in the kitchenand upon going to retrieve mop to wipe up spill EE slipped & fell, landing flat on his back.
## 25320 EE had just taken mail to another employee and turned to enter bathroom, slipped and fell down hitting bathroom door; chipping her tooth.
## 25321 EE had knelt down to the floor to get a record, when she stood up she hit her head on extension of the file rack. Contusion left side of head
## 25322 EE had labwork done, causing a red streak going uphis arm. Er diagnosed it as phlebitis, early signsof cellulitis
## 25323 EE had lacerations to right hand and pain in rightarm and foot.
## 25324 EE had lap case strap on shoulder the case hit EE in the back hurting back above tail bone
## 25325 EE had latex gloves on, hands/wrists broke out in small welps/bumps ()
## 25326 EE had laundry in arms, tripped over back of bed, fell to floor ()
## 25327 EE had left dorm at speedy face. On side of build-ing her foot turned inward when she stepped into hole. Twisted foot.
## 25328 EE had left hand placed against window frame near door, door was accidently opened against his left hand causing it to be trapped. Small hole/swelling
## 25329 EE had left lower abdominal pain
## 25330 EE had left office to put something in the car; on her way back into the office, she tripped over a concrete block in the parking lot and fell hitting her face and knee on the pavement ()
## 25331 EE had left umstead hall and was coming across the grass next to the building. When she was walking the ground was unlevel and she stepped wrong and felt pressure on her left knee. ()
## 25332 EE had let inmate out of cell to use bathroom. EE was assaulted by three inmates
## 25333 EE had lifted 2 cases of copy paper then drove to greensboro for special assignment with nc state suffered from inflammed disc lower back.
## 25334 EE had lifted a client to the bed position and injured back.
## 25335 EE had lifted and carried the food tray holder thawas filled with empty trays from inmates on 3rd to1st floor. Middle back.
## 25336 EE had lifted client from a sitting to a standing position and was assisting client back into wheelchair when she felt pain in her lower back.
## 25337 EE had lifted several individuals and felt a strong pain in rt wrist.
## 25338 EE had loaded revolver which was in window ledge. Revolver & clipboard fell discharge a live round EE has ringing in lt ear.
## 25339 EE had made a veh stop-issued a citation and rtnd to car-felt pain in left knee
## 25340 EE had mop ringer in hand when he bent over to attach mop ringer. Pain in back.
## 25341 EE had more than one file drawer open- cabinet began to fall and EE tried to catch it to prevent this. Injured rt shoulder.
## 25342 EE had moved a couch back into area and felt a catch in shoulder
## 25343 EE had mower seat in raised position and was working on motor compartment and latch gave way and seat fell on rt forearm
## 25344 EE had muscle spasm in back while restraining 2 students
## 25345 EE had no assistance with two truck tires that were buried in sand-injury to back
## 25346 EE had office visit with offender, alice peele, on 11/24/09. EE discovered today, confirmed by pitt county health department, that offender has active TB. ()
## 25347 EE had office visit with offender. Offender has active TB (confirmed by pitt co. Health dept) - but offender did not inform po of this at that time. Po learned from health dept today that offender has active TB. EE has direct exposure. ()
## 25348 EE had on all the aafety equipement and not sure how what got into the eye.
## 25349 EE had on safety glassed while cleaning bathroom and the bottle was turned towards EE and sprayed with chemical contacting face, mouth, and neck.
## 25350 EE had on wet shoes and fell down stairs. Spine and cervical
## 25351 EE had one rt leg swept out from under and twistedleft leg/knee which was on mat.
## 25352 EE had open sharps container in trunk. With gloveson EE was putting needles back into container. Scrape to l thumb
## 25353 EE had pain around left side of chest and down arm- incident not specified
## 25354 EE had pain in hands and wrists after repetitive use of hole puncher
## 25355 EE had pain in her right wrist from firing of. 357 magnum revolver. Recoil caused pain & it got worse as time went on
## 25356 EE had pain in left wrist from moving resident from bed to wheelchair
## 25357 EE had pain in rt hip/thigh after running 6. 5 miles
## 25358 EE had pain on 05-20 after repetitive bending and stooping per asset inventory. EE was moving a freezer to get asset # and had back spasm.
## 25359 EE had paper towel in r hand, folded it & attempted to pick up the blade when she realized she had been cut on her right hand finger
## 25360 EE had parked at central prison & was walking to building for parole hearing when she slipped and fell on ice injuring right side, hip and low back
## 25361 EE had parked his patrol car a safe distance behind a tractor trailer; the drvr of t/trlr attempted to back down; collided w/car; officer injured in coll
## 25362 EE had parked in parking lot and was wlaking across the street, she tripped and fell on pavement on her right knee causing pain.
## 25363 EE had parked the food truck & slipped & fell on the ice. Injury to lower right side of back
## 25364 EE had performed membrane rupture on pregnant patient. When withdrawing amino hook, it snagged gloveand punctured right index finger
## 25365 EE had piece of metal securred in vise & while sawing, the saw slipped dragging blade over finger
## 25366 EE had place a therapeutic hold w/struggle staff'srt shoulder was injured
## 25367 EE had placed a note on super. Desk and turned to go back into her office when she caught her foot in a phone cord
## 25368 EE had placed broken glass from picture frame on edge of table - later walked by table and cut leg
## 25369 EE had placed hand on clients wrist-client fell and staff fell with her.
## 25370 EE had placed his handcuff on the offenders lt hand and was attempting to put the handcuff on the offenders rt hand offender turned around bit EE
## 25371 EE had placed his lt hand onthe fram work of the door when the door closed it hit the top of his lt hand mashing it between the door and fram work
## 25372 EE had placed one set of hand cuffs on inmate wheninmate raised cuff hands and struck EE in the head while atttempting put waist chains on.
## 25373 EE had placed urine test in freezer and noticed sample leaking in plastic bag. EE used glove to tighten lid-got drop of urine on wrist
## 25374 EE had plexiglass chip on body while helping saw. He removed safety glasses to wipe forehead with arm and chip got in eye.
## 25375 EE had pocketbook on left shoulder, papers & book in right hand, did not see stool, tripped over stool fell across chair and onto floor
## 25376 EE had positive TB skin test representing conversation (TB infections) he is exposed to bcg & TB at work
## 25377 EE had positive reaction to routine TB skin test that was administered by medical staff. Sent to anson community hosp. For chest x-rays.
## 25378 EE had possible exposure to airborne pathogens in TB
## 25379 EE had possible exposure to scabies
## 25380 EE had possible exposure to scabies.
## 25381 EE had poured water and cleaner into trash can to clean using a brush to scrub the trash can water and cleaner splashed into EE's mouth.
## 25382 EE had pressurized flark exploded in fumehood causing cuts on face, hands, arms
## 25383 EE had pt in Mr Hold, then placed pt on transport board, then carried both, back began hurting ()
## 25384 EE had pt wrap legs around his legs causing him to fall
## 25385 EE had punched in to work-looked up at ceiling renovation when something fell in left eye
## 25386 EE had put a resident in restraint she was getting up and felt pressure in chest area.
## 25387 EE had put inmate in shower & locked the door. EE pulled the lock to make sure it was locked & the lock broke.. Inmate stepped out, hit EE in mouth
## 25388 EE had re-wired a boiler (#102) and when the boiler fired up the first time after being re-wired, flames rolled out of it. ()
## 25389 EE had reaction ot ppd test
## 25390 EE had reaction ot ppd test.
## 25391 EE had reaction to TB shot
## 25392 EE had reaction to chemical mix-left arm, neck rt arm, legs numb
## 25393 EE had reaction to hepatitis a shot.
## 25394 EE had recurrence of hives from process of preparing floot, applying glue, placing tile, or applying baseboard.
## 25395 EE had removed a hanging tree branch from over a visitors car. As he exited his truck bed, he lost footing and fell on left knee, & fx right ankle
## 25396 EE had required hepatitus shot for work and alleges he developed a round rash on the back of his left leg
## 25397 EE had resident I etd and holding door to the time room the handle came off and hurt left shoulder.
## 25398 EE had resident in therapeutic hold due to stb, resident pulled at wrist
## 25399 EE had resident up in arjn lift and was trying to push lift around a corner during this she twisted her back.
## 25400 EE had running nose, sore throat burning eyes, breathing problems from fumes that entered the bldg through ventilation system fr welding outside
## 25401 EE had scraper in one hand changing blades. Cut left hand
## 25402 EE had scratches and possibly bite sounds in head, hands and face by fox, while trying to capture it.
## 25403 EE had seen many pts throughout the day.. Bk began hurting after turning/lifting pts at end of day ()
## 25404 EE had seizure and fell to floor hitting his head on the concrete.
## 25405 EE had seizure and had an auto accident causing broken right ankle-laceration on head
## 25406 EE had seizure related to multiple sclerosis EE was found on ground in front of kings daughter's cottage w/scratches and abrasi0ns and was disoriet
## 25407 EE had seizure while working on laptop sitting on a high chair and fell to floor injuring mouth and teeth.
## 25408 EE had self-defense technique apllied to him. Feltpain on rt side and rt wrist.
## 25409 EE had shooting pain in low back after reaching to open drawer at cubicle
## 25410 EE had shortness of breath & his heart was racing
## 25411 EE had shortness of breath & was nauseated
## 25412 EE had skin-to-skin contact with a resident who had scabies infection.
## 25413 EE had slipped and fell on the floor after twist- ing her left ankle. Floor was wet from wax.
## 25414 EE had slowed vehicle to stop a four wheeler when car was hit behind by a pick up truck
## 25415 EE had some type of body fuild out of bottle
## 25416 EE had squatted down in front of box to close it and when EE pulled the tape across the top of the box, EE pulled a muscle in back. ()
## 25417 EE had started out of her office when she slipped and fell to the floor striking back on the wall and her legs and feet hitting the floor
## 25418 EE had stepped on the side of a suspect's truck toget information; as he was stepping down he sprained his ankle
## 25419 EE had stepped up one step from the parking deck tripped and fell forward to the sidewalk.
## 25420 EE had stopped a motorcycle for speeding and was exiting his patrol vehicle while simultaneously reaching for his patrol hat when he felt a sudden pull and painful area in his lower back.
## 25421 EE had stopped a motorist on a traffic violation when a 3rd car was involved in a car accident, ran off the roadway and hit EE's car.
## 25422 EE had stopped a vehicle and completed traffic stop. The driver backed into EE's vehicle instead of drive.
## 25423 EE had stopped a vehicle for a traffic violation & was walking from his patrol car to the violatorscar, EE stepped to the edge of the roadway and. ..
## 25424 EE had stopped a violator-while walking towards the veh EE notice another coming towards him-EE att to move out the way and jumped on shoulder
## 25425 EE had stopped at a stop sign, then proceeded through the intersection when a federal forestry truckhit EE.
## 25426 EE had stopped at rest stop when he slipped out of his truck he twisted his rt foot on ice
## 25427 EE had stopped behind vehicle waiting for it to turn, another vehicle rear ended employee pushing him into the other vehicle
## 25428 EE had stopped for a red light when his vehicle was struck in the rear by another vehicle. Trooper roberts treated and released for a muscle strain in
## 25429 EE had stopped impaired driver. Attemped to removeher from vehicle at which time she sped off, pulling him down road injuring left shoulder
## 25430 EE had stopped on exit ramp and was rearended by another car. Neck, back, legs
## 25431 EE had stopped to allow another veh to turn in frtwhen hit in rear.
## 25432 EE had stopped violator and was getting out of vehand twisted back.
## 25433 EE had stripped and waxed floors throughtout bldg all week-bent over to pickup debris and felt pain in lower back
## 25434 EE had stroke & states that extremes stress on the job caused the stroke ()
## 25435 EE had swellingin arm after drawing blood for work.
## 25436 EE had taken 1 student to bathroom with special needs that has limited mobility walking. He lost his balance, EE reached to grab him from falling.
## 25437 EE had taken a drawer out of the dresser, as he was leaving the room, he stepped on a throw rug and fell on his left wrist.
## 25438 EE had taken a pt off campus to blue ridge radiology, pushing pt up a ramp in a wheelchair, chair began sliding sideways, EE pulling with left hand ()
## 25439 EE had taken down a juvenile for being out of control and fell over a desk and hit hard. Injuredshoulder, rt arm.
## 25440 EE had taken off shoe to get a stone out as he reached for his shoe that was on the floor he fell out of chair and hit corner of desk
## 25441 EE had taken several patient to drink machine. Patient attacked EE knocking him to floor. EE injured right hip. Surgery performed 12/23
## 25442 EE had taken the clock down to change the time. She placed it back on wall but didn't notice it was not secure. It fell hitting EE's foot.
## 25443 EE had the roller trash barrel laying on its side. She was pulling trash out of the barrel when she felt pain in her stomach
## 25444 EE had the stripper machine and I hit a real slick spot on the floor and slide tried to catch myself and slipped down. ()
## 25445 EE had tingling in last 3 fingers with burning sensation in wrist and arm. ()
## 25446 EE had to be on knees during code blue. Knee became sore and stiff
## 25447 EE had to carry patient down stairs and strained groin
## 25448 EE had to catch and hold a patient who was fallinginjured shoulder, back.
## 25449 EE had to chase and wrestle down a drunken studentand strained back
## 25450 EE had to climb in dumpster to find van keys and injured her thumb. Right thumb.
## 25451 EE had to cross over refrigeration line while negotiating obstacles. EE banged left knee.
## 25452 EE had to do a vehicle extraction after a suspect refused to exit the vehicle after a chase. ()
## 25453 EE had to enter vehicle from passenger due to parked car blocking driver's door-struck lt leg on parking brake while climbing in
## 25454 EE had to fire shotgun while kneeling causing strain to lt knee
## 25455 EE had to force hall door open to escort student to isolation, felt pain in lower back when he pulled on door
## 25456 EE had to force pt to take medicine. The pt later walked up to writter onrt side of head w/closed fist.
## 25457 EE had to get client up off the floor about 10x during her sift and sent to med-stat.
## 25458 EE had to get on table to draw on whiteboard in order to explain the current lab to students. ()
## 25459 EE had to go around thru other wheelchairs and to take resident to chair adn resident fell and eepicked resident up and injured back.
## 25460 EE had to go through a small entry on a bus to unlock the door due to the lock breaking this was the only entry to the bus.
## 25461 EE had to help control an aggressive client several times during evening. Client attacked staff & other clients.
## 25462 EE had to help escort two patients at seperate times to restraints. One patient hit EE and fell to floor and was carried to restrainers.
## 25463 EE had to help patient up from commode and strained low back
## 25464 EE had to hold patient down, complained of upped and lower back pain.
## 25465 EE had to hold patient in position for xray and strained chest
## 25466 EE had to hold resident down, resident was kicking EE, headbutting EE in chest and arms, soreness in chest
## 25467 EE had to intervene with client when client tried to pull tv down. EE injured back
## 25468 EE had to kill a rabid beaver and pick it up. He was not wearing gloves at the time.
## 25469 EE had to lift a cart into a van.
## 25470 EE had to lift a inmate in and out of the van in the wheelchair. Injured neck and back. Strained abdominal area causing vaginal bleeding
## 25471 EE had to lift and carry a box of files approx. 1 block.
## 25472 EE had to lift cart over threshold to get it out a door. Arm was caught between cart and door causing bruising to right elbow.
## 25473 EE had to lift client from commode to bed and strained back and lt hip
## 25474 EE had to lift numerous in and out of tub-left hand swollen
## 25475 EE had to lift patients on and off stretchers for ambulance trip and had to carry pt by wheelchair down 3 flights stairs -strain back
## 25476 EE had to lift some ile boxes to get to a file and felt pain in middle of back, from lt side to rt side.
## 25477 EE had to man carry a client from bathroom to chair and injured her back.
## 25478 EE had to move a heavy trellis EE felt pain the next morning in his right shoulder. Surgery 8/9/07
## 25479 EE had to move patient bed to perform venipuncturew/both hands noticed stinging sensation in lt wrist immedicately afterwards.
## 25480 EE had to move some heavy boxes to land fill and then move some tables, his neck was in pain.
## 25481 EE had to open metal gate, as lock was closed back, EE's 3rd finger on left had slipped under the lockand was injured. Finger crushed/skin removed.
## 25482 EE had to pickup a patient off floor in ward hall & take him to his bedroom & strained her back
## 25483 EE had to place a pt in the pic hold for the refusal to follow directions on the ward had to call other staff on the ward to help out.
## 25484 EE had to place a student in her class room to cool off who assaulted by another student while cooling off he shoved EE to get at the other student.
## 25485 EE had to place patient in pic hold and strained neck and back
## 25486 EE had to place patient in pic hold and struck head on wall
## 25487 EE had to postion himself in an arkward postion in which to remove a vavle EE began to pull on pipe wrench
## 25488 EE had to pry elevator door open
## 25489 EE had to pull charts out of mailbox that were stuck, when they broke free EE fell backwards striking head on wall
## 25490 EE had to put EE in restraint. Pt was very hostileinjury to right shoulder... Employee received ppd rating to left shoulder on another claim
## 25491 EE had to reach high overhead to use emergency release door-was hard to open and had to ask another person to help-strained back
## 25492 EE had to remobe mildew from bathroom shower tiles in a back and forward motion - has pain in left arm and shoulder
## 25493 EE had to remove house arrest band from an offender it had to be cut off of the strap prior to removal of strap
## 25494 EE had to remove resident from van by lifting her over the seat and out of the van-strained back
## 25495 EE had to restrain a student from a confrontation and in process sprain back
## 25496 EE had to restrain an out of control student who had assaulted another student.
## 25497 EE had to restrain student and strained neck and back
## 25498 EE had to stand on chair in order to adjust brokenblinds in classroom; he lost his balance and fell on base of spine, twisting ankle in the process
## 25499 EE had to strip search inmate, had to use physical force because inmate struggled to flush marijuana, inmate pushed EE against wall & cabinet
## 25500 EE had to take her car to parking lot. EE was returning to her assigned building when she fell on the sidewalk.
## 25501 EE had to use force on an imate and hurt her left shoulder
## 25502 EE had to use oc spray on an inmate. EE inhaled too much causing lungs to spasm-EE could not breathe.
## 25503 EE had to use physical force on an inmate which later caused lower back pain
## 25504 EE had to walk across gravel & concrete to get to bathroom facilities, ground was wet & EE slipped and fell injuring hip, knee, head & wrist.
## 25505 EE had top two file drawers open and it started to topple over and tried to stop it and when she saw that she couldn't she jumped out of the way.
## 25506 EE had training on 1/24 and 1/25- back began to hurt after she went home
## 25507 EE had turned to close the gate inmate struck hime on his rt arm.
## 25508 EE had turned vacumm off-turned around to unplung vacumm and vacumm fell hitting EE on rt heel.
## 25509 EE had two instances of slipping, relying on her right foot and is now suffering from a foot strain. ()
## 25510 EE had two trash bags and both were heavy and full of books. EE hurt lower back while taking trash. ()
## 25511 EE had two trash bags and tripped over one, while going downstairs
## 25512 EE had unknowingly gotten her shoes wet in bathroom and slipped and fell on stairs
## 25513 EE had unlocked exit door to return to ward when client grabbed her by the collar and both fell to the floor
## 25514 EE had violator stopped when his marked patrol vehicle with it emergency equipment activated, wasstruck in rear by truck
## 25515 EE had walked into the breezeway off of 3rd st andslipped on wet pavement falling onto lt arm.
## 25516 EE had walked outside to green box to get car keysit was wet outside, when walked in, foot slipped on waxed floor-lost balance and fell hitting stair
## 25517 EE had was burned by chemical buring steam while working with chemicals/ hand was protected
## 25518 EE had went out for a fire drill & when she was coming back in, talking w/someone & fell over a light in the ground. Cut lt thigh/abraison rt knee
## 25519 EE hammer drilling through wall, when drill caughtcausing arm to turn & slammed into wall burn occured while soldering copper line. Contusion rt elbow
## 25520 EE hammering home-made steel stake driver it bounced of stake gashing EE's rt hand. Severe cut rt hand and wrist. Nerves and tendon require surg.
## 25521 EE hammering nail into mortar to hang cable-nail dislodge and struck eye.
## 25522 EE hand & fingers cut by a miter saw
## 25523 EE hand a pre-exposure vaccination, no reaction. 2nd pre-exposure vaccination, allergic reaction, rash on upper arm, face and back.
## 25524 EE hand bananas tucked under left arm, started downsteps, foot slipped off step and slid down 3 steps landing sitting position with foot underneath EE.
## 25525 EE hand became caught in a carding machine as he was cleaning the fibers off the machine. He had removed the safety guards.
## 25526 EE hand caught in stall door while installing toilet tissue. Door swung past latch point and caught EE hand on back swing
## 25527 EE hand feeding exotic cat and cat reached paw through and scratched EE on left hand thumb.
## 25528 EE hand got caugt between canvas holder & lift support arm while putting client in wheelchair.
## 25529 EE hand got stuck smashing fingers
## 25530 EE hand pain aggravated by using fingers/using computer keyboard injury palm of left and right hand worse on right hand
## 25531 EE hand slipped while obtaing organisms per educational interpretation.
## 25532 EE hand struck against a door
## 25533 EE hand was caught between a door injurying his rt finger.
## 25534 EE hand was caught between rack and door that was being pushed through the doorway.
## 25535 EE hand was caught between the door frame and box cart.
## 25536 EE hand was caught in closing elevator door.
## 25537 EE hand was caught in door causing injury to lt index finger
## 25538 EE hand was crushed between himself, pt, & head- board in the process of placing pt in manuel restraints, when pt lunged at EE. Lt hand.
## 25539 EE hand was on the door frame when co-worker shut door. Left hand 2nd & 3rd fingers.
## 25540 EE hand was struck by van door when entering, door handled by another EE
## 25541 EE handed co-worker a metal rack and it hurt left wrist.
## 25542 EE handed inmate his food trays and drink and was closing trap door when EE was hit in multiple areas
## 25543 EE handing knife to another employee and knife slipped thru package and cut rt hand index finger
## 25544 EE handled fertilizer and roundup. EE planted someplants. Hand becamed red, swollen and burned.
## 25545 EE handling a newly arrived lab rat, the rat bit EE right 3rd finger, breaking through glove & skin
## 25546 EE handling animal to move from one location to the other/ animal became igitated and attacked EE
## 25547 EE handling glass pipet-pipet broke in half cutting the palm of left hand
## 25548 EE handling lab rat, rat bit EE 3rd finger on rt hand, breaking through glove & skin
## 25549 EE hands broke out while washing dishes in the scullery
## 25550 EE hands broke out with blisters skin cracking and painful
## 25551 EE hands were numb when she awoke on 12-13-00. Injune 2000 EE scooped ice cream and felt sharp painin rt wrist.
## 25552 EE hanging a banner & the ladder fell 24' ladder - 12' up. The ladder rolled & he fell to the ground landing on right foot/knee
## 25553 EE hanging a key against the wall and scraped rt forearm on screw coming from duct work.
## 25554 EE hanging rob in the cabinet that was supposed tobe stuck to the wall. The cabinet unbolted, falling onto EE (back)
## 25555 EE has 2 screws in arm from prev accident-residentstruck EE where the screws are located-causing contusion
## 25556 EE has a catch in his back from lifting.
## 25557 EE has a contusion of the hand when it was pinned between the desk and the wall.
## 25558 EE has a documented long history of allergies to rats EE was exposed to rats on 2/16/07 & 2/19/07 injury to body systems
## 25559 EE has a knot on her right wrist, tingling fingers, & swelling could be due to excessive keying.
## 25560 EE has a positive ppd test.
## 25561 EE has a rash on his left arm from poison ivy
## 25562 EE has a small red bump on the middle finger of lt hand itched but no pain overnight swelling and infected.
## 25563 EE has a type 2 decompression sickness
## 25564 EE has abrasion of skin & resulting soreness of the skin.
## 25565 EE has accumulated pain and soreness in hand/arm due to repeated use of right hand/arm. She lifts, pushes, pulls, cuts, and writes with her right hand/arm. ()
## 25566 EE has allergic reaction from miling cows-rash on wrist, hands, arms, eyelids and fingers
## 25567 EE has asthma w/ shortness of breath. Nurse aministered shot & sent EE to st. Joseph's urgent care center.
## 25568 EE has athelete's foot on left foot and rash on back of left calf, also right foot from swimming at pool and being in out of pool area.
## 25569 EE has bacterial infection from puncture wound of fish gill in rt middle finger.
## 25570 EE has became paranoid (panic/stress) due to client contact
## 25571 EE has been bending over for an extended period oftime lifting rocks; injured lower back
## 25572 EE has been boxing old files as well as moving files around in the file room. Pick up a bag of forms that was to be shredded to move it.
## 25573 EE has been complaining of dust and carpet.
## 25574 EE has been complaining of pain in her rt wrist. It swells and hurts.
## 25575 EE has been diagnosed w/conjunctivitis paymt of 1-rx only - no other pymts to be made
## 25576 EE has been diagnosed with carpal tunnel syndrome does alot on typing, and handwriting
## 25577 EE has been doing long hours of ordering manager in the supply unit at missionary ridge west wildfire in colorado.
## 25578 EE has been doing repetitious handling of the files carrying heavy file load.
## 25579 EE has been doing some typing and lots of writing wrist began to ache.
## 25580 EE has been dx with tick-borne illness. Alleges tick bite while working for this employer estimateshe was exposed summer 2003
## 25581 EE has been dx'd with tenosynovitis/ganglion cyst related to repetitive computer work
## 25582 EE has been entering more data into the cpmtr recently and started having pain in rt thumb.
## 25583 EE has been experience much pain in her wrist in the last 3 months; pain/numbness in right hand un- able to sleep at night
## 25584 EE has been experiencing a constant cough since february
## 25585 EE has been experiencing alot of pain and numbnessin her left arm and wrist during the past several mos from turning chart pages for 3-4 hrs a day
## 25586 EE has been experiencing pain in arm. Has tried toreturn to work several time and pain returns. Possible repetitive motion injury
## 25587 EE has been experiencing pain in hand.
## 25588 EE has been experiencing pain in left fingers from using keyboard
## 25589 EE has been experiencing pain in right elbow, hand, wrist
## 25590 EE has been experiencing pain in the hands.
## 25591 EE has been experiencing pain/numbness in right arm, shoulder, right index finger
## 25592 EE has been experiencing rt arm pain, numbness andtingling over the past 4wks.
## 25593 EE has been experiencing severe eye strain while doing data entry at the computer to the extent thatit is no longer possible for EE to continue work.
## 25594 EE has been exposed to prolonged and continuous excessive noises.
## 25595 EE has been feeling lightheaded and is experienc- ing hair breakage. Thinks it could be related to the radiation machine, which close to her desk.
## 25596 EE has been having left wrist pain since first of August. Left wrist stopped hurting, and right wrist began to hurt, now both are hurting
## 25597 EE has been performing computer data entry as 50% of job duties for 15yrs - pain in fingers of rt hand radiating to rt shoulder
## 25598 EE has been pulling heavy staples from thick documents, tingling in hands.
## 25599 EE has been putting on the latex gloves, started to get rash---red and bumpy. -right/left hands-
## 25600 EE has been typing on an ergonomically incorrect set up both wrists are injures
## 25601 EE has been using a mop that is too large for her to swing without strain
## 25602 EE has been using her hands in the same motion causing her to have carpal tunnel.
## 25603 EE has been working 60-70 hrs/wk towards end of last year on pc. Noticed cumulative stress in neck. Dx w/ misalignment of c-spine and mobility problem
## 25604 EE has been working with the clerks office for 10 yrs, in her job she uses the computer on a reg basis, her doctor feels injury related to job.
## 25605 EE has bilateral pain in wrists from heavy typing
## 25606 EE has blisters and red patches on her left hand, May be caused by flea infestation in office.
## 25607 EE has breathing problems and claims she smelled smoke which caused an asthma attack resulting in being transproted to the hospital
## 25608 EE has bug bites on left & right elbows, left & right knees and left and right buttocks.
## 25609 EE has carpal tunnel
## 25610 EE has carpal tunnel syndrome in both hands from using mouse and keyboard.
## 25611 EE has carpal tunnel syndrome in rt wrist.
## 25612 EE has carpal tunnel sysndrome in right wrist. This type of injury occurs over long period of time.
## 25613 EE has changed job, and now doing more repetitivemanipulation of paper and sorting. Injured wrist fingers.
## 25614 EE has chronic hand & wrist pain due to repetitivemotion of typing and writing.
## 25615 EE has chronic pulmonary distress increasing in frequency and severity since moving into new facility.
## 25616 EE has climbed repeated over the gear has developed a foot problan
## 25617 EE has cts in both wrists
## 25618 EE has developed & diagnosed with carpal tunnel syndrome, is working currently, but is in great discomfort
## 25619 EE has developed a cough and have trouble breathing while working in the building.
## 25620 EE has developed a skin condition. She has broken out into a rash all over her body with intense itching. She works with cows & different chemicals
## 25621 EE has developed a small cyst on left wrist. Potentially due to poor ergonomics of workstation.
## 25622 EE has developed carpal tunnel syndrome caused by repetitive motion; injuring wrist, side jaw, shoulder, neck
## 25623 EE has developed carpal tunnel... Right hand, wrist and full arm
## 25624 EE has developed intermittent severe pain in rightthumb caused by keyboarding and use of trackball and mouse on computer.
## 25625 EE has developed occupational asthma due to dust from capentry & masonry classroom ajacent and nextto his class. Asthma of lungs.
## 25626 EE has developed pain and swelling in right hand due to repetitive motion
## 25627 EE has developed pain in her knees from sitting at another station and her shoulder hurts from holding the phone on it. ()
## 25628 EE has diagnosed EE as having carpal tunnel syndrome as result of repetitive mostion using computer keyboard
## 25629 EE has died from asbestos!!!!!!!----his widow is filing this form 18 & I am not sure when his exposure was.
## 25630 EE has discomfort in lt wrist and hand supposedly from repetitive motion
## 25631 EE has dx of trigger finger (acquired) to lft thumb. Possible use of computer. ()
## 25632 EE has experienced numbness in in finger tips over the week and tingling at night.
## 25633 EE has experienced pain in left hand thumb area.
## 25634 EE has experienced pain in wrist for the last 6 months.
## 25635 EE has experienced stress, anxiety, insomnia and irregular menses due to stressors at jobsite.
## 25636 EE has experiencing problems with dust and mold for months... Headache, sinus, nausea, vomiting
## 25637 EE has expressed concern that she has been exposed to asbestos. Eestates she was walking in the hall past her office and witnessed several men wearing protective gear. She questionedwhat was going on and was told that asbestos was being removed. ()
## 25638 EE has felt pain in his elbow for about 6 months.
## 25639 EE has frequent break outs on hands fm wearing the white gloves in the sinkroom ()
## 25640 EE has gotten up from his chair to speak with a co-worker and upon his return to his desk, he fell, fracturing his left clavicle.
## 25641 EE has had a long history of carpal tunnel-wrist was hurting-called to get appt in hand clinic-was given wrong advise about being seen @ EE health
## 25642 EE has had an audiogram and has a standard hearingthreshold shift from prolonged exposure to noise
## 25643 EE has had difficulty with rubber gloves breaking her hands out since she began working at ncsu.
## 25644 EE has had numbness and tingling in running in arm pits.
## 25645 EE has had reoccurring pain in neck and shoulder over a period of time.
## 25646 EE has had repetitive use of hand/wrist.
## 25647 EE has had some burning eyes, breathing difficulty, nasal passage.
## 25648 EE has had some numbness in both hands since 11/02and it has gotten worse.
## 25649 EE has has an allergic reaction to office environment.
## 25650 EE has hep b injection on 9/21/99 on 9/24/99 reported to health clinic with rt upper arm edema
## 25651 EE has history of seizures, had seizure and fell off of chair hitting the left side of her face and cutting it
## 25652 EE has infected rt eye - doen't know how it happened.
## 25653 EE has inflammation in both wrists and elbows from repetitive motions- typing, computer mouse microsope manipulation, moving equipment
## 25654 EE has injuries to be related to result of repetitive action in using a keyboard and mouse. ***need to obtain aww info from employer**
## 25655 EE has long standing rat allegry that has gotten worse with time.
## 25656 EE has lower back pain resulting from chair that does not have proper support and lifting/bending to files.
## 25657 EE has lt pain in wrist/hand & other problems thatmay later be determined to have arisen from this injury.
## 25658 EE has multiple hives and rash on upper of front and back of arm.
## 25659 EE has multiple sclerosis and fell while getting off elevator.
## 25660 EE has neck and back pain caused by stress of workload. Has trouble functioning
## 25661 EE has neck/back pain.... Ergo eval
## 25662 EE has noticed a lump on her right wrist that has been getting larger & causing pain in the thumb area with loss of strength.
## 25663 EE has noticed in past couple weeks pain in rt hand extending upward toward elbow.
## 25664 EE has noticed issues with both of his hands. Predominately the left hand falling asleep, tingling, and numb feeling throughout the day. Right has had sporadic issues of the same nature.
## 25665 EE has ongoing staph infection. Possible source ofthe infection are the chickens he handles.
## 25666 EE has pain & numbness from repetitive entering of data in excessive amounts.
## 25667 EE has pain and burning in right thumb and wrist also both shoulders.
## 25668 EE has pain and numbness in both arms.
## 25669 EE has pain in both arms above elbow, tingling in both hands, pain in low back. Initial diagnosis - cts
## 25670 EE has pain in both hands.
## 25671 EE has pain in both wrists and hands from heavy computer usage
## 25672 EE has pain in both wrists/elbows
## 25673 EE has pain in forearm, upper arm and shoulder or right arm due to repetitive motion drawing blood for lab studies
## 25674 EE has pain in her hand due to constant typing & repetitive motion. Began in Nov. '06. Right hand.
## 25675 EE has pain in her hands from repetitive keyboarding
## 25676 EE has pain in left shoulder and arm while liftingtrays to wash down.
## 25677 EE has pain in left wrist & hand. Affects her ability to grasp with thumb and fingers-----due totyping and repetitive motion.
## 25678 EE has pain in lower abck while lifting client.
## 25679 EE has pain in lt thumb and tingling in her fingeron lt hand. Believes its carpel tunnel syndrome.
## 25680 EE has pain in neck with sensation of needless/pens sticking, permeating downt he shoulders, back arms from computer station.
## 25681 EE has pain in rt arm and shoulder from using computer - poor computer set up in work area
## 25682 EE has pain in rt hand and wrist from processing data
## 25683 EE has pain in rt hand using excessive computer usage
## 25684 EE has pain in rt side of neck & rt shoulder afterqualifing with shotgun & rifle
## 25685 EE has pain in rt wrist when bending
## 25686 EE has pain numbness, & throbbing in hands & wrist, constant stiffness & soreness in neck & shoulders due to repititious use of computer.
## 25687 EE has pain traveling the full length of her arm- all the way to the back of neck & down shoulder.
## 25688 EE has pain while writing, driving. Tingling sensation
## 25689 EE has poss cts in rt hand from repetitive motion from data entry
## 25690 EE has possible hearing loss due to noise made by air compressor.
## 25691 EE has presented symptoms of tendonitis in her right arm
## 25692 EE has previously reported to EE's supervisor thathe was having pain in his hand due to continious driving and lifting.
## 25693 EE has progressivley worsening condition from repetitive use of the computer.
## 25694 EE has raised bumps under chin area, exposed to client with rash in work area.
## 25695 EE has rash of unknown origin on legs, arms back, stomach and chest
## 25696 EE has rash on hands and forearm-suspects chemical
## 25697 EE has rash on legs- 3rd reported case of dermatitis from g3 unit.
## 25698 EE has rash on palms & fingers of both hands, & feet. May be allergy to bug bite or contact der- matitis.
## 25699 EE has rash over 90% of body.
## 25700 EE has received multiple insect bites over the last 2 months causing swelling
## 25701 EE has reported that use of mouse, keyboard, and excessive flexion has caused numbness and tinglingand sharp pain in wrists
## 25702 EE has resiratory and skin problems.
## 25703 EE has respiratory sinus; allergic reactions that states has worsened by being in basic skills ctr that has mold in it.
## 25704 EE has ringing in ears from client hollering for 2 days.
## 25705 EE has shooting pain up into the arm
## 25706 EE has sore arms, wrists, fingers & joints while transcribing extra orders while transcribers were on vacation.
## 25707 EE has sores on face. MRSA virus has been present in lansboro correctional facility.
## 25708 EE has starting noticing red area on hands unsure if it is caused by the type of gloves that she is currently using.
## 25709 EE has stated constant pain in rt hand and fingersfollowed by pain shooting up right arm. EE performdata entry all day.
## 25710 EE has stated she pain in rt hand and finger. EE perform data entry most of the day.
## 25711 EE has states EE complained of thumb on right hand hurting
## 25712 EE has stepped out of cell 1-d pod to speak w/ theofficer in the control booth. EE had his left handin the sliding door. EE closed the door and his ..
## 25713 EE has stopped in roadway to allow another vehicle to trun right into private drive and was struck in the rear by a training vehicle.
## 25714 EE has stopped suspect for not wearing seat belt- att to arrest suspect for license revoked-when suspect ran-EE went after and tripped in hole
## 25715 EE has suffered from a cumulative injury through continuous use of keyboard and calculator daily.
## 25716 EE has tendionitis from handling large heavy objects in conjunction with routine work duties.
## 25717 EE has to ?? Omtp bed of pickup to unload gas cyl-inder. While trying to ?? Bed ees left foot slippedfrom tailgate, left knee struck top of lift gate.
## 25718 EE has to adjust chair level between desk and computer station injured back.
## 25719 EE has to do alot of lifting; hernia
## 25720 EE has to lift consumer equipment and deliver it to services, she noticed soreness in her lower backthe next day and it is still bothering her
## 25721 EE has to repeatedly open cans with can opener and has pain in rt bicep area
## 25722 EE has to throw mail into tubs all day. EE was throwing pieces of mail into tub at a fairly fast speed. Small bump on arm began to swell.
## 25723 EE has torn ligament to the 4th finger of rt hand
## 25724 EE has unknown left shoulder pain. States she feelit is due to improper work chair, with no adjustblarm rest
## 25725 EE has walked from burnett womack to ambellatory care center, she came to the end of the sidewalk where it meets the acc parking lot lost her. ..
## 25726 EE has wirst and arm pain from repetitive motion from keying on computer
## 25727 EE has wrist pain as overuse of mouse/computer
## 25728 EE has wrist problems, ctd's, use of computer equip-ment over the past 8 years.
## 25729 EE hauling dirt down hill and bobcat fell forward injury to back
## 25730 EE have had continous allergies & sinus problems. October 9-20, 2007 EE experienced sinsus pressure, headaches & pain on left side of face.
## 25731 EE having lunch got up must have turned foot wrongit became very painful, as time passed foot swelledup and EE unable to put weight on
## 25732 EE having migraine headaches from chemicals.
## 25733 EE having numbness in both hands after keying new cases, updates and typing
## 25734 EE having pain in rt elbow and arm - thinks May berelated to locking and unlocking doors.
## 25735 EE having pains in rt foot and lower leg from previous injury.
## 25736 EE having personal conversation on phone-fainted and struck head on desk and lost consciouness.
## 25737 EE having problems breathing due to dust and fumesin work place.
## 25738 EE having state van checked before travel garage employee accidently pulled garage door down on EE striking her in the head & face
## 25739 EE having the single leg take down, technique. EE felt tear in her stomach. This was during crdt training.
## 25740 EE having trouble breathing from paint in clinicalarea.
## 25741 EE having trouble with back on the right side and down leg and reinjured during pic class.
## 25742 EE he has unloading fencing from the truck his glove get hung in the fence and end of fence wire cut palm his lt hand.
## 25743 EE he was assisting with an agreesive inmate when he fell striking his rt knee.
## 25744 EE head struck on concrete while climbing steps up a tower.
## 25745 EE headbutted by patient x4, scratched on r eyelid, fell on l knee ()
## 25746 EE heading to copier & fell over box & landed squarely & heavily on r knee/hand ()
## 25747 EE heard a client come out of room; client was running down hallway; EE ran after client and stumbled onto floor hurting both knees; left hand and right shoulder.
## 25748 EE heard a loud noise swing around on the rotating chair. Injured low back.
## 25749 EE heard a noise coming from male hall and went to investigate and found pt lying n the floor w/a sheet aroung neck tried to untie and twisted back
## 25750 EE heard a noise-turned suddenly and struck elbow on side of building
## 25751 EE heard a pop in his rt arm when he was lifting 3metal trash cans out of his truck at the park.
## 25752 EE heard alarm in client's room - client using bathroom-started to fall-EE caught client under the arm and fell on left side of leg.
## 25753 EE heard call for assisctance and ran to assist. Call was cancelled & EE stopped while turning corner, twisting knee.
## 25754 EE heard elbow pop while signing as a student
## 25755 EE heard patient and hurried down hall to see to patient and felt right knee twist
## 25756 EE heard someone flushing commode in client's bathroom, EE went to door to see, went to open doorclient burst out door, EE hitting back of rt hand
## 25757 EE heard telephone ring and left copier room to answer, turned corner, floor was wet from being mop-ped, fell, hitting knees and left hip and elbow.
## 25758 EE heating bottle of agor in microwave-it boiled over shooting out of bottle & burning EE's face
## 25759 EE held clients head while in the whirlpool spa sothat the clients head would be above water. EE strained back, see in er rtw no missed time
## 25760 EE held out arm to prevent client from falling.
## 25761 EE held pyrax flask in right hand, was being movedacross lab when it hit edge of bench top, shatterdand pushed glass thru EE right index finger
## 25762 EE held resident in pr hold for extended period of time & wrist started hurting
## 25763 EE help move a filing cabinet, strain to left shoulder
## 25764 EE help move washers down stairs, the machine was not locked on dolly and slipped striking left hand
## 25765 EE help put away supplies. The next day she developed soreness and pain in upper left leg.
## 25766 EE helped an inmate draw up insulin and didn't realize the inmate had blood on his hand which transferred to the insulin bottle, exposing EE
## 25767 EE helped break up 2-juveniles fighting-inj rt shosalary continuance. Ph# left by clmt 910-763-7895 rehab spec-anthony enoch - file closure- 1/2003**
## 25768 EE helped cna lift a client in her chair, about 1hr lated felt pain in back.
## 25769 EE helped get out of bed and to their wheelchair about 30mins later felt pain in lower back and hipworsend when sitting.
## 25770 EE helped inmate lift a container full of potatoes& carried it & put it in the cooler on the shelf.
## 25771 EE helped lift an inmate and slide him to the stretcher
## 25772 EE helped load tree limbs on a dump truck on the unit. He hauled the limb to the firing range. On5/2/96, he felt a pain in his right shoulder.
## 25773 EE helped move printer and injured wrist.
## 25774 EE helped move things from storage to office and dust made her sick.
## 25775 EE helped patient up off the floor and back into bed after fall and injured herself
## 25776 EE helped to get inmates out of cell during fire. Smoke inhalation
## 25777 EE helped to pull patient up in bed. She then sat in chair and when she went to get up she felt sharp pain in left side under ribcage
## 25778 EE helped transport an inmate who was covered in blood and was exposed, both hands
## 25779 EE helped with snow removal. EE complained of painin his arm. EE states that he did not think that it was work related
## 25780 EE helping 2 other workers lift carpet, right arm had a sharp pain in the bicep
## 25781 EE helping a pt, when rt leg got caught under the pt. EE tried to stand up, not realizing leg was trapped, injuring right knee
## 25782 EE helping a sick student-student began to fall with EE causing EE to strike left elbow on metal bed.
## 25783 EE helping a student while walking and trying to prevent child from falling missed step jared back
## 25784 EE helping a student who was involved ina behaviorepisode & during the incident the student bit her left hand
## 25785 EE helping an aggressive patient, placing patient on transport board & felt sharp pain go down neck & left shoulder
## 25786 EE helping another trooper with an assault. Subjectbegan punching EE, EE defended by using open hand strikes to place subj. Onto the ground
## 25787 EE helping block up area to help prevent flood water from coming into buildings. Water splashed in lft side of face & eye.
## 25788 EE helping change client-turn sheet to lift clientand client shifted wgt EE felt pull in back.
## 25789 EE helping change patient's bed bent over & could no straighten up. Lumbar strain
## 25790 EE helping clean up after graduation-shoes stoppedshort & pitched EE forward on face-contusion to nose
## 25791 EE helping client dress, client fell back onto bedee caught to keep head from hitting wall. Pain in upper back
## 25792 EE helping client get into van-wgt to heavy to hold-client fell into EE's arms which caused EE tostrain left thigh
## 25793 EE helping client get off toilet strain back, neck and left wrist
## 25794 EE helping client get on stretcher and hit left finger on stretcher.
## 25795 EE helping client get out of bed and hit left toe
## 25796 EE helping client in bedroom-when leaving client slammed door on EE's rt hand
## 25797 EE helping client into chair and left leg popped
## 25798 EE helping client on transport van, stepped on va, left arm hit a piece of medal sticking out
## 25799 EE helping client out of tub, clients feet slipped& pulled me toward water pulled her up beside tub. Injury neck, chest, lt shoudler, arm, hand, both wrist.
## 25800 EE helping client pull her pants up-client begin to go down to floor EE felt back pop
## 25801 EE helping client to chair, client knees buckled resulting in EE bearing clients weight injury pain in back
## 25802 EE helping client to floor when client attacked EE-EE carrying client to place in restraints pulled back.
## 25803 EE helping client to leave restroom-client became unsteady causing EE to trip over feet.
## 25804 EE helping client up from floor and sprained rt wrist in process
## 25805 EE helping client with physical activity-client became upset and bent EE's rt thumb backwards.
## 25806 EE helping co-worker nail down carpet on weeder box, co-worker struck nail that deflected and struck EE in eye
## 25807 EE helping co-worker unload a lgr shipping crate from trk when crate shifted catching EE's fingers between crate and truck.
## 25808 EE helping control/restrain inmate & was pushed against a locker which hit her back
## 25809 EE helping ems to put resident on stretcher
## 25810 EE helping harvest on research when a small particle was blown into left eye.
## 25811 EE helping hospital staff move a vehicle crash patient-strain to groin
## 25812 EE helping individual put on artificial limb EE leaned forward in office chair with wheels chair rolled EE fell injury left side bottom
## 25813 EE helping individual to bathroom, individual started to fall, EE holding on to her w/gate belt twisted arm trying to keep individual from falling
## 25814 EE helping inmate off floor & into wheelchair caused strain to lower back
## 25815 EE helping inmate to treatment room, when inmate threw his head back head butting EE on right side of head above left eye.
## 25816 EE helping install equimpent-picked up power stripthat shooted out and burned fingers on rt hand
## 25817 EE helping lift dog to radiation table-dog turned and bit EE on left hand.
## 25818 EE helping lift heavy metal carts after being cleansed felt pull in back and stomach, EE lifting pots and felt pull in back. Strain
## 25819 EE helping lift mower onto back of truck and got finger caught in the axle.
## 25820 EE helping lift pieces of equipment onto table.
## 25821 EE helping lift resident from bath tub chair. Heavier that most residents - resisting didn't want to get up. EE hurt back.
## 25822 EE helping load trailer when he stepped back & fell
## 25823 EE helping move a concrete table so they could work on an overhead light fixture, strained back
## 25824 EE helping move from one location to another, was back up to open door when she fell injuring rt foot. Broken rt foot.
## 25825 EE helping move furniture and injured rt elbow
## 25826 EE helping move patient on fx board to stretcher when left hand & wrist were caught between board & stretcher. Patient weighed 181 lbs
## 25827 EE helping move pellet in basement when peller jack ran over rt foot causing EE to fall and twist rt leg and hip.
## 25828 EE helping other co-workers phys control physical agressive teenager who had attacked another. Lowerback and lt foot
## 25829 EE helping patient off bus & his weight shifted & he was leaning on her elbow, arm and left side
## 25830 EE helping patient prepare for shower, patient hit EE in the nose causing bleeding.
## 25831 EE helping patient to get undressed patient lost balance & started to fall, EE tried to support pt when EE fell into adl cart, sprain rt thumb
## 25832 EE helping patient up from floor. Patient was pulling against EE. EE felt pulling in rt shoulder. Right shoulder strain.
## 25833 EE helping patient up from the floor---something in her back popped.
## 25834 EE helping patient up, twisted elbow backwards.
## 25835 EE helping prepare breakfast-knife slipped and cutee on left hand.
## 25836 EE helping pt stand for dressing sudden movement in small space twisted back
## 25837 EE helping put pressure on I/m that had cut himself and she stated she got blood on her right forearm
## 25838 EE helping put pt in bed, low back began hurting ()
## 25839 EE helping put up clothing & standing on stool, whencloths slipped from hand, she twisted wrist.
## 25840 EE helping resident up & resident lost balance pulling her off ballance causing her to jerk and injurying her back.
## 25841 EE helping restrain an inmate when inmate spit on EE's rt cheek of face
## 25842 EE helping restrain client and felt pain in left elbow.
## 25843 EE helping restrain combative inmate when inmate spit on upper left side of EE's back-also rec'd scratches to right forearm/lt knee
## 25844 EE helping setup folding tables for dinner when one of the tables fell onto EE's foot.
## 25845 EE helping student move a wooden bent laminator when it flipped over and pinned tip of middle finger on left hand.
## 25846 EE helping student that injured herself using a hand grinder, blood contact to cut on thumb.
## 25847 EE helping student while walking. Trying to prevent child from falling, misstepped, jared back
## 25848 EE helping student, went to stand when her r foot tangled around cord from keyboard making her trip & almost fall.
## 25849 EE helping throw debris from truck onto a dump trkand injured back.
## 25850 EE helping to calm patient -- patient turned and twisted causing EE to twist lower back
## 25851 EE helping to change a cleint & when she left the room she fell in hallway states that she beleives a sheet was in the floor & slipped on it
## 25852 EE helping to control a combative resident, patient grabbed EE's eyeglasses and broke arm off glasses
## 25853 EE helping to get cadets on bus after training cadet struggled with EE. Injury left arm bent back and sprained left elbow
## 25854 EE helping to get water out of service sink and complained about her leg hurting. Leg pain.
## 25855 EE helping to handcuff lt knee struck abruptly.
## 25856 EE helping to lift resident back into his chair from floor. When she pulled her back. Atty-harriett hopkins 19-620-7661fax-919-620-857
## 25857 EE helping to lift resident into wheelchair, felt a pull in hand. On 2nd incident, trying to sit re-sident down, resident hesitated, thumb pulled back
## 25858 EE helping to move concrete table-table was dropped and hit EE head on the way down.
## 25859 EE helping to move staircase when the group set it down it was released to early & caused injury to EE head & neck
## 25860 EE helping to put disturbed patient in rest. Durigaltercation, EE toe hyper extended causing evasionof toenail. Contusion to left toe
## 25861 EE helping to put out a battery fire injury inhaled smoke
## 25862 EE helping to remove cat from maintenance dept cat bit EE on index finger through knuckle and right pinky
## 25863 EE helping to remove metal panel used to cover empty 4 ft deep animal pool slipped off the edge fell backwards twisting left knee
## 25864 EE helping to restrain agitated pt, EE hit right side of head & shoulder on wall, then fell on right hip.
## 25865 EE helping to restrain combative aggressive, patient's blood splattered in face.
## 25866 EE helping to restrain patient patient grabs EE back with his hand and twisted very hard injury right side of back and upper body sore
## 25867 EE helping to secure patient he was kicked in lt knee & lt thigh. Pursuing 2nd patient hi lt knee on door. Injured lt knee and thigh.
## 25868 EE helping to subdue fighting patient, EE fell to floor, sprain to left knee
## 25869 EE helping to unload truck as EE stepped from truck onto pavement twisted knee
## 25870 EE helping two co-workers move file cabinet on a hand trk and got finger caught between cabinet and door jam
## 25871 EE helping two other staff members subdue hostile inmate. EE inmate kicked him on the rt causing pain and swelling to knee.
## 25872 EE helping unhitch boat/trailer frm trk-when trlerdetached and dropped to ground EE's finger was caught between trailer and ground.
## 25873 EE helping unload trk with back to trk when an airvoid fell off of trk and hit EE on the inside of rt calf.
## 25874 EE helping visitor bend long atenna on his truck couldn't get into the parking deck. Fiberglass in index & middle finger of rt hand.
## 25875 EE helping vr clients move lumber-when moving board felt a sharp pain in rt wrist.
## 25876 EE helping with loading a refrigerator on truck. Cut left hand on metal band on the box.
## 25877 EE helping with patient who was trying to go out door; EE walked pt. Down hall and pt. Pulled legs off floor; injury to lt neck, elbow and shoulder.
## 25878 EE helping with procedure, trying to remove tube from cats mouth. Cat reflexed and bit left thumb & forefinger.
## 25879 EE herding cows into working chute when cow backedinto crowd gate crushing fingr btwn gate and fenceamputation of left index finger
## 25880 EE hiking up steep, rocky hills. Lt ankle and knees swollen and painful.
## 25881 EE his his ankle while carrying a mop bucket... Left ankle
## 25882 EE hit a bucket with a hammer which deflected and he injured his wrist
## 25883 EE hit a dip in the pavement and lost her balance hurt her right knee and left ankle
## 25884 EE hit a light pole with patrol vehicle due to not getting relieved in a timely fashion he fell alseep and drove off the road into a light pole
## 25885 EE hit a patch of poison ivy while trimming with a weedeater
## 25886 EE hit a slick spot on the floor... Injured left side, arm/leg
## 25887 EE hit a stump at a fire and it made his back soreon 2/19/02 then on 2/27/02 performing routine inspection was climbing down and felt pull in back
## 25888 EE hit a utility pole when his vehicle ran off theroadway causing internal and head injury.
## 25889 EE hit and cut left hand index finger on stamping machine repetitively, developed cyst on left index finger
## 25890 EE hit arm against wall whil setting up for spring registration
## 25891 EE hit arm on door, received scratch
## 25892 EE hit back of head on the sink while picking up some paper towel off the floor.
## 25893 EE hit bottom edge of door with forehead while walking through cutting it
## 25894 EE hit by client in neck area. Brusie to neck
## 25895 EE hit by mental pt during normal wrk duties
## 25896 EE hit by patient - pain, swelling, stiffness of rt knee.
## 25897 EE hit by pt on the hand
## 25898 EE hit by pt suddenly on cheek and chest. ()
## 25899 EE hit elbow causing bruising and swelling
## 25900 EE hit elbow on cabinet
## 25901 EE hit elbow on corner of door vacuuming.
## 25902 EE hit elbow on door jam while moving empty computer boxes
## 25903 EE hit elbow on door whild pulling med cart through
## 25904 EE hit elbow on steel window casing. Contusion to left elbow
## 25905 EE hit elbow/arm on corner of sorter machine.
## 25906 EE hit finger with hammer trying to remove fan blade off a motor shaft
## 25907 EE hit foot on chair leg
## 25908 EE hit foot on chair leg. Injured lt toe.
## 25909 EE hit foot on corner of desk
## 25910 EE hit forearm on desk
## 25911 EE hit forehead on corner of mantel
## 25912 EE hit hand on another EE wrist hitting other EE watch injuring finger
## 25913 EE hit hand on counter, l ring finger swollen, pain w. Movement and can not straigten
## 25914 EE hit hand on door jam when putting inmate in room
## 25915 EE hit hand on door. Rt hand.
## 25916 EE hit hand on drain board.
## 25917 EE hit hand on metal door of storage locker while stacking books which caused cut to left hand.
## 25918 EE hit hand on metal soap dish which resulted finger being cut.
## 25919 EE hit head on a sharp edge, EE was picking something up and bumped his head when stood up.
## 25920 EE hit head on bookrack when entering restroom which cause headaches, swelling and slight indention.
## 25921 EE hit head on corner of oven door cutting head
## 25922 EE hit head on corner of tailgate of state vehiclecausing a laceration above forehead.
## 25923 EE hit head on desk when bending over to pick up pencil.
## 25924 EE hit head on door
## 25925 EE hit head on metal corner of disposables box in women's bathroom, cut to head and bleeding
## 25926 EE hit head on shelf while placing paper in zerox machine.
## 25927 EE hit head on stairwell when packing up after a meeting. Concussion.
## 25928 EE hit head on state car resulting in cut/gash 1/2 inch.
## 25929 EE hit head on top drawer of filing cabinet
## 25930 EE hit head on top of ice box causing contusion rt side of head.
## 25931 EE hit head on truck door ()
## 25932 EE hit head on upper desk and approx. 1 hour later became disoriented and walked into glass door upon her return from the restroom. ()
## 25933 EE hit head on valve stem ()
## 25934 EE hit head on wall-mounted cabinet while getting up from table
## 25935 EE hit head on window by crawling through building during search
## 25936 EE hit head on wooden support beam ()
## 25937 EE hit head under stairs while removing ladder
## 25938 EE hit head with weight bar, while demonstrating alift. Contusion forehead.
## 25939 EE hit her elbow against the locking mechanism in the stall; right elbow
## 25940 EE hit her foot against a heavy drawer... Left ankle
## 25941 EE hit her foot on a hydraulic chair; injuring right foot (little toe)
## 25942 EE hit her foot on the door of the refrigerator when she opened the door to put her lunch. Right foot.
## 25943 EE hit her hand on top of rack in the kitchen
## 25944 EE hit her head against the doorway of the truck while entering the vehicle
## 25945 EE hit her head on a door frame
## 25946 EE hit her head on a goathouse that was in the parking lot where her car was parked. A carpentry class was building it.
## 25947 EE hit her head on a steel pipe, while on a ladderto open a valve.
## 25948 EE hit her head on brick wall-while restraining student that was refusing to rtn to room
## 25949 EE hit her head on the air conditioner ****monitor bills--tx unrelated to w/c injury****
## 25950 EE hit her head on the wall in the bathroom; injured forehead
## 25951 EE hit her knee against a metal desk drawer
## 25952 EE hit her knee on support beam or board under desk.
## 25953 EE hit her knee on the corner of the control panel
## 25954 EE hit her knee on the inmates iron bed while putting restraints. Slight abrasion, rt knee, shinbone, swelling rt knee.
## 25955 EE hit her left hand on the wall trying to assist a patient
## 25956 EE hit her left knee and right ankle, and hurt her right upper arm & hand as she fell. Left knee contusion, rt foot/thum/ankle sprain.
## 25957 EE hit her left knee on a chair.
## 25958 EE hit her left knee on the floor while restraining inmate
## 25959 EE hit her leg on a table after cleaning a suite
## 25960 EE hit her lt elbow on the marble wall after exiting the bathroom
## 25961 EE hit her middle finger on her rt hand on the topof the desk
## 25962 EE hit her mouth (tooth) on a crossbar
## 25963 EE hit her right eyebrow on an upside down chair in the storage room.
## 25964 EE hit her right knee on the desk
## 25965 EE hit her rt knee on desk drawer while getting out of chair
## 25966 EE hit her toe on chair that was on back porch. Fracture lt 5th toe.
## 25967 EE hit her wrist against table; injured right wrist
## 25968 EE hit her wrist on maidcart.
## 25969 EE hit herself in the eye with paper book. Right eye.
## 25970 EE hit his elbow on the wall while in restroom.
## 25971 EE hit his elbow while placing patient in nci hold. Employee was out March 26 -27th. Returned to wor k Mar. 28th.
## 25972 EE hit his hand on a clothes buggy while removing an inmates personal property, injuring rt finger
## 25973 EE hit his head on a low beam..... ..
## 25974 EE hit his knee on a metal bar that was sticking out from a table; injured left knee
## 25975 EE hit his left elbow on leaf of desk
## 25976 EE hit his left elbow on stall door
## 25977 EE hit his left leg against steel bed while gaining control of an inmate. Left shin swollen and bruised
## 25978 EE hit his left leg oncart, cutting it.
## 25979 EE hit his leg/knee against a table seat while talking with inmate ()
## 25980 EE hit his nose with metal on sweeper truck hose
## 25981 EE hit his right elbow on the mower; fractured
## 25982 EE hit his rt hand between a rack and the door
## 25983 EE hit his rt hand on the door frame while removing ladders
## 25984 EE hit his shoulder on a pipe
## 25985 EE hit his shoulder on stairway... Left shoulder
## 25986 EE hit his wrist on the corner of his desk.
## 25987 EE hit in back of head standing up from bent position as another EE was removing a wood pallet from loading dock.
## 25988 EE hit in lft side of head by pt while EE putting bib on pt to go to lunch pt knocked EE to floor
## 25989 EE hit in nose by patient. EE used pit to stop the assault. At the time of incident no discomfortwas in wrist until 6/14. EE seen at clinic 6/17.
## 25990 EE hit in rear by another veh pushing EE veh into other stopped veh causing back and neck pain..
## 25991 EE hit in rear by another vehicle while driving. Minor back and neck injury
## 25992 EE hit in rt rear side of vehicle, muscle strained in mid section of back
## 25993 EE hit in the rear of patrol vehicle while sitting at traffic signal - middle back pain
## 25994 EE hit in the rear when light turned green to avoid car in front
## 25995 EE hit knee on bed
## 25996 EE hit knee on bed frame during the seclution of a hostile patient
## 25997 EE hit knee on desk while completing daily tasks.
## 25998 EE hit knee on end of desk.
## 25999 EE hit knee on filing shelf after filing files. Left knee
## 26000 EE hit knee on metal handle of desk drawer as he was getting up
## 26001 EE hit knee on pt/ ot van.
## 26002 EE hit knee on the side of desk.
## 26003 EE hit knees on steel steps.
## 26004 EE hit knuckle of right index finger against drink machine. Small scratches to right index finger.
## 26005 EE hit left 1st finger on gate
## 26006 EE hit left elbow while opening the door of a container that was stuck
## 26007 EE hit left hand on bed railing when client pushedher down on bed. Laceration/contusion left hand.
## 26008 EE hit left index finger on bed rail
## 26009 EE hit left knee on desk when she sat down when she got up and turned left and bent down.
## 26010 EE hit left knee on desk.
## 26011 EE hit left leg on chair trying to prevent pt fm hitting another pt ()
## 26012 EE hit left leg on desk.
## 26013 EE hit left leg on metal grating on chair dolly, laceration to left leg
## 26014 EE hit left shoulder on left side of neck on air conditioner vent.
## 26015 EE hit left top side of head on lower row of mail boxes while rising up from sorting mail
## 26016 EE hit left wrist on desk
## 26017 EE hit left wrist on door when leaving room
## 26018 EE hit leg on edge of cart. Rubber edging is no longer around corners.
## 26019 EE hit leg on restraint bed while putting patient in seclusion and restraint
## 26020 EE hit leg with truck door
## 26021 EE hit lt hand w/ hammmer while changing trap on #40 seam line.
## 26022 EE hit lt thumb on door frame
## 26023 EE hit lt thumb on side of client chair when EE attempted to lift client from chair onto tub.
## 26024 EE hit nose on a steel pipe. EE seen in er and released to return to work. ()
## 26025 EE hit on hand by someone opening a door with force, injury jammed left wrist
## 26026 EE hit on head by inmate which knocked him to floor. Inmate then kicked her and sprayed her withpepper spray. Fingernail ripped off, face red
## 26027 EE hit on rt forearm by client being placed in theraputic hold.
## 26028 EE hit on the back of his head with a bar of soap. Struck on side of head.
## 26029 EE hit other in the rear causing back pains.
## 26030 EE hit ov in rear-no injuries.
## 26031 EE hit palm & knuckle of rt and on dishmachine causing a bruise.
## 26032 EE hit palm of hand with hammer while holding a stake.
## 26033 EE hit r leg on the corner of the desk, EE felt lower back (sort of jar), r hip
## 26034 EE hit right ankle on computer tower under desk while turning from computer to answer phone.
## 26035 EE hit right ankle on dorm 6 med cart wheel. Bruiseee suffered bruise to right ankle when he got up to investigate noise.
## 26036 EE hit right elbow and right shoulder on wall during eri ()
## 26037 EE hit right elbow on the wall
## 26038 EE hit right hand against metal cabinet @ the edgeof doorway. Going to answer phone.
## 26039 EE hit right knee on abdominal machine while performing prescribed aerobic circuit
## 26040 EE hit right knee on back side of desk when EE satdown.
## 26041 EE hit right knee on corner of desk. Rt knee/leg.
## 26042 EE hit right knee on filing cabinet while collecting paperwork
## 26043 EE hit right side of foot on housekeeping cart. ()
## 26044 EE hit rt arm on floor breaking up fight.
## 26045 EE hit rt elbow on post while scraping trays
## 26046 EE hit rt hand on corner of organ during christmaslighting ceremony.
## 26047 EE hit rt hand on housekeeping cart causing gangleon cyst
## 26048 EE hit rt hand on wall tingling and numbness.
## 26049 EE hit rt knee on bed frame while restraining juvenile
## 26050 EE hit rt knee on coffee table & later hit it again on chair on 4/22. Couldn't walk when she got up. Was not seen in clinic until 5/6.
## 26051 EE hit rt knee while exiting veh-then twisted sameknee while walking up steps of edwards house
## 26052 EE hit rt leg on mail cart
## 26053 EE hit rt leg on tree limb while participating in escape drill.
## 26054 EE hit rt shin bone on a wooden stand causing her to trip and hit left side of head on door frame.
## 26055 EE hit rt side of floor b/c of student. Pain irritation of rt shoulder. Possible torn cuff or bone spur.
## 26056 EE hit rt wrist on counter while working
## 26057 EE hit self in eye with corner of file folder.
## 26058 EE hit shin while moving furniture
## 26059 EE hit the back of his head on underside of desk while standing up from fixing keyboard tray. ()
## 26060 EE hit the kick plate on the door with her right little finger and received a cut on her knuckle
## 26061 EE hit the left side of his back while exiting an ez-go after it had flipped over
## 26062 EE hit the side of a counter with her knee.. Left knee
## 26063 EE hit the top of her leg on a jagged corner of a hamper which the metal frame was broken and protruding out
## 26064 EE hit thumb on toilet while cleaning behind it
## 26065 EE hit thumb w/hammer
## 26066 EE hit top of cabinet and cut tip of lt thumb while filing paper work and retrieving forms.
## 26067 EE hit top of head when he was coming up the stairs of unit
## 26068 EE hit wall with lt side of face
## 26069 EE hoisting a sign which came loose from the rigging & fell, striking EE on lt shoulder & arm
## 26070 EE holdin elevator door open for someone else to get on when door closed on rt hand.
## 26071 EE holding 20 amp plug in left hand, while tightening plug with screwdriver in rt hand-screw-driver slipped and cut left hand
## 26072 EE holding a part while student was hammering- student accidentally stuck EE on left thumb.
## 26073 EE holding aggressive resident in personal restraint felt pull in rt shoulder
## 26074 EE holding an inmate who was having seizures & took many blows to chest from different body movements from inmate
## 26075 EE holding box, hand cart went down ramp. Moss & water on ramp EE slipped & fell on his side, back, left knee, right elbow
## 26076 EE holding child, child pushed back, EE lost balance, avoided falling over infant, fell onto knee & leg.
## 26077 EE holding client around chest with both arms and the client pushed EE into wall.
## 26078 EE holding client down during dental procedure- client pushed up against EE resulting in back and chest pain
## 26079 EE holding client down for doctor to examine cut and injured rt shoulder
## 26080 EE holding client from injuring another client when client fell forward and EE felt pull in lower back.
## 26081 EE holding client to give iv in arm when client became upset and EE injured back in process
## 26082 EE holding crowbar assisting with tire change when tire gave way striking hand causing laceration to left hand. ()
## 26083 EE holding door for people exiting, EE stepped wrong lost balance & fell down stairs onto concrete injury right lower leg
## 26084 EE holding door open for clients-client grabbed eeleft wrist and pulled EE toward him-bit EE on leftforearm.
## 26085 EE holding door open so another EE could enter w/ food cart-door closed on EE's arm.
## 26086 EE holding door to cellblock due to fire, & he inhaled smoke.
## 26087 EE holding down client w/two other EE's-client doing a lot of kicking, pulling and jerking which caused EE to feel pain in left shoulder.
## 26088 EE holding down inmate had been severly injured to prevent any further injury inmate scrached him on lt arm with his fingernail. Lt upper arm.
## 26089 EE holding elevator door open for another EE. Door shut. Crush injury to 3rd finger. Poss hair- line fx
## 26090 EE holding horse during threat of rain. Inside carriage house, horse stepped on end of EE foot horse shifted & released foot & EE fell backwards
## 26091 EE holding ladder for co-worker when light fixturebroke causing glass to cut EE's left hand
## 26092 EE holding onto client's belt when client fell back into chair landing on EE's left hand/wrist
## 26093 EE holding paper in place w/left hand and pulling blade w/rt hand-pulled the cutting edge down w/outremoving his finger.
## 26094 EE holding patient hand so pt couldn't scratch herself. Attempted to redirect patient, patient pulled herself to floor, EE assisted patient back into wheelchair. ()
## 26095 EE holding plywood with left hand when saw blade slipped and cut top of left thumb
## 26096 EE holding resident. Getting out of van twisted rt knee when resident being removed from van. Knee painful, swolled. Limited flexion.
## 26097 EE holding security road squad while inmates picked up trash ()
## 26098 EE holding shotgun for unit #1 - when he was try- ing to position himself knee popped.
## 26099 EE holding wrench. Ronald glover hammering on wrench a glancing blow from hammer hit left hand
## 26100 EE holds phone receiver between head & neck on shoulder causing pain in shoulder & neck areas ()
## 26101 EE hooked client's entertainment center up and began itching (body & eyes)
## 26102 EE hosing down trayline and lost footing hurt rt knee in process.
## 26103 EE hosting family fellowship program-playing with ball tripped and fell injuring lower left leg.
## 26104 EE hot hydranlic fluid in his eye
## 26105 EE hs ear infection from exposure to smoke and dust for several days.
## 26106 EE hung foot on equipment placed under the x-ray table twisting ankle.
## 26107 EE hung her foot on bicycle rack causing her to fall. EE was walking into building coming from work.
## 26108 EE hurt arm during unarmed self-defense- mechanicarestraints and advance restraints.
## 26109 EE hurt back & neck when chair at her desk & slipped out from under her.
## 26110 EE hurt back lifting pt who was on stretcher up sostretcher could be changed from table,
## 26111 EE hurt back picking a client up off of the floor. The EE was out of work for 7 days and then returned back to work. EE was seen in the er for treatme
## 26112 EE hurt back when patient in bed and got worse @ 9:30 and reported to nurse.
## 26113 EE hurt back while attemtping to move some boxes
## 26114 EE hurt back while liftin boxes of paper.
## 26115 EE hurt back while lifting a client out of a chair
## 26116 EE hurt back while lifting client
## 26117 EE hurt back while lifting full 5-gal. Bucket of paper pulp from floor to table level.
## 26118 EE hurt back while moving furinture in order to paint.
## 26119 EE hurt back while trying to place pt in manual restraints
## 26120 EE hurt back while trying to restrain a patient
## 26121 EE hurt her hand while waxing the floor.
## 26122 EE hurt her knee. Vague as to how injury occured. Eeinformed to go to the c. P e/r if inj occured whileperform'g duties-stated she would go to her Dr
## 26123 EE hurt her right upper arm by jerking on a bed rail several times in order to pull it back up. ()
## 26124 EE hurt her shoulder while trying to prevent patient from falling
## 26125 EE hurt her wrist from repetitive motion of crushing pill to give to client.
## 26126 EE hurt his back while picking up boxes
## 26127 EE hurt his low back hanging mini blinds.
## 26128 EE hurt his neck during a physical altercation with a violent inmate. Injure upper shoulder and neck.
## 26129 EE hurt his pointing finger in the process of restraining student
## 26130 EE hurt his right foot while climbing stairs.
## 26131 EE hurt l shoulder when she lifted a pot of chicken from the oven
## 26132 EE hurt left knee while performing half squat jumpduring fitness training. Did not feel pain until performing one mile walk
## 26133 EE hurt left shoulder and neck while restraining students
## 26134 EE hurt left shoulder during unarmed self defense training, when he fell on th mat while hand cuffed from behind landing on his left shoulder
## 26135 EE hurt left shoulder while throwing hay bale intobarn loft
## 26136 EE hurt left wrist when a heavy box EE was liftingshifted
## 26137 EE hurt leg trying to stop client from falling.
## 26138 EE hurt lower back attempting to prevent a client from falling. EE will rtw on 12/22/09 ()
## 26139 EE hurt lower back while lifting client in a wheel-chair up into the van.
## 26140 EE hurt lower back while pulling an oversized box containing toner cartridges to a storage room. ()
## 26141 EE hurt r arm when she grabbed pt to prevent fall
## 26142 EE hurt ribs while participating in nci training.
## 26143 EE hurt right arm while holding a patient up that would not stand on his own.
## 26144 EE hurt right shoulder during eri ()
## 26145 EE hurt right shoulder implementing an emergency manual restraint and therapeutic carry on a client. EE sent to physician primecare and taken out of work. ()
## 26146 EE hurt right wrist while participating in unarmedself defense.
## 26147 EE hurt rt arm by pulling baton out of the holder
## 26148 EE hurt rt knee after responding to two body alarmalerts.
## 26149 EE hurt rt knee while working off ladder scrappingpaint.
## 26150 EE hurt self off of steep endbankment and subsequent fall
## 26151 EE hurt side of chest trying to open door
## 26152 EE hurt the right side neck and shoulder when she turned to lower a box. ()
## 26153 EE hurt upper left rib ara during guard in/guard out exercise & mount exercise
## 26154 EE hurt wrist doing paitent care pt was resistant and pushing back while EE attempted to clean him. Injuried r wrist
## 26155 EE hurt wrist while putting frozen 1 gallon bags of ice cream in sink of cold water for thaw. Strained left wrist
## 26156 EE hydroplaned and ran into water and ran off roadinto road.
## 26157 EE hyper-extended left finger during defensive tactics training
## 26158 EE hyperextended her left calf during "pic" with patient.
## 26159 EE hyperextended left foot stepping off curb; injured left foot, ligament damage, hairline fracture
## 26160 EE hyperextended rotator cuff while reaching for aclient who was falling.
## 26161 EE illeges he slipped on ice on steps near mciver bldg while walking from car to office. ()
## 26162 EE illeges he was attempting to arrest a subject when the subject tried to escape causing a scuffle. At some point during the scuffle his lower left leg was injured casuing swelling and bruising. ()
## 26163 EE illeges he was directing traffic in the walker parking deck and stepped wrong while directing traffic and felt a sharp pain in the right foot. ()
## 26164 EE illeges he was in the attic of the foust building, stoop up too early and hit the top of his head on a thread rod. ()
## 26165 EE illeges he was in the process of securing the curry building when he was bitten by something on the left side of his neck. ()
## 26166 EE illeges lifting a large bag out of trash can when she experienced pain to her left wrist. ()
## 26167 EE illeges that he slipped on the floor of the elliott student center. He had just entered the building from outside where it had been snowing/sleeting. ()
## 26168 EE illeges that while attempting to arrest a subject he used physical force to bring the subject to the ground. The struggle took place in a gravel parking lot. During the scuffle he landed on both knees and hurt his left knee and it began to swell up.
## 26169 EE impaled by fish spine while attempting to measrfish. Left fing finger impaled, spine broken off under skin
## 26170 EE implementing bsp when resident grabbed EE rightarm and bit forearm.
## 26171 EE implementing bsp when resident reached over & bit EE's left forearm
## 26172 EE in a hurry to get to cashier dept-tripped and fell on rt/left knee.
## 26173 EE in altercation with inmate- fell backwards and hit his head on a wooden table leg.
## 26174 EE in an auto accident
## 26175 EE in argument when co-worker thru a punch to throat & knocked EE off feet to floor contusion to back
## 26176 EE in attempt to place inmate in control in bent wrist come along, alleges scrapped rt thumb and lt thumb on handcuffs
## 26177 EE in auto accident after classes at halifax comm college, EE did not return to work. Took vacation
## 26178 EE in basic training practicing restraint techniquest partner was practicing handcuff application when lt wrist bone was hit w/handcuffs
## 26179 EE in basic training, walking to classroom when stepped into hole w/left foot causing fall ()
## 26180 EE in bathroom & stepped out of shower & slipped on wet floor & fell backwards on her back causing pain in lower part of back.
## 26181 EE in boat unloading garbage bags containing fish carcasses 25-30lbs/bag along a gunnel. Bag slippedoff & EE attempt to catch it. Strain lt shoulder.
## 26182 EE in booth waiting on customer when light bulb fell on head.
## 26183 EE in burn bldg w/face mask on-small particles of debris blew into right eye.
## 26184 EE in canada attending seminar. Alleges slipped onicy sidewalk, while off campus, hurt tailbone. Next day alleges fell in hotel room & cut forehead
## 26185 EE in car waiting in line during drug interdictionat prison, when another officer ran into the back of her car. Injured head, neck, and back.
## 26186 EE in chair at table in gym. Pulled chair closer to table, struck her lt knee on bar attached. Struck lt knee.
## 26187 EE in chicago il when limo driver stopped suddenly on the way from airport-EE was thrown forward straining back and thumb
## 26188 EE in classroom interpretering, got up, tripped over pt's foot, landed on belly ()
## 26189 EE in cobt trg. (12/4/08) on mount release practice, was thrown & landed on her rt. Side, then 12/13/08 firearms trg. Re-bruised same area
## 26190 EE in control room reviewing camers. Moved computer mouse & piece of debris/paper flew up into eye ()
## 26191 EE in control room sitting looking at his computer. Stood up and passed out and hit the floor. ()
## 26192 EE in crdt pushed off & landed on rt side causing ribs to hurt
## 26193 EE in crdt training 6-19-06 & felt pain in left knee
## 26194 EE in crdt training, hurt rt groin
## 26195 EE in crdt training-performing fall with partner when her partner threw her off him & she fell on her left side & elbow
## 26196 EE in echo dorm assisting in physical restraint of inmate. Bent to secure inmate's legs. When lifting inmate felt pull in upper rear thigh area, left leg. ()
## 26197 EE in field setting up trapping-eye became infected & had allergic reaction unknown substance
## 26198 EE in firearms qualification on polk cty range bitten by fire ans on legs/ankles
## 26199 EE in foot chase with dwt suspect and pulled hamstring in lt leg.
## 26200 EE in foot chase- att to jump wall and foot got caught causing EE to fall to roadway hitting left arm and knee
## 26201 EE in foot pursuit of a violator when he ran into a strand of barbed wire
## 26202 EE in foot pursuit of suspect fell over small treestumps injury to right shoulder
## 26203 EE in foot pursuit of suspect when he lost balance& fell-struck ground dislocating rt shoulder bloodied nose-scratched rt arm
## 26204 EE in her reg. Work area, constr. Crew addicentallycaused a fire using gas powered saw
## 26205 EE in housekeeping room, client ran up and grabbed EE's right arm.
## 26206 EE in hurry to set up dept display and used a cosmetology shop chair to stand on; it spun and she twisted to catch herself. MD said muscle inflamed an
## 26207 EE in kitchen cooking lunch for clients. He squatted down to pick up a dropped spoon, when stood up, felt burning pain in left knee
## 26208 EE in kneeling position restraining an inmate. When EE stood up, he twisted his lower back.
## 26209 EE in ladies room & noticed a big brown bug crawling up leg & kicked her leg several times to dislodge put foot down & twisted it
## 26210 EE in left turn lane-preparing to turn onto I-40 when car was struck in rear by pickup truck and propelled into vehicle in front-back/neck strain
## 26211 EE in line behind lady with a tray-glass fell fromtray and something flew into EE's left eye.
## 26212 EE in line of traffice waiting on light to change when third veh hit second veh causing second veh to hit EE veh in the rear
## 26213 EE in linen room getting towels. Stepped on bottomshelf & bumped her back on door, threw her off balance landing awkardly on rt foot/heel--sprain.
## 26214 EE in lower cate had body wrapped around to pump aniimal fell out of cage sending pump down. Injured head, forehead.
## 26215 EE in mgr office looking at records, EE needed to use bathroom EE fell walking down steps and landedon brick floor(head&chest)legs on stairs
## 26216 EE in mva; pert van ran off rd, equipment in van struck EE in head
## 26217 EE in network circuit room and hit head on back ofa standing rack.
## 26218 EE in office chair stood up lft knee tightened & started hurting could not stand. Lft knee tight & painful
## 26219 EE in overnight status due to location of assign- ment. She slipped in bathroom getting out of shower onto a towel and fell to the floor.
## 26220 EE in patrol vehicle traveling north on us 701. Asee approached intersection of rp 1515, a red veh. Entered path of EE striking his veh. Low back.
## 26221 EE in pepper mace training, instructed sgt white to open both eyes after being sprayed with pepper spray in face area.
## 26222 EE in pepper spray training, she was sprayed and afterward water to remove spray. Combination of the 2 caused respiratory infection
## 26223 EE in persuit of suspect vehicle - when law enforcement vehicle lost control and wrecked.
## 26224 EE in persuit of suspect, lost control of car spinning several times, causing injuries to left arm, neck & back.
## 26225 EE in persuit violator & while making lt turn on rd lost control vehicle ran off rt shoulder. Hit utility pole. Contusion lt hand, knee, chest & abdom
## 26226 EE in physical training including leg lifting and running when after EE felt pain when walking normal. Pain continued to worsen.
## 26227 EE in pic refresher and bent to get in stance and felt rt knee pop
## 26228 EE in pool during swim. Camper ran into him under water, poking her finger in eye. Injured eye.
## 26229 EE in pool with clients went under water when a client pushed in between in the process scratched EE on lt check.
## 26230 EE in position to fire rifle-completed firing-tried to get back up-leg gave way & fell to ground injuring right ankle
## 26231 EE in process in arresting suspect-suspect fled onfoot-EE went after suspect and fell in grass injuring left shoulder.
## 26232 EE in process of carrying mail for unit. Bag was tearing and he attempted to place on his shoulder felt pull in lower back.
## 26233 EE in process of cleaning bathrooms. Started to pick up cleaning solution & dropped in on floor. The bottle cracked, chemical splashed in eyes.
## 26234 EE in process of closing an inmate cell door, he struck his rt hand with the door. Injured rt hand.
## 26235 EE in process of doing routine home visit, vehiclewas struck in rear by vehicle driven by amy newtonstrain to upper and lower back.
## 26236 EE in process of escorting inmate to his cell, wheninmate assaulted EE with hand cuffs by striking him on lt neck area & face.
## 26237 EE in process of exiting truck & twisted his rightknee
## 26238 EE in process of getting injured inmate put out of his cell, putting cuffs on inmate her inner rt forearm and made contact with blood.
## 26239 EE in process of installing brake shoes on truck, pliers slipped & hit EE across nose.
## 26240 EE in process of opening d-dorm gate, when holdingrod slipped down and caught finger between rod & gate, cutting lt index finger. Laceration.
## 26241 EE in process of overtaking a motorist for a violation-when another veh collided into the drivrside of EE's veh.
## 26242 EE in process of placing a client in pic hold and EE fell and client fell on EE's left leg.
## 26243 EE in process of placing client in restraint when client kicked EE in chest.
## 26244 EE in process of restraining client when client head-butted EE in chest.
## 26245 EE in procss of controling a hostile inmate he hitelbow on floor. Minor laceration on rt elbow.
## 26246 EE in pt room to break a fight that had occurred, when pt attacked staff member. EE slipped in room bc pt had dropped dental cup. Injured lt knee.
## 26247 EE in pusuit of suspect on foot. When EE caught upw/suspect, suspect punched EE in rt eye with a closed fist. EE also sprain lt ankle, subduing sus
## 26248 EE in restroom & tried to flush toilet w/foot & other leg slipped out from under & she hit her wrist, elbow & leg.
## 26249 EE in route to charlotte for univ function had car accident---injury to back, shoulder, headache
## 26250 EE in route to do home visit of proationer, drivngon 601 to lincolnton rd toward highschool, as EE approached area another auto pulled in path of
## 26251 EE in route to do home visit with probationers, EE vehicle struck by another vehicle, which failedto yield to right of way.
## 26252 EE in route to her next post & when she got to thegate the latch struck her forearm
## 26253 EE in route to pick up client when car came acrossmedian and hit drivers side of st vehicle. Ribs, rt wrist & arm, lt neck, lower back, cuts to face.
## 26254 EE in rover 2 on chase road around prison perimeter. Backed up into another vehicle. ()
## 26255 EE in rush responding to network emergency coming down stairs stepped wrong turned rt foot.
## 26256 EE in scat training planted right foot and felt sharp pain in right big toe
## 26257 EE in self-defense training and injured back
## 26258 EE in serving line & turned to address an inmate &heard a pop & felt sharp pain in knee
## 26259 EE in state vehicle on the way to wilson. Forgot an item in the office as she was leaving, got out of the car quickly & turned foot. Right foot.
## 26260 EE in state vehicle-while turning into driveway was rear-ended by another vehicle-neck injuries
## 26261 EE in steep, rugged terrain search for person. Fell several times over the course of search injuring left ankle & foot.
## 26262 EE in street directing traffic for basketball game, stuck by vehicle. Contusion rt foot.
## 26263 EE in tapp basement-someone yelled "tapp" and EE turned suddenly and felt sharp pain in rt leg to heel
## 26264 EE in the process of retreiving a 20' shrimp and strained lower back
## 26265 EE in the process of unloading a forklift, the dock plate fell and landed on his left foot.
## 26266 EE in training event, knees
## 26267 EE in training learning proper way to fall injuredherself, herniated disk
## 26268 EE in training lt shoulder pushed upward when he fell to the mat practicing throwing someone off shoulder, heard it pop
## 26269 EE in truck with associate when associate backed into a pole injury lower back and neck
## 26270 EE in unarmed self defense training kicking & striking pad when she injured rt foot
## 26271 EE in unit 7, inmate disobeyed order. Oc spray wasadministered. Inmate began to assault EE with fistee's glasses were damaged, cuts/swelling to head
## 26272 EE in vehicle pursuit. Suspect vehicle struck EE patrol vehicle. After collision EE complained of pain in head & neck from impact. Neck strain
## 26273 EE in work area, contr. Crew accidentally caused a fire using gas powered saw
## 26274 EE in yard observing inmate traffic when she was stung by bee. Stung on lt wrist.
## 26275 EE in-service training, crdt. Partner technique to put EE on ground. Shoulder went to ground and EE heard pop. ()
## 26276 EE inadvertently walked into poison ivy while conducting a waster water compliance check. 24 hrssymptoms of reaction, 48hrs aleric symptoms
## 26277 EE indicated he fell on his elbow and thumb while struggling with a subject he was arresting
## 26278 EE indicated she fell coming back into the building from lunch. Appatnetly she fell on a step-up on the side walk (curb). ()
## 26279 EE indicated some discomfort in hand and wrist.
## 26280 EE indicated that she was crossing the yard and stepped on uneven ground and pulled the muscle in the back of her leg
## 26281 EE indicated that she was stooped at a traffic light and another vehicle hit rear bumper of her vehicle, causing EE to jerk forward.
## 26282 EE indicates he developed post trumatic stress disorder while meeting with supv to discuss EE's misuse of state e-mail system
## 26283 EE indicates repetitive pushups and other exercises caused soreness in right shoulder; then pain started in neck and shoulder radiating down right arm, elbow and wrist ()
## 26284 EE indicates she slipped on water outside ladies lavatory on her hallway. ()
## 26285 EE indicates she strained her lower back when she sat up and turned after going through her recycle box. ()
## 26286 EE indicates she was carrying mail crate while looking for a vehicle to use in the parking lot totake the mail to the usps.
## 26287 EE indicates she was pushing one cart & pulling another cart down a ramp. Pulled one cart onto her left ankle resulting in cut to left ankle.
## 26288 EE indicates that she has pain/discomfort in both hands which she attributes to use of the computer. Evaluated at ueohc, ergo. Eval. Requested. ()
## 26289 EE indicates that she is experiencing pain in l shoulder / upper back due to sitting for long periods of time, computer use, etc. EE indicates she had a pre-existing issue prior to coming to work for unc in January 2013. ()
## 26290 EE indicates that while at lunch she tripped over uneven bricks on the outside patio while trying to avoid a stinging insect
## 26291 EE indictates that while reaching for a file on top of a file cabinet, the file was falling & arm was twisted in process of trying to catch file. Impact by falling object. ()
## 26292 EE inflating flat tire on hand truck (small tire), tire burst and hit EE's left hand between thumb and index finger. Bruise and cut to left index finger (no stitches required).
## 26293 EE inflating; tire exploded injuring fingers on both hands, face, knocked teeth out, broke glasses
## 26294 EE informed er the day after accident that he hit his head on pipe exiting an air handling unit. EE didn't think it was too bad til cont. Headache
## 26295 EE informed her superior the next morning that thefumes from a chemical stripper being used in an adjacent office affected her present breathing pro
## 26296 EE informed patient of intent to begin bath and ptreached out and scratched EE on the left side of face, approximately one inch long..
## 26297 EE informed resident he could not smoke, resident became violent, hit EE in stomach and EE fell and hit head.
## 26298 EE inhaled battery acid fumes, as he entered a closed door. Inmate had left a battery on charge.
## 26299 EE inhaled chemicals which produced a headache ()
## 26300 EE inhaled chemicals while teaching senior course cat- 661681
## 26301 EE inhaled cleaner while washing condenser coils for ac unit
## 26302 EE inhaled cleaning fluids fumes ()
## 26303 EE inhaled dried dust from fire extinguisher
## 26304 EE inhaled ferric cyanide while cleaning out refrigerator
## 26305 EE inhaled fire extinguisher powder while sweeping stairs. ()
## 26306 EE inhaled flame retardant from inside a disconnected fire panel from his vehicle. He has coughing and tightness in chest.
## 26307 EE inhaled fumes from a/c unit for over a month
## 26308 EE inhaled fumes from bottle of m-95 mild acid cleaner
## 26309 EE inhaled fumes from heating system of vehicle in which he was operating ()
## 26310 EE inhaled fumes that that burned her eyes and lungs
## 26311 EE inhaled odor/fumes while investigating smoke and fumes in annex. Temporary breathing problems
## 26312 EE inhaled paint fumes
## 26313 EE inhaled propane ()
## 26314 EE inhaled sheetrock dust during construction work in the classroom near her office. EE reported severe lung irritationand coughing
## 26315 EE inhaled smike from an inmate setting fire in his cell.
## 26316 EE inhaled smoke and fire extinguisher fumes from fire on unit-also strained lifting clients during evacuation
## 26317 EE inhaled smoke from fire and smoke from inmates cell. Smoke inhalation to lungs
## 26318 EE inhaled some fumes that caused him to become dizzy
## 26319 EE inhaled some odor for about 1 hour prior to exiting the building for the audit. No injuries reported at this time.
## 26320 EE inhaling unknown air containmant in department office. Injured thoat, eyes, lungs burning, elevated bp.
## 26321 EE initiated a pic hold because a patient became aggressive and later EE stated pain in back.
## 26322 EE inivolved in auto accident ()
## 26323 EE injected monkey, & poked hand with needle afterthe injection.
## 26324 EE injecting mouse infected with borrelia burgdorfer EE pricked index finger tip of right hand
## 26325 EE injurd his right ankle when he stepped on a rock causing him to twist his ankle.
## 26326 EE injured ankle while doing daily activities
## 26327 EE injured ankle while removing window a/c unit from van to install
## 26328 EE injured arm due to pushing wheelchair. **oow 7/29 x 8/17/03** EE's work # - 919-575-1300
## 26329 EE injured back & arms trying to keep a patient from falling.
## 26330 EE injured back & scrotal area by lifting a wetvac& pushing tables. He has been referred to a surgeon
## 26331 EE injured back & umbilical hernia while restraining aggitated patient.
## 26332 EE injured back and leg on couch
## 26333 EE injured back by pulling surplus refrigerators up a flight of steps in the graduate dorm basement.
## 26334 EE injured back lifting a client from a wheelchair
## 26335 EE injured back lifting scan tron equipment. Causing strain to lower back
## 26336 EE injured back moving a computer
## 26337 EE injured back moving equipment
## 26338 EE injured back putting a tailgate and bumper under deck for storage
## 26339 EE injured back trying to keep client from falling.
## 26340 EE injured back trying to prevent a patient from falling out of chair
## 26341 EE injured back trying to pull x-ray tube to the side.
## 26342 EE injured back when he swung his right leg over tongue of plow.
## 26343 EE injured back when he tried to prevent a patient from falling.
## 26344 EE injured back when he was lifting the heavy boxes.
## 26345 EE injured back when he was struggling with a patient who had attempted to escape. Contusion/ strain lumbar.
## 26346 EE injured back when inmate fell on her as she fainted in the hallway. Both EE & inmate ended up on floor. Injured mid-back
## 26347 EE injured back when lifting recycling bin
## 26348 EE injured back while catching a falling client.
## 26349 EE injured back while emptying mop bucket
## 26350 EE injured back while getting out of ditch on rocks
## 26351 EE injured back while handling a bucket of water
## 26352 EE injured back while handling an ice machine
## 26353 EE injured back while lifting a bag
## 26354 EE injured back while lifting a mop bucket
## 26355 EE injured back while lifting a patient from wheelchair to commode in bathroom. ()
## 26356 EE injured back while lifting a storage container from the ground into the rear area of a state owned mini-van.
## 26357 EE injured back while lifting heavy trash bags
## 26358 EE injured back while lifting racks holding cages
## 26359 EE injured back while lifting surgical packs to get to needed supplies.
## 26360 EE injured back while moving computer equipment in his office.
## 26361 EE injured back while moving computer hardware
## 26362 EE injured back while patrolling kerr lake .
## 26363 EE injured back while rearranging computer tower that was on desk to be surplus
## 26364 EE injured back while trying to keep client from falling.
## 26365 EE injured back while trying to prevent patient from falling in bathroom. Lumbar strain
## 26366 EE injured back while trying to pull an inmate away and off of staff member
## 26367 EE injured back while trying to pull patient up from floor
## 26368 EE injured back while trying to restrain a pt
## 26369 EE injured back while trying to subdue aggressive client. Was also bitten
## 26370 EE injured back while unloading truck
## 26371 EE injured back while working on the stapler cartridge on the printer.
## 26372 EE injured both eyes while instructing an inmate on how to use a welder.
## 26373 EE injured both knees persuing a student that was running away
## 26374 EE injured both knees while apprehending a suspect
## 26375 EE injured breast--hit by file cabinet
## 26376 EE injured by needle stick to lt base of thumb.
## 26377 EE injured by picking up client by the armpit, injured shoulders and upper back.
## 26378 EE injured during incident however EE's inhaled a lot of smoke burning plastic and powder from the fire extinguisher.
## 26379 EE injured foot by walking quickly to retrieve equipement for the treatment of a resident.
## 26380 EE injured foot while subdueing student
## 26381 EE injured hand during physical restraint of a juvenile
## 26382 EE injured hand while standing between two patient s while they were in an altercation.
## 26383 EE injured hand with sander
## 26384 EE injured hand/arm while restraining an inmate
## 26385 EE injured her ankle due to repetitve movement during training. Also indicated low back pain. Surgeryis required on her ankle.
## 26386 EE injured her back and left leg while lifting a case of applesauce
## 26387 EE injured her back during a medical emergency assisting an inmate.
## 26388 EE injured her back from repetitive motion of picking up textbooks and boxes from student store textbook reservation program. ()
## 26389 EE injured her back helping patient w/ bath
## 26390 EE injured her back struggling with an aggressive patient
## 26391 EE injured her back trying to carry 4 large feed tubs. Back.
## 26392 EE injured her back when the van that she was in had to make a sudden stop to avoid an accident.
## 26393 EE injured her back while bending over to pick up some supplies
## 26394 EE injured her back while lifting a pt.
## 26395 EE injured her back while lifting inmate bag
## 26396 EE injured her back while lifting resident from bed to chair.
## 26397 EE injured her back while moving a bed
## 26398 EE injured her back while moving a computer to her desk
## 26399 EE injured her back while moving client to wheelchair to couch
## 26400 EE injured her back while packing and moving boxes; injured left hand numb, left shoulder muscleright side back spasm
## 26401 EE injured her back while pulling an exam table in order to conduct inventory
## 26402 EE injured her back while pushing a trolley cart
## 26403 EE injured her back while removing records from filing cabinet
## 26404 EE injured her back while restraining a student
## 26405 EE injured her back while restraining patient rt thoracic strain.
## 26406 EE injured her back while she was trying to bathe a patient
## 26407 EE injured her back while stepping up on a ladder to a truck--EE was checking to make sure no inmatewas in the truck
## 26408 EE injured her back while trying to keep client from falling; neck also
## 26409 EE injured her back while trying to lift an inmateoff bed
## 26410 EE injured her back while while doing therapy witha child on a therapy ball... Upper back
## 26411 EE injured her elbow when she intervened when several patients became agitated.
## 26412 EE injured her finger while grabbing a firing weapon causing her finger to be caught in the trigger
## 26413 EE injured her head and l elbow on the day of injury. EE complains of headaches and wonders if it isa result of the fall on 4/26/09. EE would like to
## 26414 EE injured her inner thighs when she slipped on wet/greasy floor while patroling the kitchen.
## 26415 EE injured her knee on table when she pulled ip to the table
## 26416 EE injured her l middle finger while trying to raise a bed rail.
## 26417 EE injured her left ankle during a team activity on a leadership retreat
## 26418 EE injured her lower back after utilizing a self- contained respirator during inspection. Low back injury.
## 26419 EE injured her lower back during a pic training
## 26420 EE injured her lower back while trying to lift a pt.
## 26421 EE injured her lt elbow/shoulder area while lifting a heavy chart book
## 26422 EE injured her lt finger while restraining a patient
## 26423 EE injured her lt hand when she tried to catch a box of sodas from falling off a shelf.
## 26424 EE injured her lt hand while painting--most of thepressure was applied to the lt hand
## 26425 EE injured her lt hip when she was pushed by a pt across a table.
## 26426 EE injured her lt shoulder while assisting a resident
## 26427 EE injured her right ankle when she was playing volleyball with patients. She jumped up to hit ball and came down on her right ankle wrong.
## 26428 EE injured her right foot, right ankle, chest, andstomach
## 26429 EE injured her right foot... The notes are not thatlegible
## 26430 EE injured her right knee during training. ..
## 26431 EE injured her right knee in nci class while downing a take down move
## 26432 EE injured her right shoulder during training
## 26433 EE injured her right shoulder while lifting a client
## 26434 EE injured her right upper back and neck while placing an agitated patient in nci.
## 26435 EE injured her right wrist while in restraining a student
## 26436 EE injured her rt ankle & rt knee while trying to restrain a juvenile.
## 26437 EE injured her rt arm while trying to keep a food cart from falling
## 26438 EE injured her rt knee during a therapeutic hold clmts work # 919-575-3631
## 26439 EE injured her rt knee while jumping rope with children in after school activity
## 26440 EE injured her rt knee while moving boxes from units
## 26441 EE injured her rt knee while trying to avoid a batwhich was flying above her
## 26442 EE injured her rt leg/knee while bending over cleaning base board and chairs
## 26443 EE injured her rt shoulder blade area while lifting a drop box
## 26444 EE injured her rt shoulder while firing a shotgun during training
## 26445 EE injured her rt shoulder while firing shotgun during recertification training
## 26446 EE injured her rt wrist during a self defense training session
## 26447 EE injured her rt wrist while practicing in self- defense program on 7/17/96. Rt wrist sore.
## 26448 EE injured her shoulder while in physical trainingblet class
## 26449 EE injured her side when she was trying to stop client from falling out of bed; lt side
## 26450 EE injured his back and after trying to subdue a patient .
## 26451 EE injured his back during a self denfense training technique
## 26452 EE injured his back in an accident
## 26453 EE injured his back in an auto accident *nurse case mgr - mary ann wells 843 232-8407.*
## 26454 EE injured his back when he intervened to prevent patients from fighting..
## 26455 EE injured his back when he was changing and turning a patient.
## 26456 EE injured his back when lifting bag of laundry into laundry cart.
## 26457 EE injured his back while assisting a patient
## 26458 EE injured his back while assisting with an inmate
## 26459 EE injured his back while assisting with the arrest of a suspect
## 26460 EE injured his back while delivering cases of copypaper to 3rd floor crosby hall
## 26461 EE injured his back while doing landscape duties
## 26462 EE injured his back while doing sit up for an exam
## 26463 EE injured his back while extinguishing a vehicle fire with a 1 3/4 ' water line.
## 26464 EE injured his back while helping to move rail road over from walk way.
## 26465 EE injured his back while installing a controller EE moved a large file cabinet
## 26466 EE injured his back while lifting a cooler
## 26467 EE injured his back while lifting an inmate who fell off a bed
## 26468 EE injured his back while lifting cases of copy paper
## 26469 EE injured his back while lifting patient off floor
## 26470 EE injured his back while moving a body from a tray to an autopsy table.
## 26471 EE injured his back while moving a trash can
## 26472 EE injured his back while moving boxes of paper & supplies.
## 26473 EE injured his back while participating in an unarmed self denfense training
## 26474 EE injured his back while pulling an inmate over arailing--the inmate tried to hang himself
## 26475 EE injured his back while pushing a boat off a boat trailer.
## 26476 EE injured his back while pushing on door that patient had barricaded himself behind.
## 26477 EE injured his back while try to pull a boat out of a river
## 26478 EE injured his back while trying to keep a pt fromfalling
## 26479 EE injured his back while trying to keep from falling from a chair
## 26480 EE injured his back while trying to keep two boxesof beef roast from falling.
## 26481 EE injured his back.
## 26482 EE injured his ear while firing a revolver becauseof not having her ear protector properly in place.
## 26483 EE injured his finger while playing volleyball; index finger of left hand
## 26484 EE injured his heel while assisting a patient
## 26485 EE injured his knee while in unarmed self-defense training.
## 26486 EE injured his left ankle when he attempted to help his peers subde an agressive patient. EE fell during restraint.
## 26487 EE injured his left ankle when he stepped on an expansion joint
## 26488 EE injured his left knee during training
## 26489 EE injured his left pinkie finger during baton training.. Fracture
## 26490 EE injured his left pinkie finger during training
## 26491 EE injured his left pinky finger on a rusty metal burs and got a metal splinter in his finger.
## 26492 EE injured his left shoulder
## 26493 EE injured his left shoulder escorting student back to quiet room.
## 26494 EE injured his left shoulder while doing push up exercises at a training class. ()
## 26495 EE injured his left shoulder while lifting weightsat bench ???
## 26496 EE injured his left thumb while installing belts on air handler; his thumb jammed between belts & pulley
## 26497 EE injured his left thumb while moving furniture on the ward.
## 26498 EE injured his low back while ducking under a bridge beam while carrying two coolers with another person
## 26499 EE injured his lower back and neck muscle while holding an inmate down
## 26500 EE injured his lower back during training. ..
## 26501 EE injured his lower back when he lifted a full mop bucket.
## 26502 EE injured his lower back while lifting and transporting office supplies to another building
## 26503 EE injured his lower back while playing volleyballduring an employee appreciation activities.
## 26504 EE injured his lt ankle while on truck
## 26505 EE injured his lt foot while stepping off lowboy onto concrete
## 26506 EE injured his lt hand while trying to release a horseshoe
## 26507 EE injured his lt shoulder during a cell extraction
## 26508 EE injured his lt shoulder while lifting an air conditioning unit
## 26509 EE injured his lt shoulder while pulling a mannequin through a walkway
## 26510 EE injured his lt shoulder while trying to restrain a student
## 26511 EE injured his lt shoulder while trying to restrain a student.
## 26512 EE injured his neck while demonstrating a welding technique... Stiff neck and pain in right arm and fingers
## 26513 EE injured his right ankle when he leaped off stepand landed in a hole in the ground
## 26514 EE injured his right ankle while participating in physical training. EE was running sprints when he twisted his right ankle. ()
## 26515 EE injured his right hand during boxing portion of defensive tactics.
## 26516 EE injured his right knee on the floor while dealing with and agitated patient
## 26517 EE injured his right knee when stepped off of a forklift into a heavy metal engine
## 26518 EE injured his right shoulder and arm while assisting students with moving furniture
## 26519 EE injured his right shoulder during defense training.... Also injured chest wall
## 26520 EE injured his right shoulder while pressing down and sweeping
## 26521 EE injured his right wrist during a training exer cise.
## 26522 EE injured his rt and lt arm on a table while trying to subdue an inmate.
## 26523 EE injured his rt ankle while assisting with an inmate
## 26524 EE injured his rt ankle while trying to get a cow in a barn
## 26525 EE injured his rt finger when he slammed the sliding door of a van on his pinky finger
## 26526 EE injured his rt foot
## 26527 EE injured his rt foot while moving a piano
## 26528 EE injured his rt hand while raising door that leads to the boiler room
## 26529 EE injured his rt hand while taking a tire off a tractor
## 26530 EE injured his rt knee during a k-9 demonstration
## 26531 EE injured his rt knee while chasing a subject
## 26532 EE injured his rt lt ring finger
## 26533 EE injured his rt shoulder during a training technique
## 26534 EE injured his rt shoulder in unarmed self defensetraining
## 26535 EE injured his rt shoulder while helping another office up from the floor
## 26536 EE injured his rt upper arm while loading generators in a pickup truck
## 26537 EE injured his rt wrist while cutting metal stripsfor ceiling tiles
## 26538 EE injured his rt wrist while turning keys into a jammed lock
## 26539 EE injured his shoulder while dealing with an aggressive patient
## 26540 EE injured his spine, neck, and head
## 26541 EE injured his thumb while responding to an aggressive patient.... Notes are not legible rt thumb
## 26542 EE injured his upper back struggling with a conbative patient.
## 26543 EE injured his upper back while lifting an igloo jug filled with ice
## 26544 EE injured his wrist while participating in uasd technique.
## 26545 EE injured in auto accident. Injured back, neck, & shoulders
## 26546 EE injured index finger demonstrating a football specific drill. ()
## 26547 EE injured knee on March 2 during a tornado drill - re-injured on April 4th by standing up from desk. ()
## 26548 EE injured knee while apprehending juvenile
## 26549 EE injured knee while walking over brushtops in cut over doing quality control inspections of tree planters.
## 26550 EE injured knuckle on lift chair while bathing a patient. Swelling and pain of pip joint of 3rd digit of right hand
## 26551 EE injured left 5th finger while restraining patient.
## 26552 EE injured left ankle while playing basektball forclients.
## 26553 EE injured left arm in pic class.
## 26554 EE injured left ear on a scuba dive.
## 26555 EE injured left elbow while pushing a pt in a wheelchair up ramp.
## 26556 EE injured left foot while trying to seperate two students that were shackled together
## 26557 EE injured left hand helping patient to quiet roompatient pushed EE in attempt to get away and bent EE's wrist/hand in progress.
## 26558 EE injured left hand while attempting to open doorentering johnson building, on metal plate mounted on door.
## 26559 EE injured left hand while closing an equipment manhole cover; mashed and bruised fingers
## 26560 EE injured left knee during fall through an undercut stream bank
## 26561 EE injured left knee during manual restraint of pt, pt was trying to attack peer. ()
## 26562 EE injured left knee in a fall during self defense techniques
## 26563 EE injured left knee, leg and wrist, lower back while trying to break up two students who were fighting
## 26564 EE injured left knee/shin during physical trainingexercises
## 26565 EE injured left ring finger while catching ladder that was falling out of van
## 26566 EE injured left shoulder moving, picking up, and putting down computers and monitors
## 26567 EE injured left shoulder while helping push a trailer up a hill it was stuck on.
## 26568 EE injured left shoulder while in tactics traininghe jarred shoulder attempting to open a locked door using a "ram" device
## 26569 EE injured left wrist and lower back
## 26570 EE injured left wrist by repeatedly ??? The chain broke while moving from obstruction and obstructio
## 26571 EE injured left wrist while moving furniture at work
## 26572 EE injured left wrist while struggling w/an aggressive patient
## 26573 EE injured lf hip and knee while preventing a client from falling. EE taken out of work
## 26574 EE injured little finger restraining out of control student
## 26575 EE injured low back while transferring client to table and back to stretcher
## 26576 EE injured lower back
## 26577 EE injured lower back and left side of neck
## 26578 EE injured lower back assisting patient while showering.
## 26579 EE injured lower back by picking up and moving a tv/vcr from top shelf to bottom shelf of av cartlower began to hurt. Injured lower back.
## 26580 EE injured lower back during training with a partner.
## 26581 EE injured lower back getting off elevator, which was not level with the floor
## 26582 EE injured lower back lifting 60lb he dewar
## 26583 EE injured lower back lifting heavy bags of trash
## 26584 EE injured lower back moving furniture. Referred to glenda.
## 26585 EE injured lower back when escorting a resident in a pic hold.
## 26586 EE injured lower back when she was moving a monitor and keyborad stand.
## 26587 EE injured lower back while assisting with pullinga tank
## 26588 EE injured lower back while attempting to unlock front door of warehouse
## 26589 EE injured lower back while lifting pallet.
## 26590 EE injured lower back while moving exhibit case.
## 26591 EE injured lower back while moving items from hanger.
## 26592 EE injured lower back while seperating students engaged in a gang assault on a single student.
## 26593 EE injured lower back while unloading feed from dump truck. Aggrivated reoccuring back injury
## 26594 EE injured lt ear canal
## 26595 EE injured lt elbow by hitting it against the cover of pick up truck while lifting trash cans into the back of the truck.
## 26596 EE injured lt hand lifting large medical notebook with both hands
## 26597 EE injured lt jhand when client slammed door onto hand.
## 26598 EE injured lt knee on filing cabinet.
## 26599 EE injured lt knee when he was running during training exercise. **Dr Stephen candella, 910/640-1022
## 26600 EE injured lt knee while doing rcdt (restraint and control defense techniques). This training is mandatory for all staff who are criminal justice.
## 26601 EE injured lt knee while stepping from ladder to floor
## 26602 EE injured lt leg while moving office chairs
## 26603 EE injured lt leg/calf while working with hazards materials
## 26604 EE injured lt shoulder while trying to bathe a combative client.
## 26605 EE injured moving boxes of files and crawling under a workstation to re connect computer equip/strain to back
## 26606 EE injured neck while at crdt training-felt a pop or pull in neck-when he reported this he had a headach & radiating cold in left leg
## 26607 EE injured neck while practicing unarmed self- defense. Neck strain; headaches.
## 26608 EE injured neck while pulling himself up using both arms to look on top of tv stand possible contraband. Strained muscle lower neck.
## 26609 EE injured neck while sleeping at a hotel attending a conf. As a speaker.
## 26610 EE injured neck while struggling with inmate. Also hit back of head against wall.
## 26611 EE injured neck while trying to restrain a student
## 26612 EE injured neck while turning neck on tower.
## 26613 EE injured on a high speed pursuit of violator. Violators vehicle intentionally struck vehicle. Broken sternum, concussion, back pain.
## 26614 EE injured right ankle per form 18
## 26615 EE injured right ankle when his shoe got caught between mats. Did not seek any meddical treatment.
## 26616 EE injured right hand and wrist moving a 30 pound bag of dog food. ()
## 26617 EE injured right knee during unarmed self defense training-performing standing break fall
## 26618 EE injured right knee while moving furniture and ultrasound equipment
## 26619 EE injured right knee while placing a client in a manual restraint.
## 26620 EE injured right knee while practicing unarmed self-defense(gaeshi)
## 26621 EE injured right knee.
## 26622 EE injured right lower leg while participating in mandatory pt.
## 26623 EE injured right shoulder while boxing. EE recievea punch to right collarbone causing great pain in right shoulder area.
## 26624 EE injured right shoulder while firing the shotgunthe butt of the weapon struck EE during round of 5 shots causing extreme pain in shoulder.
## 26625 EE injured right thumb while participating in a handcuff exercise
## 26626 EE injured right wrist while struggling w/an aggressive patient
## 26627 EE injured right wrist while using 6' dipnet to collect fish for the aquarium
## 26628 EE injured rt arm during a use of force
## 26629 EE injured rt elbow while moving a table.
## 26630 EE injured rt hand defending herself from inmate struck inmate w/closed fist of rt hand knuckles of rt hand swollen
## 26631 EE injured rt hand on the door leading to the stairwell. EE was answering an all-call for all available staff from the academic dept. When injured.
## 26632 EE injured rt hand when a door closed on it @ work.
## 26633 EE injured rt hand when patient became agressive and hostile
## 26634 EE injured rt hand when test tube exploded while performing experiment in lab. EE also noted decreased hearing in right ear.
## 26635 EE injured rt hand while trying to contain an aggressive client
## 26636 EE injured rt index finger while handling a band saw
## 26637 EE injured rt knee & lt shoulder while taking inmate down during use of force
## 26638 EE injured rt knee during a training exercise course
## 26639 EE injured rt knee during straight balon training
## 26640 EE injured rt knee while entering driver side of car. Knee struck steering wheel while getting intocar. Struck upper side portion of rt knee.
## 26641 EE injured rt knee while holding resident in prone position
## 26642 EE injured rt knee while repairing ceramic floor tile.
## 26643 EE injured rt lower back while assisting with combative client.
## 26644 EE injured rt shoulder during physical fitness training
## 26645 EE injured rt shoulder while a shotgun at recertification
## 26646 EE injured rt shoulder while participating in unarmed self-defense program.
## 26647 EE injured rt thumb and rt knee while trying to get suspect into custody
## 26648 EE injured rt thumb catching student who was falling into river
## 26649 EE injured rt thumb while restraining resistive student
## 26650 EE injured rt wrist during surgery
## 26651 EE injured rt wrist while assisting to restrain a patient
## 26652 EE injured shoulder and upper back when he tried to prevent patient from falling.
## 26653 EE injured shoulder while assisting with seclusionand restraint of a patient. Left shoulder strain.
## 26654 EE injured shoulder while doing self-defnse tech.
## 26655 EE injured shoulder while shooting shotgun during qualifications
## 26656 EE injured shoulder while struggling w/ aggressive pt
## 26657 EE injured shoulder while trying to get into a burnign room where the student had barricaded the door witha chair.
## 26658 EE injured shoulder while trying to restrain student. Rt shoulder inj voc kim weisenberger 830 1290 ruth bailey 919 580 9500 cell 919 771 8169
## 26659 EE injured thumb & little finger when dumpster lid fell on lt hand.
## 26660 EE injured thumb & wrist, lt hand while struggling with an impaired driver.
## 26661 EE injured thumb while checking. Sprain/contusionto right thumb.
## 26662 EE injured upper arm during pic training
## 26663 EE injured upper back muscle.
## 26664 EE injured when fending a boat from hitting dock with her right foot causing fracture
## 26665 EE injured while attempting assist another officerin dwi suspect. EE suffered cut on top of left hand.
## 26666 EE injured while holding patient in ptc hold. Patient scratched EE with fingernails
## 26667 EE injured whole back while backpacking
## 26668 EE injured wrist by way of repetitive motion.
## 26669 EE injured wrist durring an inmate assault. Inmate punched him twice in the right wrist.
## 26670 EE injured wrist trying to pull two fighting patinets aparts
## 26671 EE injured wrist while mopping. EE seen at urgent care and taken out of work pending appt 12/22/09.
## 26672 EE injured wrists due to continuous typing.... Both hands, wrist
## 26673 EE injured(reinjured)rt shoulder & lt knee while breaking up a fight between two juveniles. 2nd surgery 4/11. *** sal contin. * victoria sanche
## 26674 EE injuredleg whileon a 2 mile pt training.
## 26675 EE injuried her back while assisting in lifting a pt. From gerochair to bed.
## 26676 EE injuried his back and neck when he was using force on an inmate in the process of handcuffing and restraining him.
## 26677 EE injuried his back while lifting student that had fallen while skate boarding. ()
## 26678 EE injuried his left ankle when he stepped in softmud chasing a patient running away from hospital
## 26679 EE injuried his rt foot when he lost his balance
## 26680 EE injuried right thumb while assisting with plac-ing a patient in seclusion and restraint.
## 26681 EE injuried right thumb, removing the heated carmel from the microwave, he spilled it on his right thumb/blistered the skin
## 26682 EE injury appeared to be repetitive prolonged key-boarding & loading materials on and off a book truck.
## 26683 EE injury her back while assisting with an inmate.
## 26684 EE injury occured when she was sitting at table gathering papers & pictures when wind blew board on her head. Injury back of head.
## 26685 EE injury occured wind blew lid down his head while was searching the tool chest. Blow to top of head.
## 26686 EE injury occurred as he was pushing a cart when the cart went out of control & he used his foot toredirect the cart. His foot slipped, nail came off
## 26687 EE injury on 5-6-09, reported injury on 5-13-09. EE was grabbed by client. EE needs an appt to evaluate neck and rt shoulder. Please contact EE.
## 26688 EE injury to hands & wrist occured after continoususe of typewriter & computer for long hours. Rt hand all fingers affected.
## 26689 EE injury to lower back and upper neck pain due to old office chair.
## 26690 EE inserting knife into a sheats-blade went through side of sheats into EE's hand.
## 26691 EE inspecting a problem with a motor when he placed his hand on the exhaust pipe/burns on palm of left hand
## 26692 EE inspecting an inmate locker he felt somehting cut his finger. Washed area with soap & water cut lt index finger.
## 26693 EE inspecting dorm for cleanliness. Stepped on damp spot on floor which caused foot to slip. Making him twist his knee
## 26694 EE inspecting dormitory, claimed he smelled strongodor of clorox, began burning & itching on arms & nose areas, further claims small bumps
## 26695 EE inspecting elevator as stepping down to ladder from roof and felt/heard left knee popped. Possible dislocation.
## 26696 EE inspecting exterior of temp ofcice bldg. Walk- ing down driveway & stepped into hole at edge of driveway. Inside of rt. Foot(big toe area)
## 26697 EE inspecting fuel on dump truck, while stepping down he fell. Landed on back & lt elbow slammed into ground. Fx'd lt humerus bone (arm)
## 26698 EE inspecting produce delivery when he sat an itemon pallet, inmate released pallet jack & sat pallet on EE right foot
## 26699 EE inspecting roof slip & fell against co-worker &pulled rt shoulder while descending from upper level
## 26700 EE inspecting work done by contractor on roof-stepped on hose which rolled causing EE to loose his footing and fall backwards injuring knee.
## 26701 EE installed parking curb stops in a gravel lot-driving pins into the ground with a sledge hammer. EE strained his lower back
## 26702 EE installign sheetrock-picked up a screw and metal splinter stuck in finger.
## 26703 EE installing a breakline on an automobile and pulled left forearm and elbow
## 26704 EE installing a shutter when shutter fell appox 2 feel and hit middle of forehead cutting open skin. ()
## 26705 EE installing a smart board in the ceiling, when a piece of ceiling tile went into right eye. Tile caused redness & irritation over weekend
## 26706 EE installing ac in office window w/metal frame & while drilling a piece of metal flew into left eye
## 26707 EE installing ceiling tiles when removing goggles dust particles went into rt eye.
## 26708 EE installing computer & hurt back while removing desk from against wall to insert cables
## 26709 EE installing containment liner around chemical tanks tank lines spilled chemical on EE back causing red spot around affected area
## 26710 EE installing door closer overhead when something fell into left eye.
## 26711 EE installing drainage matt-breathed in fibers that irratated throat.
## 26712 EE installing drum head gasket into the drum and hurt lower back
## 26713 EE installing electrical conduit-crouched down upon standing struck head on wall cabinet and sprained neck
## 26714 EE installing mesh panels-laid one down and forgotit was loose-stepped on it and fell.
## 26715 EE installing picnic tables and felt his back pop when he was taking the first table off the trailer
## 26716 EE installing pipe system and scratched arm on bricks.
## 26717 EE installing refrigerator in unit kitchen-grabbedhandle & received shock-thru him 5' from frig onto right knee & back
## 26718 EE installing server unit and pulled muscle in back.
## 26719 EE installing window unit, cut off braces on old frame with hacksaw and cut left thumb
## 26720 EE installing wiring for computers-slid front portion of computer off desk-strain lower back
## 26721 EE instructed inmate to hold out hands to be handcuffed and he struck her in the face with his fist
## 26722 EE instructed juvenile to go to room, juvenile refused and began to be aggressive and turned over a table onto EE's foot.
## 26723 EE instructed to move mat; floor was wet under mat; staff unaware when walking away; step from bathroom to bedroom slipped and fell flat on stomach, catching self with both wrist hurting both wrists/hands, left knee and lower leg and abdomen. ()
## 26724 EE instructing class in long baton, he believed injured rt elbow. Rt elbow-swollen and painful.
## 26725 EE instructing confined space rescue training-EE reached to catch a student that was falling and pulled and twisted shoulder.
## 26726 EE instructing golf swin mechanics when he felt a pull in rt shoulder/neck area.
## 26727 EE instructing how to properly dot the job-stood up and hit head on bathroom stall latch
## 26728 EE instructing on how to properly stand up plants, matter from a leaf got into right eye. Matter in right eye
## 26729 EE instructor in baton training-in red man suit when he was struck in chest with straight baton by EE in training
## 26730 EE intending to pickup paperclip off floor-didn't see needle and stuck finger on rt hand.
## 26731 EE interacting with client flying kite in field beside gh parking lot, tripped & fell hurting left elbow & shoulder.
## 26732 EE interacting with client, client grabbed her armscratched them. Scratches to both arms
## 26733 EE interacting with student, student grabbed EE's wrist and twisted it
## 26734 EE interceded between two aggressive clients. Client struck EE in forehead and left eye
## 26735 EE interpreted alone at a meeting held from 10:00-5:00 and during travel time from 7 am to 7 pm- pain in rt arm
## 26736 EE interrupted a client while he was taking care of some personal business, the client then struck EE on the hand.
## 26737 EE interven between client that was fighting another client-in process injured lower back
## 26738 EE intervene and blocked one punch from one clientto another-client lost his balance. EE caught client from falling and other client kicked EE.
## 26739 EE intervened a fight and injured his right knee
## 26740 EE intervened and did a pic hold on a patient and they fell to the floor and EE's shoulder, neck, and knee are hurting.
## 26741 EE intervened between 2 aggressive clients-one client hit EE on the arm and other hit EE on shoulder
## 26742 EE intervened between agressive students during lunch-injury to left knee, inner left leg.
## 26743 EE intervened between pt/rn, pt hit EE in head ()
## 26744 EE intervened between two aggressive clients-in process was kicked and hit on left hand/fingers.
## 26745 EE intervened between two clients and one of the clients grabbed EE thumb and twisted it.
## 26746 EE intervened between two clients client slapped EE then grabbed EE by hair yanked ees head downwards. Cervical strain
## 26747 EE intervened between two clients, who were fighting-cliet grabbed EE's hands & twisted. Pain in fingers on both hands.
## 26748 EE intervened between two fighting patients and later his back began to hurt.
## 26749 EE intervened hwen one student was about to hit aother w/chair and EE took the force.
## 26750 EE intervened in a fight and patient struck EE in the lt arm
## 26751 EE intervened in altercation between 2 patients, classes were knocked to floor & damaged
## 26752 EE intervened in client's behavior. Client fell tofloor causing EE to fall to floor.
## 26753 EE intervened in hostile situation with patient. Patient kicked EE with no provocation in left lower leg. Bruise to left lower leg
## 26754 EE intervened in patient fight-patient kept trying to pull away from hold-strained rt rotator cuff
## 26755 EE intervened in pt altercation and was punched in the head several times by pt
## 26756 EE intervened nci with an aggressive pt, fell to floor hurting rt side of back & neck.
## 26757 EE intervened on two patients fighting and one patient bit EE on his hand.
## 26758 EE intervened to help a resident that was hitting himself in the head, the resident then grabbed EE's right fifth finger. No signs of injury.
## 26759 EE intervened to stop a client from hitting self and client hit EE's hand bone in thumb sounded like it popped.
## 26760 EE intervened w/ sir, client dropped to floor and banging head against drawers, staff lifted client to prevent further injury
## 26761 EE intervened when a client attempted to strike another client. Client then struck EE on the left arm.
## 26762 EE intervened when a patient struck staff and was knocked down; left knee; knee felt like it dislocated; also injured right middle finger
## 26763 EE intervened when a patient was pushing another patient and got caught in the wheelchair and fell landing on back. Patient fell on EE.
## 26764 EE intervened when a pt began fighting w/ a staff member, he was struck in the groin area
## 26765 EE intervened when client started topush another staff member injured lower back.
## 26766 EE intervened when patient attempted to attack nurse, felt pull or sprain in right calf.
## 26767 EE intervened with a resident who was sib. Blocking hits & holding hands down, pain in wrist became worse.
## 26768 EE intervened with behavioral patient to assist inpreventing patient from attacking a doctor and wasinjured in process. Right hand bruise.
## 26769 EE intervened with clients unexpected behavior when he injured back in process. Back strain
## 26770 EE intervened with student and client. Client raised hand; hit EE in the right eye.
## 26771 EE intervenin with resident who was trying to get locked cabinet open-resident pulled back on EE's thumb. Hyperextended thumb - fracture?
## 26772 EE intervening between pushed by clients. Rt thumbwas bent back and popped
## 26773 EE intervening between to clients attempting to redirect them-client struck EE in left eye with fist.
## 26774 EE intervening betwn two clients having an altercation-reached over wheelchair to stop them and hit lt knee, wrist and side on wheelchair.
## 26775 EE intervening in client's behavior and clients head struck EE on rt forearm.
## 26776 EE intervening in crisis situation w/student. Student ran into another room, EE followed into narrow passageway, EE put hand on wall, nail stuck in hand
## 26777 EE intervening in patient altercation. Patient pushed EE down trying to assualt another patient. ()
## 26778 EE intervening in pt attacking another pt. EE pushed into doorframe & onto floor, elbowed in the mouth.
## 26779 EE intervening w/ resident who had gone awol. Resident bit EE. Hep c carrier.
## 26780 EE intervening with behavior of client in restrainct got out of control grabbed EE hand twisted wrstrt
## 26781 EE intervening with clients behavior. Client accidently stumbled and fell on EE's left leg when she went down on mat.
## 26782 EE intervening with out of control client-client bit EE on lt thumb and rt ring finger.
## 26783 EE intervening with patient that was acting out. While placing patient in cpi hold, EE pulled a muscle in left hip area. ()
## 26784 EE interviened in trying to keep a juvenile from assaulting a 3rd shift staff. EE grabed the juvenile toput him on the floor. EE twisted lt knee.
## 26785 EE interviened with client behavior, holding his hands to keep him from injuring himself or breaking tv.
## 26786 EE interviewing an inmate, found out the inmate had TB
## 26787 EE intervining with behavior of two clts, one grbd EE fingers bent them back.
## 26788 EE introvened when client attacked anotehr staff and injured rt hand
## 26789 EE investigated suspect for larcency he fled on foot EE pursued & apprehended, suspect grabbed eeslt-hand squeezed tightly & refused to release
## 26790 EE investigating a collision & interviewing driverlaying on the ground. Helping driver up off the ground& felt pain in rt shoulder.
## 26791 EE investigating a collsion slipped and fell injuring his rt elbow
## 26792 EE investigating a fire at sister's cafe in bunn, nc. When slipped & fell on debris in fire scene
## 26793 EE investigating a hunting violation walking through brush, cutting right finger cat - 605895
## 26794 EE investigating a leaking pump on herb sprayer when he noticed a loos plug-touched plug which caused pesticide to go into both eyes.
## 26795 EE investigating a mv collision on I-26, when EE'spatrol vehicle was struck in rear by another car. Abrasion & swelling left eye, right big toe contus
## 26796 EE investigating accident on icy hwy when vehicle started sliding towards EE. EE attempted to move out of way, slipped & fell on icy fracture rt hand
## 26797 EE investigating auto accident when he fell down embankment that was wet & slippery & twisted his right knee while falling
## 26798 EE investigating mva, when a pickup truck lost control on icy ocerpass hitting cable barrier causing another mva. EE was pushed out of way
## 26799 EE investigating odor of marjuana, stepped off curband slipped on wet grass and fell to the ground. EE twisted left ankle.
## 26800 EE investigating possible air polution problem. EE reached to get a sample from tree and felt a stinging and burning sensation.
## 26801 EE investigating traffice accident collision and was bitten by a dog on rt ankle.
## 26802 EE investigation cause of unknown oder in bldg, becasue of exposure advised to seek medical tx.
## 26803 EE investing collision, sitting in patrol car, parked on the side of the road, an oncoming car striking the front of EE's car, muscle strain in back
## 26804 EE involved in 3 person pic carry, when se wash backing away seh stepped off mat & lost footing, falling backwards on back and right hip
## 26805 EE involved in a car accident.
## 26806 EE involved in a conversation-went to sit down andmissed chair causing injury to ankle.
## 26807 EE involved in a physical restraint of juvenile, when both slammed into the wall. ** sal contin *** l shoulder impingmt sx 9/27/07
## 26808 EE involved in a use of force on an inmate he struck on rt side of head just above ear with plastic mop wringer.
## 26809 EE involved in a use of force on essex unit and fell while struggling with the inmate and struck his lt knee on the concrete floor
## 26810 EE involved in a use of force on essex unit and struck his rt knee on cement floor
## 26811 EE involved in a use of force on essex unit and utilized his rt hand to secure inmate's handcuffs
## 26812 EE involved in a vehicle accident - injury and abrasions to left knee, contusion anterior chest. ()
## 26813 EE involved in accident pursuit-suspect auto side swiped EE's car after collision car reared off rt shoulder - cervical sprain & multiple contusions
## 26814 EE involved in altercation with suspect, EE strucksuspect 7 vehicle with right hand causing several abrasions & swelling to knuckles & fingers
## 26815 EE involved in an altercation with an inmate. Inmate struck EE in the rt eye. EE also received asmall abrasion on lt forearm.
## 26816 EE involved in an assault by an inmate EE ended upon floor broke his glasses & scratched lt arm
## 26817 EE involved in auto accident and has injuries to his rt hand
## 26818 EE involved in auto accident w/two other vehs causing many injuries.
## 26819 EE involved in auto accident while driving from washington nc to morehead city nc on official business.
## 26820 EE involved in auto accident-lt knee swollen, bruised and scraped, pain left buttock down lt leg general soreness
## 26821 EE involved in auto accident-sideswiped anotehr veh
## 26822 EE involved in auto accident; minor back pain
## 26823 EE involved in breaking up physical confrontation between 2 inmates. Turned quickly to use mace and injured left leg
## 26824 EE involved in chase - suspect hit EE's veh headonee got out of veh to arrest suspect and l/balance and fell injuring neck and back
## 26825 EE involved in chase on dirt road when trooper in front of EE slowed to make turn, EE struck other car.
## 26826 EE involved in chase with stolen truck, EE attemptdto remove suspect from chase vehicle, EE struck rt knee on vehicle
## 26827 EE involved in chase with stolen truck, EE passengrin marked patrol car, attempted to exit vehicle EE vehicle struck by suspects truck, hurt neck back
## 26828 EE involved in chase-lost control of veh and ran off road and overturned and hit a tree sustained injury to rt ankle.
## 26829 EE involved in collision causing EE to hit a tree injury right arm, hip and head
## 26830 EE involved in eri due to physical agression - lt knee stuck floor during altercation, rt forearm rt thumb
## 26831 EE involved in eri, pt sat down on ground pulling EE down, EE hit left knee on floor ()
## 26832 EE involved in firearms trainging on range when muscle in upper left leg was injured
## 26833 EE involved in foot chase for a suspect that had just been involved in a veh chase, EE jumped over a ditch in foot chase, felt twitch in lower back
## 26834 EE involved in foot chase of fleeing suspect. EE followed suspect over chain link fence topped withbarbed wire, cut right hand.
## 26835 EE involved in foot chase of larceny suspect, tripdon uneven pavement, fell, received cuts and abrasinto left knee
## 26836 EE involved in foot chase of suspect-both fell to the ground causing EE to jamm rt thumb on the asphalt.
## 26837 EE involved in foot chase with suspect. Lost footing on embankment, fell down embankment and injuredleft elbow. Sprained left elbow.
## 26838 EE involved in foot pursuit of fleeing suspect, followed suspect over chain link fence that was topp-ed with barbed wire, cut left finger.
## 26839 EE involved in foot pursuit was attempting to jump over fence and cut both hand on wire
## 26840 EE involved in forced medication order on inmate, EE got stuck by the syringe before given to inmatea nurse scratched left hand with needle
## 26841 EE involved in intervention had glasses knocked off, kicked, & stepped on.
## 26842 EE involved in mva. Car ran into back of tractor trailer EE was in. No injuries.
## 26843 EE involved in one car accident - unable to answer questions - mouth wired shut - multiple injuries
## 26844 EE involved in patrol car collision in which his vehicle turned over
## 26845 EE involved in physical altercation with violent inmate. Abrasion rt elbow, abrasion lt side of head, injury to 3rd lt hand.
## 26846 EE involved in rear end collision. Student vehiclehit physcial plant vehicle in rear
## 26847 EE involved in rear-end mva - sore upper back/neck
## 26848 EE involved in restraining a client and got rt thumb caught in clothing as client resisted.
## 26849 EE involved in restraining aggresive patient strained rt forearm & wrist
## 26850 EE involved in scuffle w/patient & was punched in eye. Also reports he reinjured his back
## 26851 EE involved in search & rescue. Trying secure overturned vessel by tying rope in rough seas. Wave lifted vessel hit him rt side. Fractured rt rib.
## 26852 EE involved in self-defense she noticed nagging feeling in her lower back increasing after train- ing
## 26853 EE involved in traffic accident with another car who ran a road sign striking EE vehicle
## 26854 EE involved in traffic accident. Leg injured & other pains associated with accident. Seen at urgent care on 9/1/04
## 26855 EE involved in use of force and injured left hand
## 26856 EE involved in use of force by preventing inmate fro assaulting staff. Rt knee struck during use of force.
## 26857 EE involved in use of force by preventing inmate from assaulting staff
## 26858 EE involved in use of force by trying to prevent further assault on officer from inmate by forcing inmate on floor
## 26859 EE involved in use of force in mental health, inmate scratched on rt side of face.
## 26860 EE involved in use of force on an inmate, injury injury his rt wrist & rec'd several scratches rt forearm. Lt wrist, minor sprain.
## 26861 EE involved in use of force on inmate and was struck on rt side of head with plastic mop wringercontusion rt side of head, scratches on forearm.
## 26862 EE involved in use of force on inmate, sustained a scratch on index finger and jammed lt hand.
## 26863 EE involved in use of force w/inmate was struck inchest & fell to floor striking rt hand & rt hip
## 26864 EE involved in use of force was pushed into bars two abrasions on lower lt arm & bump on lower rt arm
## 26865 EE involved in use of force, stepped on inmate's foot & rolled over his ankle
## 26866 EE involved in use of force-at some point left foot slipped causing pain in left hip/lower back
## 26867 EE involved in vehicle accident, struck a tree andthen collided into a utility pole, sprained r ankle, fluide on l elbow, large bump on back of head
## 26868 EE involved in vehicle chase & followed suspect behind resident. K-9 unit @ scene also. *****see lognotes*******.
## 26869 EE involved in vehicle chase - after short foot chase. Suspect striking lt elbow, lt knee and rt hand pavement.
## 26870 EE involved in vehicle chase hitting several ruts in the road - neck and back injury
## 26871 EE involved in vehicle chase. Defendant sideswipedee's vehicle in attempt to flee. Pain in neck and back
## 26872 EE involved with search of compound of unit & picked up a piece of metal threw it in container sharppoint cut rt index finger below middle joint.
## 26873 EE involved with stolen motorcycle chase and unable to make turn, traveled, struck utility pole and house, injured neck and back
## 26874 EE involved, instructor training, peformiing an arm lock technique on partner when he stated that he had dislocated shoulder
## 26875 EE irrigating extraction site possible needle stick th lt index finger used t retract lip.
## 26876 EE is 13 wks pregnant - she was pulling covers over a patient when patient kicked EE in belly
## 26877 EE is a fiber tech and he thinks he got a piece in foot.
## 26878 EE is a mechanic that was working on a dodge charge. EE caught finger under emergency brake release cutting index finger under nail. ()
## 26879 EE is a surgeon that was performing vascular surgery operation. Scalpel dropped and cut leg through surgeon gown. Laceration to right leg
## 26880 EE is a work study student who fell down stairs- pain in neck and body
## 26881 EE is allergic to latex gloves or cleansing chemicals.
## 26882 EE is allergic to thimoroson - got worse while at work at unc, clear when not in hospital - rec'd rash on hands
## 26883 EE is attributing car trip to ral. As cause of back pain-stated back stressed to point of incapacitation - position requires travel
## 26884 EE is being seen by Dr Kolkin at raleigh hand center. EE had bilateral carpal tunnel and to have surgery.
## 26885 EE is claiming capal tunnel
## 26886 EE is claiming carpal tunnel syndrome
## 26887 EE is claiming repetitive motion strained in both wrists from keying information into tracking system
## 26888 EE is claiming work related stress
## 26889 EE is complaining about itchy eyes when working with mice.
## 26890 EE is complaining of hand pain ()
## 26891 EE is complaining of pain, numbness in hands & wrist - filed claim in 1996 for similar sym. Resulting for an on job site injury.
## 26892 EE is continuously exposed to ticks and other biting insects
## 26893 EE is doing heavy typing. The cumulative effect of the typing has apparently caused either tendinitis or carpal tunnel syndrome.
## 26894 EE is engaged in daily in constant data entry via computer resulting in pain in fingers hand and wrist.
## 26895 EE is experienceing sharp pain in right shoulder &back area from firearm training recertification.
## 26896 EE is experiencing bilateral pain in both wrists and tendonitis associated with daily typing in suboptimal chair and office equipment set up. ()
## 26897 EE is experiencing choking, heavy nose bleeding and vomiting due to conditions of building
## 26898 EE is experiencing chronic exposure to moth scales
## 26899 EE is experiencing continuous pain in neck/upper back when performing studies where pressure and/or extension of right arm and constant pressure is required to see structures. ()
## 26900 EE is experiencing numbness in both hands and arms
## 26901 EE is experiencing numbness in rt hand and rt arm from normal work duties
## 26902 EE is experiencing pain and numbness in rt arm andhand and that the nature and extent of injury is repetitive motion
## 26903 EE is having arm and wrist pain in right arm when working on computer mouse.
## 26904 EE is having chronic eye infections, which began after they moved into a another building. Ecu's occupational safety & health investigating it
## 26905 EE is having emotional distress
## 26906 EE is having hand and neck pain
## 26907 EE is having pain in neck, arm to foot- lt side of body.
## 26908 EE is having post traumatic stress disorder after being raped by an inmate.
## 26909 EE is having symptoms of decompression sickness followed by scuba diving
## 26910 EE is know to occasionally work in high noise environment while consulting.
## 26911 EE is on crutches due to previously injury. Her crutch slipped on water at water fountain and EE landed on floor. Multiple injuries
## 26912 EE is required to use computer on daily basis. Injury has ocurred due to prolonged typing and keying of data
## 26913 EE is suffering emotional stress after observing an inmate being shot
## 26914 EE is suffering emotional stress from having seen an inmate being shot by an officer
## 26915 EE is suffering from acute shoulder bursitis after receiving flu vaccine. ()
## 26916 EE is suffering from medium to sharp pain in rt hand especially in lower thumb area
## 26917 EE is suffering from pain from a erogonomical condition
## 26918 EE is suffering from tingling and numbness to the rt ahnd and fingers.
## 26919 EE is the faculty advisor for the ultimate frisbeeteam, during a match he was struck by another pla yer causing trauma to the left side of his chest
## 26920 EE is unable to explain how injury occured
## 26921 EE is unsure of exactly what happened but thinks something bit her on her lt hand
## 26922 EE is unsure of the date of injury. For the past couple of years has had pain in both shoulders & & knees from moving a buffer.
## 26923 EE is using machine in postal services causing carpal tunnel syndrome
## 26924 EE is wheelchair bound. His vehcile is equipped w/mechanical device that allows him to enter & exit the vehicle while still in the chair.
## 26925 EE is working special assignment and staying at suspects residence where living conditions are unsanitary. EE contact infection on feet due to living conditions. ()
## 26926 EE issued discipline via an infraction written on paper-juvenile ripped paper up and threw it in EE's face - corner of paper struck EE lt eye
## 26927 EE issuing parking citations when car alarm sounded-EE turned toward sound and stepped on bark and fell injuring ankle, knee and hand.
## 26928 EE issuing weapons reached up to get retraints lt hand was on counter top w/back of hand up restraints fell on top of lt hand
## 26929 EE jammed bristles of brush in rt eye when his arm hit the partition
## 26930 EE jammed finger against refrigerator
## 26931 EE jammed finger in door on storage room
## 26932 EE jammed finger when he was closing desk drawer. Sprain of rt 3rd finger.
## 26933 EE jammed finger while playing basketball with resident
## 26934 EE jammed foot against lower cabinet
## 26935 EE jammed hand on the corner of desk right wrist
## 26936 EE jammed his hand on floor while trying to restrain client.
## 26937 EE jammed his left thumb during an arrest trainingexercise
## 26938 EE jammed his lt ring finger while handling a box from warehouse
## 26939 EE jammed his right ring finger during defense training.
## 26940 EE jammed his thumb during pic class on another staff member's arm.
## 26941 EE jammed left middle finger while trying to restrain juvenile
## 26942 EE jammed middle finger on right hand while trying to prevent a fall. ()
## 26943 EE jammed right hand on door, while trying to prevent a falling client from hitting her head.
## 26944 EE jammed rt thumb between face bowl and wall- contusion
## 26945 EE jammed rt thumb unto food buggy
## 26946 EE jammed rt thumb while restraining student
## 26947 EE jammed thumb in closing door, 1st joint left thumb
## 26948 EE jammed thumb on lt hand, unloading 2x4's from back of a dump truck.
## 26949 EE jammed thumb while making bed.
## 26950 EE jarred her back & bruised her left hip when sheturned to leave the side of desk. Her foot becameentangled in dangling telephone cord.
## 26951 EE job involves lots of pulling & lifting. This repetative activity caused incapacitation. Mid- spine misalignment, pinched nerve.
## 26952 EE jogging to assist officer, stepped on storm drain, slipped, fell. Sprained l shoulder, arm, hand, back.
## 26953 EE jummped off a 4" tall platform and landed poorley, turned left ankle
## 26954 EE jumped a fence and landed in a hole causing injury to his knee
## 26955 EE jumped a fence while chasing renaway and landedwith a lot of pressure on the knee
## 26956 EE jumped a fence while pursuing a probationer when the metal piece from the top of the fence punctured his lt hand
## 26957 EE jumped a shallow ditch while on foot pursuit-asee landed on sandy soil he twisted his left ankle
## 26958 EE jumped across a small creek injured his lt leg--strain calf muscle
## 26959 EE jumped curve, drove into ditch hitting pole. Car went airborne. EE injured legs, back and head
## 26960 EE jumped down into window well injuring rt ankle
## 26961 EE jumped down out of tower and landed on leg.
## 26962 EE jumped from bed and injured left foot
## 26963 EE jumped from bleachers to floor and felt pain in left heel
## 26964 EE jumped from tailgate of truck and felt sharp pain in his foot ()
## 26965 EE jumped in water to help a patient who thought they were drowning, pulled the client to safety andlost lens and hit rt side of head.
## 26966 EE jumped off a slow moving planter that was being pulled behind a tractor.
## 26967 EE jumped off back of truck while working during hurricane floyd and twisted ankle.
## 26968 EE jumped off lifeguard stand to rescue someone and sprained his ankle
## 26969 EE jumped off motorcycle to prevent bike from falling off rollback truck (trying to secure the back to the roll back truck)
## 26970 EE jumped off the car top about 3 ft. To the floor twisting his ankle.
## 26971 EE jumped off truck bed onto a magnolia cone and turned left ankle.
## 26972 EE jumped on my head, neck & shoulders while I as seated near back of state van. Shortness of breathpain shoulders, back, chest, stomach heart paral.
## 26973 EE jumped out of boat onto ground and he felt his back tighten up.
## 26974 EE jumped out of stalled vehicle to keep from being hit by a vehicle sliding on ice. Injured hand(wrist).
## 26975 EE jumped out of the way of a moving veh and wrestle the suspect out of the veh after a chase twisted knee.
## 26976 EE jumped out of tractor trailer as it turned over, suffered minor head injury muscle strain, bruised leg
## 26977 EE jumped over object practing falling techniques and injured rt leg/groin area.
## 26978 EE jumped the ditch at an accident to get to the vehicle. EE strain muscle/ligament to lower back and pelvis.
## 26979 EE jumped up from an on the knees position to help with a vicious cat & twisted her back as she got up.
## 26980 EE jumping over a ditch when one foot caught root and EE landed in ditch hurting left hip.
## 26981 EE jumping over puddle landing on rt shoulder.
## 26982 EE jumping to a rock which rolled over causing EE to fall on right knee and bruise it
## 26983 EE just collapsed in the hallway.
## 26984 EE just completed calisthenics-leading class in a 15min cool down and stretching felt a pop in left lower leg.
## 26985 EE just finished a traffic stop and was walking back to his car and lost balance on uneven pavement.
## 26986 EE just finished changing client & was standing indoorway with hand just inside door, when client slammed door shut on right hand.
## 26987 EE just finished feeding unit-sat down & stated hewas tired-then slumped over holding chest complaining of chest pain-sweating profusley
## 26988 EE just finished weighing a commercial motor vehicle and was placing his portable scales back into the rear compartment area of his patrol vehicle when he felt a pull in his back and started having muscle spasms.
## 26989 EE just got some shovels out of road squad trailerwhen EE jumped off of the trailer EE slipped on ice, bruise to lower and mid back
## 26990 EE just hung up telephone and started to leave desk and her right hand struck a razor blade that was in the molding on the desk.
## 26991 EE kelley stated that he was working his assignedpost in edwards & began to have pain in his chest & right arm.
## 26992 EE kept trying to get inmate he managed to keep him away from the other inmate when inmate tried to run pass EE placed arms around inmate to hold
## 26993 EE keying invoices repetitively, right hand
## 26994 EE keying timesheets into computer & suddenly experienced sharp pain in left hand & left upper arm. Pain existed through workshift
## 26995 EE kicked by patient - contusions rt hand and knee
## 26996 EE kicked by student, right leg
## 26997 EE kicked gate open pulling left hand through edgeof gate injuring hand
## 26998 EE kicked in arm by an agressibe client - rt biceps contusion.
## 26999 EE kicked in chest during behavior intervention.
## 27000 EE kicked in left knee while reatraining a client
## 27001 EE kicked in neck by horse he was trying to calm down
## 27002 EE kicked in right knee during eri ()
## 27003 EE kicked in the stomach by hostile client.
## 27004 EE kicked on rt knee by foul while recovering it from anest.
## 27005 EE kicked resident below left eye
## 27006 EE kicked seveal times by resident while placing tthem in seclusion, shoulder and face
## 27007 EE knee gave way, rec'd prior treatment form injury at home.
## 27008 EE kneel down to pick up a medication bottle on the floor and as she was getting up her rt foot twisted causing her to fall on the floor
## 27009 EE kneeled down for locker search, EE right knee popped and when she got back to the officer she noticed that her knee and calf began to swell
## 27010 EE kneeling beside clients bed-stood up felt something catch in left knee
## 27011 EE kneeling in front of bookcase taking inventory injury sharp pain through back of right knee as eeshifted weight
## 27012 EE kneeling on the edge of client's bed when knee slipped and EE fell hitting left knee on bed frame
## 27013 EE knees started hurting while pushing a 250-300 lb patient to ward 332 and afterwards.
## 27014 EE knelt down behind state care to place tag renewal sticker on tag, ees right knee popped causing intense pain and a weakening of the knee.
## 27015 EE knelt down on his knee on the mat, his knee began to hurt. EE also stated that he had injuredhis knee in the past.
## 27016 EE knelt down to at a cabinet-student called her name and EE felt a pull as she tried to stand
## 27017 EE knelt down to practice the limited control walkher lt knee popped and began to swell through the night.
## 27018 EE knelt down to reach behind big screen tv to test a outlet-when standing back up felt rt knee pop
## 27019 EE knocked a fire extinguisher off of the wall & it discharged. She breathed the powder.
## 27020 EE knocked glass vial on the floor that contained TB. The aerosol has potential to expose to TB.
## 27021 EE knocked off paddle board by wave. Second wave knocked board into hip.
## 27022 EE knocked on door of parolee residence his mothercame to door. Left door open. Dog bit him on lt hand. Puncture wound on palm of lt hand.
## 27023 EE knocked out of her chair by an inmate; landed on shoudler on floor. Torn right rotator cuff.
## 27024 EE knocked over a message holder, went to grab it, and punctured his right hand
## 27025 EE knocked perimeter truck out of gear while EE was standing beside truck. Truck ran over left foot.
## 27026 EE knocked to the floor by inmate when escorting inmate to segregation, injuring right elbow, hip, and fingers
## 27027 EE l side of neck stiffened up and EE had pain in l shoulder. EE was on m word, division, carryingsome papers.
## 27028 EE l/control of veh when coming around a curve-ranoff road, lost control of patrol car and overturned
## 27029 EE lacerated hi rt forearm on hanging ceiling wireat his work site.
## 27030 EE lacerated his forehead when he walked into a bullentin board
## 27031 EE lacerated left hand with frayed tire belt
## 27032 EE lacerated left thumb during altercation with patient
## 27033 EE lacerated left thumb on band saw while sectioning a specimen
## 27034 EE lacerated lower arm which then came in contact with treated lumber and intercoastal water
## 27035 EE lacerated lt index finger when it came into contact with lathe
## 27036 EE lacerated ring finger, lt hand while pressing down trash in rolling trash can located in cone center, main lounge. Laceration/lt ring finger.
## 27037 EE lacerated rt hand on van door
## 27038 EE ladder was wet and foot slipped off. Injured shin scrape of skin of leg.
## 27039 EE laid knife down, turned and fingers hit knife cutting fingers
## 27040 EE laid wet clothes on floor, helped resident re- move clothing, and slipped on clothing and fell. Mid/low back, both legs.
## 27041 EE lambert participated in oc pepper spray for nho4-24. He started having problems on fri & he progressively got worse, he is now in cdu at cmc.
## 27042 EE landed on right ankle awkwardly when stepping off work building sidewalk, during work hours
## 27043 EE launching cards into river-slipped and fell into poison ivy patch-rash on both hands, feet knees and rt arm.
## 27044 EE laying blocks having to reach around rods & bending in an unnatural position strain to lower back
## 27045 EE laying inside wall installing drain line, debrisfell into rt eye
## 27046 EE leading a field trip-stung in left lower leg by yellow jackets
## 27047 EE leading a horse that tried to run, when ring finger on left hand became caught in rope. Causingcontusions on finger
## 27048 EE leaned against metal window while getting his canteen, resulting in edge cutting him lt arm at elbow.
## 27049 EE leaned against stretcher and stretcher tipped causing EE to fall to the floor
## 27050 EE leaned back against a hot piece of steel and rcvd 2nd degree burn on left upper back appx. 4x4 inch spot.
## 27051 EE leaned back expecting the wall to be behind her, the wall wasn't there and she landed against a vent ()
## 27052 EE leaned back in chair & chair tipped over ()
## 27053 EE leaned back in chair and fell backward. Employee was getting assistance on how to log in.
## 27054 EE leaned back in chair and fell, hurting head and shoulder.
## 27055 EE leaned back in chair and injured his back.
## 27056 EE leaned back in chair and pulled back up-can't put wgt on left side.
## 27057 EE leaned back in chair, metal support snapped in half, momentum carried EE backwards, spine struck the broken edge of metal support.
## 27058 EE leaned back in the chair and a spring broke andthe chair fell backwards with the EE in it-pain and bruises in upper back hand and both legs
## 27059 EE leaned client against the wall to dress him, pipe holding curtain fell and hit EE in the head.
## 27060 EE leaned down to assist client to stand- as EE stood and straightned up noticed pain in lower back
## 27061 EE leaned down to pick up a pot with a bamboo stake the bamboo stake went up EE's nose.
## 27062 EE leaned down to place documented in file cabinet & felt pop in low back
## 27063 EE leaned forward & chair tipped over causing EE to fall to floor injuring rt knee & buttocks
## 27064 EE leaned forward and over client to the opposite side to get client's leg. A sharp pain hit right upper side and moved toward front under breast.
## 27065 EE leaned forward in chair to pick up a pen, chair tipped and EE fell out, hitting her head on her desk
## 27066 EE leaned forward in chair, chair slipped from under EE and EE fell out, tried to breadk fall so EE reached for id board, cut lt hand on edge
## 27067 EE leaned forward in the van to retrive inmate files and felt sharp pain in her neck
## 27068 EE leaned forward to pick up an ink pen from the floor. While doing so, the chair rolled out from under her. EE fell on the floor, striking her belly on the desk drawer and hitting her back and head on table beside her chair. Her left foot hit desk also.
## 27069 EE leaned forward to pick up staples from floor, fell forward onto left hand & knuckle-immediately swollen/bruised, sent to nextcare, out to next fu
## 27070 EE leaned in her chair to attach note to board when her chair slipped and she fell out of chair. Over the weekend neck got sore and stiff
## 27071 EE leaned in the back of the chair and the chair snapped and EE hit arm on the chair arm.
## 27072 EE leaned on pull out desk leaf w/elbow, board broke in half(fell to floor) striking chin on deskcheek bone, teeth.
## 27073 EE leaned on table, which broke, causing EE to fall and jam his wrist. ()
## 27074 EE leaned over & chair slipped out from under him causing him to fall. EE was out 2 days which werescheduled off days.
## 27075 EE leaned over and placed hands on table to glancedown at paper and felt sharp pain shoot across lower back.
## 27076 EE leaned over control panel to open cell door and his metal cross pen touched part of the control panel causing shock
## 27077 EE leaned over desk to turn bucket of files around and felt something pop in lower back
## 27078 EE leaned over her chair and picked up a basket ofdocuments that were to be keyed into civil system.
## 27079 EE leaned over the arm of the chair to pick up something off of the floor and it felt like I cracked/crushed a rib on the lt side.
## 27080 EE leaned over to adjust seat belt of client on toliet-feet slipped out from underneath EE and hithead on metal hand rail.
## 27081 EE leaned over to close a file drawer to go to another office. EE twisted to leave cabinet drawer and pulled something. Hurts on (r) side of back
## 27082 EE leaned over to insert center pain into latch ofbath trolley. When EE came up, EE hit the back of head, full force, on cabinet hanging above trolle
## 27083 EE leaned over to lift box (approx. 25-40 lbs) felt a pain in back when raised up.
## 27084 EE leaned over to pick up box felt pull in back.
## 27085 EE leaned over to pick up item from floor chair rolled EE fell to floor injuring her left knee EE ordered out of work by physician 03/21/07
## 27086 EE leaned over to put a plug in printer and felt asevere pain in back.
## 27087 EE leaned over to put trash in trash can. Chair slipped out from under EE. While tring to balance with rt arm/leg. Twisted leg in process.
## 27088 EE leaned over to readjust mat, when she pulled on mat it jumped and the knob on bottomside grabbed the carped floor jerking her back. Lower back.
## 27089 EE leaned over to reset the alarm unit in the vehicle and this caused the vehicle to go off track to the lt and striking light pole
## 27090 EE leaned over to retrieve a violators license when he experienced a sharp pain in lower back followed by numbness in waist
## 27091 EE leaned over to slide box approx 4 feet; felt a catch in spine.
## 27092 EE leaned slightly over the table where the computer was located, as EE began to straighten up she had a very sharp pain in lower back.
## 27093 EE leaned up against the toaster while supervisingstudent in cafeteria. Burn to left forearm.
## 27094 EE leanedover client chest to grab the chest strap and EE noted pain in chest and back area.
## 27095 EE leaning across bench to water plants. Lost footing, slipped, causing body to twist.
## 27096 EE leaning against the wall went to closet in laundry bldg felt something bite her on left arm.
## 27097 EE leaning into drink cooler to lift sixpack of drink and hyperextended right elbow and it became numb
## 27098 EE leaning on counter in starters house, looking out window, felt a sting on r hand, knocked spider off
## 27099 EE leaning over in chair to pick something off floor-chair tipped over EE fell out of chair hit computer desk.
## 27100 EE leaning over to place suspect into seat beat felt a sharp pain in lower back.
## 27101 EE leaning over using pole with net attached to pick up debris from fountain & felt pull in low back
## 27102 EE leaning under a storage rack and stood up hitting self in the back of the head.
## 27103 EE leaped over a locked nurse station trying to escape an angry patient beating on a doctor in the chart room. Injured knne and cheekbone.
## 27104 EE leaped up lightly to retrieve ball, pain shot through right knee.
## 27105 EE leaving 3rd floor clost, went down steps, fell from 3rd floor platform & rolled to the bottom of stairs, located by 2nd floor exit door.
## 27106 EE leaving a home visit with a student, slipped and fell on the flagstone path, sprain left ankle
## 27107 EE leaving a meeting and foot slipped on second bottom step causing EE to fall to pavement
## 27108 EE leaving a-dormitory when the mechanical door closed on right arm, impact on chest and right armtingling finger
## 27109 EE leaving admin building stepped off of the step fell while trying to hold on to another employee injury (r) knee (l) leg 3 mid toes (l) leg, foot
## 27110 EE leaving another EE's office tripped on chair resulting in fall to floor.
## 27111 EE leaving another state agency when stopped at light was rear-ended by another driver. ()
## 27112 EE leaving at end work day. Side walk was uneven & tripped when toe caught on elevated cement. Causing EE to fall flat on face & knees
## 27113 EE leaving bldg for the day-missed the last step an all EE's wgt went on rt ankle resulting in sprain.
## 27114 EE leaving bldg to go home fell from 3rd floor to 2nd floor injuring both knees, left wrist, arm and soreness to center of back
## 27115 EE leaving building from the stairway, door was held open by rug - EE tripped over rugh and fell.
## 27116 EE leaving building going down steps and slipped and fell sprained left ankle.
## 27117 EE leaving cafeteria and tripped when turning overa man made elevation in the road-att to regain balance and fell on back and head.
## 27118 EE leaving classroom & slipped on food on floor lower back contusion & rt elbow/rt hip
## 27119 EE leaving classroom and did not notice the two steps to lower hall and turned foot and twisted ankle.
## 27120 EE leaving client's room after delivering laundry and backed into handle of wheelchair hitting back.
## 27121 EE leaving coned bldg and fell off of a step ()
## 27122 EE leaving control room, when he closed control room door his 4th finger on his lt hand was caughtbetween the door & frame.
## 27123 EE leaving cosmetic arts ctr & truck in front of her suddenly backed into her car. Driver side airbag deployed & hit EE in face. ()
## 27124 EE leaving exit gate and foot slipped off curb andee fell face first into steel pole.
## 27125 EE leaving facility when insect flew into window of truck and got in rt eye.
## 27126 EE leaving for lunch out the front of courthouse took 1 step and fell face down all the way down the cement steps ()
## 27127 EE leaving for lunch, walking on side walk, fell ()
## 27128 EE leaving for lunch-slipped and fell on wet stepsbreaking her ankle.
## 27129 EE leaving for the day down stairs located by parking garage. Passed last landing, foot slipped from under causing EE to fall onto stairs
## 27130 EE leaving for the day-slipped on ice in p/lot falling to her knees.
## 27131 EE leaving her duty station on west campus she was walking to her car, she slipped and fell on ice. Fracture of rt wrist.
## 27132 EE leaving her office & stepped through double doors, & slipped on spill that was on the floor & fell. Injured rt wrist/elbow/arm & lt knee.
## 27133 EE leaving her office for the lobby area & slipped on puddle of water left by student who mopped facility; no wet floor signs had been placed by student. EE slipped on water and landed on buttocks with head hitting floor, too. ()
## 27134 EE leaving her office when she slipped & fell on wet floor just mopped.
## 27135 EE leaving hotel carrying bag down the stairs to state vehicle, when she wrenched her neck. Pain in left neck/shoulder/arm/hand/fingers.
## 27136 EE leaving infirmary when she stepped in hole in the ground causing EE to stumble.
## 27137 EE leaving jury box and heel of shoe got caught oncarpet-EE tore the ligament in the rt foot.
## 27138 EE leaving maintenance shop missed bottom two steps and twisted left knee
## 27139 EE leaving music bldg after class to play for student recital in shearer hall and she fell in driveway. ()
## 27140 EE leaving offender door step EE fell off offender porch injury to right knee
## 27141 EE leaving office & slipped on water in floor. Both lt feet left the floor & EE fell against the wall, rt foot landed flat-lt foot landed on side.
## 27142 EE leaving office to go to classromm and slipped on floor.
## 27143 EE leaving officers desk in dorm 5 coming toward front entrance door when an inmate threw somethingand hit EE in back, not serious injury, just stung
## 27144 EE leaving one of clients home and slipped on ice broke leg
## 27145 EE leaving premises for lunch, EE either tripped over feet or something on walkway & fell face first onto cement, right arm, shoulder, hand, chest
## 27146 EE leaving probationers home after curfew check and feet slipped on wet porch causing EE to fall on back, lft hip and hit back of head and neck.
## 27147 EE leaving quiet room when client wrapped his feetaround EE leg, causing the knee to be pulled.
## 27148 EE leaving reisdence after curfew check, slipped on plywood. Fell on lt knee, bruising it.
## 27149 EE leaving room after shreading paper and tripped over power cord falling forward and caught self onback of chair injuring left wrist.
## 27150 EE leaving sgt's office by rear door, turned door knob and pushed to hard against door, not realiz- ing it was locked sprained lt wrist.
## 27151 EE leaving shower room with, when he tripped on a trash can lid on r arm. Plt atty. *******
## 27152 EE leaving smoking room, went to put out cigarette & re-injured back causing great pain, loosing feeling in rt arm & leg.
## 27153 EE leaving state vehicle when she slid on the pinestraw bruising both knees; pain in left wrist and both arms.
## 27154 EE leaving supply room & slid down on waxed floor hurting rib, lower back, left arm & elbow.
## 27155 EE leaving survey site, getting into car and hit head on door frame-became ill 5 days later.
## 27156 EE leaving the building and fell down 3 steps to the bottom landing-injuring upper left back, rt & left hand, knee, shins, foot
## 27157 EE leaving the building tripped on crack sidewalk fell forward caught herslef with hands. Fracutre small bone near elbow of rt arm.
## 27158 EE leaving the plant, when she stumbled over a wet t-shirt and fell face foward on floor that waswet from stripper. Lt elbow & lt side of body.
## 27159 EE leaving to attend work-related meeting stepped off sidewalk & fell twisting lt ankle/foot
## 27160 EE leaving to go home after shift was over trippedand fell - 2inch bruise forehead - two laceration thru chin lower lip - teeth loose - damaged plate.
## 27161 EE leaving vehicle to go to residence hall and tripped and fell injuring left toe
## 27162 EE leaving ward for lunch slipped in what appearedto be saliva on floor, fell on rt knee. Bruise to rt knee.
## 27163 EE leaving welcome center by glass door at the lt of reception lobby, EE fell out the door onto the cement hitting lower back, shoulders & neck
## 27164 EE leaving witnesses residence and stepped on a slick landscaping board lost control and twisted rt ankle.
## 27165 EE leaving work and exiting bldg when he stepped over a brick edging on ramp and tripped and fell spraining left ankle.
## 27166 EE leaving work and lost balance in hallway and fell.
## 27167 EE leaving work around 4:15, walking accross parkiparking lot, left ankle turned, bruising & swellingto left foot.
## 27168 EE leaving work for the day and tripped and fell on steps injuring left ankle.
## 27169 EE leaving work going down steps west side of bldgfoot slipped on liquid -didn't fall. Twisted ankle and rt shoulder area.
## 27170 EE leaving work to got to car and fell over curb in parking lot injuring rt foot and ankle
## 27171 EE leaving work, from sidewalk to parking lot downa handicap ramp, lost footing and slipped/fell, injured right knee, right hand and right arm.
## 27172 EE leaving work, stepped down steps near the fha office & EE fell. Injury to rt knee, & top of foot
## 27173 EE leaving work, stepped in hole w/ r foot falling on r knee and r shoulder
## 27174 EE leaving work, tripped over some wires connectedto a surge protector, reached out to grab chair, fell onto floor on rt hand.
## 27175 EE leaving work-crossing street and tripped on manhole and fell down on rt elbow and knee.
## 27176 EE leaving work-walking to p/lot stumble on brick sidewalk and fell-rolled down hill injured rt footankle and knee.
## 27177 EE left arm and wrist started hurting feeling numbafter having TB injection
## 27178 EE left bldg walking across p/lot and slipped on ice twisted to fall in left shoulder instead of back.
## 27179 EE left eye sill hurting, scratchy feeling due to being exposed to pepper spray
## 27180 EE left foot caught in man hole causing a fall in parking lot. Sprain lower leg/foot
## 27181 EE left foot twisted off driveway onto ground, EE fell on her right arm, injuring neck and back
## 27182 EE left hand & wrist swollen & hurting. EE tried to operate a weed eater and could not--went home. Operating string trimmer daily--lt hand & wrist.
## 27183 EE left hand aches at the joint of thumb. Cannot squeeze fingers.
## 27184 EE left history center stepped into visitor centerwhen EE stepped on floorboard right foot bent over& caused fracture
## 27185 EE left knee slipped out of joint while taking twosteps back doing the unarmed self defense tech. His ankle turned as he stepped back. (dislocated)
## 27186 EE left middle finger was cut
## 27187 EE left office and was walking through the lobby and slipped on a wet spot.
## 27188 EE left office to go to the restroom floor was wet and had just been mopped by county staff EE slid and fell ()
## 27189 EE left officer's station to get some water and passed out near the water fountain, falling to the floor.
## 27190 EE left room & upon returning, sat down in chair &sat on a poster tack
## 27191 EE left room 236b and went to rm 243b and noticed that my left hip had a throbbing pain all the way down to my toes and up my back. ()
## 27192 EE left shoulder and neck begin hurting after working at ncscc for about two months
## 27193 EE left the campus bookstore & fell on steps & landed on face & arms. EE broke lt hand, fractured right elbow, broke nose & broke dentures
## 27194 EE leg brushed against small garbage can attached to wall in bathroom stall, metal box fell landing point dowon on right big toe--EE wearing sandales.
## 27195 EE legs slipped out from under her due to the rain that was on the down ramp. Landed on rt hip & twisted lt leg as EE went down.
## 27196 EE let agency; pulled out of parking lot(sun was in eyes)EE went thru stop sign and truck hit EE onlt bumper. Injured arm, elbow.
## 27197 EE let inmate out to use the bathroom, and inmate hit EE in the head and ear.
## 27198 EE letting officer through gate when gate latch fell down in process of closing gate & finger slammed between latch & pole.
## 27199 EE librarian for inmate library. Fell in bookstore& broke her leg.
## 27200 EE lifing boxes from various delviery companies (approx 96). Felt her back pull continued working felt pain in back, chest and lower stomach
## 27201 EE lifing heavy bag of leaves without any help andstrain groin area.
## 27202 EE lift big batteries in and out of machine caused strain to back
## 27203 EE lift desk, felt muscle pull in his lower back
## 27204 EE lift paper to cut for press. EE developed tendonitis in his elbow from lifting heavy paper.
## 27205 EE lift podium and hurt back.
## 27206 EE lifted a 100 cup coffee urn out of a basket onto a counter & hurt middle/lower back.
## 27207 EE lifted a 20 pound box and felt pain in lower abdomen ()
## 27208 EE lifted a 5-gallon paint bucket filled w/ paint to pour paint into a roller pan & felt sharp pain in back.
## 27209 EE lifted a bag containing equipment when he pulled a muscle in his lower back
## 27210 EE lifted a bag of trash that contains several large book straining his chest
## 27211 EE lifted a bag of trash to put in to dumpster, felt her right shoulder popped
## 27212 EE lifted a big pot filled with water and felt something pull in his back.
## 27213 EE lifted a black drainage pipe, contractor asst. Dropped end of pipe causing pipe to shake in EE hand. Ring finger was lacerated leaving blk prtcls
## 27214 EE lifted a box and injued lower/mid back
## 27215 EE lifted a box approximately 30 - 40 lbs ()
## 27216 EE lifted a box of office supplies & as she turnedshe felt snap in her back.
## 27217 EE lifted a box to file into the box below it. Injured knee
## 27218 EE lifted a box-walking across floor and felt a pulling in the left knee
## 27219 EE lifted a brush causing hernia of the lt side
## 27220 EE lifted a bucket of soybeans when he later felt pain in his lt shoulder
## 27221 EE lifted a carrying case (on wheels) containing approx. 6 teachers packets materials for tutorialsinjuring rt neck and shoulder marc sneed
## 27222 EE lifted a case of apples & pulled & twisted lower back while putting the apples on the shelf. Lower back
## 27223 EE lifted a client and started to hurt down spine
## 27224 EE lifted a client from a sitting to a standing position and strained back
## 27225 EE lifted a computer and later experienced pain in his back
## 27226 EE lifted a cooler full of drinks and ice and injured back
## 27227 EE lifted a crate of mile and somtheing popped in her shoulder around her collar bone.
## 27228 EE lifted a heavy box from the floor to cart-from cart to back of car and strained back doing this task.
## 27229 EE lifted a heavy coffee container to a counter top. Lower back strain.
## 27230 EE lifted a large heavy box of mail and placed it on a cart and felt sharp pain in low back.
## 27231 EE lifted a metal file bucket. She had most of the weight on her right hand. It strained her thumb on that hand. ()
## 27232 EE lifted a pan of eggs out of food cabinet and then felt pain in right of back.
## 27233 EE lifted a pc from front side of table to lower to back side of table. During lowering pc to floor, back spasm occurred
## 27234 EE lifted a piece of pipe and hurt his shoulder.
## 27235 EE lifted a piece of pvc pipe and a piece of debris fell from the pipe into EE's left eye.
## 27236 EE lifted a piece of steel at work and carried it across the room. Injured low back.
## 27237 EE lifted a resident and strained back
## 27238 EE lifted a rolling file cabinet to put a wedge under it & injured her lower back.
## 27239 EE lifted a sewing machine motor and turned to the right and wrenched back.
## 27240 EE lifted a storm grate; lost grip; pulled finger (cut skin); injured right hand, middle finger
## 27241 EE lifted a table and felt something pull in groin area.
## 27242 EE lifted a table and went to turn around to carry it to corner EE felt a catch in left hip and thigh. ()
## 27243 EE lifted a typewriter to place on table when he injured his back
## 27244 EE lifted a wire basket filled with 30 batches of processed work and felt a pain in left side after work was completed.
## 27245 EE lifted all day-noted back pain at the end of day/shift
## 27246 EE lifted and bent over to place the type gsa centrifuge rotor into the centrifuge. Strained back muscle
## 27247 EE lifted and carried in display and various equipement resulting in back strain
## 27248 EE lifted and loaded 4 cases of drinks on hand cart. Began to pull back on hand cart to lift & roll cart. Felt pop in neck or shoulder.
## 27249 EE lifted and pulled a metal grate that has been knocked off a frame injuring his lower back
## 27250 EE lifted and slid pt on floor and strained back
## 27251 EE lifted bag of biohazardous waste pipette broke through bag and punctured EE finger.
## 27252 EE lifted bag out of trash can
## 27253 EE lifted bags off the airport conveyor and felt something pull in back.
## 27254 EE lifted boiled eggs, felt something pain in lower left side of back
## 27255 EE lifted box and felt pull in low back
## 27256 EE lifted box ino trunk of car did not feel box was extremely heavy-reherniation of side and stomach.
## 27257 EE lifted box of conference supplies in and out of trunk onto rolling carts several times during a 3 day conference.
## 27258 EE lifted box of forms, carried it to her office and set it down and felt pain in neck
## 27259 EE lifted box of keyboards and weight shifted in box causing EE to fall and strike left ribcage on printer table
## 27260 EE lifted box, which slipped, attempted to catch box resulting in sprained thumb ()
## 27261 EE lifted boxes from floor in gatehouse building and placing on cart to take deliver to admin hallway. EE pushed cart to admin hallway & lifted boxes off cart & put on floor. ()
## 27262 EE lifted boxes of copy paper and strained back
## 27263 EE lifted boxes of trash liners using both arms tolift them and after putting them down felt burning feeling in both arms and arms began to blister
## 27264 EE lifted cartridge and felt sharp pain. When removed right hand she had a small cut on right middle finger.
## 27265 EE lifted case of oral contrast and injured back. ()
## 27266 EE lifted client from chair and felt pain in lt shoulder and back
## 27267 EE lifted client from floor and then carried client ino another room to put in bed felt numbness in legs and lower back.
## 27268 EE lifted client from high tub and placed in seat started to stand and felt pain in rt lower back
## 27269 EE lifted client from trolly to bed and felt a pull in lower back.
## 27270 EE lifted client onto bed - then lifted from bed into wheelchair noted pull in back.
## 27271 EE lifted client up in bed. Felt discomfort in mid and lower back after pulling client
## 27272 EE lifted clients and noted pain in mid-spine and between shoulders
## 27273 EE lifted clients hip & legs to put a wing on her & felt a pain go from right shoulder up neck
## 27274 EE lifted computer felt pain in back.
## 27275 EE lifted computer manual out of car and sit twisted reviewing data with trainee. Low back.
## 27276 EE lifted computer to place on dest to use and felt pain in lower back, legs and left arm.
## 27277 EE lifted cooler and felt a shock from lt. Arm to lt. Shoulder. Didn't report until he felt sharp pain in shoulder.
## 27278 EE lifted cover off light and got trash in left eye
## 27279 EE lifted door and felt pop in neck ()
## 27280 EE lifted end of bed to take it out of room and felt sharp pain in back
## 27281 EE lifted full briefcase that he thought was emptyto put on file cabinet; pulled muscle in right elbow
## 27282 EE lifted guard on print press to wash it out whenhe felt something in his lt shoulder ag: shawn troxler
## 27283 EE lifted hatch door during shift change. EE felt neck and back pop
## 27284 EE lifted heavy box 2nd schedule bundles
## 27285 EE lifted heavy box from handtruck being struck w/strong force in the face causing bledding to the bridge of nose
## 27286 EE lifted heavy briefcase and handle broke causing EE to stumble backwards and hit left elbow against car door
## 27287 EE lifted heavy camera case while it was unlatched, causing back injury ()
## 27288 EE lifted heavy mail bucket and pulled muscle in lower back.
## 27289 EE lifted heavy mail tubs and strained left shoulder and chest
## 27290 EE lifted heavy trash and strained his shoulder.
## 27291 EE lifted hood of autoclave & his right arm was burned
## 27292 EE lifted laundry bags, pt to edge of tub and caugha patient as he was falling. Didn't notice pain un-til he was at home. Upper l arm muscles hurt.
## 27293 EE lifted lid on ice machine and lid fell back into eyeborw area. Left eye.
## 27294 EE lifted mattress off floor and bent over and returned to normal position. Pulled muscle in leftside of back
## 27295 EE lifted metal pole and strained chest and arm
## 27296 EE lifted milk crate, I felt sharp pain in my lt mid-back. Lt lumbar region - pain.
## 27297 EE lifted mop bucket and strained low back.
## 27298 EE lifted mop bucket to empty water. She felt pullin muscle, did not hurt at time, but later left arm began to have sharp pain.
## 27299 EE lifted mower deck to put a jack under it pulled muscle in back.
## 27300 EE lifted net of trout from hook on stocking truckand handed net of fish to another EE and felt a slight twinge in back as he landed net down.
## 27301 EE lifted patient & felt pain in left arm. Muscle strain to left arm
## 27302 EE lifted patient and felt pain in back
## 27303 EE lifted porch's foot up and before it was completely back on the rest, a sharp pain hit EE in lower back.
## 27304 EE lifted portable welder to move it and strained left shoulder and back
## 27305 EE lifted pt from mattress on floor to chair and EE felt something pull in lower back.
## 27306 EE lifted pt rapidly out of chair to place on bed. For cpr. EE felt burning sensation in lower back.
## 27307 EE lifted pump from trailer, load shifted & caughtleft hand between pump & trailer smashing hand.
## 27308 EE lifted recycle bin & injured his back.
## 27309 EE lifted sheetrock and injured rt side & rt leg
## 27310 EE lifted snow chains and injured his back.
## 27311 EE lifted some oxygen tanks improperly and felt pain in lower back.
## 27312 EE lifted stock to shelf and felt pain immediatly in left shoulder blade
## 27313 EE lifted stool of cable up to shoulder to transport and strained his neck.
## 27314 EE lifted storm crate. ()
## 27315 EE lifted street barricade to get it out of the way and it came apart, cutting left calf
## 27316 EE lifted supplies from box and heard her left shoulder pop. EE has left shoulder sprain.
## 27317 EE lifted table and pulled a muscle in right low back
## 27318 EE lifted table imporperly and felt a pull in back muscles
## 27319 EE lifted tailgate, felt pull in lower back
## 27320 EE lifted tarp onto semi-trailer and strained back
## 27321 EE lifted the credenza and moved it out from the wall to reinsert the phone cable into the computerinjured back.
## 27322 EE lifted the lid to the dumpster to throw trash in and the lid came back down on his hand.
## 27323 EE lifted the phone box lid, getting ready to makean announcement about mail call and the mail box lid fell back down closing on lt thumb
## 27324 EE lifted the tongue of boat several times to place it back on its support resulting in back strain
## 27325 EE lifted the trunk of the state vehicle that she was driving to retreive essential work forms. The lid came down and struck EE on bridge of nose.
## 27326 EE lifted tongue of a galvanized boat trailer, strained back
## 27327 EE lifted tractor weights that were too heavy ()
## 27328 EE lifted trash and her hand started swelling.
## 27329 EE lifted trash can lid to throw trash away, when she attempted to replace lid, felt stinging sensation in r wrist
## 27330 EE lifted trash can to dump into dumpster. EE felt back strain the next morning ()
## 27331 EE lifted tray of glasses in diet serving line when she felt pull on her lower back.
## 27332 EE lifted trays while stacking and tying trays. Setting trays on food cart. Sharp pain across middle of back
## 27333 EE lifted two bags of patient clothes, strained lower back. EE states that prio to lifting the bagee had to place patient in restraint.
## 27334 EE lifted two very heavy boxes full of brochures and flyers and reinjured her back.
## 27335 EE lifted wheelchair out of vehicle and knee propped against bumper of vehicle. Knee popped to the side causing immediate pain
## 27336 EE lifted window flap, flap slipped out of hand jerking shoulder when EE tried to catch it
## 27337 EE lifting & carrying barricades from the side of the street to the middle of the street.
## 27338 EE lifting & straining while removing rusted hingefrom floating dock station. Strained right oblique
## 27339 EE lifting & transporting equipment on & off truckonto porch of log cabin moving lrg music speakers, pottery wheel and other items causing pain
## 27340 EE lifting 150 5gal containers of paint which cause pain to left shoulder.
## 27341 EE lifting 2 yr old child over railing & suffered severe back pain
## 27342 EE lifting 200+ and 500+ clients resulted in rt inguinal hernia
## 27343 EE lifting 200lb pig onto trk and strained lower back.
## 27344 EE lifting 20kg pig from cage to table and injuredlower back
## 27345 EE lifting 50lb bucket of de-icer from back of trkand lifted it wrong hurting back and chest.
## 27346 EE lifting 5gal bucket of cement when handled broke and bucket fell on rt foot.
## 27347 EE lifting a 225lb man out of his veh and injured his lower back
## 27348 EE lifting a 50lb dog with help into cage-dog slipped around. Diagnosis cervical small hnp at c5-6.
## 27349 EE lifting a 5gal bucket of punch to take to cooler and pulled back.
## 27350 EE lifting a bag of nuts strained lft side.
## 27351 EE lifting a box of envelopes and he just put it down, felt right shoulder dislocate
## 27352 EE lifting a box of file folders frm the floor strain middle back
## 27353 EE lifting a client and felt something pull in left shoulder.
## 27354 EE lifting a client from tub and felt a muscle pull in rt hip.
## 27355 EE lifting a client in wheelchair felt a pull in rt side of back
## 27356 EE lifting a client-client clasped down on EE's arm and caused shoulder to pull.
## 27357 EE lifting a computer up onto cart and felt sharp tearing pain from left to right side of back.
## 27358 EE lifting a container of coffee off of the trk tothe loading dock and strained lower back.
## 27359 EE lifting a five gallon bucket and hurt back
## 27360 EE lifting a ladder and lost control and tried to keep ladder from falling and injured left hand, neck and lower back.
## 27361 EE lifting a pail of flatware to place in convey and moved the wrong way and pulled a muscle in back.
## 27362 EE lifting a platform off pit and stacking against wall-bent down to pick up platform and hurt lower back
## 27363 EE lifting a rack of dishes to put them into sink & strained back
## 27364 EE lifting a resident with two other people. Resident head came down and hit staff lt eye.
## 27365 EE lifting a screen out of a water control structure. Pain under shoulder blades
## 27366 EE lifting a television onto a rack injured back.
## 27367 EE lifting aluminum trays filled with small grain seed above head unto a planter-pulled lower back
## 27368 EE lifting an outboard motor off rack & there was a wasp nest in the motor-EE suffered wasp sting to right hand
## 27369 EE lifting and moving boxes of forms strain back.
## 27370 EE lifting and pulling of heavy laundry carts. EE has severe pain in lower back to right leg.
## 27371 EE lifting and turning client felt pull in back
## 27372 EE lifting back pack blower from van felt a pull in lower back.
## 27373 EE lifting bed injury to back
## 27374 EE lifting bed mattress from clients bed-injury to left lower back and upper left leg
## 27375 EE lifting block to place on stack w/other blocks and hand crashed into stack of blocks.
## 27376 EE lifting boat trailer from one truck to another, hurting right lower groin area
## 27377 EE lifting box felt pain in middle of back.
## 27378 EE lifting box of lemons out of trunk and strained back
## 27379 EE lifting box of paper off lift-a door slammed startling EE causing her to jerk up with the box in hand-caused pulling/tearing in low stomach
## 27380 EE lifting box of papper and felt like a nerve pinched in lower back
## 27381 EE lifting box of printed materials strained back.
## 27382 EE lifting box of scrap yarn from dock to dumpsterbottom fell out of box, rupture bicep tendon
## 27383 EE lifting box to carry up stairs. EE sprained right wrist.
## 27384 EE lifting box w/another EE and felt sharp pain in rt chest.
## 27385 EE lifting boxes all day-went home tried to move arm could not move shoulder without pain.
## 27386 EE lifting boxes and left shoulder popped out of place
## 27387 EE lifting boxes in college of ars & sciences' storage room caused strain to lower back
## 27388 EE lifting boxes in preparation for move from one building to another injury inguinal hernia
## 27389 EE lifting boxes of canned goods and placing them on a shelf above her head.
## 27390 EE lifting boxes of computers to relocate-strain neck and back.
## 27391 EE lifting boxes of printed material pulled muscles in pelvis area. Suffered incarcerated inguina hernia.
## 27392 EE lifting boxes with ice and hurt rt hip.
## 27393 EE lifting bucket of mail from mail cart felt painin back. Pulled muscle in back
## 27394 EE lifting bucket of water to empty - pulle muscle
## 27395 EE lifting buckets of soap felt pain and numbness in left hand.
## 27396 EE lifting buffer machine on truck and strained left wrist
## 27397 EE lifting buffing machine onto truck and injured left wrist
## 27398 EE lifting cabinet from one table to another injury to back
## 27399 EE lifting cart lf animals felp snap in rt wrist
## 27400 EE lifting case of juice injured left side shldr and ribs.
## 27401 EE lifting cases of copy paper and placing them onto a cart and pulled muscle between shoulder blade.
## 27402 EE lifting cases of paper by a strap to load into veh felt something pull in rt shoulder.
## 27403 EE lifting cases of paper from a pallet to anotherarea in printshop felt pain in lowr rt side of back.
## 27404 EE lifting client - felt pain/bulging in vagina area
## 27405 EE lifting client and felt a pull in left wrist and hand
## 27406 EE lifting client back onto bed, EE pulled some- thing in back
## 27407 EE lifting client for bath and felt pain in lower back
## 27408 EE lifting client frm tub felt pull in back.
## 27409 EE lifting client from bathtub into chair felt pull in stomach - muscle sprain.
## 27410 EE lifting client from bed to chair injury pull in right wrist
## 27411 EE lifting client from bed to help on toilet chair. EE back started hurting.
## 27412 EE lifting client from chair to tub-pulled muscle in left bottocks
## 27413 EE lifting client from w/c into tub-felt pain in neck and back. Cervical/lumbar strain
## 27414 EE lifting client from wheelchair into bed. Repositioned client. Afterwards while walking down hall noted pain/soreness rt wrist
## 27415 EE lifting client from wheelchair to bathing slab bent over to lift cleint felt catch in lower back
## 27416 EE lifting client from wheelchair to tub-EE had top portin and other staff hesitated causing EE to pull rt forearm
## 27417 EE lifting client from wheelchair-client threw herself back EE noted pain in back.
## 27418 EE lifting client into bed - felt pain in rt foot. Sprain rt foot
## 27419 EE lifting client into tub and felt pain in lower back.
## 27420 EE lifting client into tub when he felt pain in back.
## 27421 EE lifting client onto van & felt sharp pain in ltshoulder & back
## 27422 EE lifting client out of wheelchair into recliner, pulled right shoulder
## 27423 EE lifting client to change-30min. Later noted pain in rt lower back radiating into leg
## 27424 EE lifting client to move from one wheelchair to another and pulled lower back.
## 27425 EE lifting client to place in chair felt pop in lower back.
## 27426 EE lifting client to stand felt something pull in rt shoulder.
## 27427 EE lifting client up and felt a pop in left side of neck.
## 27428 EE lifting client up in bed injury felt pull/pop in cervical/thoracic area
## 27429 EE lifting client up in bed to do a change and pulled muscle in rt arm
## 27430 EE lifting client's oxygen tank onto wheelchair and struggled with tank started felling pain in lower back.
## 27431 EE lifting client's wheelchair-chair moved causingee to strain back.
## 27432 EE lifting client-in process rt ring finger got caught on client's chair pressing ring into EE's finger.
## 27433 EE lifting client-pain in rt wrist
## 27434 EE lifting clients legs into wheelchair-EE's hand slipped and hit metal on wheelchair.
## 27435 EE lifting container to put on tailgate of truck and felt something pop in back
## 27436 EE lifting counter for removal out of a building and cut left index finger
## 27437 EE lifting crates of bulbs and straightened her legs back went out.
## 27438 EE lifting deli and fell on wet floor. **EE req rtn apt 7-9-03**
## 27439 EE lifting depot sign kiosk off of trailer, lost balance and sign slipped out of left hand, sign fell and caught inside portion of right, middle finger between the sign EE was lifting and the second sign still on the trailer causing a laceration ()
## 27440 EE lifting desk & slipped off hand truck
## 27441 EE lifting drainage crate to clean when it slippedand caught finger between grate and floor.
## 27442 EE lifting electrical equipment and injured upper back.
## 27443 EE lifting electrofishing unit out of truck and injured lower back
## 27444 EE lifting excessive weight on 06221994, change ofcondition of previous back injury, reopen for possfuture disability
## 27445 EE lifting field bag, hit elbow on vehicle, resulting in possible contusion to rt elbow
## 27446 EE lifting folding stairs while on ladder-foot slipped and wgt of ladder shifted causing strain of left lower back
## 27447 EE lifting freight injury lumbar strain lower back
## 27448 EE lifting full box of summer camp directories wuile unloading cart and strain lower back
## 27449 EE lifting gallon of paint and has pain in lower back.
## 27450 EE lifting heave trash bag and pulled muscle in low part of back.
## 27451 EE lifting heavy aquarim from high shelt twisted rt knee coming down.
## 27452 EE lifting heavy boxed of books with wrist gave out, began to ache & burn.
## 27453 EE lifting heavy boxes at national conference in washington dc injury right knee pain while walking
## 27454 EE lifting heavy boxes of stock and pulled muscle in lower back
## 27455 EE lifting heavy buckets of water and strained groin muscle
## 27456 EE lifting heavy equipment strained lower back.
## 27457 EE lifting heavy furniture up and down stairs and ruptured disc in lower back.
## 27458 EE lifting heavy materials pull something in left wrist
## 27459 EE lifting heavy mdf board and strain rt wrist.
## 27460 EE lifting heavy meat trays to put in van to be trasported to other building
## 27461 EE lifting heavy paper boxes and strained lower back.
## 27462 EE lifting heavy trash bag and injured her back.
## 27463 EE lifting heavy trash barrells into dumpster and strains upper rt arm.
## 27464 EE lifting her weapons on tower #4 felt strain her lower back area. Injured lower back.
## 27465 EE lifting isolution cubicle door to check on animals and felt pain in left shoulder.
## 27466 EE lifting large pan of ice to put into ice dispencer while standing on a step stool & pulled back muscle
## 27467 EE lifting laundray bag to drop into chute and felt sharp pain in back.
## 27468 EE lifting light fixture into ceiling and fixture slipped and cut left hand.
## 27469 EE lifting loveseat to clean-when sitting sofa back down it slipped nad landed on rt foot
## 27470 EE lifting luggage to place on bed-tripped and twisted wrist and fell with all body wgt on wrist.
## 27471 EE lifting material out of back of truck and pulled back.
## 27472 EE lifting matress from bed. EE strained herself and she started bleeding very heavy. Strain or hurt lower part of abdomen-female area
## 27473 EE lifting meal containers from rear of a pick-up truck & felt a pop in back, resulting in sharp pain lower right of back
## 27474 EE lifting metal bar, lt index finger got caught while pulling up
## 27475 EE lifting metal sign onto truck-weight of sign caused EE to fall on back and sign landed on stomach
## 27476 EE lifting mop bucket to empty water felt muscle pull in back
## 27477 EE lifting mop water and water splashed into face
## 27478 EE lifting old chair to be replace by new chair which caused back pain.
## 27479 EE lifting one end of the telephone pole while in block was placed under it so it could be sawed.
## 27480 EE lifting pans on trayline and sprained rt wrist.
## 27481 EE lifting patient and hct helping didn't lift her share of weight, causing weight to be lifted by EE left arm.
## 27482 EE lifting patient and hurt back
## 27483 EE lifting patient torso up felt popping sensation in lft palm, index finger & thumb. Lft thumb & wrist strain
## 27484 EE lifting pc box when felt sharp pains in left side-hand/fingers/arm/neck
## 27485 EE lifting plastic container heavy dropped it causing cut to middle finger on right hand
## 27486 EE lifting poles on patrol boat and strained back.
## 27487 EE lifting postage machine to unjam meter and strained rt back and shoulder
## 27488 EE lifting potatoes from 1 table to another. A sharp pain came in back & neck (right side) shoulder
## 27489 EE lifting printer from base to relocate it. Lifted printer, it slipped and he felt wrist pop.
## 27490 EE lifting rack of water bottles felt pull in leftknee.
## 27491 EE lifting recycling container and felt a sharp pain in lower back.
## 27492 EE lifting resident bed up (head) and jammed (l) thumb on head of bed ()
## 27493 EE lifting resident w/another staff strain shoulder (2-person lift)
## 27494 EE lifting resident, felt a sharp pain under rightknee cap
## 27495 EE lifting resident, using 2 person lift, residentsqueezed right wrist area.
## 27496 EE lifting roll of wire to put on a truck & pulleda muscle in back
## 27497 EE lifting roller barrell to separate recycling paper into proper totes and strained upper back.
## 27498 EE lifting seat from transfer van in order to re- move stretcher could be placed in van transport. Low back strain
## 27499 EE lifting section of wall into dump trk when a nail from the wall caught EE's glove catching handunder teh wall when letting go.
## 27500 EE lifting self service station ()
## 27501 EE lifting several heavy boxes onto cart and hurt back.
## 27502 EE lifting side rails on flat tub-left pinky finger caught in rail
## 27503 EE lifting signs onto mule - felt something pull. Woke up 8-24 am with pain in stomach/groin area.
## 27504 EE lifting spreader to move to put on gator when he tripped on debris on floor. At that point, EE felt stomach pull with a sharp pain. ()
## 27505 EE lifting steel plate with crane, crane chain slipped catchingee hand between the hook and plate
## 27506 EE lifting tailgate on equipment trailer and pulled back
## 27507 EE lifting tailgate onto dump truck and pulled muscle in lower back
## 27508 EE lifting trash and later felt pain in back.
## 27509 EE lifting trash bag from can to truck injury lower back
## 27510 EE lifting trash bag in dumpster, strain to back
## 27511 EE lifting trash barrell that was overloaded with books and strained rt amr.
## 27512 EE lifting trash from can to put into dumpster andpulled lower back.
## 27513 EE lifting trash out of barral to put in dumpster lower back, all the way across, legs hurting
## 27514 EE lifting trash out of container full of books and strained upper back.
## 27515 EE lifting trash to put in dumpster. Injured back.
## 27516 EE lifting up dumpster and hand on bar-when liftedup cut to left hand.
## 27517 EE lifting up on a wheelchair with heavy patient because chair would not turn in the process she strained back
## 27518 EE lifting up on center bar to open gate and braktthat holds fence to gate cut left mid finger
## 27519 EE lifting water bucket. Pull on lower back down left hip
## 27520 EE lifting water cooler from table to transfer to another segregation call. Attempted to set cooler on floor & felt muscle pull. Lower back
## 27521 EE lifting weights and got rt finger caught.
## 27522 EE lifting weights-sun got into eyes could not seewhere to place weights and lost balance pulled shoulder.
## 27523 EE lifting wet laundry out of barrel felt pull/pain in back when lifted up--strain lft hip
## 27524 EE lifting wetvac from van & strained lower back and left leg
## 27525 EE lifting while cleaning out a room and inj her back
## 27526 EE lifting window to place fan in it, and in doingso the window fell.
## 27527 EE lifting wooden boxes off truck and injured lower back
## 27528 EE lifting/carrying a porter case, portable scanner& printer along w/briefcase & laptop up stairs felt sharp pain in groin area.
## 27529 EE lifts heavy boxes, hangs clothes, sews on a daily basis. Moves heavy racks with clothing on them ()
## 27530 EE lifts heavy equipment & developed a hernia on lt side.
## 27531 EE lining students up after lunch, and older student ran up to EE & pushed her knocking EE into the floor, lt shin, ankle, leg, arm, back, neck
## 27532 EE loadaing stock and struck littler finger on left hand against a box.
## 27533 EE loaded and charged firearm, fire 1 shot, sharp pain and loud ringing in both ears
## 27534 EE loaded files into a cart and was attempting to get cart from a platform onto the floor. Pulled something in left arm & shoulder.
## 27535 EE loaded monitoring equipment into the state vehicle and opening front door to the office when she felt tightening
## 27536 EE loading 120# can of grease on vehicles on vehicle, foot slipped allowing can to sit down hard on foot
## 27537 EE loading a resident in wheelchair into van and tripped over belts in floor felt left knee and foot pop.
## 27538 EE loading and unloading boxes felt discomfort on 6/18, had physical and other tests, has difficulty walking and sitting
## 27539 EE loading bales of hay, other EE threw bale over truck stricking EE in the back of head and neck.
## 27540 EE loading boxes into state veh raising up bumping head on door frame injury bump on head and neck compression
## 27541 EE loading boxes ont flat cart-turned to pull cartand left knee popped.
## 27542 EE loading boxes onto trk-att to move hand trk to lift gate when secondary wheels collapsed mashed rt foot btwn hand cart and lift gate
## 27543 EE loading brush into truck-limb scratched EE in rt eye
## 27544 EE loading car for photo shoot and bumped head on corner of hatchback
## 27545 EE loading carts on elevator and right hand was caught between carrier & elevator.
## 27546 EE loading client into ambulance-stretcher would not fold up-when closing EE's leg was caught between stretcher
## 27547 EE loading clients onto van. Client got stuck between the rails on the van. EE got inside of van behind the chair and tried to push her. She went to the front of the wheelchair and tried to pull the front of the chair when she hurt her back. ()
## 27548 EE loading extractor into back of housing truck; when lifting extractor felt pull in back
## 27549 EE loading file cabinets on truck-reached to grab one from falling and felt burning sensation in back.
## 27550 EE loading files into car-foot slipped on wet curb and fell on rt knee.
## 27551 EE loading firewood into truck, whe a stob (branch) bounced off the truck and hit him in the mouth. ()
## 27552 EE loading food tray on truck. Fell of back off truck striking lt leg against dock. Lt leg, hip, thigh, contusion/abrasoin.
## 27553 EE loading hand truck w/supplies-wind blew truck door into products causing handle of hand trk to hit EE in lower pelvis area.
## 27554 EE loading heavy duty tables onto roller cart. Cartbegan to roll-EE tried to steady cart-table on other side fellhitting EE cutting and mashing hand
## 27555 EE loading items into van and slipped on ice in frt of bldg injured rt elbow.
## 27556 EE loading large pieces of cardboard & loading them into school van cut finger in middle. Cut right hand first finger.
## 27557 EE loading logs & debris on truck after throwing a log onto truck it rolled off hitting him in the mouth.
## 27558 EE loading logs and tripped on some branches falling on stick which cut rt hand and knee
## 27559 EE loading machine onto trk-machine slipped and eeatt to catch machine and caught left hand between machine and door of establishment.
## 27560 EE loading metal cage onto back of trk when left forearm rubbed against edge of cage.
## 27561 EE loading new xray equip, equip was heavier than assumed, strain to back and shoulder
## 27562 EE loading nitrogen tank onto trk w/another personwhen tank slid out of cart att to put back and smashed fingers
## 27563 EE loading object onto truck felt something pull in lower back
## 27564 EE loading pallet on truck with forklift, EE hand was caught between pole & forklift fram.
## 27565 EE loading radio equipment into state car preparing to travel to anderson mountain to repair transmitter. Experienced severe pain in back while loading
## 27566 EE loading steel poles in truck that had been cut, with tourch. One slipped and clm't burned his hand
## 27567 EE loading supplies, load locks were stacked on floor & while picking up load locks a stack rolledoff onto left foot
## 27568 EE loading truck and did not see how injury happen; caught rt arm in lift gate truck
## 27569 EE loading truck with equipment when a fox attacked EE on left leg above ankle
## 27570 EE loading truck with gloves on - came in contact with posion ivy while clipping debris.
## 27571 EE loading up the back drop onto truck and felt pain in lower back.
## 27572 EE loading van when a bust of wind came up and caused door to break loose smashing EE between vanand the door.
## 27573 EE loading water sample-glass container broke causing cut on rt thumb
## 27574 EE loading wood materials from loading dock and stepped wrong and fell twisting back.
## 27575 EE locked door he pulled door quickly to catch the hasp with the lock and oinched his lt index finger
## 27576 EE locked the gate and turned around to walk to van at which time her rt foot turned over on rt sid e
## 27577 EE locked the gate to dorm d and turned around was struck by an inmate in the face, fell down then the inmate kicked EE in the face.
## 27578 EE locking dangerour items in the synergestic useda knife to cut some ties on a lock, when the knifeslipped off a tie & stabbed EE index finger
## 27579 EE locking door from outside-pulled key out and lost footing putting body weight on rt knee
## 27580 EE locking door to laundry room. When EE grabbed the door knob to shut the door, left 3rd finger was in the door. ()
## 27581 EE locking gate located on back yard behind a-dormarea, latch caught and hit her right hand. Right hand swelled up
## 27582 EE locking office door when her bag fell, pulling her arm, which hit the hand rail. Contusion right elbow.
## 27583 EE locking the sliding glass door and closed left index finger in door.
## 27584 EE locking up building and twisted rt ankle on iceand snow.
## 27585 EE locking up clients room for lunch when client came running up and grabbed EE's arm and elbowed EE in the ribs and side.
## 27586 EE logging specimens-top not on tube properly- & it sprayed blood in EE's face
## 27587 EE looked down to get his radio and looked back up he was too close to vehicle in front of him & struck it from behind
## 27588 EE looked down to pick up her briefcase and ran a redlight and struck a truck
## 27589 EE looked into students room, the student was deadfrom an apparent suicide, causing EE to experiencetraumatic stress Dr. Peter schulz 919 654 6776
## 27590 EE looked up when someone spoke to her from a tower, her foot hit something on the sidewalk causing her to fall on rt knee & hands
## 27591 EE looking at a file-bent down to look in basket and stood up and hit head on corner of file drawer
## 27592 EE looking at a steam valve and moved the insulation back and something fell into my eye.
## 27593 EE looking at court docket book-book began to falland EE caught book injuring rt arm.
## 27594 EE looking at street signs for direction and collided w/another veh.
## 27595 EE looking for keys while walking and tripped and fell to ground injuring left hand $55. 00 wkly to atty clinchered $32, 500 5/4/06
## 27596 EE looking for metal fasteners to make file and leaned forwrd in chair looking in file cab which slid back caused EE to fall on top draw side
## 27597 EE looking for ping pong balls on shelf and got splinter in left middler finger
## 27598 EE looking in woods for southern pine beetle spotswhen tick bit him on lt arm. Flu-like symptoms occured on 8/6. Dr. Sent blood for test.
## 27599 EE looking out dorm window and backed up & bumped into table. He jumped over to get away from table he turned lt foot over.
## 27600 EE loosen an inmates's handcuffs that were too tight and the inmate was bleeding and EE came in contact with the inmates' blood.
## 27601 EE loosening bolt to adjust machine, bolt suddenly let go and hand struck gard. Skinned knucle, right index finger.
## 27602 EE loosening bolt to remove bleachers and rt indexfinger got caught in metal framework
## 27603 EE loosening chuck and foot hit petal on machine causing machine to twist left ring finger.
## 27604 EE loosening motor bolts ratchet slipped causing hand to strike bolt. Laceration knuckle of middle finger rt hand.
## 27605 EE loosing balance getting up from filing papers in bottom file drawer falling hit arm on chair twitneck and back head on floor, strain to back
## 27606 EE loss his balance and fell off of the porch injuring his head, back and neck
## 27607 EE lost balance & fell against & down a brick wallwhile participating in the distric team challenge abrasion to lt/middle back & rt elbow
## 27608 EE lost balance & twisted his left knee during training exercise.
## 27609 EE lost balance and fell after being pushed by a client. EE seen at er 3/8, rtw 3/16. Seen at ortho3/16 for continued pain and swelling to r ankle.
## 27610 EE lost balance and fell as she got up and began to walk falling into a cubicle wall hitting head.
## 27611 EE lost balance and fell back onto couch when demonstrating how to stand on one foot to child as part of the child's evaluation. ()
## 27612 EE lost balance and fell between frames of several drop ceiling while installing broadband coaxial cable for video connection
## 27613 EE lost balance and fell hitting head on the cement wall and was knocked unconscious, cool cloth was placed on head and lt at 5:00pm.
## 27614 EE lost balance and fell in door of warehouse
## 27615 EE lost balance and fell into chair in courtroom. Bruised chest wall, top of stomach swelling, tenderness and pain.
## 27616 EE lost balance and fell on stairs when he was enroute to another unit
## 27617 EE lost balance and fell. Right foot rolling underhim
## 27618 EE lost balance and slipped while cleaning out shower floor. EE hit head on wall, hurt back, and hurt upper leg. ()
## 27619 EE lost balance and twisted ankle
## 27620 EE lost balance and twisted left ankle
## 27621 EE lost balance going up stairs and fell onto bakc sliding down stairs on back
## 27622 EE lost balance in the parking lot. ()
## 27623 EE lost balance off stepping stool while pulling down forms. Injury to left side of back mid to lower back
## 27624 EE lost balance on flight of stairs and fell straining left thigh
## 27625 EE lost balance on ladder tried to steady self and hurt rt shoulder
## 27626 EE lost balance on slick floor and fell.
## 27627 EE lost balance on wax build floor on 5th floor. And then on 7/19/02 she fell again when her r knee gave away
## 27628 EE lost balance when a coke bottle rolled under feet causing EE to fall down three cement steps
## 27629 EE lost balance when left foot stepped on uneven pavement causing EE to fall on rt knee
## 27630 EE lost balance while checking water meter which was located beneath floor behind small door. EE fell forward striking elbow on the metal grate floor.
## 27631 EE lost balance while erecting scaffolding and grabbed with rt arm trying to break fall and strained rt shoulder
## 27632 EE lost balance while moving through a 3' tall bear doorway spraining left ankle
## 27633 EE lost balance while pulling stool closer injury to left knee
## 27634 EE lost balance while transferring heavy equipment(display board) --- fell backwards
## 27635 EE lost balance while trying to get up from a kneeling postion and couldn't do so.
## 27636 EE lost consciousness and feel to the sidewalk injuring head.
## 27637 EE lost control of crushman and fell off hitting tree
## 27638 EE lost control of his patrol car striking a ditchand utility pole... Injured his neck
## 27639 EE lost control of his patrol car while in pursuitof a motorcyle... Multiple injuries
## 27640 EE lost control of his vehicle while avoiding hitting a deer that was in the road
## 27641 EE lost control of patrol vehicle while attemptingto overtake a violator, skidded off left shoulder and struck a concrete retaining wall.
## 27642 EE lost control of pov on I-95 s. In dunn, nc hurricane fran clean up
## 27643 EE lost control of veh in curve left road struck a tree and overturned fx rt arm
## 27644 EE lost control of vehicle responding to another officer; ran left on roadway and struck some smalltrees.
## 27645 EE lost finger on thumb, index, middle and ring finger.
## 27646 EE lost footing and fell against car bumper while exiting car trunk of assigned duty.
## 27647 EE lost footing and fell down due to dip in pavement.
## 27648 EE lost footing and fell from step ladder
## 27649 EE lost footing and hit head on tile wall. Needed 2 stitches.
## 27650 EE lost footing and slipped off of running borad while att to exit the cab of fire engine
## 27651 EE lost footing and slipped while responding to a code yellow in b-block causing EE to bear all wgt on left foot-previously broken this year.
## 27652 EE lost footing on back of truck bed while bed wasinclined for fill. Cut to left knee
## 27653 EE lost footing on gravel and fell to ground striking arms, fractured right arm, left arm sprained
## 27654 EE lost footing on steps, fell down one flight of concrete steps. Pain in ribs--24 weeks pregnant.
## 27655 EE lost footing on the stairwell which caused him to twist the side of his foot. Right ankle sprain.
## 27656 EE lost footing on uneven sidewalk and fell on face, knees and rt shoulder.
## 27657 EE lost footing on worn carpet in frt of desk in the courtroom causing injury to both knees.
## 27658 EE lost footing while getting into state car she grabbed the steering wheel, she has a burning, pull-ing sensation in shoul, upper back and arm is numb.
## 27659 EE lost footing while stepping on to loading dock and strained ankle
## 27660 EE lost footing while walking down a group of steps and fell.
## 27661 EE lost footing while walking down stairs, was unable to grasp handrail & fell down remainding four (4). Contusions foot, knee cap & back of head
## 27662 EE lost footing, slipped and fell on concrete surface ()
## 27663 EE lost grip of a gas can and it hit his shin
## 27664 EE lost grip on counter top and it fell causing EE to cut rt ring finger
## 27665 EE lost grip on still tank while moving it, dropping it on his foot.
## 27666 EE lost her balance and fell against a table... Injured her lower back
## 27667 EE lost her balance and fell backwards; no pain ordiscomfort until 3 days later; left hip pain and lower leg pain with numbness
## 27668 EE lost her balance and fell off some steps injuring lt foot
## 27669 EE lost her balance and fell while trying to put atv a top of a locker..... Left shoulder and left arm
## 27670 EE lost her balance and fell; injured her left knee
## 27671 EE lost her balance and slipped twisting her rt ankle/heel form 18 also filed. ..
## 27672 EE lost her balance and twisted her rt ankle
## 27673 EE lost her balance at the top of the stairs and fell down, bruised thighs, sore calves, bruised lefthip, shoulder, forearm and hand
## 27674 EE lost her balance on uneven brick and pulled herhamstring/injured right knee (surgery last year onright knee)
## 27675 EE lost her balance when going down steps. EE was sweeping steps. Strain to left knee
## 27676 EE lost her balance when she stood up... Hit refrigerator; injured left knee
## 27677 EE lost her balance while going down the steps and injured her left side
## 27678 EE lost her balance; slipped and fell injuring chest, breast, groin
## 27679 EE lost her footage on stairs, fell hitting right knee on steps ()
## 27680 EE lost her footing on some loose gravel.... Felt a pop in her right shoulder
## 27681 EE lost her footing; injured her right knee/right shoulder
## 27682 EE lost his balance and fell back landing on his left wrist
## 27683 EE lost his balance and fell injuring his rt wrist
## 27684 EE lost his balance and fell off the loading dock at the warehouse.
## 27685 EE lost his balance and fell to floor while attemping to sit in chair
## 27686 EE lost his balance and fell twisting lt knee
## 27687 EE lost his balance and fell while going up some steps striking his lt hand finger on the rail
## 27688 EE lost his balance on the ladder at bldg 43 and fell against the door casing. ()
## 27689 EE lost his balance while cutting papymus.... Laternoticed pain in his back
## 27690 EE lost his footing due to the floor stripper on the floor which caused him to slip and hurting his lt knee
## 27691 EE lost his hold when the boat took off and fell backwards injuring his lower back
## 27692 EE lost his temper and struck a glass door causingglass to break cutting his rt hand
## 27693 EE lowered car, tank from under care an hydraulic lift, tank fell and splashed gas into eyes and face
## 27694 EE lowering a goat in a wench and the wench broke and hit EE in left hand
## 27695 EE lowering a lift gate when it fell on left hand middle finger.
## 27696 EE lowering a portable room divider when it fell on rt shoulder causing EE to strain muscle in backon left side
## 27697 EE lowering an overhead door. Door was decending too rapidly & EE attempted to press stop switch a chain hit his hand
## 27698 EE lowering client bedrail. Wooden bedrail fell ontop of left foot
## 27699 EE lowering of hydraulic wheelchair lift and injured rt shoulder.
## 27700 EE lowering patrol boat- stepped in the crack and force wrist in odd postion.
## 27701 EE lowering self down between stack of bored up tables in the storage trailer left shoulder poppedwent almost to the floor. Strained shoulder
## 27702 EE lowering steel door on the tower he was not positioned properly therefore pullin his back causing back pain.
## 27703 EE lowering track tention piston to concreate floor by hand pinston fell on EE's finger. Rt hand laceration and fracture
## 27704 EE lt arm was burned due to a welding rod
## 27705 EE lt finger was caught while performing padding exercise
## 27706 EE lt forearm hit bony area against cabinet & caused a long bruise area w/swelling on rt shoulde
## 27707 EE lt front wheel ran off pavement EE turned wheelsharpley to get vehicle back on roadway. Hit embankment. Injured head, neck, back, hip, arm collar bone
## 27708 EE lt hand finger was caught between a door and hand rail
## 27709 EE lt hand finger was closed in a metal door
## 27710 EE lt hand finger was cut on a razor blade
## 27711 EE lt hand hurts trying to hold two patients backfrom trying to fight another patient.
## 27712 EE lt hand was caught between a sliding door
## 27713 EE lt hand was caught between bathroom door
## 27714 EE lt hand was caught between the bed rail
## 27715 EE lt hand was caught in a warmer door
## 27716 EE lt hand was caught in the gate door
## 27717 EE lt hand was closed in a cell door
## 27718 EE lt hand was hit by softball traveling approxi-mately 60mph while viewing pticher pitch.
## 27719 EE lt hand went thru a windshield of a car
## 27720 EE lt kitchen headed towards e dorm and does not remember anything for several min. She apparently fell and passed out
## 27721 EE lt leg brush against a box top flap cutting into her skin
## 27722 EE lt middle finger was caught in gate
## 27723 EE lt middle finger was caught in the door
## 27724 EE lt ring finger was punctured with a lancet
## 27725 EE lt shoe slipped of and EE fell tripping over itee fell hitting her head and lt shoulder.
## 27726 EE lt thumb and forefinger pressed down an twisted fuse causing in order to remove fuse at that point EE felt a shock
## 27727 EE lt thumb was cut on a razor while conducting a search on inmates property
## 27728 EE lt thumb was cut on unknown object while searching inmate property
## 27729 EE lt thumb was cut while assisting with an inmate
## 27730 EE lt thumb was smashed between the gate of a fence
## 27731 EE lunged to stop a refrigerator from falling fromatop of a table that it was on. Injured her back
## 27732 EE machine was stopped up and running ober and we needed to make more tea, pulled basket out-hot teafell on lt hand & part of my arm.
## 27733 EE made a pick up of loose linen. Something in linen flew into EE's left eye.
## 27734 EE made a quick turn aroung while in the nurse staton and started to feel sharp pain in shoulder,
## 27735 EE made a traffic stop and was standing outside his vehicle when passing tractor-trailer blew gravel in right eye. Corneal scratch to right eye
## 27736 EE made a vehicle stop in a private driveway, as EE was exiting patrol care a dog bit him on the left upper thigh.
## 27737 EE made a vehicle stop on us 158 for possible impaired driver. The driver possessed a concealed handgun. The driver failed to comply with the EE commands and raised the handgun toward the EE. The EE discharged his duty weapon and fatally wounded drive
## 27738 EE made a vehicle stop. Subject jumped & ran. EE preceeded after subject. Subject made sudden stop & EE reacted & made sudden stop. Twisted knee.
## 27739 EE made an awkward step on porch twisting her right ankle
## 27740 EE made attempt ot repair leaking sight glass on boiler. He used one wrench when he used a second wrench to counter the direction of first wrench
## 27741 EE made contact w/fellow actor directly to rt side of jaw.
## 27742 EE made full facial and body contact with edge of unused shower stall door. ()
## 27743 EE made home visit to give form to client. Travel-ing in car back to office-hit by can turning left at light. Neck strain, bruised across abodomen.
## 27744 EE made house call, after leaving, walking to car EE fell from the sidewalk onto the road. Scraped left knee and sprained right foot.
## 27745 EE made left turn in parking lot with a car following behing him. EE stopped and started againdid not see car behind him and backed him
## 27746 EE made left turn onto ramp. Another vehicle was backing up ramp. EE swerved to avoid colliding with vehicle and hit guard rail
## 27747 EE made mis step while walking down hallway
## 27748 EE made sudden turn causing rt knee to pop
## 27749 EE mainly does computer work. Pain began in '03, &approx. 2 months ago pain returned. Med tx 8/13/07 maybe work related. Rt hand/arm/shoulder/wrist.
## 27750 EE maintaining security on recreation field he stepped on metal bench. Foot slipped causing him to hit lt knee on bench. Abrasion lt knee.
## 27751 EE makes construction site visits. EE might have been exposed to asbestos. Body systems.
## 27752 EE makes pizzas everyday - noted pain in fingers and hands
## 27753 EE making an incision with scalpel----scalpel slipped, cutting EE left index finger.
## 27754 EE making announcement to pts, afterward one of the pts hit EE on face ()
## 27755 EE making arrest on impaired subject, subject had open cuts on face scratches on arm saliva
## 27756 EE making bed and mattress to large for bed-att topull mattress up to place sheet-noted pop in rt shoulder
## 27757 EE making bed, while putting pad on bed, orgel came out of pad and got in EE's eye
## 27758 EE making canteen run for segregation. In doorway of segregation. Fell on ground onto rt knee, then rt. Shoulder ()
## 27759 EE making clients bed- leaned across to tuck in corners- felt strain/pain in back
## 27760 EE making coffee stepped back on table leg lost balance and fell, hit rt arm and passed out.
## 27761 EE making easter eggs with glue gun--glue dropped onto right index finger and burned
## 27762 EE making her rounds when she slipped on a wet floor that an inmate was cleaning.
## 27763 EE making home visit of juvenile, dog came from behind house and bit EE on upper lt leg.
## 27764 EE making inspection, during inspection placed rt arm on blade
## 27765 EE making mail deliveries on campus parked vehicleon top of hill & exited vehicle began to roll, re-enter injured lt leg-abrasion, contusion
## 27766 EE making pudding in mixing bowl & lifted bowl to carry refrigment - felt pain in my back when putt-ing the bowl of pudding - center of back
## 27767 EE making repairs on gas pack heating and cooling unit at pharmacy when ladder hit his ankle. Ladder slipped out of hand. Fracture lt ankle.
## 27768 EE making rounds and slipped down stairs and fell injuring left ankle
## 27769 EE making rounds and slipped on ice
## 27770 EE making rounds door locked trapped in room untildoor released. Left shoulder raised area, mid backpain/discomfort
## 27771 EE making rounds during daily duty. Went to step down step located at washroom of unit, he slipped and injured lt calf of his lt leg.
## 27772 EE making rounds he exited the gate and stepped ona rock and fell his lt ankle.
## 27773 EE making rounds in housing unit when bitten by some type of insect. ()
## 27774 EE making rounds in kitchen placed ice chest on sanitizer stepped on pedal. Steam & hot water spewdon upper face, body, thigh-bruise knozzle hit eye.
## 27775 EE making rounds in the shower area, floor wet, slipped and twisted right knee.
## 27776 EE making rounds on unit 7 inmate threw urine on EE head, neck, left shoulder and left arm
## 27777 EE making rounds on yard; opened gate & punctured left thumb on wire tie on gate. ()
## 27778 EE making rounds slipped on an unknown substance rt foot slid back sending body forward landed on rt knee
## 27779 EE making rounds with doctor & stepped on edge of sidewalk, twisted rt ankle, lost balance and fell.
## 27780 EE making rounds-as she was walking up stairs-she reached top and fell causing contusion right leg
## 27781 EE making routine round on unit two recreation yard he alleged that some type of flying insect landed on rt forearm stinging rt wrist forearm
## 27782 EE making routine single cell check when inmate threw a white sour liquid substance into EE face &about his body
## 27783 EE making security check of outside doors came around corner & slipped in mud. Fell to ground injuring rt elbow. Had surgery on knee 11/96
## 27784 EE making surplus delivery-rear-ended by another vehicle-lower back pain
## 27785 EE making up bed caught foot in electric cord fell forward injury left knee forearm both palms lower back and neck
## 27786 EE making yard call - began to exit inmate called her, turned to see who called her, cellblock door closed hitting her lt forearm. Bruised arm.
## 27787 EE making yard check on yard #1 when she stepped into muddy area. Slipped and tried catch himself arm. Injuring lt wrist.
## 27788 EE making yard checks when he slipped in a hole and fractured left ankle.
## 27789 EE manipulating infected tick guts with forcepts EE pricked his left hand middle finger with the edge of the forcepts (lyme disease)
## 27790 EE manually crank window to open & dispense meds. Shoulder became progressively more painful. Began first day of work in new unit. Repetitive motion
## 27791 EE manually restraining a pt who was hitting another staff member injury right elbow
## 27792 EE mashed a stapler and felt a sharp pain shoot uptip of middle finger; right elbow
## 27793 EE mashed finger wile pulling stretcher out of ambulance
## 27794 EE mashed hand between cart and fence
## 27795 EE mashed hand indoor trying to get med. Cart through the door; door slammed on it ()
## 27796 EE mashed her lt index finger against dish holder. She did not seek treatment.
## 27797 EE mashed her right hand between wall and handle of hand truck, when the wheel of the truck dropped in the floor drain.
## 27798 EE mashed his finger between the food cart and thedoor. Contusion right middle finger.
## 27799 EE mashed left hand between tray cart and wall
## 27800 EE mashed left index finger in door
## 27801 EE mashed left ring finger on rigging lift
## 27802 EE mashed left small finger in door hindge when shutting door. ()
## 27803 EE mashed middle finger, plow was raised and mashed finger between the prybar and plow
## 27804 EE mashed right hand in bed railing
## 27805 EE mashed right ring finger in dishwasher
## 27806 EE mashed rt index finger on metal file cabinet.
## 27807 EE mashed rt third finger in door
## 27808 EE measuring propane levels disturbed a yellow jacket nest & was stung by one
## 27809 EE medicated a psychotic patient who had unprovoked 2 other patients. Later the patient struck EE w/fists on l side of head over ear knocking EE down.
## 27810 EE meeting w/juvenille offender & parent in officejuvenille became upset, ran from office, through building. EE attempted to catch juv. Hurt ankle
## 27811 EE mention to supervisor she was having chest pains, continued to work, went to er diagnosed w/muscle strain
## 27812 EE met another officer on stairs to recd newspaperwhen she stepped down off steps and twisted her rt ankle
## 27813 EE met with client infected with TB who is on medication - has respiratory problems
## 27814 EE mis-steped & tumbled down steep incline. Compound fracture lt hand & wrist.
## 27815 EE mis-stepped curb in back of jones bldg upon arriving at work ()
## 27816 EE mis-stepped going from one cage to another down a step and left ankle turned.
## 27817 EE misjudge step while carry a tray--falling on lt knee
## 27818 EE misjudged step down from bldg falling forward & hitting head on asphalt.
## 27819 EE misjudged step while coming out of lee biology. While trying to prevent himself from fallen he twisted back ()
## 27820 EE missed a step & fell forward on her face while exiting building where she had just taught a class
## 27821 EE missed a step and fell down 3 steps-spraining both ankles, and multiple bruises
## 27822 EE missed a step and fell down stairs landing on bar guard.
## 27823 EE missed a step and fell injuring both knees
## 27824 EE missed a step and fell injuring her left leg and right thigh
## 27825 EE missed a step and fell injuring low back and rt shoulder
## 27826 EE missed a step and fell injuring rt arm and lt knee
## 27827 EE missed a step and fell on her left side
## 27828 EE missed a step and fell, twisting right ankle.
## 27829 EE missed a step and injured her right wrist, knees
## 27830 EE missed a step and sprained her ankle
## 27831 EE missed a step on stairwell landing and fell to sidewalk after losing balance ()
## 27832 EE missed a step on the 2nd floor stairwell of the echi at ecu, resulting in a fall of 1-2 steps. EE stated that she caught herself on the hand rails, but had abrasions to her shins & knees. EE also stated that she became light-headed after the fall. ()
## 27833 EE missed a step on the auditorium stage and fell head first from the top step to the bottom. Left foot, right knee, multiple cuts.
## 27834 EE missed a step resulting in a fall that twisted EE's right knee.
## 27835 EE missed a step twisting her rt ankle
## 27836 EE missed a step whil going down steps and strained rt ankle
## 27837 EE missed a step..... Injured right foot
## 27838 EE missed a step; injury unknown
## 27839 EE missed a stepped and felt a sharp pain in rt leg/hip
## 27840 EE missed bottom round of ladder while stepping down.
## 27841 EE missed bottom step and fell on left leg
## 27842 EE missed bottom step on step stool and fell on floor landing on her buttocks ()
## 27843 EE missed chair, fell on floor hand hurt his upperback and buttocks. Abrasion rt lower back.
## 27844 EE missed last step att to catch self from fallingputting wgt on rt leg injuring knee to keep from falling.
## 27845 EE missed last step of ladder and fell injuring back
## 27846 EE missed last step on stairs inside courthouse asleaving work on the 19th of March and fell on lt foot. Sprain lt foot and ankle.
## 27847 EE missed stairwell step and fell injury to left side hand twisted arm and back
## 27848 EE missed step and fell forward and hit head on wall
## 27849 EE missed step between a brightly & dimlt lit section of the airport, lost balance and hit cornrw/lt eye & landed on knees injured back from impct
## 27850 EE missed step climbing off hay bailer and fell injuring left leg, left side of back and left ribs.
## 27851 EE missed step coming down ladder.
## 27852 EE missed step walking down steps and fell 3 stepsto the ground - contusion rt ankle
## 27853 EE missed step while getting into a skid steer loader causing lower leg to strike frame injury ankle
## 27854 EE missed steps and fell twisting rt ankle
## 27855 EE missed the bottom step of staircase and twisted ankle ()
## 27856 EE missed the bottom step when getting off of a ladder... Right shoulder
## 27857 EE missed the curb and fell injuring her right hand, elbow and knee
## 27858 EE missed the cut while doing an autopsy and cut his hand
## 27859 EE missed the last step on a ladder & twisted his back & neck
## 27860 EE missed the step & fell off the curb while exiting the mechanical room
## 27861 EE missed the step and fell on the side of his right foot and twisted it
## 27862 EE missed the step coming down from the platform.
## 27863 EE missed the step onto the concrete floor pad of the golf cart shed and fell. Injured knee. Cm-pam reddeck keyrisk ext 1407
## 27864 EE missed the step when walking to the offices. ()
## 27865 EE missed weed and hit her foot with the hoe.
## 27866 EE misstepped and fell on left while approaching curb.
## 27867 EE misstepped on a stepping stone, lose her balance ()
## 27868 EE misstepped on ladder falling on his rgt elbow, hip, shoulder and head
## 27869 EE misstepped on the stairs, rt face was hit on the wall and eyelid cut by eyeglasses.
## 27870 EE misstepped while cleaning pool & fell into pool
## 27871 EE mistepped causing weight of piece to be taken up by one arm which pulled muscle in left mid-arm.
## 27872 EE mixed an acid & base together which created gasthat EE inhaled.
## 27873 EE mixed chemical together; mixture splashed on his left upper arm and shoulder
## 27874 EE mixing two chemicals together and inhaled fumes.
## 27875 EE monitoring client. EE getting down & client came up & stood in front EE & then began hitting EE pulling on EE. Strain lt arm.
## 27876 EE mopped bathroom floor and slipped on the wet floor.
## 27877 EE mopped continously on 6/15-6/16 and her back began to hurt at days end.
## 27878 EE mopping and bending down to clean under the bathroom bench and felt pain in lower back.
## 27879 EE mopping bedroom floor, foot slipped pain in rt knee & leg
## 27880 EE mopping control room floor when she slipped on wet floor injuring back
## 27881 EE mopping fitness center-mopping in back & forth motion when he felt pain in low back
## 27882 EE mopping fl had the door block with trash can and another EE open the door EE hit in back
## 27883 EE mopping floor and slipped on wet floor injury to left wrist and left lower back
## 27884 EE mopping floor backed into chair fell hit head on wall hurt back injury head and lower back
## 27885 EE mopping floor hit rt hand on edge of table.
## 27886 EE mopping floor-May have turned hand wrong way bone popped up-left hand
## 27887 EE mopping hallways floors and felt pain in to of her back and chest.
## 27888 EE mopping out shower when he took a few steps & slipped & fell on right knee
## 27889 EE mopping restroom and fell on back hitting head on floor
## 27890 EE mopping restroom floor, backing up while holding door open with her body, struck elbow on stall door. Contusion lt elbow.
## 27891 EE mopping under bed & pain in lower back
## 27892 EE mopping up spills on steps - was coming back down and slipped - tried to catch by holding rail but went down two steps on backside
## 27893 EE more often becoming sick since begining work innov. With sinus and respiratory illnesses. Body systems.
## 27894 EE mounting av equipment via ladder and fell and sprained ankle.
## 27895 EE moved 19 boxes of forms & envelopes from loadindock area to office put boxes on stock shelves strain rt low back & radiating upwards
## 27896 EE moved 30 pallets of water in 4 days and felt muscle spasms in low back and tingling in leg.
## 27897 EE moved a bed out, stepped over bed, heard & feltsomething pop in left knee
## 27898 EE moved a box weighing about 25-40lbs then placedpackets of paper onto shelf to store. Lower back injury
## 27899 EE moved a chair across and uneven floor every day from Oct 99 - June 2003-claims strain in back and hip
## 27900 EE moved a floor lamp and strained her back... "knee and shoulder problems not work related" ann payne- 252-354-9557*car-252-241-0166
## 27901 EE moved and performed her duties as usual. The most she did during the day was walk across the campus. Lumbar injury.
## 27902 EE moved bed away from wall to clean wall and did not feel any pain until the next day. EE out of work 3-25-08 - present.
## 27903 EE moved bending over patient and felt pain in back.
## 27904 EE moved boxes of books from athletics
## 27905 EE moved chair for patient, bent over tried to stand and could not, sharp pain in right back shoulder ()
## 27906 EE moved chairs occupied EE's who had been exposedto pepper spray. EE went to restroom upon leaving see had burning in genital area.
## 27907 EE moved computer from computer table to the top of her desk. After using the computer @ its new location, EE felt pain in her left & right wrists. ()
## 27908 EE moved copier to pulg into new plug in and strained back
## 27909 EE moved forward in the chair to open file cabinetand wheels on chair stuck in a crack in floor causing EE to fall hitting her bottom.
## 27910 EE moved from resident's bedside and bed alarm cord became tangled around left ankle and EE fell ()
## 27911 EE moved full garbage bag from trash and felt burning sensation in back.
## 27912 EE moved furniture to clean behind and felt pain in back.
## 27913 EE moved his chair to open his desk drawer and cuthis indexfinger tip on a loose staple on the underside of lt hand
## 27914 EE moved large number of ups packages, EE felt some upper back pain on 2-27-09 while installing an uyps, which worsened
## 27915 EE moved laundry care, shoe string caught on lift causing injury
## 27916 EE moved pushed and pulled and carried tables chairs sofas beds mirowaves from one floor to another floor
## 27917 EE moved refrigerator from storage area to second floor apt by himself and strained back and left knee
## 27918 EE moved the bakers box whick struck top of the hood that held pots two pots fell striking EE above her lt eye
## 27919 EE moved to the side in his swivel chair and felt pain in his right knee
## 27920 EE moved tv and injurd his back in the process.
## 27921 EE moved xrays from location to another. Lower back pain
## 27922 EE moving & installing computer equipment & cabelsback and neck muscles were strained. Strain to neck and back muscles
## 27923 EE moving 4 file cabinets from raleigh to mooresville, strained right bicep area ()
## 27924 EE moving a air conditioner too close to wall and had to struggle with unit to put down on dolly andstrained back.
## 27925 EE moving a box when another box on the wall fell & hit EE right foot on big toe
## 27926 EE moving a box with a computer monitor in it fromthe office to van and pulled muscle in back
## 27927 EE moving a cart of chairs & the cart fell over cutting middle finger on right hand
## 27928 EE moving a chair back underneath table and hit rt hand on corner of table.
## 27929 EE moving a computer and injured back
## 27930 EE moving a freezer up stairs when finger got stuck between wall/freezer causing laceration
## 27931 EE moving a pallett of fertilizer w/pallett jack when EE became trapped between door on building & jack causing severe bruising to left leg.
## 27932 EE moving a table against wall in bathroom table snapped back and rt little finger was caught between table edge and concrete wall
## 27933 EE moving a table in her office and apparently stepped wrong/suffered torn cartilage r knee
## 27934 EE moving a wooden cabinet when it fell catching his right hand under it, EE jerked hand away and severely tore skin & flesh of rt middle finger
## 27935 EE moving a wooden door/partition with 2 other employees lifted onto a dolly pushed onto truck todumpster---injury to back
## 27936 EE moving and car came face on-EE tried to move over and other veh side swiped EE veh.
## 27937 EE moving and carrying wooden bench to different location strained lower back.
## 27938 EE moving and lifting 50gal barrels for a store- room exhibit and pinched a nerve in lower back.
## 27939 EE moving around desk, shoe dragged on floor, EE tripped and fell to floor ()
## 27940 EE moving around machine to turn it off-rug had bad split in it & it caught her shoe causing her to fall to floor-injuring knees/rt arm/shoulder
## 27941 EE moving bags of concrete at picnic shelter whilemoving concrete one slipped and fell on right footpossible fracture to right foot
## 27942 EE moving bed frame and a small piece of metal punctured into her rt thumb.
## 27943 EE moving bin of books to loading dock @ library when bin fell causing EE to lose balance & cut her hand.
## 27944 EE moving bleachers frm one gym to another when bleacher hit foot.
## 27945 EE moving boar back to pen-boar swung his head around and cut leg with tusk.
## 27946 EE moving book case, book case slipped and cut EE on left hand near palm on a nail. Cut left hand near palm
## 27947 EE moving bookcase into room injured back
## 27948 EE moving books from one shelf to another - noted pain in upper back at end of shift
## 27949 EE moving box of magazines to elevator and pulled a muscle in back.
## 27950 EE moving box of trash bags (25 lbs) from top shelf loss balance on step stool started to fall tried to break fall with right hand
## 27951 EE moving box out of walkway-bent down to slide box under table-pulled right knee
## 27952 EE moving boxes and felt pain in right shoulder.
## 27953 EE moving boxes and strained back
## 27954 EE moving boxes from floor for stripping and hurt back.
## 27955 EE moving boxes from one section to another when elbow brushed against metal shelf cutting left elbow
## 27956 EE moving boxes in atc 120 and hurt wrist.
## 27957 EE moving boxes in storage room. Tripped & fell forward. Lt leg became wedged at lt knee & ankle while boxes fell twisted lt knee.
## 27958 EE moving boxes injury to lower back
## 27959 EE moving boxes into stock room-asst handing boxesto EE-box hit door jamming door into EE's rt hand
## 27960 EE moving boxes of maps from the floor to a palletwhen he felt a sharp pain in lower back, rt leg and foot.
## 27961 EE moving boxes on carts, felt pain down lower back sharp pain down back. Lower back pain.
## 27962 EE moving boxes to metal shelf against wall-shelf fell onto EE's right foot
## 27963 EE moving boxes to storage closet and getting box of handouts auditors needed straining lower back.
## 27964 EE moving buffer down the steps when it fell on his rt foot
## 27965 EE moving buffer frm bldg to van with another EE hand slipped causing all wgt to EE causing a strain to lower back.
## 27966 EE moving bunks - lt finger smashed between bunks causing slight laceration to lt finger.
## 27967 EE moving buoys of bed of dump truck, bolt of foambuoy dropped on 2nd toe on rt foot
## 27968 EE moving cabinets with hand truck and injured left wrist
## 27969 EE moving cart loaded with tables, tables shoved onto EE hands. Bruise on both hands
## 27970 EE moving cart with equipment to elevator and pulled muscle in left arm
## 27971 EE moving chair across floor slipped and fell on back. Back sprain.
## 27972 EE moving chair to move legs, chair hit outlet andee attempted to push outlet back in when sparks came from the outlet. Lt arm started to feel funny.
## 27973 EE moving cleaning agents on hand truck when one container fell off truck onto pavement causing it to burst & splash into his face & eyes
## 27974 EE moving clothing bin from one location to other in attempt to locate shoes for inmate, EE pushing cart caused strain to middle back
## 27975 EE moving computer equipment, hand/wrist caught between computer and door jam
## 27976 EE moving computer tower case and dropped it on eeleft foot
## 27977 EE moving computer/printer from table to table andlater experienced pain and numbness in left forearm.
## 27978 EE moving computers and printers-pushing and pulling more than arm could handle.
## 27979 EE moving copy paper boxes and stacking them underneath a desk strained lower back.
## 27980 EE moving crate and pulled muscle in back and stomach
## 27981 EE moving cylinder w/cylinder cart, cart upset striking EE on l knee w/ l hand strain
## 27982 EE moving desk from storage room & desk came apart& cut EE on hand
## 27983 EE moving desk through door when desk shifted thenee recoved balance, but felt pop in lower back.
## 27984 EE moving desk when desk leg came apart falling on right foot and toes
## 27985 EE moving drink machine which caused shoulder and neck pain w/muscle spasms
## 27986 EE moving electrical bed to a confined space for electrical outlet and pulled something in low back
## 27987 EE moving electrical equipment in room-dust build up on cabinets blown in air by vents and dust got into EE's rt eye.
## 27988 EE moving empty bottle of nitrogen down stairs left lower back pop
## 27989 EE moving equipment and print shape box fell off and it fell on EE foot. Contusion top right foot.
## 27990 EE moving equipment for radio engineer & got debris in right eye
## 27991 EE moving equipment into bldg bitten by insect.
## 27992 EE moving equipment on cart-tripped and fell on eewhen wheels locked in place injured nose, and arms
## 27993 EE moving equipment to p/u trk-wasp came out of trk and stung EE on rt wrist and left knee.
## 27994 EE moving equipment to put into trunk of car felt pain in back.
## 27995 EE moving exercise bike and caught finger under neath when lowering - rt hand
## 27996 EE moving file cabinet and cut finger on left hand
## 27997 EE moving file cabinet down the stairs, hand slipped, pulled a muscle in the calf of the right leg.
## 27998 EE moving file cabinet lft hand caught in drawer as it closed. Mild sprain
## 27999 EE moving file cabinet when it became unbalanced and fell off the hand trk falling on EE's left hiparea
## 28000 EE moving file cabinet-key in lock-sat filing cabinet down and key cut EE's right forearm
## 28001 EE moving files and work related items during work hours.
## 28002 EE moving files to be archived-lifted multiple file folders from upper drawer and strained right elbow
## 28003 EE moving files to boxes for storage. EE turned from file cabinet & set into boxes. Moved file from 1 box by stretching and place in other box.
## 28004 EE moving filing cabinet with hand cart felt slight pain in lower back
## 28005 EE moving food into reach and strained muscle in back.
## 28006 EE moving form patrol boat to ground, the right knee was twisted.
## 28007 EE moving from one vehicle to another, with the assistence of another EE; lost footing and fell onrib cage on bed of truck. Rib contusion
## 28008 EE moving from work bench to milling machine when he stepped on the edge of machine. This caused his left knee to twist causing pain.
## 28009 EE moving furnitre and left hand got caught behinddresser that was being pushed and somehow left middle finger popped out of joint
## 28010 EE moving furniture & pulled muscle in back.
## 28011 EE moving furniture - injured back and shoulder ()
## 28012 EE moving furniture and lifted desk in office causing pain in neck, upper back and hip
## 28013 EE moving furniture and strained rt arm.
## 28014 EE moving furniture and supplies when lower back was injured
## 28015 EE moving furniture during location move, strain to rt shoulder ()
## 28016 EE moving furniture in dorm, few weeks later, EE complained of pain in rt thumb, EE not sure if moving furniture caused injury or not. Tendinitis
## 28017 EE moving furniture when sofa of chair fell out hand hit EE in eye and broke lense of glasses. Contusion rt orbital region.
## 28018 EE moving furniture while conducting an inventory table slipped and fell across rt foot
## 28019 EE moving furniture with a hand truck and student desk fell off and hit rt foot/toe
## 28020 EE moving furniture, turning over couch and was struck in the face.
## 28021 EE moving furniture-sitting dresser down and the hand trk kicked back hitting EE on rt big toe.
## 28022 EE moving furniture. EE carrying bookcase thru entrance way it slipped out of hands and injured right foot. Laceration to right toe and fracture
## 28023 EE moving grate & pinched right hand b/w grate & ankle iron causing laceration to rt 2nd & 3rd fingers
## 28024 EE moving gravel then spreading into planter strained lower back
## 28025 EE moving heavy furniture, file cabinets from campus buildings - injury to lower back, both legsand feet
## 28026 EE moving heavy object into gym with 6 othr peopledown steps, EE was located in ctr of object when placing down, felt pain when standing in low back
## 28027 EE moving hvac unit to upper fl staircase load shifted & caught load on knee hurting rt knee
## 28028 EE moving inmate to secure area felt a pain in lower back.
## 28029 EE moving insulation fibers wiped eyes with hands before washing and scratched rt eye.
## 28030 EE moving items into dumpster-slipped & fell on side of dumpster injuring left wrist & right knee
## 28031 EE moving large block of wood from one place to another. Injured left digits.
## 28032 EE moving large bookcase down stairs from third floor to first floor, felt pain in lower back. Strain lower back.
## 28033 EE moving large piece of equipment, while lifting EE felt a movement & pain in lower left back
## 28034 EE moving lifeguard stand (with assistance). EE stood up and muscle in back pulled causing discomfort and pain ()
## 28035 EE moving lumber inside the building and felt painin lower back. Low back strain
## 28036 EE moving manakin case from one room to another and hit left leg on case
## 28037 EE moving mates out of equipment room, mat fell off of cart, tripped over mat on floor and twisted rt ankle
## 28038 EE moving metal sign and was hit in the head
## 28039 EE moving oxygen bottle-safety cap came off causing bottle to fall on EE's rt foot
## 28040 EE moving panel which blocked entrance to office and dropped it on foot
## 28041 EE moving paper roll machine and strained mid back
## 28042 EE moving particle board desk
## 28043 EE moving patient between rooms using pic restraint and injured rt leg on door jam as entering room with patient. Rt groin and thigh.
## 28044 EE moving patient. Scratch on left side of ear andneck
## 28045 EE moving platform when it gave away and fell on foot.
## 28046 EE moving plywood from rental trk to pick-up trk and lost grip on plywood trying to prvent damage to trk and injured left side groin.
## 28047 EE moving printer from table felt pain in back.
## 28048 EE moving pushing/pulling furniture to make room for new office desk-pulled muscle in rt arm.
## 28049 EE moving rack of cages out of way and caught rt hand between hood and rack.
## 28050 EE moving resident to a shower bed, resident twisted andtried to slide on EE right arm
## 28051 EE moving rock to outline walkway when biten on rt hand by an insect.
## 28052 EE moving rocks off of a trk-lift was let down while EE on trk-EE lost balance and slipped off trk-injuring left hand, rt side, elbow, leg, knee
## 28053 EE moving sailboat to docks-while realigning the vessel to dock a wave jerked boat yanking EE into metal guardrail striking chest/rib
## 28054 EE moving scenery slipped and fell sprained left ankle
## 28055 EE moving sheet metal in workshop and twisted lower back.
## 28056 EE moving small tree out of road, tree slipped out of EE hands, fell on right knee. Badly bruised.
## 28057 EE moving snake to temporary holding in order to clean tank and snake struck at EE's left forearm.
## 28058 EE moving soiled mat to clean-tripped over edge ofmat and fell on knees. Non-displaced fx to right knee
## 28059 EE moving something & felt pain in his lower back
## 28060 EE moving something from truck to dormitories, May or May not have injured his right elbow
## 28061 EE moving something when steel door slammed on hisright hand.
## 28062 EE moving stack of 3-chairs when top 2-shifted & caught her rt index finger between them causing fracture
## 28063 EE moving stacking & labeling boxed. Dust in air accompanied with hot temp. In building, EE has dstallergy, irritated itching & burning eyes
## 28064 EE moving stage risers onto portable storage shed EE slipped and fell, hurt left big toe
## 28065 EE moving steel felt pain in wrist upon completionof job.
## 28066 EE moving steel pipe mashed finger
## 28067 EE moving table & caught her pinky & ring fingers between table & door frame causing laceration and contusion
## 28068 EE moving table and injured middle finger on left hand
## 28069 EE moving table and mounting stand fell apart falling on EE right toe.
## 28070 EE moving table back against wall when leg of table fell on her foot causing broken bone on her ankle
## 28071 EE moving tables and foot got caught in table causing EE to trip and fall forward landing on left elbow.
## 28072 EE moving the insert warm & lid was shut on her right hand
## 28073 EE moving timber that were blocking a door due to a break in and ruptured two disc in lower back.
## 28074 EE moving to front forklift to help position beam. Forklift was carrying ducked around beam hit fork-lift - cut upper bridge of nose.
## 28075 EE moving to front of classroom when wheel of chair rolled into a hole in the electrical cover and the chair tipped over injuring rt side/shldr.
## 28076 EE moving tray cart-rt hand got caught between cart and refrigerator
## 28077 EE moving two desk in day room, felt burning in lower left abdomen. EE asked to leave work. EE referred to urgent care if pain consists.
## 28078 EE moving unit cart and hit door, which stopped cart, causing injury to EE's neck
## 28079 EE moving veh and he pulled the jack and when he did his feet slipped out from underneath him.
## 28080 EE moving wardrove off of trailer wardrobe slid- hit rt middle finger. Fx to rt middle finger.
## 28081 EE moving waste cart-part of daily routine-metal tongue on cart broke off has EE was pulling contusion to hand
## 28082 EE moving weights for carpet installation
## 28083 EE moving wood and hit left hand on board
## 28084 EE moving wood pulled lower back and right groin
## 28085 EE moving x-ray file cabinet to storage, corner cabinet hit inside lt ankle.
## 28086 EE movng desk in order to do a building scenario for officer survival when EE felt pop in lower bak
## 28087 EE mowing -went to pick rope off of ground-rope got sucked into mower-grasped 4th finger and twisted and crushed finger
## 28088 EE mowing grass and something started biting his body leaving bumps over his body jarvis harris 373 0981
## 28089 EE mowing grass on campus stung on rt upper eyelid by bee
## 28090 EE mowing grass wind shifted and blew grass particles in lft eye
## 28091 EE mowing lawn and the wind blew a foreing object into rt eye
## 28092 EE mowing on uneven ground and indicates that the jarring from the mower injured his back. ()
## 28093 EE mowing wet grass on enbankment & slipped down hill & turned his ankle
## 28094 EE mtrying to de-esculate patient, patient kicked EE above the left knee - anterior ()
## 28095 EE nailing sign to a tree with a hammer, was stung several time by bees. Got sick and was able to make it back to office
## 28096 EE need evaluation of symptoms for possible chemical exposure
## 28097 EE needed to retrieve boxes in storage closet. EE pulled on box that was wedged and strained right shoulder
## 28098 EE new jobs involves carrying med records down steps, the tension of her left foot over the time has caused it to swell and become painful.
## 28099 EE next to counter kept a heavy duty 3" notebook locking information to mail correspondence. Phone rang binder slipped & hit her foot-rt foot big toe
## 28100 EE normal duties has caused tendonitis in rt hand and shoulder.
## 28101 EE not sure if it was skin to skin contact or if it was a reaction to the gloves at work, both arms, hands near wrists
## 28102 EE not sure of exact date arm began hurting about 1 month ago-had continued to get worse believes it is from a repetitious movement
## 28103 EE not sure what happened - just fell down five stairs. Large hematoma forehead, lt knee; lt shoulder; lt upper chest sore.
## 28104 EE noted a pull/pain in rt shoulder/back area while lifting clients-additional lifting due to short staffing
## 28105 EE noted a raised area behind l knee - small amount of itching, but no insect
## 28106 EE noted a strong chemical odor in the infirmary area. Began to feel lightheaded and nauseated. Dev-eloped headache and shortness of breath, chest pain
## 28107 EE noted back pain after lifting a basket of wet cloths to transfer into dryer.
## 28108 EE noted back pain after lifting client
## 28109 EE noted increased stress due to required deposition, pending lawsuit(employment related) noted chest pains throughout day
## 28110 EE noted left index finger swollena nd red after repairing toilet
## 28111 EE noted overextended arm-rt placing dishes into dishmachine-repetitive motion
## 28112 EE noted pain and stiffness in left wrist.
## 28113 EE noted pain in lower back after lifting a client.
## 28114 EE noted pain in rt elbow after doing bath group on clients.
## 28115 EE noted pain in rt wrist when moving client a certain way
## 28116 EE noted pain in wrist when assisting during dental extraction.
## 28117 EE noted red and swollen eyes with discharge. EE has been in contact with client positive for MRSA
## 28118 EE noted she assisted in carrying client from hallway to bathroom-a short time later she lifted client from wheelchair to floor. Pain in back.
## 28119 EE noted some soreness on lt lower leg on smoke break with patients. Felt a sting on lt leg but did not see anything.
## 28120 EE noted unsure of how or when incident occurred-noted that on her way home on 7/28 noticed knee stiffened while drving, feels due to repetive motion
## 28121 EE notes was entering the maintenance warehouse; placed left foot onto step and he felt a pain in that foot. ()
## 28122 EE notice a resident kicking & hitting 2 staff that were trying to escort her to her room when EE went to find out what was going resident started to hit EE. EE held resident l arm and she bent over and bit EE in the elbow area. ()
## 28123 EE notice client seizuring; braced her legs at base of chair to ensure client did not go to the floor. While client was pushing and thrashing, EE hurt left hip and left leg.
## 28124 EE notice cut on rt finger.
## 28125 EE notice inmate bleed from the head coming towards her-EE tried to keep distance-inmate accidently splastered blood on EE's arms and hands.
## 28126 EE notice pain in legs-increased severity with prolonged standing.
## 28127 EE notice pain, tingling, swelling and numbness in left wrist
## 28128 EE notice rash on both hands to elbow after wearing gloves.
## 28129 EE notice rash on inside of forearms after puttingaway reams of paper and swelling of arms/fingers.
## 28130 EE notice rt arm began to itch-pulled up sleeve and noticed several spots.
## 28131 EE notice tingling in rt hand and wrist using computer-using mouse and keyboard worsens it
## 28132 EE noticed a bite mark on her left arm. The next day, index finger was swollen and tender
## 28133 EE noticed a bump on rt lower leg and it became tighter while at work.
## 28134 EE noticed a bump/knot on her right wrist with some pain associated with movement
## 28135 EE noticed a growth inside right ankle that seemed abnormal. Growth was not there prior to wearing work safety boots. Growth was irritated by boots. ()
## 28136 EE noticed a his lt elbow was swollen and tender
## 28137 EE noticed a numbness & tingling in hands. Possible over use on typewriter, computer, & calculator.
## 28138 EE noticed a rash behind her lt knee
## 28139 EE noticed a sharp pain in his lower back while hewas cranking a jack stand
## 28140 EE noticed a sharp pain in lower left calf of her left leg during doubletime which is a slow run or jog.
## 28141 EE noticed a spider on his upper right arm and a few minutes later his arm started itching and he noticed red bump where he had seen spider.
## 28142 EE noticed about 4 p. M. A rash developing on r wrist got worst as shift went on spread to l wrist.
## 28143 EE noticed ache in right shoulder after the end of a day of loading grass scraps. Nor specific action is known to be accountable. ()
## 28144 EE noticed an embedded tick on lt hip/wrist area noticed a red colored bull's eye around the spot where the tick was removed
## 28145 EE noticed an odor throughout the building, it smelled like paint thinner or other chemicals.
## 28146 EE noticed ants on the control desk, EE felt a sting on his inner thigh on left side/red/inflammation
## 28147 EE noticed attached tick on stomach while planting on game lands, pulled tick off, rash developed on 5/25/13. EE started feeling ill, went to urgent care on 5/27/13. ()
## 28148 EE noticed bite on right lower arm. Does not know when or where bitten. ()
## 28149 EE noticed brown liquid dripping-walked around & liquid splased in right eye
## 28150 EE noticed bump on back of neck; placed band aid over it. Did not get better - went to personal physician on 1/11/08; tested for MRSA - positive result
## 28151 EE noticed client at window, client suddenly dash towards door, EE called cook to close & lock door client began hitting EE with helmet
## 28152 EE noticed client slipping out of wheel chair attempted to catch and lift back into chair felt pain in rt knee
## 28153 EE noticed colored discharge and crusty appearanceto eyes. EE came in contact with client with MRSA
## 28154 EE noticed finger would lock up when using computer/keyboard on rt hand
## 28155 EE noticed gradual pain beginning with his left shoulder and neck while practicing self defense.
## 28156 EE noticed hand began burning after prolong typing and writing
## 28157 EE noticed hand going to sleep when in daily use. 05-08-02 significant amt of pain in lt hand, extending in elbow.
## 28158 EE noticed her neck was stiff after working with client.
## 28159 EE noticed injured squirrel and picked it up to determine what was wrong. Squirrel bit him on leftindex finger
## 28160 EE noticed it was painful to use rt thumb to pipetat work and other duties.
## 28161 EE noticed itch on right leg shin on 3/9/2007 by 3/14/2007 EE shin had a large swelling in the same area
## 28162 EE noticed left eye bothering him/beleives wed Sept. 26/not much thought but did not go away. Went to Dr & Removed metal sliver.
## 28163 EE noticed molded food in cow trout-went to turnedfeed trout over and pulled a muscle in chest/arm
## 28164 EE noticed neck stinging, and saw red splotches, possible insect bite ()
## 28165 EE noticed needle stick to rt thumb after giving meds to inmates
## 28166 EE noticed numbness and pain in hands, wrist and shoulders while typing
## 28167 EE noticed numbness and tingling of right thumb following 6 hour period of field sampling, boat operation and driving.
## 28168 EE noticed pain after placing client back into w/cand lifting clients.
## 28169 EE noticed pain in lower back after lifting a heavy trash bag
## 28170 EE noticed pain in right buttocks/hip area after working at computer. Diagnosed as sciatica. Referred to glenda.
## 28171 EE noticed pain in right hand which worsens when lifting. Trigger thumb, cts and burning and numbness
## 28172 EE noticed pain in right knee after making several trips up and down stairway to get to roof top mechanical room
## 28173 EE noticed pain in rt arm/shoulder from stamping documents 90% of day
## 28174 EE noticed pain in rt wrist after performing normal duties and pain in shoulder a month later
## 28175 EE noticed pain in rt wrist while working on computer
## 28176 EE noticed pain in wrist and arms since 07/1/03. Pain goes to fingers and arms.
## 28177 EE noticed pain while typing... Right pinky, thumb, right wrist
## 28178 EE noticed rash and redness on rt/left hands to wrist after using gloves.
## 28179 EE noticed rash on boths legs suspects chemical irritation
## 28180 EE noticed rash on face and red areas on arms
## 28181 EE noticed rash on hand and neck area.
## 28182 EE noticed rash on hands after wearing gloves-rashhas been present since September of 1997.
## 28183 EE noticed rash on r hand and forearm from using dishwashing soap.
## 28184 EE noticed rash on right hand
## 28185 EE noticed rash on rt arm after washing/cleaning clients mattress with chemical mixture.
## 28186 EE noticed red bumps on upper abdomen area by sat morning bumps had spread to back and to face by sunday. Rash on face neck abdomen
## 28187 EE noticed red itchy area on left forearm
## 28188 EE noticed red spot on left arm, looked like bug bite. Both hands started swelling and red spots appeared on right arm
## 28189 EE noticed red spot on right 5th digit, possible insect bite ()
## 28190 EE noticed red welps, on right arm after leaving sinkroom ()
## 28191 EE noticed ribs were sore and started feeling short of breath - trash in odd area and May have twisted to replace trash can
## 28192 EE noticed server pain in wrists and fingers and forearm from working on computer
## 28193 EE noticed small bite on arm.
## 28194 EE noticed something near her eye. Afterward became itchy & swollen. Left eye.
## 28195 EE noticed soreness & hurting in base of neck while working as trayline topper putting tray topson trays.
## 28196 EE noticed soreness in back 24hrs after helping toget a patient on scales for dailey weigh check.
## 28197 EE noticed soreness in wrist from cattle bumping or knocking her wrist with their feet while attaching milking units.
## 28198 EE noticed stiffness and swelling in left knee after coming down stairs from 2nd floor
## 28199 EE noticed swelling bulge went to private Dr. EE was told she had hernia. EE was sent to wc Dr. ****** Overpaid 1 day ttd(1/15/07)******
## 28200 EE noticed swelling in wrist and arm after assisting in lifting a patient
## 28201 EE noticed that her hand appeared to be bitten & it hurt, stung when touched. It turned into a red raised blister on hand. May be staph infection
## 28202 EE noticed that she was breaking out in red bumps both hands, elbows, lower back
## 28203 EE noticed the burning sensation in upper back between shoulder blades while changing a resident
## 28204 EE noticed tingling in rt arm, pain in elbow with keyboarding, now numbness down arm, and elbow when resting arm against hard surfaces or arm is bent
## 28205 EE noticed wet floor signs and slipped and floor.
## 28206 EE notified me (james kea) of liquid nitrogen burnbut muscle issue unknown to me. Back, muscle strain, burns on arms
## 28207 EE notified supervisor that the fire alarm startedhiim causing him to injure his big toe.
## 28208 EE notifying inmate he had a appointment, inmate threw two cups of unknown liquid substance into face, head and chest.
## 28209 EE observed 2 inmates giving haircuts, razorblade in comb, in process of EE confiscating the razor blade, EE nicked left index finger.
## 28210 EE observed Dr Cohn pull needle out of inmates back and aimed at EE upper left side of face, squirting solution in left eye.
## 28211 EE observed a fire within an occupied cell, due to serousness nature EE entered cell without breathinapparatus to remove inmate, smoke was inhaled.
## 28212 EE observed a parked car rolling on an incline. She attempted to open driver door to depress the emergency brake and was knocked to ground.
## 28213 EE observed a pungent smell on lower level of building-first thought it was pest extermination. No injuries.
## 28214 EE observed an inmate in the shower & ordered him to return to his cell. Later inmate keyed door, eeresponded & was hit in the third finger by door.
## 28215 EE observed cable across fence at post 2-he was trying to reach & throw it back over when his rt arm touched razor wire causing laceration
## 28216 EE observed officer struggling to arrest suspect. EE grabbed suspect & forced him to floor. Suspect & officer fell on EE lt hand - swelling to lt hand
## 28217 EE observed other EE spraying inmate with pepper spray EE went to assist other EE handcuff inmate and while wrestling with inmate wrenched rt forearm
## 28218 EE observed smoke and small fire coming from toaster. He pushed toaster back to cause item to fall to rear of toaster. Burn fingertips
## 28219 EE observed spider crawl out from under watch, EE then noticed small red bump under watch; assumes spider bite
## 28220 EE observed suspect with ac unit on his shoulder crossing the street. Officer stopped susped for ? And he bacame very nervous. Suspect attempted to flee, but officer took suspect to the ground and was able too handcuff suspect. Occured at chidley dorm. ()
## 28221 EE observed workers waxing hallway. He proceeded down hall with caution. He lost footing and fell trying to catch himself. Chin/mouth hit floor.
## 28222 EE observing a tree that was being winched from a campsite. The log moved suddenly striking EE in lower left leg, knocking her down & pinning leg.
## 28223 EE observing another EE working on computer wiringabove a suspended ceiling-placed wgt on edge of flooring and fell through ceiling.
## 28224 EE observing inmates working on rd squad cutting debris he stepped into hole approx 3'deep covered debris cut down-pulled muscles rt ankle & knee
## 28225 EE observing opponent softball game-at an adjacentfield a ball was hit & struck EE in back of head
## 28226 EE observing serving line when inmate threw a liquid toward line, striking in upper torso
## 28227 EE observing several inmate acting suspicious. Examining several packages, inamtes smoking marijuana. Chasing inmate hit elbow on desk.
## 28228 EE observing student drawing blood in phlebotomy class when student withdrew needle- blood squirtedin instructor's rt eye.
## 28229 EE observing student teacher conducting a volleyball class-when ball hit EE in the face swelling nose and warpping glasses.
## 28230 EE obtaining census for dinner line up residents outside of building. Bees were in the area and 1 flew up her dress and stung her on buttock
## 28231 EE occurred injury by the result of repetitive motion and arm motions of continuallyturning, flipping& carring.
## 28232 EE offered hand for patient to move from stretcheree felt pain in back while patient pulled on arm.
## 28233 EE offered medication to inmate. Inmate threw cup of urine on EE. Urine went in EE's right eye
## 28234 EE on 3rd floor attempting to use fax machine in corner, foot caught telephone box and EE fell on lt knee, abrasion and landed on back
## 28235 EE on a patrol of security, whn tripped on broken step, twisting ankle
## 28236 EE on break going towards lobby-looked away and turned back and walked into glass door.
## 28237 EE on break sitting in chair-chair fell backwards smashing EE's left thumb.
## 28238 EE on business trip, slipped and fell in shower at the hyatt regency - back, neck, shoulders
## 28239 EE on client outing and slipped on water and fell hitting left side of face on concrete.
## 28240 EE on company business-getting out of car and stepped into hole turning left ankle.
## 28241 EE on compliance inspection @ migrant housing location while possilbe potential suspiction of tboccurance. EE testing.
## 28242 EE on duty at tower #5 eastern correctional insti-tution, he was bitten on right hand by a spider.
## 28243 EE on duty when a fight broke out between three inmates. EE breaking up a fight when he was scratched on arms.
## 28244 EE on ecu adven. Outdoor course. EE was holding rope to help balance while crossing a cable he lost balance pulling the rope forcing pole into chest
## 28245 EE on elevator with agressive pt, pt began hitting EE - EE tried to block hit, pt slammed EE's arm in to wall of elevator
## 28246 EE on elevator-client entered elevator and metal bar on walker hit EE rt hip.
## 28247 EE on firing line with other employees, firing revolver metal from shell fired by other EE struckthumb of lt hand. Small puncture to lt thumb
## 28248 EE on firing range hand slide on 40cal handgun ()
## 28249 EE on firing range-firing handgun @ various times & distances-EE became overheated & experienced chest pain
## 28250 EE on firing range-when officer shot a rifle and the bullet defected and hit a piece of steel and stuck EE on rt forarm.
## 28251 EE on foot chase after suspect in the woods and tripped on a fallen tree injuring left ankle
## 28252 EE on foot chase after suspect who pushed EE backwards and EE fell over a small sharp stump.
## 28253 EE on foot chase of suspect when EE had to jump down off a brick wall injury to left knee
## 28254 EE on foot in pursuit of suspect in wooded area when tree limbs and briars hit EE in left eye and face.
## 28255 EE on foot patrol walking up an incline stepped into a wash out and twisted his left knee while trying to maintain his balance.
## 28256 EE on foot pursuit of a suspect in the woods, whenhe tripped and fell. Sprain right knee.
## 28257 EE on her knees attempting to do cpr chest, compressions, she felt a sharp pain go up her backand lt arm. Sharp pain lt arm and leg
## 28258 EE on her way to her car--stepped into a sink holecovered by grass. Left leg swollen.
## 28259 EE on her way to home visit, stop to call client toget directions, pulled out of driveway, didn't see van until too late and they collided.
## 28260 EE on her way to inspect playground and stepped ona single piece of mulch and twisted ankle and fell on sidewalk. Severe bruise lt ankle & calf.
## 28261 EE on his way back to the campus living office after a few errands for work when his view was temp obstructed as he was making a left turn--mva.
## 28262 EE on his way to take dirty mops to campus to be washed. Car pulled out in front of EE causing EE to hit car. Rt shoulder, hand, chest & back.
## 28263 EE on hwy 74, looked down at phone & back up to see a vehicle stopped in front of EE, unable to stop causing EE to strike car in rear / neck, back
## 28264 EE on ladder working on a fan motor pulley. Lost balance and fell to ground hitting back & neck.
## 28265 EE on lunch break, ants bit her left arm
## 28266 EE on maint. Conference for shower/tub training stepped into shower and slipped and fell and head hit the wall.
## 28267 EE on outing trip and lacerated tip of rt ring finger while washing blade on food processor.
## 28268 EE on outing w/clients-lifted client from mat intochair felt pop in left upper arm.
## 28269 EE on outing with client, EE was pushing clients wheelchair up ramp, when ees left knee cap shifted out of place.
## 28270 EE on outing with clients-clients became aggressive and EE had to redirect clients hits in process twisted lower back.
## 28271 EE on outside firing range for recertification when she became very weak & was sweating profuselydifficulty in breathing.
## 28272 EE on patrol operating vehicle with blue lights attempting to clear traffic to stop violator, when patrol vehicle struck on left side door by a
## 28273 EE on patrol through out building and inhaled fumes and became ill.
## 28274 EE on polaris on park trail; drove to other side toavoid briars; right front struck stump; breaking stirring and hitting face (laceration)
## 28275 EE on routine patrol on rp-1006 and a deer struck lt drivers door, went through window struck EE. Contusions & abarasions to face, neck strain, eye
## 28276 EE on routine patrol when another vehicle failed to yield at stop sign and drove into EE path causing collision
## 28277 EE on survey, resident that was part of survey died of meningitis. Hosp recommended treatment dueto exposure. Exposed to bacterial meningitis
## 28278 EE on the firing range, shotting the shotgun, the butt of the shotgun was in the arm/shoulder are and when pulled the trigger, the butt push shoulder
## 28279 EE on the way to her car and fell from the curb into parking area injuring left ankle
## 28280 EE on the way to pick up business mail at post office slipped on unlevel side walk & twisted ankle. Torn ligament lt ankle.
## 28281 EE on the way to shift lineup room, stepped over puddlle of water. Slipped and his rt knee hit floor.
## 28282 EE on third step of ladder and lost balance-ladderturned over on EE while trying to catch self all weight went to left wrist.
## 28283 EE on toilet, became dizzy, fell back on toilet seat but was uninjured per her report.
## 28284 EE on top of a 6ft scaffold steadying the vitrine with suction cups while it was lowered onto case. EE lost balance fell injured lt wrist & rt knee.
## 28285 EE on training assignment to learn more about the marine/fishery div. While on boat ride, was bouncedout of seat, came down hard onto low back.
## 28286 EE on truck holding replacement board, when it came loose & pulled EE out of truck to ground, EE landed flat-footed, jarring his back
## 28287 EE on venture trip-paddled 50min against wind feltpain in left forearm.
## 28288 EE on way back to office from court, when she struck another car in rear. Hit knee on dashboard.
## 28289 EE on way out of bldg. For appt, when he slipped &fell on the steps. Rt foot came down awkwardly onstep, & rt knee buckled violently.
## 28290 EE on way to astronomy observation-as EE went to look through telescope he tripped over a bench due to darknee in room injuring ribs.
## 28291 EE on way to building, fell on ice, hit leg & elbow
## 28292 EE on way to milk cooler, tripped over metal stripthat runs throug middle of floor on poarch & fell face down.
## 28293 EE on way to trade out personal vehicle for state when he was rear-ended-suffered whiplash
## 28294 EE open a file cabinet drawer when the file cabinet fell over striking her to the rt and lt hand
## 28295 EE open file cabinet drawer, leaned over file cabinet to get a file & injury occured. Lower backpain.
## 28296 EE open the trap door to inmates cell when she struck her left thumb against the trap door
## 28297 EE open wound was exposed to blood. Hiv testing
## 28298 EE opend desk drawer. The hinges failed and the drawer came out and fell on rt foot.
## 28299 EE opended door to let patient out, when I turned door loose it snapped back catching my middle finger.
## 28300 EE opened a bottle of clorox and some splashed into eyes.
## 28301 EE opened a cabinet door and objects started to fall and EE felt neck, shoulder, and back strain.
## 28302 EE opened a cabinet door, hit head on the corner of door.
## 28303 EE opened a door in the loft at meadow mount therewas a wasp in the other side. The wasp stung him.
## 28304 EE opened a window to clean it when the window slid down & smashed her finger on her rt hand causing a laceration.
## 28305 EE opened and table that was standing on end fell striking EE on rt foot - fractured rt foot
## 28306 EE opened auto clave to remove sterilized instru- ments and pulled the tray out with a rag, but steamburned hand.
## 28307 EE opened back door on trk when furniture fell outand hit EE on the rt leg.
## 28308 EE opened back driver side door to deliver box weighing approx 35lbs. When lifting box turned lt & felt pull in back. Lower lt back herniated disc.
## 28309 EE opened box for old files and moved top box w/o using correct safety procedure
## 28310 EE opened box with left hand, hand slipped-box cutter went into hand,
## 28311 EE opened cabinet door and accidently hit back of right hand on door causing cut
## 28312 EE opened cabinet door, stepped too close to avoid water in the floor, hit bottom corner of cabinet door with head ()
## 28313 EE opened cell to move inmate manning to another call when he spit twice hitting me in the facial area
## 28314 EE opened center desk drawer and it slid completely out and struck EE in the lt knee
## 28315 EE opened chain gate on feeder, gate jammed w/coalhand slipped off chain direct blow to rt elbow. Eewas wearing work gloves. Bruised tendons rt elbow
## 28316 EE opened closet door & had her lt hand on the door from bending down to get a brush & the door was closed on her hand. Injured left hand
## 28317 EE opened desk drawer to get out a pen and in process of of closing drawer slammed drawer on left middle finger.
## 28318 EE opened door and bottom of door caught toe, dislodging toenail.
## 28319 EE opened door and inmates rushed out of the dorm causing door to push against her rt arm
## 28320 EE opened door and something blew into EE's eye.
## 28321 EE opened door and stepped in. There was a slick slippery substance on floor. She fell to floor landing on her left lower hip and leg
## 28322 EE opened door and tried to stop the when it closed. Door closed on left middle and ring finger
## 28323 EE opened door and tripped over gas cylinder injuring eye, knee and foot
## 28324 EE opened door and went to step out and missed step and fell
## 28325 EE opened door of auto clave and steam escaped. Burn to right wrist
## 28326 EE opened door on steamer, thinking it was off, steam then burned EE's left arm/hand
## 28327 EE opened door to EE bathrm, dust fm ceiling fell into eyes ()
## 28328 EE opened door to admin building which closed very fast causing EE to hit left shoulder on door frame
## 28329 EE opened door to allow student to use the bathroom and the student kicked the door-the door struck EE in the forehead causing laceration
## 28330 EE opened door to cabinet as she was kneeling to put something into cabinet & hit her knee against corner of door. Bruising, swelling to knee.
## 28331 EE opened door to cooler and received electrical shock - EE is 3 months pregnant
## 28332 EE opened door to er generator control cabinet, rust blew in eye
## 28333 EE opened door to go down stairs, two other EE werewith EE and when EE started thru doorway hit left wrist on catch causing contusion
## 28334 EE opened door to office and it didn't open all way, rt elbow struck corner of door. Injured rt elbow, and arm
## 28335 EE opened door to office did't open all the way. Rt elbow struck corner of door. Rt elbow rt arm
## 28336 EE opened door to pig pen and pig started to come out. EE twisted back trying to get pig back into cage.
## 28337 EE opened door to steamer reached to pull out foodwith right arm, when steam came in contact with arm. Burn to right forearm
## 28338 EE opened door to van and a phone switch fell out and hit EE on left lower leg.
## 28339 EE opened door, door hit door stop & flew back andcaught EE elbow between doors. Bent EE elbow backwards.
## 28340 EE opened door, put left foot on foot step stood; left foot slipped; EE fell out of door on my left knee and hip and left hand. ()
## 28341 EE opened dorm door and bent thumb back.
## 28342 EE opened drawer of credenza to get utensil. Credenza toppled over dumping hot food and sterno burners which resulted in several small fires. EE was exposed to hot food on bare feet, ankles and shins. Smoke inhaled resulting in sore throat irritation. ()
## 28343 EE opened drawer on desk and pulled it all the way out and it threw her out of the chair onto her butt and back. Drawer came all the way out and hit the floor. ()
## 28344 EE opened drawer to load paper and drawer fell on left foot causing injury to left big toe
## 28345 EE opened drivers door grasped door frame with rt hand had to lunge towards car to avoid being struck by passing motorist. Closed door on rt finger.
## 28346 EE opened dumpster and a yellow jacket stung her neck ()
## 28347 EE opened electrical gutter to obtain amperage readings. Electrical connection was not taped in one small area, shorted against cover when closed.
## 28348 EE opened envelope that came from another office on campus-odor caused shortness of breath, headache, and sore throat and ears.
## 28349 EE opened file cabinet and cabinet fell over landing on EE's left hand
## 28350 EE opened file cabinet and rt arm popped.
## 28351 EE opened file cabinet had to lean forward causingee to brace it to keep it from falling. Injured back.
## 28352 EE opened filing cabinet and cabinet started to fall over and EE tried to catch it holding jagged edge.
## 28353 EE opened flotation mattress box to get directionsout. Crystal over directions box. Hands touched chemicals felt burning top of rt hand.
## 28354 EE opened front door of campus bldg & door hit edge of foot & cut it
## 28355 EE opened front door to white residence hall. Door hit EE's foot and cut her toe. ()
## 28356 EE opened garage door and went out, while pulling door down, left hand got caught between first and second section of door. Bruised left fingers
## 28357 EE opened gate at milking parlor, gate dropped onto EE foot, due to broken hinge on gate. ()
## 28358 EE opened gate, inmate called EE name, EE stepped onice and feet slipped, fell on lower/middle back. Eesback of head hit pavement when he fell.
## 28359 EE opened gym door to release inmates from gym. Eepushed door behind the door stop. She had rt. Handin door, door came back & closed on rt. Mid finger
## 28360 EE opened heavy handicapped door onto right foot bruise to right foot
## 28361 EE opened his residence and the dog came running out of th ehouse and bit his left leg.
## 28362 EE opened linen barrel and top fell and hit EE on the left thumb
## 28363 EE opened loading dock door. He did not open it fully and bumped head on door. Cut and bruise on head
## 28364 EE opened mail package and was cut by staple.
## 28365 EE opened metal cabinet thinking the fume hood wasworking, it was not. He had chemical exposure to his eyes.
## 28366 EE opened oven door by handle, then realized door was not fully open and placed bare hand to inside of hot edge to push door open
## 28367 EE opened overhead cabinet to get paper and row ofcabinets collapsed and fell on EE
## 28368 EE opened printer door and hit top of left foot with door -
## 28369 EE opened rear door of moving van, 2 tables slid out of back door and struck ankle. ()
## 28370 EE opened rear door of patrol care, and a small piece fo debris went into his eye. Cornia to rt eye scratched due to debris.
## 28371 EE opened second file cabinet door and file cabinet tilted forward bruising rt leg and knee
## 28372 EE opened side door to van and phone switch fell out and struck EE on rt lower leg.
## 28373 EE opened steamer and hot water poured out and landed onto her rt foot
## 28374 EE opened the dally port gate, she caught a glimpsof a figure in the woods to the right of where shewas standing. He attempted to approach the man. ..
## 28375 EE opened the door and jammed finger.
## 28376 EE opened the door and mat rolled over and EE fellon floor injuring rt hip
## 28377 EE opened the door to come around the corner, slipped in standing water and fell on bottom.
## 28378 EE opened the door to the loading dock and heard acracking noise in her left shoulder
## 28379 EE opened the door to vat to strip furniture and the door fell on right hand injurying right thumb.
## 28380 EE opened the doors to check the phones, and as she turned to walk away her right index and middlefingers got caught on the bars and bent them back.
## 28381 EE opened the fire extinguisher door to check it when the glass shattered and a piece cut his leg
## 28382 EE opened the gatehouse door and dropped EE's keyswhen bent down picked up keys weight shifted forward the door was going to close tryed to catch door
## 28383 EE opened the hallway door and reached doen to get the door stopper when the door closed on his pointer finger
## 28384 EE opened the hood of the truck up and over he pulled a muscle in his neck.
## 28385 EE opened the main security door to set someone inand when he pulled the door with left hand to close it his left middle finger caught in door.
## 28386 EE opened the newspaper and a powder substance hit him in the face
## 28387 EE opened the trap door on tower #2 he recevied a radio call and reached for the radio lost his balance and fell
## 28388 EE opened tower door and bent down to get lunch and paperwork and hit head on door
## 28389 EE opened underground valve to section 5 and a wasp flew out and stung his left hand
## 28390 EE opened up flap gate and was blocking it open when he slipped onpipe and his foot slipped into open gate as it shut.
## 28391 EE opened up lower file drawer and pulled out a file she felt something pull in lower back
## 28392 EE opened up office and smelled and odor and became nauseated.
## 28393 EE opened up the carrier and pop out and hit her tooth.
## 28394 EE opened valult door to get work out and caught rt pinky finger between door and counter.
## 28395 EE opened water pump to clean and the water was heated and pressurized. Hot water spewed out scalding employee on arems, hands and face
## 28396 EE opened window to check for concelled weapons and the window fell on his rt hand.
## 28397 EE opening 5 gal paint buckets with utility knife slice plastic lids to remove them knife slipped and cut left pinky
## 28398 EE opening a box and opener cut rt hand thumb.
## 28399 EE opening bottle with razor blade-blade slipped off the bottle and cut thumb on left hand.
## 28400 EE opening box of miracle grow & knife slipped & cut lt wrist.
## 28401 EE opening box with box knife. Box knife slipped cut leftarm. 1/2" cut requiring 3 stitches left arm
## 28402 EE opening box with scissors, cut upper middle lt finger ()
## 28403 EE opening boxes w/razor blade and cut left hand.
## 28404 EE opening can of beans her left hand slipped resulting in laceration/cut lt pinky finger.
## 28405 EE opening can of ensure, experience thumb pain, reported to EE hlth 2 weeks with rt thumb pain. Rt thumb djd.
## 28406 EE opening can of sterno with knife, knife slippedcut little finger on lt hand on lower portion. Cut little finger lt hand.
## 28407 EE opening can with pull top. Hand slipped causingcut to rt index finger distal phalanx.
## 28408 EE opening dell tower case & metal clip on back caught her wrist and wrenched back
## 28409 EE opening door and cut right index finger
## 28410 EE opening door and struck last toe on rt foot.
## 28411 EE opening door for co-worker-hit coffee pot & it fell causing hot water to hit left arm
## 28412 EE opening door to dishwasher on input side & someone started to open output door at same time, lt thumb caught by handle & bent wrong way.
## 28413 EE opening door to kitchen she had her hand behindthe lever & inmate pushed food cart out door & smashed her hand.
## 28414 EE opening door when it flew open and mashed hand against brick wall.
## 28415 EE opening door, the door closed, catching left hand in door
## 28416 EE opening entrance/exit door on way out of medical, turned knob, metal is flaking on door knob, metal cut right index finger
## 28417 EE opening gate to gain access but gate arms came together and caught EE's hand.
## 28418 EE opening gate, not properly aligned, causing EE to scrape middle lt hand on fence gate. Lt hand scraped.
## 28419 EE opening glass bottle when top broke and cut EE on rt thumb.
## 28420 EE opening mail & razor blade enclosed cut lt thumb
## 28421 EE opening mail, dropped letter opener, got off stool to retrieve & raised up, hitting back/top ofhead on counter. Head contusion
## 28422 EE opening new bottle of peroxide pulled plastic seal off open new bottle and peroxide splashed in lt eye.
## 28423 EE opening office door and hit left knee
## 28424 EE opening office door, went to step into the office while pushing door open, l foot twisted and went to step off the tile onto the carpet and fell
## 28425 EE opening restroom door she had to sneeze. When she hit her head on corner of door. Mild concussion lt eye.
## 28426 EE opening sticky desk drawer and strained left shoulder
## 28427 EE opening the bottom part of a split door and rt finger got caught between the two door sections
## 28428 EE opening the gate the fence securing post had slipped from his grasp and locking lasp smashed officers finger. 5th digit lt hand.
## 28429 EE operating a gator veh-hit a bump and lost control of veh-throwing EE from veh.
## 28430 EE operating a tractor with alamo mower attachmentwhile sitting in operators seat pulled left neck shoulder
## 28431 EE operating bandsaw, blade got stuck while cuttingsteel. Att. To move lever, saw became free & slipped. Saw turned on and cut finger.
## 28432 EE operating can opener noted pain in rt elbow the following day.
## 28433 EE operating cash register caused back and neck pain resulting in pulled ligament in neck.
## 28434 EE operating dodge ram pickup, stopped her vehicleto talk w/another EE, as she got out, the door closed on her r hand/middle and ring finger
## 28435 EE operating dozer, clearing land for tree plantingproject. EE was stung by bees on back, head, neck &arms. (stung at least 50 times)
## 28436 EE operating farm tractor mowing heavy weeds, lefteye irrirated
## 28437 EE operating gate control, pulled rope attached leaver trap door to lift for officer quick to comeup. Injured bottom or lower part of back & lt leg
## 28438 EE operating his vehicle w/blue lights & siren activated, on hanover st while involved in chase. EE pursued suspect on foot, slipped & struck head
## 28439 EE operating milling machine when a piece of steelhit him in rt eye under safety glasses.
## 28440 EE operating motor vehicle on hwy 52 & was involved in automobile accident and was killed
## 28441 EE operating patrol car and stopped in the road on rp 1700 waiting to make a left turn and was rear ended by another vehicle. Neck pain.
## 28442 EE operating patrol vehicle when collided into another vehicle attempting to overtake while responding to a vehicle chase
## 28443 EE operating state car when another vehicle rear ended his truck-injury to neck/back/lt knee/ shoulder
## 28444 EE operating state owned veh returing home when other veh hit EE on driver side resulting in neck and back pain.
## 28445 EE operating stripping machine when the stripping pad became dislodge causing EE to loose control ofthe machine injuring rt foot
## 28446 EE operating table saw in shop-saw blade slung a piece of wood int EE's left hand.
## 28447 EE operating tractor doing chopping job and hit stump w/bees nest they swarmed stinging EE all ovrbody 34 times
## 28448 EE operating tractor when pressing clutch pedal hard to depress, then aggravated again on 2/15/10.
## 28449 EE operating van delivering mail while stopped at stop light vehicle collided with state van. Injured neck.
## 28450 EE operating vehicle when left front tire blew outcausing vehicle to travel off left side of rd and collide with ditch, strain to neck
## 28451 EE operating vehicle. Car hit in rear by another vehicle pushing patrol car into vehicle in front of him. Soreness in neck and upper back.
## 28452 EE operating weedtrimmer on property the noise aroused a nest of bees EE stung on left hand bee sting on left hand
## 28453 EE ordered an inmate to go to his room----inmate jumped up and hit EE. Laceration left eye.
## 28454 EE ordered an inmate to leave a corridor and inmate became beligerant and got in EE's face; EE ordered inamte to back up and sprayed inmate
## 28455 EE ordered inmate to him romm, inmate refused, EE pulled out dc spray. Top was loose, causing the contentes to empty down his right side.
## 28456 EE ordered two inmates who were horseplaying to stop and when they didn't he physically removed the inmate on top by pulling him off the other
## 28457 EE orginial injury date was on 2/10/2006. EE statesthat he is still experiencing pain in back/neck from the 2/10/06 injury.
## 28458 EE out on a control burn and stepped on uneven ground and both feet slipped from under him causing EE to fall on rock injuring back and rt hip
## 28459 EE out on field trip when he tripped and fell cutting little finger on left hand.
## 28460 EE out with client on outing. Client started to run away; EE went to reach for her and twisted herleft knee.
## 28461 EE outside at gazebo moved bench & wasp stung her arm
## 28462 EE outside building and floor was wet because of rain. EE slipped and fell on wet floor. Pulled muscles rt forearm and lower back.
## 28463 EE outside in heat & humidity from 6:30 am to 10:30 am working on grad ceremony felt faint did not drink adequate water
## 28464 EE outside of gatehouse, he struck a match, match head blew into rt eye causing injury. Injured rt eye.
## 28465 EE outside of inmate receiving door when EE was attacked by wasps and stung several times on neck hand ear arm and face
## 28466 EE outside of veh when the veh began rolling forward up a small embankment overturning on EE att to regain control of veh.
## 28467 EE outside office building, stepped to the side tolet another person pass, when her foot slipped offsidewalk & sprained right ankle
## 28468 EE outside operations building hit her knee on cement bench. Injured lt knee
## 28469 EE outside yellow jacket stung him on right forearm.
## 28470 EE over stressed left knee while in prone positionfor training.
## 28471 EE overcome by natural gas fumes, nauseated, lungsand stomach
## 28472 EE overextended injuring his lower back during asp training
## 28473 EE overflexed right thumb while carrying computer. Referred to glenda.
## 28474 EE overhead drilling into ceiling and dust fell into left eye.
## 28475 EE overhead shelf with printer sitting on it fell on his head when an additional shelf was being attached to partition bruise to back and neck
## 28476 EE overtaking a violator at a high rate of speed rounding curve violators vehicle was at a stop causing EE to hit a ditch injury to right arm
## 28477 EE overused right hand while handwriting addresseson envelopes for several hours. Strained right hand.
## 28478 EE oving crate of mail that was heavier than usual- back injury ***** duplicate of 01971962*******
## 28479 EE owking console #4-EE sprained or turned her left wrist while turning the console switch for cell door cl-110
## 28480 EE packed 6 boxes weighting an average of 40lbs and using hand truck to carry boxes - upper back and shoulder pain
## 28481 EE packing & moving boxes for deparment move plac-ed box approx 25lbs on dollie & used her lt foot to position it injuring lt foot
## 28482 EE packing & stacking boxes, sharp pain to lt sideof lower back, radiating to lt leg.
## 28483 EE packing boxes for the move of books & other work related materials to new ed bldg. Trying to cut tape, EE cut tip of finger w/dispenser.
## 28484 EE packing dirty laundry in truck and lt knee popped and bent backwards with sharp pain.
## 28485 EE packing inmate's property stuck by needle burnt on the end
## 28486 EE packing trees when she felt burning pain and noticed the red streaks and knots on lt arm.
## 28487 EE pain developed in rt wrist b/c of improper location of mouse use in computer activities. Wrist pain, some numbness of fingers.
## 28488 EE painting a wall on ladder-student ran into ladder causing it to become unstable-EE att to catch himself and sprained left wrist.
## 28489 EE painting inside of closet when he bitten by an insect.
## 28490 EE painting parking rails & bee stung her
## 28491 EE painting windows & the ladder slipped, EE fell to the concrete. Fracture left arm in two places, surgery required, plate, pins & screws.
## 28492 EE painting, foot slipped off ladder rung and fellhitting left thumb, arm, shoulder, head and back
## 28493 EE parked at light, trailer he towing was struck in rear by another vehicle
## 28494 EE parked car on side of road it became stuck after attempting to free veh EE felt something sting rt hand-noted it was covered with fire ants
## 28495 EE parked his patrol car on an incline waiting to escort a tractor trailer. EE exited his car, when he returned to open door he felt pull in his back.
## 28496 EE parked patrol in the rear of treasurers office when he stepped out of the vehicle, he experiencedsharp pain in the right ankle
## 28497 EE parked the food truck EE feet slipped and both knees hit the step while still holding on the steering wheel
## 28498 EE parked van at angle with lt side being higher than rt side - got out of vehicle rt hand on rear jam door closed on it - hematauma to rt thumb.
## 28499 EE parking van & noticed side door was unlocked. As he tried to let seat back to lock door, he mashed small finger and hand.
## 28500 EE participated in a use of force and an inmate bit her arm. 20 minutes later her right wrist began hurting. Rt wrist sore & bite on lt arm.
## 28501 EE participated in o. C. Spray practical exercise. EE had extreme discomfort in his eyes.
## 28502 EE participated in the practical application of o. C. Spray, after decontamination process EE continued to have severe left eye pain.
## 28503 EE participated in wellness fair and had eyes tested for glaucoma. Eyes irritated from reaction
## 28504 EE participating at in-service training injured her lower back doing the break fall tech.
## 28505 EE participating in 'unarmed defensive tactics' training @ ncjustice academy. Injured during training exercise
## 28506 EE participating in 10 mile required run and twisted left ankle when he stepped on edge of the road.
## 28507 EE participating in a boxing exercise and was hit in the head by opponent.
## 28508 EE participating in a boxing practice. During match EE separated right shoulder while throwing apunch.
## 28509 EE participating in a class having to slap the padded mat with hands as EE fell to the mat injuryleft index finger swollen and infected
## 28510 EE participating in a simulated arrest during the training, his left arm was pinned behind his back.
## 28511 EE participating in annual physical assessment. During running portion of assessment, EE injured his left knee.
## 28512 EE participating in assigned asp training, EE strukon rt bicep with padded baton, causing broken bloodvessel, also strk in left shin
## 28513 EE participating in boxing exercise & went to throw a punch & hyperextended his elbow
## 28514 EE participating in boxing exercise and twisted his ankle.
## 28515 EE participating in boxing exercise and was hit struck on the left side of the head.
## 28516 EE participating in boxing exercise and was struck on the head.
## 28517 EE participating in boxing practice--injured rightshoulder.
## 28518 EE participating in cell extraction training. During a mock cell extraction exercise EE was part of the extraction team. When the acting inmate started to resist the extraction the team ended up falling and EE had other staff fall on him. ()
## 28519 EE participating in cell extraction training. Performing lower right flanker move & had hold of instructor's right leg. As instructor tried to get away from hold, EE pushed backwards still in kneeling position. After training EE r shoulder & neck pain (
## 28520 EE participating in cpi training. Instructor had EE to stoop down and get in position to demonstrate the movement of a patient. EE felt a cramp in thigh of left leg. ()
## 28521 EE participating in crdt class when she accidentlywas struck in left leg by another student
## 28522 EE participating in crdt training attempting a full leg take down another officer came down to mat lt knee made a crunching sound
## 28523 EE participating in crdt training when he injured his left knee while performing guard in technique
## 28524 EE participating in crdt training when they were doing guard escape EE standing up into defense position twisted lt knee
## 28525 EE participating in crdt training-attempting breakfalls from kneeling position-injured lower back
## 28526 EE participating in crdt training-during which fellow officer fell against her & fractured bridgeof nose
## 28527 EE participating in crt training & was doing a take-down maneuver when he jammed his rt middle finger into the mat
## 28528 EE participating in defensive tactice and fell to the floor causing sprain to left hand thumb.
## 28529 EE participating in defensive tactics and noted pain and stiffness in neck and shoulder.
## 28530 EE participating in defensive tactics-shoulder roll from kneeling position-EE fell on rt shoulder
## 28531 EE participating in dept workshop. Her partner for this exercise struck the EE with knee. The exercisewas disentangle themselves.
## 28532 EE participating in exercises, attempted to lift another officer & put him on his shoulder, when this happened he felt strain, sharp pain in l back
## 28533 EE participating in firearm safety assignment- pallets from firearm struck both hands.
## 28534 EE participating in limbo contest with clients when she lost balance & fell
## 28535 EE participating in nci core class attempted to raise from floor on 1 knee and was not able to.
## 28536 EE participating in oleoresin capiscum spray training. EE was sprayed in face with oc spray. Bilateral corneal abrasions to both eyes.
## 28537 EE participating in orientation activities and injured left shoulder
## 28538 EE participating in physical assesment. While doing push ups EE felt his shoulder began to hurt. Strain right shoulder.
## 28539 EE participating in physical fitness training pullmuscle in groin during 2nd set of leg lift exercises
## 28540 EE participating in physical training and slipped and fell on the ground injuring both wrists.
## 28541 EE participating in physical training in blet experienced rapid heart rate ()
## 28542 EE participating in popat course-pushed himself over-exerting his body-at the end of course began to fell light-headed then passed out
## 28543 EE participating in prescribed fitness program. Eeleft knee began hurting during the run. Examined by Dr And found EE had left patella bursitis.
## 28544 EE participating in prescribed physical fitness run & stepped into a hole while running injured rt knee. Right knee sprain.
## 28545 EE participating in prescribed physical training boxing when injured rt shoulder.
## 28546 EE participating in quick drill exercise-sprinted toward firing line felt sharp pain in rt leg.
## 28547 EE participating in refreshment class when she jammed rt ring finger into mat. Reinjury to index finger
## 28548 EE participating in self-defense she injured her left wrist.
## 28549 EE participating in self-defense training, EE injured wrist
## 28550 EE participating in sims training, hit will sims round and fell to ground acting as dead, got cuffed. Upon standing up, felt a burn in right knee, sat down and upon getting back up felt sharp pain. Knee starting swelling ()
## 28551 EE participating in spring fling activities and fell hurting ankle.
## 28552 EE participating in subject cntrl arrest training, when EE injured his rt side of ribs from falling during take down. Contusion rt ribs.
## 28553 EE participating in subject control arest tehniques training, very physical training involving joint locks, pressure points, etc. Tenderness, soreness and aggrevated pain. ()
## 28554 EE participating in team building activities and fell landing on left elbow.
## 28555 EE participating in timed 1. 5 mile run/walk. After. 5 miles he became dizzy, short of breath, discomfort in chest. Heart attack
## 28556 EE participating in tow rope challange course. While on rope swing EE's foot slipped on a tire pad, left knee twisted
## 28557 EE participating in training exercise EE was beinglifted up when dropped onto tailbone about 40 inches off ground, medical only, not lost time.
## 28558 EE participating in training exercise, ground defense maneuver, with another EE. EE strain lowerback during exercise.
## 28559 EE participating in training scenario when hand was mashed between body & wall
## 28560 EE participating in training session and complained of knee hurting following running exercise.
## 28561 EE participating in training, felt a burning in right forearm and shoulder after doing techniques
## 28562 EE participating in training-performed ground maneuver felt pain in lower back-as day progressedpain radiated down left leg
## 28563 EE participating in unarmed self defense training at time of injury, bruises didn't show up til 2 daylater
## 28564 EE participating in unarmed self-defense class & while practicing in an escape from ground attack EE's rt eye turned blood red after maneuver
## 28565 EE participating in unit exercise when EE jumped ooff platform and came down on sidewalk on left foot. Cracked left heal cave left foot cracke
## 28566 EE participating in use of force & tripped over a mattress that inmate used to block cell door. Causing EE to fall on knees jarring his back.
## 28567 EE participating in use of force segregation when he received abrasion to lt forarm & bruise, causedby plastic sheild being used.
## 28568 EE participating in walk-a-thon, sidewalk was uneven and EE stubbled and fell on both wrists.
## 28569 EE participating in wellness challenge walk, stepped on curve & felt pop in rt knee
## 28570 EE participating with patients in swimming programfell while entering poll. Fractured left wrist.
## 28571 EE particpating in firearm practice when he used an improper grip and cut left hand w/issued service weapon.
## 28572 EE pas participating in defensive tactics training (active confrontational tactics and survival qualification drill) when he sustained an injury to his upper right side of chest wall/ribs. ()
## 28573 EE passed child in hallway with chicken pox-allergic reaction to back, chest, stomach, face and head
## 28574 EE passed out and fell to the floor.... Back of thehead
## 28575 EE passed out in hallway c/o pain rt hand/elbow low blood pressure
## 28576 EE passed out in hallway on gravely 1 unit
## 28577 EE passed out in the bathroom striking his head and body on the floor and against the bathroom cabinet. Head, neck, back and both hips.
## 28578 EE passed out on the floor injuring shoulder
## 28579 EE passed out while sitting in a chair--fell striking head and rt knee
## 28580 EE passed out while taking to co-worker-falling face first into floor
## 28581 EE passed out. Dr Dx that baby was cutting off circulation in EE legs which made her pass out.
## 28582 EE passenger in car of co-worker when other drivermade an illegal left turn in frt of veh causing EE veh to hit the curb.
## 28583 EE passenger in gator veh- driver hit a bump and lost control both thrown from veh resulting in left ear cut, shoulder, rt knee, left side.
## 28584 EE passenger in pert van rtrng from call-out; van ran off rd., hit ditch; mtpl. Injrs: head, nk, bk, l hnd, l fgr.
## 28585 EE passenger in state cage car when another vehiclturning left ran into car bruise to chest area where seat belt cross
## 28586 EE passenger in state vehicle-driver swerved to avert collision-vehicle flipped on right side & slid down road-EE rt arm fracture
## 28587 EE passenger in state vehicle. A blue chevy went thru intersection & hit back of state vehicle. Rockhill police officer heard collision.
## 28588 EE passenger in van #535 co-worker was backing vanto pick-up trash when struck stopped gator #519-1 EE transported to hosp via ambulance
## 28589 EE passenger in veh going out-ov pulled in frt of veh which EE was passenger and caused knees to hitdashboard.
## 28590 EE passenger in veh going to client's funeral whenstuck by another veh on rt side.
## 28591 EE passenger in veh going to clients funeral-veh turned into funeral home and was stuck by another veh on the rt side.
## 28592 EE passenger in veh that ran into the back of a van while on school related trip in goldsboro.
## 28593 EE passenger in veh that was hit in the rear by another veh injuring back and rt arm.
## 28594 EE passenger in veh when other veh turned left in path of EE's veh.
## 28595 EE passenger in veh-they stopped for lunch and another care hit EE's veh in rear
## 28596 EE passenger in vehicle going to training when vehicle was rear-ended causing EE upper back pain
## 28597 EE passenger in vehicle involved in accident no injury
## 28598 EE passenger in vehicle on routine patrol, when pick up truck made a left turn in front of patrol vehicle causing a mva. Head & right knee.
## 28599 EE passenger in vehicle when another vehicle rear ended EE vehicle injury to neck, both sides right shoulder middle back of head
## 28600 EE passenger on campus transporation bus-driver ofbus had collison w/another veh and EE fell againstrail on wrist to catch self.
## 28601 EE passing a box of ammunition through armory window to another EE. Lower back pulled. ()
## 28602 EE passing a piece of wood through a band saw whenblade hit an irregularity and cut fingers.
## 28603 EE passing an item thru bars when were being open-ed. EE on break this time. Broke shin on lt hand causing indentation and swelling.
## 28604 EE passing inmate breakfast through trap door of cell, inmate grabbed EE right thumb. EE sprain rt thumb trying to pull away
## 28605 EE passing out cups during evening meal - inmate snatched at cups striking lt hand.
## 28606 EE passing out hot water to segregation inmates, inmate threw water in EE facial area & then struckhim on right forehead with his fist.
## 28607 EE passing out meds; turned over client; possible strain to back.
## 28608 EE passing truck in rain, lost control and flipped courier van, head injury, arm, knee, back
## 28609 EE patching wall with putty knife and small piece of trash went into left eye
## 28610 EE patrol car was struck by another vehicle that crossed the center line. Back.
## 28611 EE patrol vehicle was parked behind another vehicle when an oncoming car lost control and rearended his car forcing his patrol car into another
## 28612 EE patrol vehicle was struck from the rear in traffic. Neck pain.
## 28613 EE patroling bravo dorm, EE hit by thrown bar of soap and was struck behind left ear head and neck
## 28614 EE patroling wing 3 & 4 of charlie dorm. Became overheated. Found on floor. Taken to medical in wheelchair. ()
## 28615 EE patrolling rear between dorm a and b EE was struck by a rock thrwon by a inmate. Injured back.
## 28616 EE patrolling the north vardend twisted her knee while walking on uneven ground. Strain lt knee.
## 28617 EE patrolling yard 2 and wasp landed on his arm above elbow. Hit wasp and wasp stung him.
## 28618 EE patrolling yard and stepped in hole in yard in front of vocational building. Sprain to left knee and ankle
## 28619 EE patting down his rt hand struck pencil inamtes pocket the was sticking out & caused superfical wound. Injured rt hand.
## 28620 EE pepper spray training, both eyes sprayed with ttwo one half to one second burst of pepper spray right eye had an eyelash in it after flushing out
## 28621 EE pepper sprayed an inmate to control him & breathed some of spray. Stretched her right leg & strained her right groin wrestling w/inmate
## 28622 EE pepper sprayed in eyes during training
## 28623 EE pepper spraying & applying handcuffs to inmate EE hit lt side of body on corner of metal desk contusion lt side & back
## 28624 EE perfoming nci, when she felt elbows pop and pulling pain to both elbow.
## 28625 EE perfomrming his job & fell on concrete walkway where an area was washed out in the dirt
## 28626 EE performed a balance displacement technique on a suspect that was attempting to elude arrest. During the arrest the EE slid down a 40' bank that was covered with rocks and briars resulting in the injuries. ()
## 28627 EE performed an arm bar takedown on a suspect and took him to the ground, and a scuffle ensued. EE bruised and scraped his right hand and both kness during the scuffle. ()
## 28628 EE performed fingerstick for blood glucose on EE-while cleaning up stuck self on rt little finger with same lancet.
## 28629 EE performed mouth/mouth cpr on an inmate. ()
## 28630 EE performed necessary computer work to support her job in typing communications, letters, ect. ..
## 28631 EE performing 150lb. Body drag. Stepped in hole & fell twisting left ankle
## 28632 EE performing a self defense move was grabbed by staff member around the neck, and neck was twistedinjured neck and back.
## 28633 EE performing compliance inspection, brushed against and was exposed to poison ivy ()
## 28634 EE performing control, restraint and defensive technique EE went down and could not get up injury lower abdoman
## 28635 EE performing cpi hold, placing patient in 4pt restraints. Patient pulling on EE when in cpi hold. ()
## 28636 EE performing cpr on near drowning victim when EE received partial mouthful of victim's blood and bodily fluid. ()
## 28637 EE performing cpr; pressing down on manican with full force; next day arm & chest started feeling sore. Bulge began to form out of r side of chest.
## 28638 EE performing curfew check - very dark was using flashlight ground frozen and EE stepped into pot- hole pulling back - having pain.
## 28639 EE performing daily computer/office duties - noticed pain in both hands, numbness in rt finger, knoton rt wrist, shoulder, neck
## 28640 EE performing duties with birth of new born calf when mother cow attached EE.
## 28641 EE performing electrical work & noticed sore on rt thumb
## 28642 EE performing emergency physical restraint on an individual and strained his left shoulder/arm
## 28643 EE performing emrgency services durning hurricane flood and occured rash on back, chest, neck and arms.
## 28644 EE performing file archiving project, lifting file boxes and files, with injury occuring to right shoulder area ()
## 28645 EE performing general duties lifting when EE developed a strain to lower back.
## 28646 EE performing high blocks with pr-24 baton in basice carrie position, injured rt elbow.
## 28647 EE performing home visit verifying residence & turning into driveway looked rt saw truck - went into ditch. Bruise/sprain rt shoulder and back.
## 28648 EE performing home visit. EE went to door dog ran out and bit the EE.
## 28649 EE performing housekeeping duties and cut rt leg on a piece of glass.
## 28650 EE performing in a play, dancing injury to right knee
## 28651 EE performing inmate search, used force on inmate injured neck while taking inmate to ground.
## 28652 EE performing inspection when he bumped his head against a pipe. EE sustained an gash ain the eyebrow of his right eye.
## 28653 EE performing lab experiment with blood-----tubes broke and blood splashed in EE right eye.
## 28654 EE performing mice surgery went to check mice and mice bit EE on rt hand
## 28655 EE performing mount escape in training partner role over on his rt leg felt something in his rt thigh pull causing a strong pain
## 28656 EE performing nci fell to the floor injuring hand and knee. **wkly chld support of 90. 19 due if iw goes oow**
## 28657 EE performing nci on resident & while getting resident of floor hurt back
## 28658 EE performing nci. When EE raised from the floor his right knee popped.
## 28659 EE performing normal duties when his wrist began to bother him
## 28660 EE performing research in swannah riverside and came in contact with poison oak.
## 28661 EE performing routine safty & sercurity inspectionplaced his left hand on front support beam & a rusty nail pierced glove & cut index finger.
## 28662 EE performing routine search in dyaroom, saw pieceof metal on floor. Picked up cut his rt thumb.
## 28663 EE performing self defense tech. While attending unarmed self-defense update for instructions. Training conducted on safety mats. Rt knee strain.
## 28664 EE performing sit-up exercises.
## 28665 EE performing state duty and came in contact with flood waters.
## 28666 EE performing surgery on an inmate and instrument punctured glove causing wound, left thumb
## 28667 EE performing task and stuck self w/needle in rt hand.
## 28668 EE performing training exercise, hurt rt shoulder and has right sided, low back pain. ** nurse cm toni leeby 336 774 6675 **
## 28669 EE performing unarmed selfdefense tech, other EE placed rt arm behind EE back dislodging rt sholdr
## 28670 EE performing venipuncture on inmate when she stuck her with needle, she jerked arm back & needle stuck her finger.
## 28671 EE performing weapon defensive tactics, over the head stab with plastic knife, opponent blocked moveee's finger were cut by metal keeper.
## 28672 EE performing workshop support at state library sponsored workshop. She moved two heavy tables to provide lunch
## 28673 EE performs echocardiagram on 450lb patient. Uncomfortable pain of left forearm during performance of exam with development of trobbing pain and numbness approximately 2 hrs after completion of exam.
## 28674 EE physically helped wrecker push an overturned vehicle onto it's wheels. Thereby causing pain in the right shoulder.
## 28675 EE physically inured by aggressive client.
## 28676 EE physically restrained inmate while placing 4pt restraints on inmate
## 28677 EE pick bag of trash up when tr to throw in dumpster back popped ()
## 28678 EE pick up a gallon of fuel and upon returning to his truck the rover truck start backing striking EE--injuring his rt knee
## 28679 EE pick up a piece of paper from a ditch when he developed a rash on his hand
## 28680 EE pick up heavy tray top of my shoulder came out the side (arm pop out the socket) my arm & hand still num
## 28681 EE picked a case of paper to carry to computer room and strained back.
## 28682 EE picked a plastic wrapper off the floor, which had a used insulin needle & pricked EE rt middle finger.
## 28683 EE picked computer up from the floor to put on thetable and strain right thumb.
## 28684 EE picked files ip from floor and felt a sharp pain in the side of her neck.
## 28685 EE picked her left thumb accidentally with a lancet that she had previously used on an inmate.
## 28686 EE picked of case of oil and felt twinge in lower back
## 28687 EE picked resident up- resident lock down on arm. Injured right arm
## 28688 EE picked student up off the ground and pulled a muscle in back.
## 28689 EE picked up & carried some toilet paper boxes & bag inside causing injury to neck & arm
## 28690 EE picked up 10 ream box of copier paper to transport in car. Stepped off sidewalk to parking lot, shifted weight. Injured back, shoulder, neck
## 28691 EE picked up 2 cases of artane elixir and carried to mental health room in pharmacy. EE only carried 1 case at a time. Sore right wrist, fingers swollen
## 28692 EE picked up 5 gallons of sheetrock mud and strained upper back
## 28693 EE picked up a 10gal can and pulled something in low back.
## 28694 EE picked up a 30lb box of books and strained her back.
## 28695 EE picked up a 5 gal bag of plaster and felt back pop
## 28696 EE picked up a 5 gallon pail of paint and felt something pull in his right wrist
## 28697 EE picked up a 5 gallon pail of shower cleaner & felt a hurting in her abdomen.
## 28698 EE picked up a 5-gal mop bucket and felt pain in left side
## 28699 EE picked up a 50 lb cylinder and strained low back
## 28700 EE picked up a 5gal water bottle to replace in fountain and injured back
## 28701 EE picked up a bag containing three hundred or more pairs of sicks, approx 50 pounds. EE sneezed and felt pop in chest
## 28702 EE picked up a bag of mattresss pads and felt a catch in her back. Lumbar strain.
## 28703 EE picked up a bag of plaster and felt something in his back pop.
## 28704 EE picked up a biohazard bag of needles and one needle scraped EE
## 28705 EE picked up a block of wood, got a splinter in right 2nd digit ()
## 28706 EE picked up a box full of bus schedules to take into bldg-started up steps and felt pain in back drop box at door.
## 28707 EE picked up a box labeled "broken glass". Piece of galss was sticking out of the box and hit EE.
## 28708 EE picked up a box of books to be stamped and he felt a pain in his left shoulder.
## 28709 EE picked up a box of computer paper and felt sharpe pain in lt shoudler.
## 28710 EE picked up a box of copying paper felt somethingsnap in the lower part of my back.
## 28711 EE picked up a box of file folders and strained back
## 28712 EE picked up a box of print cartridges on an equipement and felt pain in back.
## 28713 EE picked up a box of supper meals for special event & placed on a cart EE later felt pain in lower back & tingling down left leg
## 28714 EE picked up a bucket of water and felt something pull in his neck.
## 28715 EE picked up a case of cranberry juice a sharpe pain went thr my hand & arm & constantyly pain hurt to move my fingers
## 28716 EE picked up a case of envelopes to carry upstairsdropped one and bent down to pick it up and pulledsomething in lower back
## 28717 EE picked up a case of paper to store when he felt a pop to his right shoulder.
## 28718 EE picked up a case of yams from the bottom of a buggy and strained back
## 28719 EE picked up a chair and felt burning and stingingin abdomen
## 28720 EE picked up a child in the daycare and felt something pull in her back
## 28721 EE picked up a cpu and put it in a box to send outto counties and felt pinch in back. Injured middleof back and down lt leg.
## 28722 EE picked up a full bag of lined and injured back.
## 28723 EE picked up a full box of paper from the floor turn around to put in a chair across the room and felt a pain in her lt shoulder
## 28724 EE picked up a gallon glass container of acid the bottom of the container hit the counter top, broke off and spille acid on her legs.
## 28725 EE picked up a gallon jug of disinfectant, the previos user hand not secured top, and the disinfectant splashed into EE's face.
## 28726 EE picked up a heavy box and carried the box untilshe was able to find a place to sit it.
## 28727 EE picked up a heavy metal bucket filled with tools and bolts he pulled something in rt hand
## 28728 EE picked up a large bag of clothes off a golf cart & injured rt shoulder/wrist
## 28729 EE picked up a large box and turned to place into truck...... ..
## 28730 EE picked up a large rail... Injured his back
## 28731 EE picked up a lead brick from cabinet and it fell through finger causing finger to bend back
## 28732 EE picked up a letter out of the mailbox that had a threatening content.
## 28733 EE picked up a manual, felt a pop in the palm, wrist, finger and thumb went numb
## 28734 EE picked up a mattress and gave it to an inmate about a half hour later I noticed I had a lot of small bumps on both of my arms now the bumps spread
## 28735 EE picked up a medium pan with gravy and strained lower back
## 28736 EE picked up a microwave to throw into dumpster felt sharp pain between shoulder blades.
## 28737 EE picked up a monitor and monitor started fallingand she could not get a good grip and it fell down on her lt leg and landed on her lt foot
## 28738 EE picked up a monitor, turned to walk and her knee popped and bonesticking out of the knee.
## 28739 EE picked up a pan of lasagna to put on food line, had sharp pain in chest
## 28740 EE picked up a piece of metal that burned his leftthumb and forefinger
## 28741 EE picked up a piece of steel-when releasing it sored back and hit EE on rt foot
## 28742 EE picked up a plastic tub containing dishware, weighing approx 50-60 lbs. Hurt her left side, including chest, shoulder, neck & back.
## 28743 EE picked up a portable; truck; and felt a pull in his lower back and right leg
## 28744 EE picked up a resident who was trying to stall by laying in the floor, as a result she felt a grab in her lower middle back
## 28745 EE picked up a set of lockers. When he set it downit dropped onto finger.
## 28746 EE picked up a small piece of wood and felt a catch in his back. Pain in lower back.
## 28747 EE picked up a table to turn it over and sit up. Lt shoulder popped out or dislocated.
## 28748 EE picked up a tire to put on van when someone called his name. Turned head to look and noticed his neck was sore. Continued to get worse during day.
## 28749 EE picked up a toilet and turned the wrong way andstarted feeling pain in the lower back.
## 28750 EE picked up a tub of new er packets and felt something pull in lower back
## 28751 EE picked up a wheelchair to carry up the stairs and injured her lower back
## 28752 EE picked up a work sign causing a sharp & severe pain up left side of head & neck
## 28753 EE picked up adaptive boxes, felt pain in chest.
## 28754 EE picked up air compressor and turned to move from between sewing machines and upper back caught
## 28755 EE picked up an envelope and pricked his finger on an earring of a strudent w/ hiv pos
## 28756 EE picked up an offender to complete his processing this officer was interviewing this sibject for 20-30min. Subject is on probation for not reporting
## 28757 EE picked up and box and felt pain in left ring finger, hand, and elbow
## 28758 EE picked up and moved typewriter from one office to another and bruised rt arm
## 28759 EE picked up bag of bedding from stack. Open bag spilled bedding into air and got into eyes.
## 28760 EE picked up bag of evidence, needle stuck his finger.
## 28761 EE picked up bag of trash that had lots of books in it and pulled muscle in left arm pulled muscle in left arm
## 28762 EE picked up bags from chair, turned around to exit building (fire alarm) and fell over a low level table onto the floor.
## 28763 EE picked up basket containing checks and paperwrkin rt hand-in left hand picked up rolled coins which caused wrist to twist.
## 28764 EE picked up bed to move it so he could check the closet doors and felt something pull in back
## 28765 EE picked up bench to move back felt tight, pain started hours later. Low back strain
## 28766 EE picked up box and elt pull in back.
## 28767 EE picked up box of charts and felt localized neckpain
## 28768 EE picked up box of forms and pulled muscle in arm, shoulder and chest
## 28769 EE picked up box of forms felt pain in upper back
## 28770 EE picked up box of paper and strained her back.
## 28771 EE picked up box of price books, felt lower back pop.
## 28772 EE picked up box, strain to back
## 28773 EE picked up boxes of applications and took from personnel to division office to be mailed out. Lower back and left hip.
## 28774 EE picked up bucket and then a bag of trash while performing duties as a housekeeper in spencer. Injury to left shoulder.
## 28775 EE picked up bucket of water to pour out and pulled back and pain went down rt leg.
## 28776 EE picked up case of tomatoe sauce & finger pop
## 28777 EE picked up cassettes and they slid apart, drawers came open, caught the side of employee's face ()
## 28778 EE picked up chaffing tray and burned left thumb and pinky
## 28779 EE picked up client from the floor injured lower back
## 28780 EE picked up clients hand to check for wound site and client grabbed EE's left hand causing pain to left thumb
## 28781 EE picked up computer and strained lower back on rt side
## 28782 EE picked up computer monitor to move it and strained back
## 28783 EE picked up concrete and moved it, back began to hurt
## 28784 EE picked up cones from unknown location and tweeked his back.
## 28785 EE picked up conference room table and stacked them up.
## 28786 EE picked up cooler put in van when EE turned feltpain in lower back and numbness in left leg
## 28787 EE picked up cooler that was full of ice, drinks, & canned coolers and onto to a loader deck.
## 28788 EE picked up crackers off the floor and pulled muscle in back.
## 28789 EE picked up dog to place on cart- dog bit EE on right forearm
## 28790 EE picked up empty cambro and turned to put it on cart when she felt pain in left side of her chest.
## 28791 EE picked up end of desk in order to level desk and injured rt arm frm shoulder to hand.
## 28792 EE picked up envelope and pressed it against lft breast and stuck self with tattoo needle in left chest
## 28793 EE picked up fax machine and cut hand on sharp metal object.
## 28794 EE picked up file bucket full on files and turned. Felt pull of pop in back.
## 28795 EE picked up fish basket with stingray inside. Spine came through basket and into area below EE left knee cap as he was lifting basket
## 28796 EE picked up flask hot autoclaved yeast boiled outof flask onto rt forearm
## 28797 EE picked up front end of a desk.. Injured his lower back
## 28798 EE picked up glass and was putting it in glass rack when it shattered. EE was cut on left thumb.
## 28799 EE picked up hand held drain machine and strained lower back
## 28800 EE picked up heavy object that slipped from his grip
## 28801 EE picked up heavy trash in office and strained left shoulder
## 28802 EE picked up his drillbox that was behind the seatof his truck & pulled a muscle in his chest area.
## 28803 EE picked up hose and end of hose slapped EE in rteye causing irritation and soreness.
## 28804 EE picked up juice and something got into rt eye.
## 28805 EE picked up knife that was used to cut sections of placenta with gloves that were bloody from leg section she was working on. Knife from placenta cut through gloves used on leg & cut left index finger ()
## 28806 EE picked up ladder and a piece of metal pierced the right thumb.
## 28807 EE picked up large basket of mail and felt twinge in left arm and wrist causing swelling.
## 28808 EE picked up large spool of thread to move it intointo cabinet & needle pricked finger. Puncture wound lt index finger tip.
## 28809 EE picked up liquid mercury from broken thermom. Did not know it has come from thermom. She thoughtit was beads
## 28810 EE picked up mail and a box under his right arm and it caused side to hurt.
## 28811 EE picked up mail tubs thatwere extremely heavy and strained chest and the pain worsened over the weekend.
## 28812 EE picked up mail, a tab on a manilla envelope waspartially opened and cut the base of her thumb on inside of her hand.
## 28813 EE picked up man hole cover, slipped on wet groundsnatching back. Injured back.
## 28814 EE picked up medical chart to review. Metal bindinstuck in palm of left hand.
## 28815 EE picked up metal trash can in order to close bathroom door and cut EE left hand on rim
## 28816 EE picked up milk crate & felt a pull under arm EE does not indicate which arm.
## 28817 EE picked up milk crate with lt hand and felt a sharp burning pain from his elbow to his finger.
## 28818 EE picked up monitor box, weight and distributed on wrong side of box and box flipped over on left hand
## 28819 EE picked up mop bucket to empty water, felt a pull in chest ()
## 28820 EE picked up mop bucket w/water in it felt something pull in lower back.
## 28821 EE picked up object from floor. When EE stood backup, EE hit her head on corner of cubby boxes.
## 28822 EE picked up parper towels from counter and struck a hypodermic needle.
## 28823 EE picked up rug and shaking it out-caused it to pull on back and left leg.
## 28824 EE picked up small insert to put grits in, hot grits dropped on left hand ()
## 28825 EE picked up some batteries that had acid on them causing her to injure her right thumb and fore finger ()
## 28826 EE picked up stack of mail from wooden bin & got large splinter under nail of right little finger
## 28827 EE picked up suitcase for client and pain ran downback, leg and foot became numb. ****clmt is paid weekly - not monthly****
## 28828 EE picked up table, turned around to stack them, then EE felt a sharp pain in back.
## 28829 EE picked up the laundry basket to place soiled clothes in the washer & felt sharp pain in lower left side of her back
## 28830 EE picked up the medications box from the foor andplace the box on desk. Right lower back.
## 28831 EE picked up the mop bucket to empty out the water and the bucket slipped out of her hand. She tried to catch it and hurt her back.
## 28832 EE picked up three meter trays and turned to put them in a hamper and then his back started hurting
## 28833 EE picked up tire to put on truck, tire slipped and EE tried to catch it
## 28834 EE picked up tools for the day and pulled muscles in lower back.
## 28835 EE picked up top of hot station and strained back
## 28836 EE picked up transmission part to show class & later felt back pain.
## 28837 EE picked up trash and carried it to the dumpster and injured his back.
## 28838 EE picked up trash bag, turned and started walking toward bathroom and had pain in left hip down to knee
## 28839 EE picked up trash bags to put in dumpster; turnedand back gave out.
## 28840 EE picked up trash can injury to left side of body including back and abdomen area
## 28841 EE picked up tray to load on carrier-turned and twisted back.
## 28842 EE picked up two boxes of laser checks to move from her office to the storage closet when she felt a strain in her right arm.
## 28843 EE picked up video equipment in rear of van. Lowerback had intense pain casuing difficulty in walking and movement.
## 28844 EE picked up viral load inside of tube w/o wearinggloves causing hands to turn raw.
## 28845 EE picked up wall hanging that had fallen on floorand pricked finger on nail in hanging.
## 28846 EE picked up wheelbarrow that was loaded with wet cement. As he started to walk he felt a severe pain in the back of his left calf.
## 28847 EE picked up wood clamps to use on a project was locking shop door when one of the clamps fell and jit EE lt knee just below the knee cap
## 28848 EE picking client up from floor--client kneed EE in left ribs
## 28849 EE picking patient up from floor in hallway on transport board, lift was unbalanced, injured back
## 28850 EE picking pine cones lift truck was going under tree and needle. Wen by saftey glassed & puncturedrt eye.
## 28851 EE picking up & stacking boxes of closed files to be archived, strained back
## 28852 EE picking up a bag of trash that was unexpectedlyheavier than usual straining rt groin/lt hip
## 28853 EE picking up a chair and had a pain surge in leftwrist left wrist instability with reconstruction
## 28854 EE picking up a delivery box for dept. & in doing so received a stomach hernia. Was driven to er forsurgery
## 28855 EE picking up antena & injured lt eye on the tip.
## 28856 EE picking up bag of linen out of barrel hurt rt wrist.
## 28857 EE picking up books and left thumb bent back.
## 28858 EE picking up books from dock-books were heavy andee lifted them wrong injuring lower back
## 28859 EE picking up box in warehouse injury to left leg
## 28860 EE picking up box of books - felt something pull in her upper rt back. Upper rt back strain
## 28861 EE picking up box to be brought to mail room, EE felt a pull in neck, lt shoulder area, later it started to bother him in his arms & hands.
## 28862 EE picking up boxes with christmas decorations, box was heavy and EE complained of r wrist and hand pain. EE already being treated by Dr. Kasselt for
## 28863 EE picking up bucket full of water and felt pain in her right shoulder
## 28864 EE picking up cat to weigh animal, had to pull off chain link fence, animal scratched EE
## 28865 EE picking up client w/another staff member twstedback
## 28866 EE picking up debris after huricane fran & steppedon nail lt foot
## 28867 EE picking up floor jack to show student felt pop in low back
## 28868 EE picking up frozen food items when sharp pain occured in rt lower leg
## 28869 EE picking up heavy fish bucket strained rt elbow.
## 28870 EE picking up laundry bag to take out and pulled lower back, hip and leg
## 28871 EE picking up litter under tree, turned around andtree branch struck rt eye
## 28872 EE picking up object and finger got stuck in tray.
## 28873 EE picking up old tire to move outside of bldg andfelt pain in left elbow.
## 28874 EE picking up orientation notebooks. Injured left wrist.
## 28875 EE picking up paper and stung by bee on rt hand.
## 28876 EE picking up papers for filing & felt something sting her left arm.
## 28877 EE picking up parking revenues, exiting vehicle, closed the passenger side door catching her finger in the door
## 28878 EE picking up person for camp obstacles training felt pul in left hamstring.
## 28879 EE picking up plants and pull in floor irritated rt eye.
## 28880 EE picking up plywood and splinter went into left fore finger
## 28881 EE picking up racks that lids and trays go in and hit rt wrist on rack
## 28882 EE picking up rotten crosstie at cafeteria activities bldg stuck splinter in finger.
## 28883 EE picking up sticks and was stung on lower lip by yellow jackets.
## 28884 EE picking up tailgate lift and strained back
## 28885 EE picking up tire from shoulder of road felt painin lower back.
## 28886 EE picking up trash bags didn't feel any thing until the weekend, saturday. Monday called supervisor j. Daniels; bending over to pick up trash.
## 28887 EE picking up trash before mowing and foot got caught on railroad tie-tripped and fell injuring lower rt back.
## 28888 EE picking up trash in bedroom and strain back.
## 28889 EE picking up trash on routine and felt pain in lower back.
## 28890 EE picking up trash, bottle in bag broke cutting knee
## 28891 EE picking up tree limbs and back locked up.
## 28892 EE picking up wire in store room and ruptured disk
## 28893 EE pickingup mail and parcel for the bookstore andslipped on steps causing pain in left hand and low back and arm.
## 28894 EE picks up mail(heavy boxes), has neck pain and numbness.
## 28895 EE pickup a diabetic needle and stuck rt index finger
## 28896 EE pinched 2 fingers btw mail buckets. Recieved 2 blood blisters; one got infected. Went to Dr- Surgical procedure found staff infection.
## 28897 EE pinched left little finger between 2 pallets
## 28898 EE pinched nerve while he was unarmed seld-defensetraining. Pinched nerve lt arm.
## 28899 EE pinched rt fourth while trying to push in a file cabinet drawer
## 28900 EE pinched skin on hand while trying to put table up for patients
## 28901 EE pinched thumb between cabinet and door.
## 28902 EE pitch dust from roof that came in contact with skin while doing roofing work.
## 28903 EE pitched a softball from behind the 6ft net about 20-25 ft behind the batter; the ball was hitback striking her in her right forearm.
## 28904 EE pitched softball to student batter. Batter struck ball, impacting EE on left calf.
## 28905 EE pivoting client while toileting and felt a pullin muscles in upper back and neck
## 28906 EE pivoting resident form bed to chair, resident started falling, EE caought her. Resident's weightwas place on EE right arm & shoulders.
## 28907 EE place a piece of plywood at entrance of truck to contain 4-h hog. Hog pushed against wood and EE was struck in the mouth and chin area.
## 28908 EE place evidence log on lockers and fell backwards hitting chair and floor.
## 28909 EE place his finger on weapons trigger while attempting to draw from his holster, weapon fired round through upper right femur, 6" above knee.
## 28910 EE place patient in a pic hold and fell with patient straining rt calf area
## 28911 EE place rt hand on cell door hinge and the door moved pinching rt ring finger in the door
## 28912 EE placed a child in a therapeutic hold and child bit EE in the rt leg
## 28913 EE placed a client in bed, she injured her ride side on the the bedroom dresser
## 28914 EE placed a cup of juice on the bars and when she reached for the cup, the control room officer open-ed the door catching her right hand between bars
## 28915 EE placed a patient in mechanical restraints went to floor trying to subdue patient - knee hit floor. Lt knee.
## 28916 EE placed a resident in a therapeutic hold. Rt wrist got twisted.
## 28917 EE placed an aggressive patient in pic hold & in the process injured his back.
## 28918 EE placed an agressive patient in pic hold & in the process injured his back
## 28919 EE placed bottle in her bucket and it fell up against another bottle and sprayed in her face.
## 28920 EE placed client in thereuptic hold for an extended period of time.
## 28921 EE placed client in wheelchair-bent around to lockbrakes on chair and felt a sharp pain in lower back.
## 28922 EE placed client on toliet turned around to leave and tripped over wheelchair hit stomach on linen cart.
## 28923 EE placed clinet in bed and was positioning clientwhen cleint stiffened and pushes from side ot backcaused EE to strain rt arm.
## 28924 EE placed cup of water in microwave and heated it 2-3 min. When she took it out surface was cool but when she touched it, water exploded in her face
## 28925 EE placed elbows on table to stand up, as she arose the top of the table flipped off the pedestal and hit her knee she caught it with her left hand. ()
## 28926 EE placed fries in hot grease and grease popped in EE's face
## 28927 EE placed hancuffs on a suspect. Suspect kiced EE right hand, trapping it between a brick wall & handcuffs. Bruise/numbness rt pinky & ring fingers
## 28928 EE placed hand and arm inside room to shove student away from door in order to close door. Student pushed door on staff members wrist and arm
## 28929 EE placed hand in track of trap door near handle and when door was pusched the door pinched right middle finger. Bruised right middle figner
## 28930 EE placed hand on clients back to steady him. Client reached back and scratched EE's left hand.
## 28931 EE placed hand on retrieving towy and gave canine command to release, canine released bag and seized ees left hand by biting, twice.
## 28932 EE placed hands under clients leg to to lift out of bed and client lt knee kicked EE under jaw causing EE to bite her tongue.
## 28933 EE placed her right foot on a chair to raise up, while supporting with this foot chair rail, foot slipped, causing her to hit the floor. Right hip.
## 28934 EE placed his hand on a centrifuge while opening the chamber door and noticed a small amount of mercury on the surface of the centrifuge
## 28935 EE placed his lt hand on door jam to prevent 2 inmates from fighting. One of inmates pressed veryhard against lt arm
## 28936 EE placed hose nozzle on ledge while working, nozzle fell striking wrist.
## 28937 EE placed inmate back in cell-- felt like he was going to pass out. ()
## 28938 EE placed juvenile in restraints and student spit in EE face and on his body.
## 28939 EE placed ladder on floor to climb to roof of adjacent room. Base of ladder slipped on concrete floor causing ladder and EE to fall
## 28940 EE placed left hand on table while bending over & a nail sticking up in table caused 1/2" cut on left palm.
## 28941 EE placed patient in wheelchair-patient sat back causing the footrest on his chair to rise & strikeee in the rt lower leg. Contusion to rt low. Leg
## 28942 EE placed pot on stove and received an electrical shock
## 28943 EE placed resident in hold and resident headbutted her face.
## 28944 EE placed resident in wheelchair & went to pick up resident's lap board off the foot of his bed with her left hand. Fingers pressed against board
## 28945 EE placed right hand over left while firing the gun, as the slide came back it cut EE's right thumb knuckle.
## 28946 EE placed shaving razor in front of pants pocket. Removing razor from pants pocket cut lt pinky finger on razor blade. Cut tip of pinkey lt hand.
## 28947 EE placed the canteen order in the basket of towerand then the officer proceded to throw the basket over the fence and cut EE r middle finger.
## 28948 EE placed tubs of mail in back seat of vehicle attempted to slide tubs across too heavy caused strain to lt shoulder/neck
## 28949 EE placeing needle in sharps container, and was stuck
## 28950 EE placing a student back into his room and the student slammed door on EE thumb.
## 28951 EE placing book on table when book fell on left foot
## 28952 EE placing canoe back into water lost balance and fell across another boat hitting knee.
## 28953 EE placing cilent into wheelchair; top of right foot hit wheelchair.
## 28954 EE placing cinder blocks in box for anchor and block rolled back and hit left knee.
## 28955 EE placing client in pic hold and injured rt hand
## 28956 EE placing client in restraint and twisted back.
## 28957 EE placing client in theraputic hold-client kickedee on left thumb
## 28958 EE placing client on scales and felt pain under rt shoulder and back.
## 28959 EE placing clients toiletry into cabinet-when removing rt arm hit hinge bracket.
## 28960 EE placing combative client in pic hold and felt sharp pain in rib cage.
## 28961 EE placing dishes into machine, hand in handle of lid, lid slipped and smashed left pinky finger
## 28962 EE placing equipment on top of storage cabinet strain left shoulder
## 28963 EE placing folder in filing cabinet in dci room & closed the drawer on left index finger-hand- wrist
## 28964 EE placing handcuffs on inmate who lundged at EE and slapped EE on the left side of his face
## 28965 EE placing handcuffs on suspect charge w/handcuffsaround suspect, he twisted arms & locked handcuffsaround EE wrist - small laceration, contusion, fx.
## 28966 EE placing inmate in four point restraints, he rec'd an abrasion to rt index finger.
## 28967 EE placing inmate in restrains inmate spit in the face of EE & pushing him with hands to chest of EE
## 28968 EE placing inmate on floor left arm hit bar sliderrt knee and leg hit floor. Lt forearm, bruise and rt knee and shin scrapes
## 28969 EE placing large target into trailer when target slipped and struck EE in the face
## 28970 EE placing leaking trash bag in dumpster when a liquid splashed in his right eye causing burning and irritation
## 28971 EE placing mail on counter-heavy boxes already on counter caused upper shelves to fall on EE's left elbow and hand.
## 28972 EE placing memos on bulletin board when plexiglasscovering board fell & caught three lt fingers
## 28973 EE placing motors on shelf, dropped out of hands and hit right knee
## 28974 EE placing patient in pic restraint, was pinned against wall & kicked by patient several times in right front & abdomen.
## 28975 EE placing patient into bed when patient was out of control and patient hit EE on right wrist bruise to right wrist
## 28976 EE placing perserved specimen into storage container and solution splashed into left eye.
## 28977 EE placing pouches on top rack-bent over to place more and was poked in left eye by corner of pouch.
## 28978 EE placing resident in bed and back started hurting
## 28979 EE placing resident in bto, EE was kicked 2 times in upper chest as she was releasing him. Injured chest.
## 28980 EE placing resident in shower chain, resident grabbled hair, pulled down/once released went to the back shower chair to pull resident up
## 28981 EE placing restraints on inmates that were coming out of a paper fire set in cellblock 612
## 28982 EE placing shotgun ammunition in truck & stepped off step hard causing strain to back
## 28983 EE placing stair unit in place and misjudge mass when she moved it straining back.
## 28984 EE placing staples in heavy duty stapler when it flipped and hit rt hand.
## 28985 EE placing syringe needle in stick container with right hand - index finger lt hand. Needle puncturelt hand index finger.
## 28986 EE placing tent for an apprenticeship contest when metal bar snapped and hit the bone in right wrist. Bruised ()
## 28987 EE placing tool box in back of trk and cut rt index finger on sharp object.
## 28988 EE placing trash bags in dumpster and rt index finger punctured by staple.
## 28989 EE placing trashcans on street when hand got caught between light pole and trashcan
## 28990 EE planing flush a repair to door stile when splinter went underneath rt middle fingernail.
## 28991 EE planting in research plots and the poison oak oils soaked through clothes.
## 28992 EE played dodgeball with middle school students. The students threw a ball towards her. She tried to catch ball and jammed finger.
## 28993 EE playing a game with individual & individual fell and landed on employee's right leg.
## 28994 EE playing ball with children-attempted to throw ball and twisted wrist.
## 28995 EE playing ball with clients & staff pulled muscle degenerative osteoarthritis lt knee w/inflamation
## 28996 EE playing ball with clients and put all weight onrt foot trying to keep ball from going out of bounds.
## 28997 EE playing ball with consumer and was hit in mouthwith ball. Chipped rt upper back partical.
## 28998 EE playing basketball & was injured by co-worker as he jumped for the basketball. Injured achiles tendon on rt leg
## 28999 EE playing basketball and tripped over another player's leg falling hitting face and head on asphalt
## 29000 EE playing basketball in gym with inmates, fell over another person foot and twisted her lt ankle. Twisted lt ankle.
## 29001 EE playing basketball while on break during training, right achilles tendon rupture
## 29002 EE playing basketball with campers, he jump and came down on his ankle. Sprain ankle.
## 29003 EE playing basketball with client and fell on lfetknee.
## 29004 EE playing basketball with clients and injured left foot.
## 29005 EE playing basketball with clients when he jumped to rebound and landed on a ball causing injury to lt ankle
## 29006 EE playing basketball with four students & anothermember. EE jumped trying to get ball when she camedown she twisted rt knee. Sprain rt knee.
## 29007 EE playing basketball with inmates, EE jumped and landed ackwardly on left foot, injury left ankle this happened during recreation time.
## 29008 EE playing basketball with inmates, ball richochated off inmates hands during a pass and hit EE lt 3rd and 4th figners possibly jamming them.
## 29009 EE playing basketball with patients and injured rt ankle
## 29010 EE playing basketball with patients, EE jumped to get ball, pt bumped EE causing EE to twist knee, rt
## 29011 EE playing basketball with students EE jumping left knee made loud popping noise, EE put arms out to break fall, sprain to rt elbow, left knee
## 29012 EE playing basketball with students, made a hard stop and knee gave out. Left knee made loud pop and became dislocated. EE cell ***828 713 4732****
## 29013 EE playing basketball, student stepped on backheelwhile I was going up for jump shot. (achilles tendonates)
## 29014 EE playing bball in gym slipped on floor hit rt knee
## 29015 EE playing bball w/patients and stepped on someonefoot causing EE to turn right ankle
## 29016 EE playing football w/campers & slipped on wet grass. He dislocated his lt kneee cap & strained his mcl
## 29017 EE playing football with child and got hit on lt ring finger.
## 29018 EE playing football with clients and hit his nose and lip on clients forehead.
## 29019 EE playing game, running - slipped on grass and fell down shoulder first breaking clavicle in 3 places & bruising
## 29020 EE playing in softball game w/client-client swung bat and hit EE in face.
## 29021 EE playing kickball collided into staff on 1st bseran to 2nd on the way to 3rd knee buckled, kept running about 1330 could not sit down or bend knee
## 29022 EE playing pool w/client, splinter from stick wentinto left ring finger
## 29023 EE playing soccer with campers & tripped & fell. Bit his lip after bumping chin with knee. 1 tooth was chipped, another knocked loose.
## 29024 EE playing softball & while running, twisted ankleand fell. EE attending company event. Right ankle, knee, and foot
## 29025 EE playing softball at EE appreciation game-running around bases and tripped falling on rt wrist.
## 29026 EE playing softball at appreciation day-running bases and tripped and fell spraining left ankle.
## 29027 EE playing volleyball at a staff event & went to hit ball pulling muscle in right leg
## 29028 EE playing volleyball at a staff event - jumped to hit ball & landed on left foot, rolling it. Began swelling immediately
## 29029 EE playing volleyball, he went to block a shot andball hit tip of finger, bent it back, causing the skin at knuckle to break
## 29030 EE plowing fire lines on wildfire when EE hit stump, caused tractor to jar and caused EE to hit left elbow on metal part of arm rest, bruise
## 29031 EE plugged in clock, fire shot out from outlet, sparks and sizzling noise. Black soot on right thumb and forefinger. Thumb slightly singed
## 29032 EE plugged in welding unit and was electrocuted, full body shock, contusion to face scalp
## 29033 EE plugging in light cord injury shocked right hand throughout right side of body
## 29034 EE plunging needle into bactic vial to misx solution. Needle slipped out of bottle & pricked inside of palm. Prick of needle into left palm of hand.
## 29035 EE poked finger w/ very fine forceps while transplanting seedlings
## 29036 EE policing area where contractors had been working-EE stepped on the rock which flipped over on EE's foot and EE's neck snapped around.
## 29037 EE polishing partial denture with a lathe. The partial slipped out of hand. A metal clasp on thepartial cut his left thumb
## 29038 EE popped her back when she stood up after puttingjuice on shelf
## 29039 EE popped his neck after siting under a cold air duct for several hrs. Someone else had to drive his car back to the office due to not turning neck
## 29040 EE position is repetitive at times-typing using mouse. EE noticed pain in right arm over last few weeks when she types and uses mouse.
## 29041 EE positioning a burned body for examination. Body was covered with debris. As EE pulled on the body bag a piece of debris punctured rt thumb.
## 29042 EE positioning lg metal table top onto truck was assisting co-worker-miscommunication landed the table top on EE's right foot-fractured great toe
## 29043 EE positioning pt in snf ward, pulled muscle rt arm
## 29044 EE positioning tractor seat to remove from cab while leaning over to lift injury strain to back
## 29045 EE possible asbestos exposure on construction site over 6 mos. Jan 2007-June 2007 injury to body systems
## 29046 EE possible contracted illness causing diarrhea from possibly contaminated water source
## 29047 EE possibly dislocated rt shoulder while to restrain resident
## 29048 EE possibly got a hernia from loading timbers for cabin restoration.
## 29049 EE poured 1 gallon drain cleaner in floor plumbingto clean drain. Otherside poured clorox. Inhaled chemicals.
## 29050 EE poured drain cleaner into a drain that already had been treated with clorox and the mixtures caused EE to have a reaction.
## 29051 EE poured hot water on self while on break.
## 29052 EE poured small amount of gas in carburator. It spit gas back and he fell on gas container igniting clothes, cap and glasses strap
## 29053 EE pouring br2 too fast into a container and splashed himself on the forearm.
## 29054 EE pouring dish detergent into sink which splashedinto right eye.
## 29055 EE pouring hcl under malfuncting hood
## 29056 EE pouring hot water (making hot chocolate for clients) into container-water splashed onto left hand/fingers
## 29057 EE pouring liquid tissue collection into bottles when some splashed into rt eye.
## 29058 EE pouring trk wash into power washer reservior and it splashed into his eye.
## 29059 EE pouring watr out of bucket and caught a catch in left elbow.
## 29060 EE practicing an unarmed defense tatic, and right elbow was bent, and felt a sharpe bursing in the elbow
## 29061 EE practicing long baton techniques, she began to feel faint & her heart rate increased. Almost blacked out.
## 29062 EE practicing unarmed self defense training his rtarm was twisted pulling the rear muscle tight at shoudler. Pulled muscle in shoulder.
## 29063 EE practicing unarmed self-defense twisted rt shoulder.
## 29064 EE practing cuffing technique and bending down on rt knee-felt sharp pain behind rt knee cap.
## 29065 EE practing grappling maneuvers with tropper in gym - during maneuvers landed on lt thumb bending it backwards. Jammed lt thumb
## 29066 EE practing in unarmed self defense class - injured rt arm she heard something pop - rt wrist.
## 29067 EE preformed a proper procedure in handling of autoclave bags. Placed sterile bag inside protected bag, still used 2 hands to push bag in dumpster
## 29068 EE preparing equipment for duty slipped on ice andfell att to break fall w/wrist.
## 29069 EE preparing for a stained glass demonstration & a piece of glass slipped out of finger, cutting it
## 29070 EE preparing for class and was lifing bins that held supples ()
## 29071 EE preparing for leadership workshop. When taking suitcase & computer to car, tripped & fell fwd on lt knee & hand. Injured lt shoulder & lt knee.
## 29072 EE preparing for morning lesson-tried to take toy from student-student bit EE on rt middle finger
## 29073 EE preparing for tropical storm-moving sand bags strain to right shoulder
## 29074 EE preparing medicines, leaned over bottowm drawer& had sharp pain in base of neck. History of pinched nerve.
## 29075 EE preparing to change client-turned to get lift and in process hit left hand on clients wheelchair
## 29076 EE preparing to do the kneeling exercise when she raised her hand, EE then complained of feeling sick on her stomach
## 29077 EE preparing to feed client; water on floor slippedand fell on right knee.
## 29078 EE preparing to guard inmates in field squad and wee got on horse it began to run, and threw EE off bruise to right wrist and side of face
## 29079 EE preparing to lay resident down, wc moved aroundwith brakes on, a screw on side scratched rt leg.
## 29080 EE preparing to make rt turn onto main st vehicle was struck on left front by whit fore escort whichcrossed left turn lane, pain in lwr back neck head
## 29081 EE preparing to take client's temperature. As EE rolled client over on her side, EE felt a pop midway in her back. ()
## 29082 EE preparing to wash cloths when something popped into her eye
## 29083 EE preparing to weedeat walking to area walked by storm drain that was washed out under ground ground caved in causing him to fall in drain
## 29084 EE preparing to work on steam line -stepped down on pipe chase which had steam coming out of it ***********please note prior to paying ppd********
## 29085 EE preparing walk down a-wing hall & allowed femlejuvenile use restroom. Male juvenile came around &grabbed, twisted head sideway & backward, dragged EE
## 29086 EE preparing water bottles for auto drive-lower body, rt arm, neck.
## 29087 EE preparing water bucked for operation on his knees beside helicopter-twisting and pulling bucket into position-strain to low back/hip
## 29088 EE prepping vial which broke and sliced her thumb
## 29089 EE present to ueohc indicating she had wrist and hand pain that started at work earlier in the day, unsure of cause. EE did not want to wait to be seen so she went to unc ed for treatment. ()
## 29090 EE press the released button when he noticed his lt thumb
## 29091 EE pressing gas pedal when seat broke and EE fell backwards, he grabbed wheel & pulled forward to keep from falling, whick jerked body-whip-lash like
## 29092 EE preventing resident from falling onto floor. Resident was sitting on another staff members lap to get haircut. Began sliding down lap
## 29093 EE pricked finger on hypodermic needle while disposing it after tranquilizing raccoon.
## 29094 EE pricked hand on equipment
## 29095 EE primarily work in biosafety laminar flow hood EE noticed headaches/pain w/tingling in neck arms & shoulder
## 29096 EE printing report on printer small propane bottlefell out of mailbox above printer & struck her on rt cheekbone contusion on rt cheekbone
## 29097 EE problems started 12 months ago due to repeti- tious work on keyboard. Diagnosed as dequerrains tendonitis. Wrist.
## 29098 EE proceding from office to upper unit f. Lt foot slipped on freshly waxed floor - caugh herself & kept from falling - twisted ankle
## 29099 EE proceeded through a green light when he was struck by a drinking driver who ran a red light. Contusion to left arm, head & side.
## 29100 EE proceeded through sliding door, it began to close on him and he raised his hand to stop it. Door caught hand causing bruise, swelling & pain
## 29101 EE proceeded to put machine down when machine cameout of slot, pushed back to move in slot & slot machine fell, caught index finger on r hand
## 29102 EE proceeded to sit in her chair it slid from under her causing her to fall on the floor
## 29103 EE proceeded to turn and the arjo to place client in wheelchair when EE felt a pain in upper back, pain shot through left shoulder blade. Arjo was very hard to pull over hump at the threshold of shower. ()
## 29104 EE proceeded up hill to car and EE slipped and fell on mud on ground.
## 29105 EE proceeding down c-block hallway when slipped & fell on right knee
## 29106 EE proceeding down steps when he slipped and fell on ribs.
## 29107 EE proceeding to staple books while proceeding to staple third staple hit hand, hit nail thru fingr in bone
## 29108 EE process of subduing hostile inmate when they fell to floor injuring lt forearm and backside. Minor scratches in lt forearm, pain lt shoulder
## 29109 EE processing a dui suspect when a struggle broke out-suspect kicked EE in rt leg and caused EE to slip and lose his balance.
## 29110 EE processing an inmate into segregation, checkinghis personal property when the inmate grabbed officers rt forearm. Injured rt forearm
## 29111 EE processing metal plates all day with gloves on-took gloves off and put them back on-noticed handscracking, itching and swelling.
## 29112 EE propping door open when another EE came in pushing the restroom door open and slammed it jamming (l) pinky finger
## 29113 EE providing instruction on vehicle operation whenthe traveled off rt side onf road & colliede w/a embankment. Strain to neck.
## 29114 EE pruning dead cedar branches-small piece of cedar bark went into right eye
## 29115 EE prunning hedges for 3 days-EE thought shoulder was sore and applied cream-EE had strained shldr.
## 29116 EE prunning tree limbs he had to removed several ticks from his person and clothing. EE reported embedded tick 6/17 on EE stomach area ()
## 29117 EE prying open safe w/another EE when crow bar slipped and hit EE on top of head.
## 29118 EE prying the flush tank open-prybar slipped and stuck finger between bar and wall.
## 29119 EE pulled 2 rhododendron beds(lg. Wooden box filled w/ sand, soil and per moss) approx. 3 feet across the ground noted pain in back.
## 29120 EE pulled 75+ lbs of equipment on cart, upsteps and out of car
## 29121 EE pulled 8 sheets of sheetrock away from wall that was sitting on floor to check for contra, the sheetrock fell to floor stricking EE rt chest area
## 29122 EE pulled EE's rt arm and wrist EE was chaning patient. Hyperextension rt wrist.
## 29123 EE pulled a bucket of water across the hall and strained rt arm and shoulder
## 29124 EE pulled a cart and caught her finger between thecart and the sink, a sharp edge on the sink cut her finger.
## 29125 EE pulled a chair in the room to sit in, upon doing so, as EE sat the chair flipped backwards and EE fell on her back and head in the chair. EE attempted to break the fall. ()
## 29126 EE pulled a drawer and the plastic cabinet fell on her head ()
## 29127 EE pulled a manhole cover that had steam coming out of it, EE fell back as hot steam came out and something pulled in his lower back
## 29128 EE pulled a muscle in back lifting resident from tub
## 29129 EE pulled a muscle in her lt arm while dealing with a patient dob 1/22/54 - 12. 26. 03 filed f24
## 29130 EE pulled a muscle in his left leg while loading debris onto vehicle
## 29131 EE pulled a muscle in his rt leg while walking down some steps.
## 29132 EE pulled a muscle in rt shoulder while trying to hold pipe
## 29133 EE pulled a muscle while assisting someone... Right shoulder
## 29134 EE pulled a muscle while unloading material from a truck
## 29135 EE pulled a pan from shelf on the bottom-rest of pans fell on rt forearm.
## 29136 EE pulled a patient off another EE and the patientpushed EE into the door and microwave bruising back and shoulder
## 29137 EE pulled a stool to set down. Stool collapsed & EE fell on back. Lt hand, arm, head, & neck hit table.
## 29138 EE pulled amuscle in back during required stretching exercises during physical training.
## 29139 EE pulled an anchor pin out of a crane & lost his footing. The turnbuckle from the rod swung down &caught his right hand.
## 29140 EE pulled back on handtruck and felt little pain in back of knee - next day when bent down really felt knee pain
## 29141 EE pulled back to prevent client from falling to floor then tripped and fell twisting back
## 29142 EE pulled back while lifting a bag of quickrete.
## 29143 EE pulled back while lifting mop bucket.
## 29144 EE pulled back while moving a large metal cabinet
## 29145 EE pulled bag of salt on the floor and strained rt shoulder
## 29146 EE pulled bag out of trash can, EE held bag with both hands to throw into dumpster when EE brought arms down felt pain in lower back rt side.
## 29147 EE pulled bed and frame was not attach to the bottom bed ()
## 29148 EE pulled bed out from wall amd strained left arm
## 29149 EE pulled bed out to close blinds footboard fell on top of right foot
## 29150 EE pulled bench off truck and strained lower back
## 29151 EE pulled cart with 2 boxes on it and stained back
## 29152 EE pulled case of latex gloves off shelf to check contents box slipped out of my hand and fell to the floor when I bent over to pick up injured back.
## 29153 EE pulled chair forward and hit head on shelf.
## 29154 EE pulled chair from underneath desk, chair rolledon behind EE, EE sat down, missed the chair and fell in the floor landing on left wrist.
## 29155 EE pulled chair out for client. When client sat down the chair slid back against the wall mashing EE's hand between chair and wall.
## 29156 EE pulled client forward to put on lift pad and felt a pull in her lower back as client resisted
## 29157 EE pulled client over to bed to pull up felt something pull in lower back.
## 29158 EE pulled client up that fell by walking belt and felt pop in back
## 29159 EE pulled coffee pot out of maker while it was still brewing. Hot water splattered over arm. Filter fell out and water continued to splatter.
## 29160 EE pulled desk drawer out to get something from itthe drawer fell out and injured both feet since she was in standing position on.
## 29161 EE pulled door closed and reached in before door closed to turn off light and did not move hand fast enough and door closed on finger.
## 29162 EE pulled door open and caught right ring finger between door and table.
## 29163 EE pulled door over the top of her foot and scraped it ()
## 29164 EE pulled down branch. Branch snapped and struck side of head. Concussion
## 29165 EE pulled folder from file and had severe pain in middle of chest - EE had had car assicent on 6/29/99
## 29166 EE pulled groin muscle during unarmed self defenseclass.
## 29167 EE pulled heavy glass exterior door across rt footlarge toe. The metal frame of the door cut large toe and two other toes.
## 29168 EE pulled himself into tractor & got bruise on lt forearm
## 29169 EE pulled himself up into the tower, by using the handrail provided, when he felt a pain in his left wrist
## 29170 EE pulled his back while he was building a supportjoist for the walkover
## 29171 EE pulled his back while working on street light.
## 29172 EE pulled his right shoulder by lifting a trash bag.
## 29173 EE pulled hose out, started to connect hose and tripped over it falling hittin faucet w/ back of head, leg and arm
## 29174 EE pulled into courthouse complex when another driver backed into right front fender of state car
## 29175 EE pulled into the parking lot of the governor's mansion to deliver/pick up mail. EE was parked behind a vehicle and was attempting to exit her vehicle when a vehicle backed into her mail carrier van. ()
## 29176 EE pulled into traffic from a stop sign without seeing an oncoming vehicle.
## 29177 EE pulled keyboard out of typewriter and if fell on foot. Bruise and swelling to right foot
## 29178 EE pulled latch on walkin refrigerator and felt pain in upper right arm. Pulled muscle, rt pronatortenser mild tendonitis right wrist and elbow.
## 29179 EE pulled laundry cart, safety pin popped out, lid of cart closed on EE l hand
## 29180 EE pulled left arm back and hit her elbow on the table-mounted can opener. Injury occurred while EE was reaching for the cleaning rags.
## 29181 EE pulled lever on adjustible chair and chair fell forward and struck EE across bridge of nose
## 29182 EE pulled lower back while helping other employees lift a mower over a small stone wall. ()
## 29183 EE pulled mop bucket away from wall and somebody had laid dust mop on top of bucket, when EE pulled handle of mop hit rt eye. Abrasion
## 29184 EE pulled muscle and connective tissue of right knee
## 29185 EE pulled muscle around her knee as she got into the drivers seat of the van. Sprained rt knee.
## 29186 EE pulled muscle in back while lifting client
## 29187 EE pulled muscle in left arm while buffing halls.
## 29188 EE pulled muscle in lower back when moving a 32galtrash can full of water
## 29189 EE pulled muscle in neck when she was struggling with an abusive & assaultive patient.
## 29190 EE pulled muscle in shoulder while lifting pans ofrice.
## 29191 EE pulled muscle in the middle and side of back while packing and arranging boxes for the movers.
## 29192 EE pulled muscle in upper back while lifting a client
## 29193 EE pulled on a heavy box and strained back. ()
## 29194 EE pulled on boxes that were overhead to flip one down on the floor. The box hit the side of EE's right knee, EE moved to get away and twisted knee.
## 29195 EE pulled on handle to put tailgate down-tailgate came down fast straining thumb
## 29196 EE pulled on plastic to remove from rack, plastic did not move. EE had lower bck discomfort.
## 29197 EE pulled on projection screen to make it roll back up & it fell down & hit her upper right arm bruising it.
## 29198 EE pulled on steel door & pulled a muscle in mid of back & alleges the pain got worse as day went on.
## 29199 EE pulled on the cabinet door, the handle came off, EE fell backwards, hitting back of head on the floor
## 29200 EE pulled on the door and the force caught EE hand b/t the door and the wall the door smashed two of his fingers
## 29201 EE pulled on weight belt buckle which failed hurling a weight at his head causing a laceration
## 29202 EE pulled onto shoulder of road to do a u-turn. Checked side mirror, headlights seem to be far away, EE continued and car struck on drivers side
## 29203 EE pulled open bottom drawer. EE had to pull hard because drawer was stuck. Pulled muscle in lower back
## 29204 EE pulled open the bottom drawer and something popped under her right shoulder blade. Thoracic strain
## 29205 EE pulled or strained muscle in upper back by moving filing cabinets.
## 29206 EE pulled out a broom to sweep the floor, broom handle was broken, EE lacerated lt. Hand on sharp handle end.
## 29207 EE pulled out a drawer and fell. Injured her chin, lt arm, lt knee, and back.
## 29208 EE pulled out a full file drawer and felt a pull in her right shoulder.
## 29209 EE pulled out and was struck by truck injuring neck and lf shoulder.
## 29210 EE pulled out drawer and it fell on rt toes
## 29211 EE pulled out dresser to sweep and mop behind pushed desser back felt pain in back
## 29212 EE pulled out in frt of trk-injury to rt side of body and head.
## 29213 EE pulled out keyboard tray and it fell on rt leg
## 29214 EE pulled over off the service road to wait for his relief. EE tried to stop the truck went over embankment into a ditch swollen knee.
## 29215 EE pulled pan out of steamer and water ran down his rt foot out of pan
## 29216 EE pulled pan out of steamer-water rolled off top and spilled on rt arm
## 29217 EE pulled pickup into warehouse. Pulled rope with left hand to close door. Right hand was on door as he pulled, fingers were caught in door
## 29218 EE pulled pillow case off and felt something pierce left pinky finger
## 29219 EE pulled plastic cover from spray gun to change it from chemical to water, cover is loose, piece of metal on spray gun cut her left arm. ()
## 29220 EE pulled pt off another peer and placed in theru hold and during struggle EE struck elbow on the door frame.
## 29221 EE pulled resident up and felt pain in left s shoulder
## 29222 EE pulled right shoulder muscle removing full trash bag
## 29223 EE pulled rt arm out of socket while holding on to railing running down stairs responding to a **** aww - $714. 57 c/r - $476. 41 ****
## 29224 EE pulled self up into van using steering wheel and strained lower back
## 29225 EE pulled shade string and the shade fell on her hand causing a contusion
## 29226 EE pulled shoulder while loading and unloading equipement.
## 29227 EE pulled something in chest while restraining an aggressive patient
## 29228 EE pulled something in his arm while separating two students who were fighting.
## 29229 EE pulled something in mid-section while hand bending conduit.
## 29230 EE pulled string on laundry bag, string broke and EE lost balance falling backward.
## 29231 EE pulled suspect veh over who got out and ran-EE att to arrest suspect but struggle broke out and EE sustained minor lacerations and bruises.
## 29232 EE pulled the bottom drawer out, later EE got up and tripped over the drawer.
## 29233 EE pulled the door open and it caught her hand between the door and the wall.
## 29234 EE pulled the mat table down from wall and heard apop in right upper thigh. Rt. Hamstring pull
## 29235 EE pulled the string on a pressure washer to start it and while pulling it back, it slipped out of his hand and caused pain in his wrist. ()
## 29236 EE pulled three ring notebook off of shelf, caughtwith left thumb.
## 29237 EE pulled trailer with truck to jobsite. He uncoupled trailer from truck and sat trailer tongue on ground. Injury to lower back
## 29238 EE pulled trash bags from can and was on the porchto get some leverage and fell backward catching her weight.
## 29239 EE pulled trash-sharp glass in bag-didn't know glass in bag and cut left finger
## 29240 EE pulled truck with family styles boxes out, did not notice latter, latter fell hitting upper back. Bruise.
## 29241 EE pulled two chairs from the top of file cabinet in storage room. Top chair fell against chest & eefell hitting lt shoulder & back on wall & cabinet
## 29242 EE pulled two sets of trays off truck lift on to dietary truck and lifted up the trays to pull wheels up on truck, hurt something below shoulder.
## 29243 EE pulled up & down on the breaker bars & he felt pain in the lt side of his neck & shoulder
## 29244 EE pulled up a toilet from floor to remove a blockage; he later felt pain in his lower back.
## 29245 EE pulled up chair and sat down the chair broke and pinned his legs under the desk
## 29246 EE pulled up mop bucket to empty water and bucket rocked and started to turn over-EE att to catch bucket and pulled left shoulder.
## 29247 EE pulled up old carpet in May and pulled something in rt shoulder. On 8-15 was removing old sink and pulled something again
## 29248 EE pulled up sign as he pulled it up a 18 wheeler came by and almost blew the sign out of his hand
## 29249 EE pulled up to ? Step and opened foor, fell out into rocks, injuring back and buttocks
## 29250 EE pulled up to loading dock, got out of van, started walking to loading dock stepped in hole. Twisted rt knee.
## 29251 EE pulled van tie down to release a client. Brusing right thumb.
## 29252 EE pulling & adjusting newly installed lighting, when the system fell striking EE on the head and hand. Lacerted head
## 29253 EE pulling & pushing office furniture when she injured her back
## 29254 EE pulling a boat with patrol vehicle when EE was hit by a truck in front which was traveling at a high speed injury lower back, neck, left shoulder
## 29255 EE pulling a file cabinet from under desk, cabinet wedged left index finger between cabinet & desktop l bracket, slicing finger ()
## 29256 EE pulling a laundry bag full of dirty cloths ontotruck when a back spasm occurred.
## 29257 EE pulling a patient up to feed; pulled back - mid-low back.
## 29258 EE pulling an inmate to floor to get control of anaggressive inmate pulling inmate to floor rt eblowhit floor wrestling inmate. Rt elbow abrasion
## 29259 EE pulling bag of garbage too hard and edge of bagwent into eye.
## 29260 EE pulling bed back into rm pt trying to pull bed back out, strain to left arm
## 29261 EE pulling bottle of bleach off of shelf-cap not on tight-bleach poured onto EE.
## 29262 EE pulling boxes on cart to dishwasher & foot slipped on floor. Left ankle, knee, leg, and side hit concrete floor.
## 29263 EE pulling cart between counter and chair, there was a brush on cart which caught on chair causing EE to fall. Left hip
## 29264 EE pulling cart up ramp, handle broke causing her to fall backwards landing on burrocks, elbows, and back of head
## 29265 EE pulling cart w/chairs on it across cable-went to pick up cart and strained back.
## 29266 EE pulling chain on truck and pulled something in lower back.
## 29267 EE pulling chairs apart that were stacked and feltpain in rt shoulder. EE's ph# 828-227-3373
## 29268 EE pulling charts tightly packed, using a repetitive movement. Right hand &wrist
## 29269 EE pulling client up in bed and during transfer eefelt pain in back.
## 29270 EE pulling clothing orders and loading on pallettsee lifted a case of inmate shoes out storage rack felt sharp pain burning sensation near pelvis
## 29271 EE pulling compressor on wheels and setting up exhibits for new museum strained lower back.
## 29272 EE pulling down stage 4 door-door kicked up & EE lost grip and fell against the scissor lift causing cut to middle of back
## 29273 EE pulling drawer & c/o was shoving another drawerwith foot, causing EE's left ring finger to get smashed between top part of drawer & box
## 29274 EE pulling file from open shelf and hit finger on anothr file and cut left index finger.
## 29275 EE pulling file, pulled hard to get it out, when it came out it hit EE in her lt eye causing pain.
## 29276 EE pulling files - poor condition of cabinets and necessary for EE to support the wt of the drawer while tried to pull out to retrieve files
## 29277 EE pulling files and packing in box to go in atticpicked up box to move-top tore left hand hit wall
## 29278 EE pulling files, sat on stool and they began to fall, placed right hand out to catch & files fell on right index finger.
## 29279 EE pulling food cart and jammed hand between cooler door and food cart
## 29280 EE pulling food cart behind him & cart rolled overhis foot
## 29281 EE pulling frozen yogurt frm freezer to thaw and a36lb box of yogurt began to fall and hit EE on both legs.
## 29282 EE pulling full linen cart. Turned curve in basement hallway felt pull in mid back. Thoraic strain
## 29283 EE pulling furniture, squeezing the mop out, pushing down mop handle-left hand and wrist burning.
## 29284 EE pulling gate open and felt pain in lower back.
## 29285 EE pulling gero-chair w/client in chair to bathrm and elby got caught between wall and chair causingee's wrist to bend down.
## 29286 EE pulling heavy load of trash to dumpster insteadof pushing it and strained lower back.
## 29287 EE pulling kiln by hand-kiln tilted causing shelves to fall on EE
## 29288 EE pulling linen cart off of elevator when the door shut catching ees fingers between the cart & the elevator door. Contusion to fingers.
## 29289 EE pulling lumbar from shelves when insulation dust flew everywhere caused EE's skin to breakout in rash and lungs irritated.
## 29290 EE pulling material to fan out to cut, cutting heavy wt material with heavy scissors for several hrs, both hands
## 29291 EE pulling medicatin cart thru medication room door, cart rolled and twisted, causing my rt hand to be jammed into the door. Back of rt hand.
## 29292 EE pulling mop bucket and mopping floors - felt pain in left elbow
## 29293 EE pulling mouse cage top off shelf, fell and hit him in head.
## 29294 EE pulling on a 33-gallon bucket of water which got wheel caught in tile floor causing EE to strain left fore arm
## 29295 EE pulling on a rope while on ladder-rope snaged EE injured rt arm
## 29296 EE pulling on conveyor to remove objects cut rt wrist
## 29297 EE pulling on cord on motor popped releasing onto rt index finger
## 29298 EE pulling on fence post with hands to tighten wire-wide straned broke and fence post hit EE in the mouth breaking 4th tooth
## 29299 EE pulling on pipe wrenches trying to tighten steam fitting injury to lower left back
## 29300 EE pulling on wrench to loosen a floor nut & nut broke free hit elbow on chiller
## 29301 EE pulling out bleachers when bleachers jerked hisarm and he had pain in neck, shoulder and arm
## 29302 EE pulling out chair for client-hand slid down theside of chair causing two splinters to go into rt index finger.
## 29303 EE pulling out portable weight-scales from trunk of patrol car he felt a pop in rt-forearm area. Next 3-days experience to feel pain\\swelling
## 29304 EE pulling over pt in bed. Rt wrist.
## 29305 EE pulling patient into bathroom to wash face whendoor made contact to top of left hand
## 29306 EE pulling privacy screen into bedroom when EE found herself falling injury to left knee
## 29307 EE pulling rack into hallway-cut left hand on sharp piece to door
## 29308 EE pulling rack out and ramp came loose - rack began to turn over and EE strained lower back.
## 29309 EE pulling rack with fruit on it and twisted to left and hit lt hand on door. Laceration lt hand restricted duty 3 days.
## 29310 EE pulling records from bottom drawer, top drawer left open by other EE, EE came up from kneeling andbumped head on corner of drawer, cut to scalp
## 29311 EE pulling refrigerator from wall and turned around and felt pain in left shoulder.
## 29312 EE pulling rope to start machine-rope got hung andpulled backwards.
## 29313 EE pulling selt into seat of van-no strap to grab on to-grabbed door jam and seat-felt pain in rt side and shoulder area.
## 29314 EE pulling serving cart with trays from dishroom and arm and shoulder became sore. **rehab spec- sending in closure rpt 1/2003**
## 29315 EE pulling small trees away from the area just cuta wasp past in one of the branches, wasp flew out & stung his face. Wasp stung on center lt cheek.
## 29316 EE pulling student from off the top of lockers to restrain child injured stomach and back in process
## 29317 EE pulling subject from vehcile that he placed under arrest - strain low back
## 29318 EE pulling telephone cable into facility felt painin his lower back area.
## 29319 EE pulling trash bag from barrel felt a pull in her lower back
## 29320 EE pulling trash cans & hurt back
## 29321 EE pulling trash from large trash can, felt something pull or pop while lifting bag out of barrel in right arm
## 29322 EE pulling trash out of container to put into dumpster and pulled back.
## 29323 EE pulling trash out of trash can & noticed was heavy because it had bricks & crushed rock in it, back injured
## 29324 EE pulling trash out of trash can but didn't know there were bricks in it from construction workers straining lower back
## 29325 EE pulling trash, laceration to finger on trash receptacle
## 29326 EE pulling trash, stepped back and hit rt ankle on bottom of chair.
## 29327 EE pulling trays off the dish machine, reached overfell pull in neck & shoulder. On 072904 noted limited rom of rt arm.
## 29328 EE pulling tv-vcr cart when tv slid, to prevent tvfrom falling EE caught it with lt hand. Contusionto lt thumb
## 29329 EE pulling up - in albemarle sound over period of felt hand swelling, tingling and rt arm. Lt hand rt arm.
## 29330 EE pulling up weeds and pruning plants as he picked up the debris a thorn got stuck in rt thumb.
## 29331 EE pulling walll locker out to search behind lock-er, heard something pop in rt arm. Pulled muscle in lower rt arm.
## 29332 EE pulling weeds and came in contact with poison ivy on both arms and rt eye
## 29333 EE pulling weeds and came in contact with poison ivy.
## 29334 EE pulling weeds and came in contact with posion ivy on both hands
## 29335 EE pulling weeds and felt burning in back muscles.
## 29336 EE pulling weeds from flower beds & was bitten by insect right hand
## 29337 EE pulling weeds in and came in contact w/poision ivy and was bitten by insect
## 29338 EE pulling weeds-bent down and leaf of plant hit EE in the left eye
## 29339 EE pulling winch cable for crawler tractor was struck, when single strand of wire form cable struck EE's glove & stuck in lt hand.
## 29340 EE pulling wire throug conduit with plyers-when plyers came loose from wire and force of tool hit EE in the face.
## 29341 EE pumping up tire on hand truck and tire blew up causing minor scrapes and fx wrist.
## 29342 EE punches and assembles books with binding machine repetitive motion injury
## 29343 EE puncture his forearm while he was doing a necropsy on a large bull cutting his frt leg off.
## 29344 EE puncture knee while inspecting beneath an amusement ride.
## 29345 EE punctured her hand with scissors while performing a medical procedure on an inmate
## 29346 EE punctured her rt index finger while drawning blood with a needle.
## 29347 EE punctured left hand on electrical panel ()
## 29348 EE punctured left thumb by #1 bd catheter stylus while placing #2 bd catheter and stylus into sharps container attempting to get both to fall down container. ()
## 29349 EE punctured rt calf on rearb in concrete curb
## 29350 EE punctured rt hand with hole puncher
## 29351 EE punctured rt thumb with broken slide which was contaminated with a pap smear specimen
## 29352 EE puntured by spine of nile tilapia's dorsal fin while drawing blood
## 29353 EE purchased a steak sandwich out of the vending machine and then became sick, vomit and had diarreah
## 29354 EE purse was snatched off her shoulder causing injuring to her lt arm
## 29355 EE pursued a violator on foot after a jump and run from a vehicle. EE fell and struck his right knee on a tree and strained his right ankle.
## 29356 EE pursued violater on foot, when slipped on wet grass & mud causing EE fall. EE struck concrete trash can w/lt leg. Two cuts & abrasions knee/shin
## 29357 EE pursuing escapees down railroad track, EE was running and stepped in hole causing him severe pain in right side groin area.
## 29358 EE pursuing suspect impaired driver. EE vehicle ltroad & overturned several times. Fractured hand, wrist, disloacted shoulder, cut lt ear, scalp cut
## 29359 EE pursuing suspect-when EE caught him the suspecthead hit EE in nose & they fell to ground-left knee twisted & bruised
## 29360 EE pursuing traffic violator, going 97 in 55, EE ran off right side of road, losing control of vehicle & causing a traffic collision
## 29361 EE push level track on dish machine caught rt hand4th finger (laceration)
## 29362 EE pushed 351 pound pt plus oxygen tank to ed. ()
## 29363 EE pushed 5 tier rack through door & dropped badge, bent to pic up badge and rack hit door release cause door to slam on wrist
## 29364 EE pushed 60 gallon trash can to dumpster & liftedto empty. EE stated that mid-back began to hurt after lifting trash can.
## 29365 EE pushed a car, that was stranded in the roadway, to the shoulder to prevent a crash. EE felt a ()
## 29366 EE pushed a client up to table in chair and felt a pull in back and chest.
## 29367 EE pushed a tool box away from him with his leg and strained rt leg
## 29368 EE pushed against a rock with is foot & it caused a 1 inch laceration & puncture wound to his heel.
## 29369 EE pushed aggressive resident away from a coworker and resident picked up a plywood board and struck coworker with it. EE blocked the blow w/ rt hand
## 29370 EE pushed back chair to get file while on phone -foot slipped and EE jammed lt leg into desk
## 29371 EE pushed back hands on desk and the chair tilted and EE fell to the floor. Injuring back.
## 29372 EE pushed bag of soil with left leg hurting back, hip, left leg and left foot
## 29373 EE pushed board on back of laundry cart w/lft footcaught on another cart & EE felt knee twist and pop/pain
## 29374 EE pushed broken glass into hand when putting tubing into glass rod.
## 29375 EE pushed cabinet against the wall injury left hip and leg
## 29376 EE pushed chair against desk which strained her wrist backwards ()
## 29377 EE pushed chair back in an arc to his right with feet to move chair. Approx. 20 minutes later he tried to stand and could not put weight on r leg
## 29378 EE pushed desk to spot to be set down, desk slipped off bouy and hit EE's foot.
## 29379 EE pushed door open with knuckles and injured right hand.
## 29380 EE pushed down on a bedrail and it fell on hand
## 29381 EE pushed down on trash in a barrel & cut hand on broken glass
## 29382 EE pushed feet on floor to push back on wheelchairand caught EE's hand between chair and wall.
## 29383 EE pushed her chair back to turn toward the computer when her foot slipped causing her to strike her lt ankle on the corner of the desk
## 29384 EE pushed into door jam by client. Contusion lft arm
## 29385 EE pushed light switch light on position, sparked and burned his lt index & middle finger on lt hand. Burn lt index & middle finger lt hand.
## 29386 EE pushed medical cart into open closet. EE hit right elbow on closet door inside trailer. Strain
## 29387 EE pushed open dormitory door with his knuckles. Right wrist bent forward injuring right index and right middle fingers.
## 29388 EE pushed open security gate. As he pushed it closed the upper corner of steel plate pinched right hand at base of thumb
## 29389 EE pushed opened segreation control door #242 a in order to exit the segregation control center. Looked back & door hit finger. Cut rt middle finger
## 29390 EE pushed out a vending machine to find a electricplug and he felt a sharp pain in his back.
## 29391 EE pushed out of chair and punched on left side of face by pt, twisted r ankle ()
## 29392 EE pushed trash into dumpster and cut left index finger.
## 29393 EE pushes cart with files and it has run over her feet multiple times during the past several months
## 29394 EE pushing 2 computer monitors on a cart. Monitorsfell off cart, EE fell into wall, monitor fell on EE leg. Sprain rt shoulder & contusion lt leg.
## 29395 EE pushing a client up the ramp and experienced pain in upper lumbar region.
## 29396 EE pushing a vacuum and stumbled over hit right foot and fell- fx right hip catalog -448076
## 29397 EE pushing and pulling client up and down hill to picnic area strained back.
## 29398 EE pushing bed against wall after waxing floor slipped hit right shoulder on foot board
## 29399 EE pushing book cart-decided to turn cart around & pull & accidentally rolled over right foot
## 29400 EE pushing boxes w/foot injuring knee.
## 29401 EE pushing cart down hallway-cart got stuck on table-EE pulled cart and felt pain in rt shoulder.
## 29402 EE pushing cart down hallway. Stepped down or incline & cart flipped out. EE slipped on bags & reinjured a sprained ankle.
## 29403 EE pushing cart down hospital ramp-cart went backwards and hit EE in rt leg/groin area
## 29404 EE pushing cart loaded w/tables and slipped and fell on hand truck.
## 29405 EE pushing cart onto elevator when wheels got stuck in elevator grooves-EE att to stop cart fromtipping over and felt pull in stomach.
## 29406 EE pushing cart, wheel got caught in crack in floor causing EE to lose balance & EE fell onto concrete floor. Injured right knee & scratched right leg
## 29407 EE pushing chair from back wheel fell off causing EE to loose balance and fall on floor resulting inlumbar strain
## 29408 EE pushing chair under desk and stuck rt knee
## 29409 EE pushing chair with computer monitor and monitorfell on left foot causing injury to fourth toe
## 29410 EE pushing chart cart, fell when cart also fell
## 29411 EE pushing client in wheelchair, client put foot down & stopped chair, EE lt ankle struck rod on back of chair.
## 29412 EE pushing client up hill in chair and felt a strain in stomach
## 29413 EE pushing computer tv stand to reach converter which had fallen behind the stand, felt pull in middle of back
## 29414 EE pushing des and pulled left arm.
## 29415 EE pushing floor machine, EE making a turn felt pain up his neck strain to neck
## 29416 EE pushing food rack with pans of patotoe salad- rack began to tilt and EE att to catch rack and rack hit EE in face knocking out front tooth.
## 29417 EE pushing food thru trolly of garbage disposal when EE cut rt ring finger on sharp edge of disposal
## 29418 EE pushing mail cart up sidewalk & wheel went intohole causing cart to tip over - abrasion to legs.
## 29419 EE pushing metal cart which tipped over-EE fell tofloor ending up in a sitting position with legs extended, left arm hit door frame.
## 29420 EE pushing milk cart into cooler, cart fell forwardand bent left thumb back
## 29421 EE pushing off the floor and moving a chair and a splinter got into leg.
## 29422 EE pushing on door knob to open-knob was hard to push and jammed left thumb.
## 29423 EE pushing patients syringer, rt thumb became pain and swollen
## 29424 EE pushing refrig. Over to the chapel-when trying to get it through the door mashed rt wrist betweenrefrig. And door.
## 29425 EE pushing resident in life through bathroom doorway, hand was caught between door frame
## 29426 EE pushing table closer to the wall when it tippedforward catching her lower leg and foot.
## 29427 EE pushing test packs out and wrist locked up.
## 29428 EE pushing the lock down to unlock officer's station trap door-hand slipped & lock scratched right hand
## 29429 EE pushing trash cart from building to dumpster when sharp pain went down right side of back, EE complained earlier back hurt. Strain to back
## 29430 EE pushing wheel chair pulled muscle in back
## 29431 EE pushing wheelbarrow up incline loaded with wood injury arm and shoulder
## 29432 EE pushing wheelchair felt burning sensation of left hand with puffyness and discoloration.
## 29433 EE pushing wheelchair; shoe strings got caught in tippers; threw her down on knees made split; legs all the way under her.
## 29434 EE pushing x-ray machine off elevator & wheel caught in crack between elevator and floor. Cervical strain
## 29435 EE pushing/pulling puree macine injured rt arm andfingers.
## 29436 EE put a client in pr on floor, pulled muscles in her neck and shoulder, arm.
## 29437 EE put a pt. From bed to chair on east, then put a pt on x-ray table from chair to table. EE felt a pull when lifting the pt. But did not think much..
## 29438 EE put a tool bag back into the back of his work vehicle. EE then climbed up a ladder to begin working when he felt a strain in his lower back. ()
## 29439 EE put arms into box to get dusting cloths and was bit by insect
## 29440 EE put blades in paper towel & placed them in trash when he scratched lt index finger
## 29441 EE put bleach in bucket which formed gas when EE breathed in the fumes went in chest and felt like burning in chest
## 29442 EE put clipboard on surface that possibly contain material that caused irritation. Dermatitis left arm.
## 29443 EE put combative pt in a hold, and both went to the floor. Injured rt shoulder, collarbone neck, lt elbow, lt foot.
## 29444 EE put container w\\5-gallons of water on shelf 7-ft high shelf broke the container fell striking his rt-hand injured his middle finger.
## 29445 EE put court recorder in car for transport and back started to hurt one I stood up.
## 29446 EE put down a glass of water and glass broke cutting hand
## 29447 EE put drink on table for resident-resident pulledee's hair and jerked EE's neck.
## 29448 EE put hand in drawer to get pen, knife stuck into hand.
## 29449 EE put hand into maintenance shavings to loosen up and got a splinter in rt middle finger.
## 29450 EE put hand up to avoid staple hitting eye and poked himself in the eye
## 29451 EE put hands on arm rests of chair when sitting down. Left arm rest pinched skin on left ring finger.
## 29452 EE put left hand down to block strike (had paddingprotection) EE experienced swelling, discoloration& numbness on left ring finger & little finger.
## 29453 EE put left hand into left pants pocket and was cut on left pinky finger by a pocket knife that was open.
## 29454 EE put lt arm around patient's back to assist and patient began falling and EE put rt arm around the front of him to brace and keep from falling
## 29455 EE put on plastic gloves with powder in them causong irritation to hands.
## 29456 EE put on safety glasses & some trash was on the glasses lens & got in his eye.
## 29457 EE put patient in Mr For safety patient bite and scratched me during restraints then ran EE left elbow into side frame rt forearm lt hand scratch
## 29458 EE put patient in a pit hold and fell striking both shoulders on the floor
## 29459 EE put radio and keys in the drawer and closed the top, her hand was on the top and was pulled inside. Bruised right fingernail
## 29460 EE put resident on commode in the process EE upper back began hurting ()
## 29461 EE put resident to bed, her back started to hurt as she returned to back to unit. Clmt did not exceed wp- oow 7 days.
## 29462 EE put soda down and then picked it up agian. EE took one drink and bee stung mouth and tongue.
## 29463 EE put something in trash can. When coming back upshe struck her head on a shelf in fellow employeesworkstation.
## 29464 EE put thumb in path of paper cutter & pulled blade down on lt thumb. Laceration to lt thumb.
## 29465 EE put too much water in styofoam cup, water spill-ed on hand when removed from microwave. Right.
## 29466 EE put trash in container and hand caught on sharp edge. Laceration top of right hand.
## 29467 EE put two pop tarts in toaster, when popped up EE burned fingers on both hands.
## 29468 EE put vacuum cleaner on van when he stepped down and landed on his right foot he felt something. Later in his shift, he noticed swelling in his right foot ()
## 29469 EE put weight on lt leg getting into to trailer oftruck foot twisted & knee popped
## 29470 EE putting 4 roasting pan in cooler, when they began to fall. Tried to keep them from falling shefell on floor hurting back.
## 29471 EE putting a box of rolled coins into safe and boxslipped hit EE on knee-then EE walking through a passage way and bumped same knee on stacked items.
## 29472 EE putting a man hole cover with the help of EE other EE dropped his side there pinching rt index finger. Cut on index finger rt hand.
## 29473 EE putting a net out catch grabbed wrong one. Injured rt hand.
## 29474 EE putting a pig feeder on cage & left hand slipped down on sharp place on metal feeder causing laceration
## 29475 EE putting a pt restraints pt became combative anddug fingernails into both hands, abrasions
## 29476 EE putting a sling under dog abdomen. Dog flung his head and hit EE in face. Laceration upper lip, puncture on chin.
## 29477 EE putting a small ring componet manually through a vertical type band saw-part slipped, fingers went into blade.
## 29478 EE putting a stack of mail on the shelf--shelf didnot hold---shelf collapsed and struck EE in lower right arm.
## 29479 EE putting animal rack into room-crushed rt hand between the rack.
## 29480 EE putting attends in closet and closing door and smashed left middle finger in door
## 29481 EE putting away gate key when he slipped in the mud at the bottom of the tower fractured left heel fractured left heel
## 29482 EE putting away nursing equipment & opened hutch door & it slammed on her lt arm.
## 29483 EE putting away supplies into locker on s1 & spilled pine oil in floor and fell hitting my leg on floor. Contusion lt upper shin.
## 29484 EE putting bed together moving around, twisted rt knee
## 29485 EE putting binder back on bookshelf when it slipped and hit top of my rt foot. - severe bruise possible hairline fracture on rt foot.
## 29486 EE putting bleach in pan, bleach hit pitcher in pan and bounced back into lft eye. Undiluted bleach.
## 29487 EE putting boxes up above loft and foreign object got into left eye.
## 29488 EE putting bunks together using wrench tighten bolts and wrench slipped off bolt causing EE rt hand strike = caused small cut back of hand.
## 29489 EE putting cardboard into dumpster-used foot to push cardboard down and accidently fell into dumpster cutting rt thigh.
## 29490 EE putting cat back in pen when cat turned and bitee on left hand.
## 29491 EE putting cleaning supplies in cabinet, dropped abottle of stain remover, spilling some on right hand
## 29492 EE putting client in chair, client began to scratch on rt forearm.
## 29493 EE putting client in hold when arm came free-client grab table which hit EE in head.
## 29494 EE putting client in p. I. C. And injured rt side neck and shoulder.
## 29495 EE putting client in pic and fell hitting rt elbowand knee
## 29496 EE putting client in restraint and strain back.
## 29497 EE putting client in theapeutic hold-client out ofcontrol-EE injured left shoulder
## 29498 EE putting client in therapeutic hold and bumped against wall hitting left shoulder
## 29499 EE putting client in therapeutic hold and jammed rt index finger.
## 29500 EE putting client in therapeutic hold when client grabbed EE's left thumb twisting it.
## 29501 EE putting client in wheelchair to transport- client was swinging arms and hit EE in left eye.
## 29502 EE putting client into therapeutic hold and strained back
## 29503 EE putting client on commode who resisted and EE twisted lower back.
## 29504 EE putting client to bed emp had upper portion half of client hand clients wrist & forearm. Torn liagments.
## 29505 EE putting client to bed-client did not want to beturned over and hit EE in the face with fist
## 29506 EE putting client to bed-client grabbed EE's rt index finger and bent it backwards
## 29507 EE putting client to bed-lifted client out of wheel chair-client reared back causing EE to twistback. Strain to back
## 29508 EE putting clients clothes into storage chest whenlid of chest fell striking bridge of nose.
## 29509 EE putting clothes in dryer, she experienced a sharp pain in her back
## 29510 EE putting coat on client, wheelchair headrest fell off and hit EE on rt knee.
## 29511 EE putting combative client in pic hold to give injection-injured left wrist
## 29512 EE putting dishes into drying tower reaching abovehead felt pain in right shoulder
## 29513 EE putting dishes into sink-noted right arm started tingling into fingers-went numb to shoulder
## 29514 EE putting down basboard using adhesive felt pain in rt/left arms.
## 29515 EE putting face mask on to clean chalkbroad and struck eye with noseclip.
## 29516 EE putting frozen meat in sink-when meat fell on left foot
## 29517 EE putting gait belt on client and left index finger got caught in belt and bent backwards.
## 29518 EE putting glass lid on glass jar injury cut to finger on right hand
## 29519 EE putting handcuffs and keys in security passage drawer and lid closed on her thumb.
## 29520 EE putting handcuffs on inmate-inmate began to wrestle with EE & EE was pushed into wall-back possibly hit papertowel dispenser-back & neck
## 29521 EE putting handicapped ramp back into place without any assistance from partner & foot slipped on flap & it hit shin bone
## 29522 EE putting helmet on clt because of sib and clt hit EE on rt ear
## 29523 EE putting ice box in back of van and bumped his head. Abrasion to scalp
## 29524 EE putting ice melt onto sidewalk and slipped and fell on bucket w/ice melt, bruised ribs rt side.
## 29525 EE putting in drain pipe when backhoe boome swung & bumped injured on hand, arm & shoulder
## 29526 EE putting in fire hydrant picked up a piece of pipe & got hand caught between pipe & hydrant. Contusion of lft hand & superficial abrasion
## 29527 EE putting in rack for auto clave and rack slippedand fell buringin left forearm.
## 29528 EE putting juice cup on cart - client came up behind and hit EE several times on the head w/fist
## 29529 EE putting ladder back in place-ladder fell and hit EE on left side of body.
## 29530 EE putting lids on carts started having muscle swelling injury back and shoulder
## 29531 EE putting lines onto cans, thumb popped out of joint
## 29532 EE putting lock on door and as she was sliding lock back on glass chipped and went to her eye. Glass in eye
## 29533 EE putting mattress cover on client's bed. When eestood up & turned to put mattress back on bed painwas in back.
## 29534 EE putting mirror in trash. Injured wrist.
## 29535 EE putting new trash bag in trash can, stood up and hit head on paper towel dispencer
## 29536 EE putting on client's shoes-client sat down on floor and EE reached to get arm when client's headhit EE in left eye.
## 29537 EE putting out road squad work signs when he slipped & fell to ground
## 29538 EE putting out salt slide on ice left ankle
## 29539 EE putting out woodchip shavings and wind blew them in her eye
## 29540 EE putting paper clips on envelopes paper clip punctured lt thumb
## 29541 EE putting paper work in back seat & hit hand withcar door as they were closing door.
## 29542 EE putting papers on desk, resident came at her and lunged toward her falling on EE and knocking EE against corner of desk bruise to chest and arm
## 29543 EE putting partition into place and fingers got smashed during process
## 29544 EE putting patient in gero chair when he got his thumb caught between the chair and patient. Contusion/strain lt thumb.
## 29545 EE putting patient in s&r. EE slipped in restraintroom and pulled knee. Sprain lt knee.
## 29546 EE putting plug into outlet on buffer-on/off switch was stuck in the on position-handle swung around and EE on upper left arm.
## 29547 EE putting pressure on pliers when EE felt something give in right wrist injury to right wrist, hand and arm
## 29548 EE putting printer on hand trk-handle of hand trk came up and hit EE on left cheek.
## 29549 EE putting pt to bed and pt spit in EE face, lt eye
## 29550 EE putting resident helment on, resident jammed EE middle finger between wall and helment.
## 29551 EE putting resident in bed, wrist & arm was under his legs, he turned over on EE wrist and arm, began hurting
## 29552 EE putting resident in wheelchair putting dress over her foot slipped & felt pop in lft shoulder fingers went numb & resident fell over ees arm
## 29553 EE putting resident on mat, when resident threw her weight on EE causing his left knee to hit floor
## 29554 EE putting restraints on client-client bit EE on left thumb
## 29555 EE putting rod bearings on compressor-finger slipped and hung nail on inside of compressor which pulled the nail loose.
## 29556 EE putting rt shoulder to back of trk doors to keep boxes from falling and strained shoulder.
## 29557 EE putting screw into 2x4 with drill and it slipped off screw and went through left thumb
## 29558 EE putting solution disinfectant in mop bucket andthe solution splashed in his eyes. Solution in both eyes
## 29559 EE putting supplies in cabinet and cut rt hand.
## 29560 EE putting the protective cage back onto the browns tree cutter and strained mid back area performing task ()
## 29561 EE putting together table & piece fell, injuring arm
## 29562 EE putting together temporary horese stalls, I demonstrated to inmates how to complete project and board fell on rt hand mashing index finger.
## 29563 EE putting tools into trk keys got caught in door latch and caused EE to pull back and hit right elbow on trk cab.
## 29564 EE putting trash in trash can when she slipped on the ice.
## 29565 EE putting trash into dumpster while pushing trashcart-woke up next morning with pain in rt knee
## 29566 EE putting trash on elevator, stumped toe on floorof elevator, floor unlevel & EE rushing, she twisted her foot
## 29567 EE putting trays in refrigerator, complains of pain in rt wrist.
## 29568 EE putting tv in rack, when he caught his rt thumbbetween tv & rack, causing small laceration to right thumb
## 29569 EE putting up charts when client came from behind and hit EE in the head and bit EE on left arm.
## 29570 EE putting up stock on top shelf -felt pain l-kneereceived ppd rating of 15%/knee by Dr Smith rehab- sue brewer with corvel 919-465-2150
## 29571 EE putting up tents for event, sledge hammer slipped off tent stake and struck EE in right leg.
## 29572 EE putting washing detergent up-bottle turned the wrong way and spout hit shelf-detergent went into rt eye
## 29573 EE putting water drinking tubes into cubber stoppers-repetitive motion cause pain rt thumb.
## 29574 EE putting window up in restroom and window came down on EE rt hand, hurting pointer and middle finger. Contusions to right hand
## 29575 EE puuting floor stripping on floor, on hands and knees, his pants got wet and stripping burnt the skin on his knees. Chemical burns to knees
## 29576 EE qas walking up the stairs after making floor round when her foot slipped and she hit her left knee on steps.
## 29577 EE r wrist & hand started hurting whenever EE usedit to type, hang or take down lighting equipment or use a screwdriver
## 29578 EE raching down and fell out of the chair
## 29579 EE raised arm in hand gesture and struck rt pinky finger on basket
## 29580 EE raised bay door to shop when the door reached the ceiling a bar fell off and hit EE in the head and on left hand.
## 29581 EE raised car on lift to check underside-inmate was placing tires back onto rack and the tire assembly slipped frm inmates hand and hit EE in the head
## 29582 EE raised head striking against corner of overheadcabinet
## 29583 EE raised hood of dump truck hood fell down on lt middle finger. Cut & puncture lt middle finger.
## 29584 EE raised lid to medicine cabinet to get inmate medication out when the lid fell onto his hand cutting it on top.
## 29585 EE raised rt arm to close fish tank and rt shoulder locked and EE was unable to move arm
## 29586 EE raised the tailgate on a truck when the tailegate fell it fell on EE arm.
## 29587 EE raised the top of the stove to clean under it. While EE was cleaning the top fell on her fingers on her left hand. Injury to (4) fingers left hand
## 29588 EE raised window and did not know it was locked inand bent down to pick up fan and window fell out and hit her top of head.
## 29589 EE raised windown to get some air when window fellon EE's forehead.
## 29590 EE raising lift on truck to unload carts - reachedover to mash lift switch and cut left thumb
## 29591 EE raising the head of bed the latch caught her index finger between the bed ont the latch. Lt index finger caught between bed & latch
## 29592 EE raising window and att to place a piece of woodunder window to hold open when window fell and smashed rt pinky finger between wood and window.
## 29593 EE raked over s wasp nest and was stung on the face and back
## 29594 EE ran 25 feet to help another EE with inmate fight he felt something pop in his lt heel
## 29595 EE ran a stop light struck car & struck telephone pole
## 29596 EE ran a stop sign and hit other veh.
## 29597 EE ran acroos yard in pursuit of suspect and came to fence. EE climbed fence and injured both hands on fence
## 29598 EE ran after a rolling veh going backwards-when trying to stop it by using emergency brakes EE strained back and left wrist.
## 29599 EE ran after client after door was opened and fellon left knee and hand
## 29600 EE ran after soccer ball and stepped in a hole and twisted left ankle
## 29601 EE ran and got in middle of fight between two female patients. Somehow EE's left hand/wrist wrenched.
## 29602 EE ran electtic cord through her fingers straightnit out before attempting to plug in socket -struckcorner off rt eye. Rt eye broken blood vessel.
## 29603 EE ran from her seat to stop a fight. On doing so EE twisted her rt knee
## 29604 EE ran from the kitchen down the sidewalk to b dorm, twisted right ankle
## 29605 EE ran into a table and injured his rt leg
## 29606 EE ran into another EE while attempting to intervene in fight between patients.
## 29607 EE ran into bathroom cabinet.
## 29608 EE ran into chair which was in traffic path and fell injury left knee, elbow, right arm, right toeankle, leg
## 29609 EE ran into field to place decoy deer. He ran back across field and jumped across ditch and twisted right knee
## 29610 EE ran into goal post while teaching soccer. EE recieved a head laceration above the lt eye.
## 29611 EE ran into log trailer. Trailer was not lighted properly and had no side reflections. ***********fatality*******
## 29612 EE ran into the back of a car and during the impact EE hit his head on the windshield
## 29613 EE ran into the metal divider between the double doors. She bounced back into joyce beatty, whom tried to catch her fall, and they both fell into a sitting position on the floor. ()
## 29614 EE ran off the road and struck an embankment.. Neck and upper back
## 29615 EE ran over left foot with cart or dolly which wasloaded with cones during visitation
## 29616 EE ran through a red light and was hit by another veh.
## 29617 EE ran to assist rn that was being attacked by pt, dropped to floor to hold pt's legs bc they were kicking, strained groin ()
## 29618 EE ran to dorms to receive count & in route felt pain shoot up his spine. Walking & felt numb in back area. Injured lower back area
## 29619 EE ran to respond to code, became light headed, fell to sidewalk.
## 29620 EE ran up stairs responding to a help call on ward3. Injured lt knee.
## 29621 EE ran vehicle off road and overturned it causing lt renal contusion
## 29622 EE rasied head up & butted his head on a damper onthe duckwork, while he was fixing a toliet.
## 29623 EE rcvd a paper cut on her finger when she was removing paper from muliuse envelope.
## 29624 EE rcvd a vaccination for the small pox and later it began to peel in the area.
## 29625 EE rcvd all tx for hepatitis shots which caused out burst of blister over body
## 29626 EE rd squad assigned to pick up trash, picked up a bag of trash to move to another loacation a piece of glass sticking out of bag cut leg.
## 29627 EE re-injured his left ankle due to bad spot on highway 8. He originally injured on 4/19/94 whilerunning bloodhound.
## 29628 EE re-injured shoulder that was injured in the past by lifting a patient transferring the to doctor's appt.
## 29629 EE re-organizing microscope room, when lifted heavy poer supply, had beltoideus muscle right arm strained
## 29630 EE reacched for door and got a splinter in her third right finger
## 29631 EE reached around boxes that were sitting in frontof wood cabinet and jammed his fingers into the cabinet.
## 29632 EE reached back for seatbelt and wrist became painful.
## 29633 EE reached back on shelf. Shelf fell hitting her on right side of head.
## 29634 EE reached back to catch a door catching her left middle finger in the door. EE snatched finger out of door. ()
## 29635 EE reached back to open another drawer of cabinet and the cabinet fell and hit the top of EE's shoulder.
## 29636 EE reached back to pull seatbelt around patient and strained shoulder
## 29637 EE reached down and picked up a 70lb. Box with his hands and carried it to the patrol vehicle and transported it to old bluford then into computer ctr.
## 29638 EE reached down to lift up a spare tire to installback in trunk after he completed radio repairs and strained his back
## 29639 EE reached down to move a tree limb-felt a scratching sensation in rt index finger
## 29640 EE reached down to open lower left hand desk drawer and hurt back.
## 29641 EE reached down to pick up a box and felt a pain in lower back. ()
## 29642 EE reached down to pick up a box that weighed approximately 20lbs and felt pain in back.
## 29643 EE reached down to pick up a sticky note off the floor in her office and turned to go into the inner office when she felt something pop in knee
## 29644 EE reached down to pick up ashetray outside of building for the inmate to vacuum the rug under itand felt a sharp pain in his back.
## 29645 EE reached down to pick up bucket of water and could not straighten up - strained lower back
## 29646 EE reached down to pick up fallen limp and sharp point cut finger. ()
## 29647 EE reached down to pick up h2o bottle and hit scalp on corner
## 29648 EE reached down to pick up paper and injured back. ()
## 29649 EE reached down to pick up sheet metal as he stoodup, his head hit a piece of metal sticking out of a stop sign post.
## 29650 EE reached down to pull mop wringer from the mop bucket and the wringer fell on the EE's foot.
## 29651 EE reached down to restrain legs of a client and strained back
## 29652 EE reached down with his rt hand to slam the trap shut with the action EE caught the knuckle to his middle finger rt hand on sharp edge of trap door
## 29653 EE reached for a file and a staple jammed into EE's finger
## 29654 EE reached for a large reference book on same located on a high shelf. When EE picked it up and brought it down, EE injured back
## 29655 EE reached for a manual in the cabinet twisted wrist
## 29656 EE reached for a papertowel after washing her hands, hit a sharp corner of the dispenser & cut her left arm.
## 29657 EE reached for a pen in box and hit rt index finger on knife.
## 29658 EE reached for a piece of paper on floor and tip over injuring left shoulder and hip
## 29659 EE reached for a piece of wood and got a splinter under the nail of rt finger.
## 29660 EE reached for a spilled drink and had and auto accident-strained neck, chest, hands and knee
## 29661 EE reached for an item over a box that had a letter opener in it which stuck in her, puncturing her between her arm and chest. ()
## 29662 EE reached for an object on shelf & someone had placed a box of crackers on top of it and it fell striking EE on head
## 29663 EE reached for bolt while making repair on trailerwheel & cut arm on old part that was sharp
## 29664 EE reached for charts from her desk to take to another office. She tripped on cord that is connected to computer.
## 29665 EE reached for chemical dispenser when it fell and splashed in her eyes
## 29666 EE reached for client that seemed to be falling down.
## 29667 EE reached for cutting board and twisted wrist.
## 29668 EE reached for electric razor when client kicked EE in stomach causing EE to throw up and pass out.
## 29669 EE reached for food carriers and twisted rt wrist on the carrier.
## 29670 EE reached for large binder book with right hand, book slipped & fell on right foot. No report until9/14-did not heal. No lost time/med only.
## 29671 EE reached for log book I stuck my finger with needle which was ina sandwich bag in a spool of thread. Stuck middle finger with needle.
## 29672 EE reached for notebook on shelf and felt pop in rt elbow and back.
## 29673 EE reached for receipt from the printer, leaned back in her chair, and began to fall backwards. When she fell backwards, she scraped her arm & elbow against the filing cabinet, hit her head & lower back on the floor. ()
## 29674 EE reached for resident, felt pain in neck.
## 29675 EE reached for some materials and bashed rt hand against the counter edge.
## 29676 EE reached for trays tripped & fell over garbage can injuring back
## 29677 EE reached fot tape dispenser and was cut bt metal area on dispenser
## 29678 EE reached hand under the mower, & the pto was notengaged. The blades began to turn partically amputating his right thumb.
## 29679 EE reached in a bucket of nails and a rusty nail punctured his left index finger
## 29680 EE reached in to latch door open and felt pain in left shoulder
## 29681 EE reached into a departmental file cabinet and was stuck by a fish hook, which was in the cabinet--puncture wound at tip of rt thumb
## 29682 EE reached into a sump at fuel containment and was cut submerged broken glass.
## 29683 EE reached into an ammunition box to retrieve a box of staple, lacerating rt wrist by a push rod staple retainer sticking straight up in the box.
## 29684 EE reached into back pocket to get reed hook when stuck by shuttle hook on rt hand.
## 29685 EE reached into box to get supplies and rt thumb was stuck by a sharp pencil.
## 29686 EE reached into bucket of soapy water while washing instruments after neuropathology conference and cut right thumb on scalpel blade. ()
## 29687 EE reached into desk to get a pen - pulled hand out and cut finger on desk metal
## 29688 EE reached into fume hood to unplug heating plate EE's hand hit a piece of glass that was hidden from view
## 29689 EE reached into glass case to retrieve item for customer and cut first finger on right hand on the edge of glass shelf. Laceration first rt finger.
## 29690 EE reached into hole to get ceramic tile and cut his hand on the tile.
## 29691 EE reached into horse stall and was bitten by a horse.
## 29692 EE reached into inmates bag to provide disposable razor to inmate for use. Cut fleft thumb ()
## 29693 EE reached into mop room to turn on the light switch, he cut his hand on the broken switch.
## 29694 EE reached into needle box and was pricked by an opened, unused syringe.
## 29695 EE reached into pan to get biscuit. Steam burnt and wrist and touched edge of pan.
## 29696 EE reached into planer before blades had stopped and cut tip of rt index finger.
## 29697 EE reached into sink full of dishes, broken dish was on bottom, cut right index finger.
## 29698 EE reached into slot of metal container that held tissues. Container fell, cutting EE's right ring finger
## 29699 EE reached into steamer to get some food, when he was burned by steam. Burn right hand & forearm.
## 29700 EE reached into the van to open the door & a pieceof sharp metal in door frame punctured lt middle finger
## 29701 EE reached into tower basin to clean out drain chemical in tower biocide was not washed off and reached with skin. Rt hand.
## 29702 EE reached into trailer. It tilted, cathcing EE in doorway straining back
## 29703 EE reached into truck to get mail bin to place on dock and felt burn/pull in lower back.
## 29704 EE reached left pocket for keys and pinky fingernail bent and broke off down to the flesh.
## 29705 EE reached out to get resident. Resident pulled onee's arm to stand. EE felt twist in back.
## 29706 EE reached out to keep elevator door from closing and hand got caught
## 29707 EE reached out to obtain a blanket and the inmate struck EE's rt wrist, EE was supervising inmate housed on the 15th floor.
## 29708 EE reached over equipment to box of stakes to check numbers on them-felt sharp pains in center of back
## 29709 EE reached over to grab pt and hurt rt middle finger. Nail w/active bleeding pulled my rt side, leg and neck.
## 29710 EE reached thru section of screen door to pull metal door to lock. Door hit officer in nose. Small cut no stitches required
## 29711 EE reached to catch a falling child and pulled a ligament in her back.
## 29712 EE reached to close the door, right hand rubbed against door lock plate and splintered metal brokethrough fingernail
## 29713 EE reached to get clients clothes and bottle of fabric softner fell on EE's left foot.
## 29714 EE reached to get tube from machine hit left hand against wire screen cutting hand
## 29715 EE reached to open a stairwell door and twisted her left knee.
## 29716 EE reached to open an gate to entert the front prgm entrance and finger struck an unknown objecta nd tore finger.
## 29717 EE reached to open animal cage door & cut right index finger on screw attaching door to frame.
## 29718 EE reached to open door & knob had an exposed piece of metal & thumb was cut on end
## 29719 EE reached to pick up a razor at the same time an immate picked it up accidentally cutting into knuckle joint on lt finger
## 29720 EE reached to pick up coat and felt popping sensation in right wrist area where it was previously injured on job in 1993.
## 29721 EE reached to pick up dirty mops/bags, pain shot through back ()
## 29722 EE reached to pick up papers on floor, hit head on corner of keyboard tray.
## 29723 EE reached to pick up trash lost balance all wgt shifted to keep from falling-fractured left leg.
## 29724 EE reached to put down steps to inmate van, cut middle finger on rt hand on very sharp piece of metal. Cut middle finger rt hand.
## 29725 EE reached to remove a pipette from a box-the uv switch was accidently flipped on-burn to eyes face, arms, hands and chest
## 29726 EE reached to remove text books from the top shelfof a bookcase. She lost her balance and twisted her back.
## 29727 EE reached to retrieve a piece of paper, caught finger nail under counter top
## 29728 EE reached to shut drivers door and wind blew the door into his left hand causing a sharp pain in left index finger radiating to forearm.
## 29729 EE reached to take a box out of a van and strainedback
## 29730 EE reached to take an arm in order to break up a fight. EE grasp inmates arm he pulled away causingees thumb to bend backward blood found on EE arm
## 29731 EE reached to top shelf to pull a file when EE pulled the file out 25 files came out with it and fell on right neck and shoulder.
## 29732 EE reached to turn on printer and chair overturnedstriking EE in the lower back
## 29733 EE reached to upper shelf to get notebook, pain in left shoulder ()
## 29734 EE reached under cabinet to turn off faucet/valve to running water and cut his right hand. He also slipped & fell on the wet floor, jamming fingers on his left hand. ()
## 29735 EE reached up in closet for carpet cleaner. Lid was not tightened and cleaner spilled and got in EE's eyes.
## 29736 EE reached up on the shelf to get trash can liners& th box of liners fell down on her right hand.
## 29737 EE reached up overhead to clean top shelf, pulled muscle in low back
## 29738 EE reached up to get pans. Pan slipped off top rack and hit EE in mouth.
## 29739 EE reached up to pull box from shelf.
## 29740 EE reached up to pull file from top shelf of filing system and felt pain in lower back.
## 29741 EE reached up to take a box off a high shelf, whenshifting feet pulled a back muscle
## 29742 EE reached up to unlock the tv box, box fell and hit EE on l side of forehead. Laceration, swell- ing and brused.
## 29743 EE reached up with right arm to close vehicle trunk lid. Injured rt arm
## 29744 EE reached with left hand to open file cabinet drawer when she experienced pain in pointer fingerand thumb.
## 29745 EE reaching around 1 client to grab another and had pain in back
## 29746 EE reaching back to get ink pen when chair back broke causing him to flip over backwards & land on his right elbow
## 29747 EE reaching behind a piece of equipment to plug something in, an unexpected electrical spark caused EE to jump, injurying shoulder
## 29748 EE reaching down to pick up piece of paper when hehit his lt elbow on edge of table
## 29749 EE reaching for a cab calf & the other one in pen jumped on EE & scratched EE
## 29750 EE reaching for client in wheelchair cleared hips htw. Chair and door but hit lt top forearm into door.
## 29751 EE reaching for door to close when wind draft slammed door on finger
## 29752 EE reaching for envelopes-chair tilted forward androlled back from under EE-dumping EE on the floor.
## 29753 EE reaching for scissors and grabbed them the wrong way and cut thumb on rt hand.
## 29754 EE reaching for some trash bags on top storage shelf - scraper was laying among bags fell on top of rt foot contusion.
## 29755 EE reaching for something in cabinet injured left index finger.
## 29756 EE reaching for something on desk and fell out of chair onto the floor straining lower back
## 29757 EE reaching from ladder for cable felt and heard a popping sound in left knee
## 29758 EE reaching in drawer while sitting in chair & fell over. Strain lower back
## 29759 EE reaching into cigarette urn to empty when ants went inside glove and stung left arm and wrist
## 29760 EE reaching into the refrigerator to get a sample-hands empty and felt pain in lower back extending into rt hip
## 29761 EE reaching into veh to retrieve fire extinguisherto put out fire and cut hand on handle of fire extinguisher.
## 29762 EE reaching over to lift box and strain lower leftback.
## 29763 EE reaching to take iv tray from a shelf received needle stick from dirty needle to left mid finger
## 29764 EE reaching towels in the janitor closet & picked up to many in a hurry & the weight shifted & shoulder was injured.
## 29765 EE reaching under bottom floor burnisher putting on a pad and pricked his finger on a sharp object. Pricked rt middle finger.
## 29766 EE reaching under counter for stationery injury lower back
## 29767 EE reaching up to get a jug off the fire box extinguisher and it fell hitting EE on left wrist.
## 29768 EE reacted to spilled paint by turning head to theright to look for paper towels, strained muscle on left side of neck.
## 29769 EE reading (distracted) while walking to her desk, ran into the file cabinet drawer, contusion to right knee, lower leg
## 29770 EE reading mars in main medical, turned around, felt lightheaded and fell to the floor.
## 29771 EE reading paper while walking down stairs. Laceration right side top of head, strained upper back
## 29772 EE reaggravated a back strain by carrying, lifting, and moving rotten wood
## 29773 EE rear ended a van in front of her and made everyeffort to stop.
## 29774 EE rear-ended by another vehicle EE not at fault in crash
## 29775 EE rearended a slowed or stopped vehicle and sprained left wrist
## 29776 EE rearended another vehicle that stopped suddenly
## 29777 EE rearended by an oncoming car while he was parked.. Neck, back and blood in his stool
## 29778 EE rearranging office and stepped on something that flew up and hit her in the left eye.
## 29779 EE reassembling parts to metal rotator/shaker. Cut hand on top metal plate
## 29780 EE reassemblying soccer goals and moving goals when goals on top fell over and hit EE on head.
## 29781 EE rec'd a tick bite on 6. 23 & today 6. 26 the areawhere the tick was removed seems to be infected
## 29782 EE rec'd chemical burn while working inside burnedbuilding conducting fire investigation. Acid fumes& gas seepage inside gloves caused burn to hands.
## 29783 EE rec'd company truck license plate number - raising hood felt pulling lower part of back.
## 29784 EE rec'd flu vaccine and states that he got a headache that lasted until the next day ()
## 29785 EE rec'd flu vaccine, within minutes EE began itching all over ()
## 29786 EE rec'd two vaccines fm EE health as she was a new hire, had reaction to vaccines ()
## 29787 EE recalled brushing against foliage while entering inspection site. EE states bitten by an insect.
## 29788 EE recalls placing a client in restaints and noticed her shoulder was painful
## 29789 EE recd a needle stick to the rt hand while drawing blood
## 29790 EE recd a positive skin test for TB after being incontact with a EE carrying the disease.
## 29791 EE recd an insect bite to the lt forearm
## 29792 EE receive 2nd series of hep b vaccine-left arm swollen.
## 29793 EE received 4 tick bites while checking bank fishing at the haw river ()
## 29794 EE received TB test on 4/17 and arm is red and itching
## 29795 EE received a (insect) bite when digging in (pile) of clothes ()
## 29796 EE received a blood clot in left leg because of standing a prolonged period of time directing traffic
## 29797 EE received a bruise to her rt forearm
## 29798 EE received a burst of pepper spray in his face while helping subdue an aggressive inmate.
## 29799 EE received a chemical splash in eye
## 29800 EE received a cut on lt ring finger while trying to guide a helicopter
## 29801 EE received a cut to her lt index finger while pruning suckers out of crape
## 29802 EE received a cut to her rt index finger while replacing a padlock on a latch
## 29803 EE received a cut to lt knee while stepping acrossductwork
## 29804 EE received a flue shot October 1996, left arm continues to swell and is now painful at times.
## 29805 EE received a gunshot to the head **********fatality***********************
## 29806 EE received a hep b shot and was leaving to go home when she walked across floor. She slipped andfell twice using her right arm to break fall
## 29807 EE received a large splinter under his finger nail by grabbing onto to the lifeguard stand to prevent self from falling.
## 29808 EE received a needle stick to her lt middle fingerwhile drawing blood
## 29809 EE received a needle stick while conducting a routine search on inmate
## 29810 EE received a new keyboard and hand started to tingling a few weeks afterwards.
## 29811 EE received a puncture wound on 5th finger during a removal of a cyst removal.
## 29812 EE received a scratch to his lt hand while assisting with an agressive inmate
## 29813 EE received a severe cut to his right index fingerwhile installing an alarm system
## 29814 EE received a shock to left hand when unplugging projector from electrical outlet
## 29815 EE received a splinter metal from door in lt thumb
## 29816 EE received a tick bite on buttock.
## 29817 EE received an abrasion on his lt elbow deliveringa foal. 9 days later the abrasion became swollen &looked infected
## 29818 EE received an electrical shock
## 29819 EE received annual ppd and received a positive result.
## 29820 EE received bad sprain to rt foot & ankle area
## 29821 EE received cat bite on left forearm after trying to handle cat in cage
## 29822 EE received cut to left from broken glass
## 29823 EE received cuts to leg from broken glass.
## 29824 EE received direct hit of pepper spray to the eyesduring self defense training.
## 29825 EE received first degree burns to the palm of her hands while trying to get coffee from a dispenser
## 29826 EE received hepatitis b shot and EE had numbness and tingling in lt arm
## 29827 EE received injury to rt arm causing scarring
## 29828 EE received laceration on left wrist from wrist- watch during an alercation with a driver of a vehicler
## 29829 EE received multiple bee stings... Head, back, shoulder, and torso
## 29830 EE received multiple injuries from head on collision **subro-atlantic securities**
## 29831 EE received multiple scratches from patient that had become agressive
## 29832 EE received multiple tick bites over several days while working with ground crews on wildfire in thedismal swamp. Experienced severe headaches & fever
## 29833 EE received new uniforms a few months ago, this iswhen the rash started on his thighs between his legs
## 29834 EE received numerous tick bites during spring and summer while working foot patrol. 100+ tick bites all over body. 8/09 EE started having joint pain. Entered doi as 6/1/09 however exact date is unknown. ()
## 29835 EE received punch to face by inmate while EE was participating in use of force
## 29836 EE received rabies vacinnations and had reaction from them.
## 29837 EE received scratch to left wrist putting a patient in seclusion
## 29838 EE received scratches & bent glasses after being grabbed by the neck & forehead by a patient that was running out of the room.
## 29839 EE received splinter in right hand while planing an oak board
## 29840 EE received tdap 0. 5ml injection in left deltoid on 2/21/2014, EE developed left arm pain, edema and heat on 2/25/2014 ()
## 29841 EE received to tick bites while patroling hunting area; buttock and groin area
## 29842 EE received welders arc burn to eyes while workingin shop adjacent to welding activity
## 29843 EE receiving merchanise and reached under cart and hit left thumb
## 29844 EE receiving new stock box that had a staple in itstaple went into EE's left index finger
## 29845 EE receiving sample from cooler - her face was exposed to unknown concentrated vapors.
## 29846 EE recently began complaining that she was having numbness in her fingers and hands and tingling sensations that went up her arms.
## 29847 EE recevied a blow to his lt side area while training for law enforcement
## 29848 EE recieved a flash burn while welding
## 29849 EE recieved a needlestick during a liver biopsy ofa patient with hepatitis c. Right finger.
## 29850 EE recieved a tick bite on the right side of torso under right arm.
## 29851 EE recieved a tick bite to the upper right hamstring when working in the field
## 29852 EE recieved injury to left hand during an alterca-tion which occured as he was trying to arrest a subject.
## 29853 EE recieved multiple injuries when a patient kick-ed and scratched. Also staff was in pursuit of patient, staff fell to ground.
## 29854 EE recieved scratches on both forearms from inmatekicking while applying full restraints scratches on both forearms
## 29855 EE recieved scratches to the face and hands duringan attempt to restrain an inmate.
## 29856 EE reconstructing furniture disassembled due to painting of dorm rooms-bed frame hit EE on left big toe
## 29857 EE redirected client; client struck EE in right eye scratching eye. ()
## 29858 EE redirected patient who became assaultive and kicked patient in the chest
## 29859 EE redirecting a student when the student began fighting EE striking EE under rt eye with his elbow. Contusion rt eye.
## 29860 EE redirecting cleint to another area-clients behavior escalated requiring 3-5 staff to contain client.
## 29861 EE redirecting client from turning trashcan over and injured rt hand
## 29862 EE redirecting client to another direction, EE tripped over clients foot and fell on left knee
## 29863 EE redirecting client to stop tearing his shirt, EE walk toward client, client's knee hit EE on thert knee
## 29864 EE redirecting client when cleint became physically aggressive and kicked EE in stomach.
## 29865 EE redirecting client who then grabbed EE around neck/shoulder/and back area.
## 29866 EE redirecting client-client grabbed EE rt hand & bent rt ring finger back. Sprain rt ring finger
## 29867 EE redirecting client-client spit in face, hittingwith fist, struck rt thumb.
## 29868 EE redirecting client-client struck EE on rt side of face.
## 29869 EE redirecting pt out of another pt's bedroom, pt became agitated, bent EE's left wrist backwards ()
## 29870 EE redirecting resident back to his work, residentbecame agressive and attacked EE, scratches to right side of face, right arm and neck
## 29871 EE redirecting resident to room, resident & staff fell to floor & staffs rt ankle began to hurt.
## 29872 EE redirecting/intervention with client; client ranout of room; EE stood to go after; turned to the right and right knee popped.
## 29873 EE redirecting{client from hitting another client}client hit EE in upper lt back
## 29874 EE regularly lifts assistive devices for the hard of hearing. These weigh approx 20+lbs & she costantly has to lift these from tables & also in &... ..
## 29875 EE reinjured her back....... Left hip down to left knee
## 29876 EE reinjured her left ankle.
## 29877 EE reinjured his back by lifting pipe out of the mud and by walking in deep mud. Prev. Inj 12/02
## 29878 EE reinjured his neck during defense training
## 29879 EE reinjured his right wrist while pressure was being applied. EE broke wrist and surgery in 1992.
## 29880 EE reinjured shoulder while trying to restrian as aggressive patient.
## 29881 EE reinjured wrist doing data entry
## 29882 EE reinjury previous injury bt sitting in a workshop communication workshop for 1 1/2 days.
## 29883 EE reinjuryed lt. Wrist putting in a a/c unit in the window of a dorm room.
## 29884 EE related she lost her balance fell forward & struck her head on door. Bruise lt upper side of hand.
## 29885 EE related that he was opening a gate to let transportation vehicle in when sand or metal blew into his lt eye
## 29886 EE released brakes while in drive position, the truck started rolling, EE ran to stop truck and heard popping sound in right knee.
## 29887 EE releasing surplus furniture from trailer and struck left toe against furniture.
## 29888 EE relieved from his duties on the control tower at that time while he was going dowm the spiral stair case his feet slipped off and fell down
## 29889 EE relocating tooth selector guide boxes to new area & boxes fell over & hit rt ankle bone
## 29890 EE remembered feeling pain in lower back while constructing fire line with council rake
## 29891 EE removed 1 piece of 2 inch pvc pipe from rack, turned and felt burning pain between shoulder. Cervical strian.
## 29892 EE removed a commercial grade heater from a state truck and he began to drag the heater across the parking lot, he felt something pull in his back. ()
## 29893 EE removed a leaking bucket and helped clean up spill. Stated he had no injury and no problems with smell.
## 29894 EE removed a pump & set it on an air handler. He bent over & the pump fell on his head, causing a scalp laceration.
## 29895 EE removed bottle of bleach from the truck, slipped out of hand & fell to the ground splashingup into face, irritation to both eyes.
## 29896 EE removed cap from steam line and hot water burned hand and arm
## 29897 EE removed carbons at decollatro machine & bent down to pick up carbons & collated work-(12 lbs. ) and felt her back pop.
## 29898 EE removed floor drain cover because fluids were not draining. He forgot to replace cover, stuck his left foot in the hot water & burned it.
## 29899 EE removed full file cabinet drawer from cabinet and pulled muscle and strain neck.
## 29900 EE removed goggles to clean while in area of flying objects. Before he had a chance to replace goggles he was hit by ore sample
## 29901 EE removed handcuffs from dispuptive inmate & realized that blood was present. EE does not feel directly exposed. Possible blood exposure.
## 29902 EE removed handcuffs from disruptive inmate he assumed control of cuffs & shortly after noticed blood on them. EE not sure if exposed to pathogens
## 29903 EE removed heavy trash from can and picked up bag with heavy trash in it. Strain to back
## 29904 EE removed her gloves to wipe her face; poison ivy
## 29905 EE removed his gloves & continued working on pump when a flying part cut his hand
## 29906 EE removed latex gloves and rubbed his rt eye before washing the glove powder off
## 29907 EE removed metal cover from electrical panel and turned to set cover against wall and felt a p ull in lower back.
## 29908 EE removed picture off of inmates locker and laid on bed, inmate replaced it on ledge with razor bladhidden behind picture, EE cut 3rd right finger.
## 29909 EE removed plastic which contained the electric razor was laying on top of box which fell and hit EE on forearm. Rt side of forearm slight hematoma.
## 29910 EE removed plug from g-tube and gastric secretionssplashed out before EE pinched tube closed wehnt into eyes
## 29911 EE removed rock from bank. Rock fell and rolled over his foot. Severe bruising
## 29912 EE removed safety goggles due to fogging from perspiration. Small piece of styrofoam fell into eyes. Swelling and irritation to left eye
## 29913 EE removing a ceiling tile to adjust a/c box and dirt fell into left eye.
## 29914 EE removing a lancet and stuck rt side of thumb
## 29915 EE removing a lead acid battery from a ups, battery suddenly release & fell onto EE's ankles
## 29916 EE removing a paper towel from holder --- holder came down hitting EE across the bridge of nose
## 29917 EE removing a piece of metal from the scrap metal bin and ctu rt hand.
## 29918 EE removing a staple and poked rt hand
## 29919 EE removing a tool holder frm metal machine and struck another tool and cut finger.
## 29920 EE removing a wheel from boat trailer strain caused a pop in right shoulder
## 29921 EE removing boat from trailer-squatting down several times-noticed when walking later that right knee had pain & swelling
## 29922 EE removing briefcase from trunk of veh and turnedand injured lower back.
## 29923 EE removing cages from rack and slipped on animal bedding on the floor and fell on shoulder.
## 29924 EE removing can from bottom of sills entry door began pushing door to release can and his left ring finger slammed between door and wall
## 29925 EE removing cart of 6' table-support bar gave way and table fell on EE's rt foot/toe.
## 29926 EE removing catheter from horse-horse moved causedee to cut left hand
## 29927 EE removing ceiling tile whe derbis fell into left eye
## 29928 EE removing client's shoes-client kicked EE in rt jaw and neck.
## 29929 EE removing clients from fie area and injured back
## 29930 EE removing concrete from jobsite and stepped on a nail in a box through rt foot
## 29931 EE removing copier toner from trash-copier toner blew into face and eyes.
## 29932 EE removing copy from die EE cut right hand on corner of blade in die cutting room
## 29933 EE removing decal from patrol car with razor bladeplaced blade in mouth-pulled back on decal and hand slipped-ht blade cutting knuckle.
## 29934 EE removing downed power line from under log, whenline slipped from under the downed timber causing him to fall across another log.
## 29935 EE removing forks frm forklift-bent down to removelocking pins and struck head on forks.
## 29936 EE removing gelatin mold from container and stuck finger on needle that was holding heart in positi-on. Needle stick to right index finger
## 29937 EE removing gilt from swine cage-animal became excited & ran toward EE-EE's right hand became caught between animal and gate
## 29938 EE removing glue stuck to a bottle with a razor, blade slipped out of hand throuh bottle & cut lt thumb
## 29939 EE removing ground growth from firing range and came in contact with poison ivy-rash on both arms and around eyes
## 29940 EE removing hazardous debris from campsites; EE picked up a 10 inch by 6 foot log and tossed into woods. After tossing, he felt sharp pain in his upper right hip and not lift right leg due to pain ()
## 29941 EE removing heavy boxes from x-ray machine. Injured right lower side in frontal area
## 29942 EE removing heavy fire debris from fire scene whenhe pulled a ligament in his wrist while lifting debris
## 29943 EE removing helium tank to another location; tank slipped out of hands onto left third finger. ()
## 29944 EE removing hostile inmate from cell throwing urine at staff from cups in cell EE struck on left side of body and left eye. Exposure to urine
## 29945 EE removing hot food pan, perparing for lunch. Lt hand index finger tip of finger
## 29946 EE removing hot soup from microwave when some spilled on both hands
## 29947 EE removing hot vents from front of dish machine when hot steam scalded both arms
## 29948 EE removing inmate from cell by handcuffing & shackling, place inmate on strectcher, EE arm contact with inmates bloody neck & shoulder.
## 29949 EE removing inmate from cell, inmate violent, resisted being put in restraints by fighting, fellon top of EE and rolled down stairs.
## 29950 EE removing inmate from cell. Placed shield againstinmate, rt thumb bent back. Inmate fell against himsruck head against wall. Pain in neck, rt thumb.
## 29951 EE removing internal compound of computer. Appliedforce, component sprang free & sharp edge cut lefthand when it came free.
## 29952 EE removing internal organs from a body, holding organs in l hand and cutting adhessions w/scissorsin r hand, scissors slipped, cut inside l forearm
## 29953 EE removing items from storage that are above her head-item fell and hit EE in the head then fell toward wall and hit head again.
## 29954 EE removing leg restraints from inmate-inmate struck EE's left side of face
## 29955 EE removing light lens cover when glass lens shifted cutting right thumb
## 29956 EE removing manhole cover while repairing sewerline and manhole cover bruised finger.
## 29957 EE removing misfed paper from copier, accidently touched hot barrell, reaction caused her to strikelt hand on top of machine
## 29958 EE removing oil plug from a/c unit, putty knife slipped, cut right thumb on metal casing
## 29959 EE removing paint can from under sink and cut left index finger
## 29960 EE removing pan of onions from steamer, hot water spilled hitting EE left foot. Burn to left foot
## 29961 EE removing paneling and board popped loose makingee lose balance and twist back.
## 29962 EE removing paper from drain-and cut finger on rt hand on a piece of glass
## 29963 EE removing papers and in the process knocked overa flask of hci-upon impact stopper flew off and a splash of acid went into rt eye
## 29964 EE removing papers from file and cut finger on metal prong.
## 29965 EE removing papers from jammed paper shredder and got cut on rt hand.
## 29966 EE removing pieces of glass from broken mirrow frame when another piece fell from top of frame causing cut on left hand pinkey finger
## 29967 EE removing plug from water heater, plug released under pressure, spraying the EE. EE twisted suddenly and injured his upper back.
## 29968 EE removing pukmp and motor from tank-hot water thrown onto EE's legs
## 29969 EE removing pvc pipe from cut-off saw nicked right pinkie finger
## 29970 EE removing restrains from inmate when inmate assaulted EE by clawing lt cheek after inmate had assaulted another office with fist & radio
## 29971 EE removing restraints from inmate when inmate assaulted EE by striking him w/fist & a radio- inmate also assaulted another officer during this.
## 29972 EE removing shield from equip for modification anddropped on rt toe
## 29973 EE removing side panel from 30 ton ac condensor when the panel fell on EE's left foot.
## 29974 EE removing snow from sidewalk pulled back
## 29975 EE removing specimen tube from plastic bag when top of tube came off. Splashing some serum of rt side of face. Hiv serum rt side of face.
## 29976 EE removing spine from hook using a roller scolp. Injured index finger lt hand near nail bed.
## 29977 EE removing staple from document that went into rt hand.
## 29978 EE removing syringe from patient's mouth followinginjectin of local anesthesia he stuck himself on his lt glove. Finger prick.
## 29979 EE removing tables and chairs from dining room to wax floor and felt numbness in rt arm and fingers
## 29980 EE removing tools from metal tool box cutting right arm just above wrist
## 29981 EE removing trash bag from cell and other EE workicontrol rm accidentaly closed cell door, rt hand
## 29982 EE removing trash bag from container & while attempting to close top was stuck in left thumb by needle
## 29983 EE removing trash from lawn when he stepped into a hold and twisted his ankle
## 29984 EE removing trash when he bumped head on the stairwell
## 29985 EE removing tv from viewing table-strape pulled tvfrom hands and impact threw EE to the floor injuring both shoulders and upper back.
## 29986 EE removing wash down plug that flipped in eye
## 29987 EE removing wheelchair from crowded closet-- wheelchair stuck and EE pulled hurting back.
## 29988 EE removing wintering tarp from aquatic rehab. Facility when board when removed snapped back & caught finger on nail. Cut ring finger lt hand.
## 29989 EE remvong sting ray from net-and ray jabbed spineinto rt index finger
## 29990 EE rendering care to inmate with rash
## 29991 EE rendering care to seriously ill patient when patient cough blood to face and eyes.
## 29992 EE rendering care to seriously ill patient when patient coughed blood in face and eyes.
## 29993 EE repairing animal cage which rolled and struck inside of left knee cap
## 29994 EE repairing decking area at jockey's ridge state park, lost footing walking across unfinshed deck fell thru injurying left ankle, knee, & wrist
## 29995 EE repairing fence hand slipped causing puncture wound. Treated wound himself and received tetanus injured small finger of right hand
## 29996 EE repairing garbage trk-removed side runner and jumped from trk injuring left knee
## 29997 EE repairing sewing machine, foot and hand slipped causing left index finger to be punctured
## 29998 EE repairing sheet metal shear cylinder was extended and retracted suddenly traping left hand and fingers
## 29999 EE repairing steam leak-stood up and hit head.
## 30000 EE repairing water leak-went into mech room to turn water off tripped and fell - spraining rt ankle, abrasion to left knee and rt wrist
## 30001 EE repairing water line in crawl space when an insect bit his lt hand causing it to swell & itch
## 30002 EE repairing wtr heater in apt-cut off lines to wtr-when cutting copper line hot wtr in line splashed on EE's forehead.
## 30003 EE repariring north star dgps and accidentally burned left lower arm on hot soldering iron.
## 30004 EE repeatedly answering phone and sliding glass window back & forth beyond normal reach
## 30005 EE repeatedly hit rt hand and wrist on back of refrigerator while unplugging refrigerator due to noise of compressor ()
## 30006 EE replaced 3 batteries in a burnishing machine. The next morning, he was home, kneeling down to tie his shoe, felt tearing, burning pain in low back
## 30007 EE replacing batteries in timer & battery acid squirt in ees eyes - left eye & corner of rt eye
## 30008 EE replacing blade in window scraper & hand slipped while replacing protective cover on blade.
## 30009 EE replacing bulbs in hall-when co-wkr dropped a bulp and EE jumped out of way hitting her back on a concrete column.
## 30010 EE replacing dryer belt, caught finger between top and back. Cut middle finger lt hand.
## 30011 EE replacing floor tile felt pain in lower back.
## 30012 EE replacing handle of bush ax - wrench slipped cut rt hand index finger.
## 30013 EE replacing irrigation box lid when finger got caught between box and lid.
## 30014 EE replacing lamp socket and hand slipped on covercutting left index finger
## 30015 EE replacing overhead screen-standing on table andtable tilted and EE fell hitting shin on desk.
## 30016 EE replacing part on hospital bed when the headborad fell on EE's head.
## 30017 EE replacing pin in backhoe bucket when a sliver of metal (1/4"x1/8") broke off & impaled lt wrist/arm area
## 30018 EE replacing the electrical panel cover when it fell to the floor stricking EE on top of left foot
## 30019 EE repord having witnessed a resident have a toileting accident, and staff intervening w/o use of gloves, resident is an active hep b carrier
## 30020 EE reporst she was lifting a fire extinguisher from the back of a delivery truck the card board handle tore loose anf the fire extingusiher fell
## 30021 EE report helping get inmates out of single cell due to fire smoke inhalation
## 30022 EE report pain in extremities and back after work-ing an extended shift, lifting of clients, bathing, etc.
## 30023 EE reported 7/24/08 that she did not know when sheinjured her left shoulder. She has only been work ing full time in warewash area since 7/15/08.
## 30024 EE reported 9/15/08 that she had seen orthopaedic & was told she had "trigger thumb". No report of injury. Employee has secondary employment.
## 30025 EE reported a patient threw a book and hit her in the eye ()
## 30026 EE reported a possible over strain in abdominal area after lifting several residents during toileting and meal time.
## 30027 EE reported a rash on her chest
## 30028 EE reported after giving inmate an injection, she dropped the syringe on the floor. She bent to pickit up and stuck the needle in her left thumb.
## 30029 EE reported back & right side popped when she tried to assist a patient to sit up in bed.
## 30030 EE reported conjunctitvitis in the eyes.
## 30031 EE reported during his perimeter check of center EE was at the back of kitchem attempting to turn around on sidewalk to pick up rake, EE right foot
## 30032 EE reported for duty, checked out keys, proceeded to open gallery, turned equip. On & entered dark gallery & fell onto bench - chest/hand.
## 30033 EE reported having pain in thumb, wrist and arm
## 30034 EE reported having pain in wrist.
## 30035 EE reported having problems breathing due to a reaction to his medication.
## 30036 EE reported he had swelling and bites on his hand he was examined by nurse
## 30037 EE reported he was crossing a creek and lost his balance falling on his left shoulder
## 30038 EE reported he was going to pick up dorm type refrigerator & set it outside to defrost. When he lifted it he felt something pop in rt shoulder
## 30039 EE reported he was going to unlock doors on unit van and while walking around van. EE slipped on ice and injured ankle.
## 30040 EE reported he was lifting bags under the bus compartment & felt a pulling behind his neck/shoulder area with sharp pain
## 30041 EE reported he was making a home visit on an offender and was bitten by 2 unchained dogs--bleeding on rt calf, lft forearm req. 2 stitches and shots
## 30042 EE reported he was patroling wing in f-dorm, inmatehas a seizure, he used his knee to hold inmate down, this caused aggrevation of old military inj.
## 30043 EE reported he was sitting in a chair when the cylinder dropped down without notice causing EE tohit his right knee against the deck.
## 30044 EE reported he was swinging a sledge hammer to drive a board into the ground when he felt his gack go out.
## 30045 EE reported he was wiping his face off with a paper towel and the corner of it struck him in hisright eye.
## 30046 EE reported he was working on the 2nd floor supervising inmates, when inmate leon ponder assaulted him by striking him in the face.
## 30047 EE reported headache, dizziness, blurry vision and felling bad
## 30048 EE reported inamte threw a bar of soap & hit him in the foot. Rt foot above smallest toe.
## 30049 EE reported increased tingling numbness and pain in rt hand
## 30050 EE reported injuring his wrist and complained of being overheated during the kneeling exercise of annual in-service pistol training
## 30051 EE reported injury occured when lifting sample container containing water and ice.
## 30052 EE reported inmate sprayed me with pepper spray in the face and was struck several times in the face and head area by inmate
## 30053 EE reported inmate sprayed pepper spray injuried rt shoulder also getting inmate under control
## 30054 EE reported inmate walked over to her and slapped her on the left side of face.
## 30055 EE reported itching when she came to wrk the last 2 days
## 30056 EE reported leaving office down stairs. Icy con- ditions. Slipped and fell down stairs breaking l leg in 2 places.
## 30057 EE reported lifting of clients and could not get out of bed the next morning.
## 30058 EE reported numbness and tingly feeling in hands stated she felt it was from doing her job duties in the food service section of cherry
## 30059 EE reported on 10/29/95 he was making schedule curfew checks. EE was at intersection. Had green light& 81 pontiac ran light turning left. *see log notes
## 30060 EE reported pain in left shoulder after working all day with cart that was difficult to maneuver. ()
## 30061 EE reported pain in lower l abdominal area, not sure if work related, possible hernia, pain in lowerleft abdominal are
## 30062 EE reported pain in upper arm after a multi-day, research dive
## 30063 EE reported pain, tenderness and swelling in the right arm.
## 30064 EE reported patient took off his helmet and threw it and EE lifted hand/arm up to block hit. ()
## 30065 EE reported rt hand/wrist was hurting
## 30066 EE reported she had pain in low and middle back and had difficulty walking.
## 30067 EE reported she recieved an injury to her right arm as a result of firing the shotgun.
## 30068 EE reported she was attempting to remove the shankfrom the inmate's hand, her left hand was scratched and left hand index finger was punctured.
## 30069 EE reported she was bit by a bug on her left arm. Did not see a bug. Now has red rash over her arms, legs, feet and face.
## 30070 EE reported she was called to another building and while walking to the building, she slipped a fell due to wet clay. ()
## 30071 EE reported she was having trouble breating due tofumes from the floor being waxed. Another EE was taking EE home but due to breathing took EE to er
## 30072 EE reported she was leaving residnece during storm& ducked to Miss A hanging wire & caught foot between 2 pieces of tin lying on ground. She fell
## 30073 EE reported she was not for sure how injury occured she was attending unarmed self defense training
## 30074 EE reported she was pushing a patient in wheel chair and back snapped and begun hurting ()
## 30075 EE reported she was using the leg press machine when the pin fell out of the weights causing the wt to fall off resulting in the peddle bouncing. ..
## 30076 EE reported slipping & falling in the parking lot walking from car to building fell on ice
## 30077 EE reported some tingling in fingers. Work stationwas changed and EE still has some pain and dis- comfort.
## 30078 EE reported that a spider had bitten her on her lt elbow
## 30079 EE reported that after exiting the dorm his rt foot slipped out from under him and he fell down onto steps, landing on lft elbow/shoulder-bruised
## 30080 EE reported that after she got home she felt pain & stiffness in her upper back and shoulder.
## 30081 EE reported that all four fingers except the pinkie on her right hand are numb and that she experiences tingling sensations throughout the day. ()
## 30082 EE reported that as she attempted to open an inmates cell that the inmate opened the door at the same time hitting the EE fingers
## 30083 EE reported that as walking around the tower catwalk and tripped on the edge of the building and fell sideways
## 30084 EE reported that at about 12:40 am while conducting security check of state vehicles she slipped on a patch of ice in the parking lot
## 30085 EE reported that firing the shotgun, aggravated a per existing condition of tenderitis in his right shoulder.
## 30086 EE reported that he alledgdly caught his index finger in the cell dorr of 1f-18 as it was closing.
## 30087 EE reported that he had some object in his rt eye
## 30088 EE reported that he injuried his back while using the weed eater
## 30089 EE reported that he opened the door to the sergeants office and it struck him on his left eyebrow
## 30090 EE reported that he struck his right knee on a table when he entered the visitation area for line up.
## 30091 EE reported that he was attempting to arrest parolee during a foot chase. EE fell thru bushing onto parking lot causing him to scrape his hand.
## 30092 EE reported that he was carrying a heavy box of paper when the box caught on something in the trailer & twisted his arm severely.
## 30093 EE reported that he was closing tailgate of truck at loading dock & fell about 6 feet to concrete pulled ligaments to arm, lacerations & knee
## 30094 EE reported that he was doing warm up exercises he felt a pain in his stomach area.
## 30095 EE reported that he was escorting inmate in restricted area when he turned left foot in ditch. Back strain
## 30096 EE reported that he was filing a sling blade when his hand slipped off the file and ran across the blade
## 30097 EE reported that he was going down the staircase in the control room unit when his right foot slipped in step.
## 30098 EE reported that he was involved in a confrontation w/ inmate, recd several abrasions l wrist, r bicep, blood contaimination
## 30099 EE reported that he was involved in a training exercise with cell extraction when the corner of the shield hit his lt wrist and then fell on top
## 30100 EE reported that he was involved in a use of forcewhile trying to restrain an inmate when his wrist was struck.
## 30101 EE reported that he was pushing inmate in a wheel chair when he heard his lt elbow pop
## 30102 EE reported that he was reconducting a yard check on unit four he bent near wire on fence razor wire hit top of his head
## 30103 EE reported that he was trying to break up a fightbetween two inmates when he slipped, he landed on his back on the floor which caused his back pain
## 30104 EE reported that he was using a grinding machine to grind a stainless steel table in the kitchen, machine slipped and went over his finger,
## 30105 EE reported that her back hurt when she left for supper, EE believes her back hurts as a result of lifting a patient
## 30106 EE reported that her hands were swelling and she felt nauseated.
## 30107 EE reported that her rt knee popped and gave out as she was walking stairs-
## 30108 EE reported that his self defense partner put to much weight on his shoulder while kneeling over hisback in a handcuffing position--rt shoulder
## 30109 EE reported that injury occurred while lifting boxes, strain muscles
## 30110 EE reported that inmate david hines walked over toher & slapped her on the left side of her face. While being escorted to his cell from the shower. ..
## 30111 EE reported that patient was having a seizure and was falling and she tried to assist patient from falling she injured her left forearm and wrist ()
## 30112 EE reported that she attempted to pick up paper shreder to move it she felt pain in mid lower part of her back
## 30113 EE reported that she felt pain in her lt knee on 5/19/06 she stated she was unsure how or when she May have been injured
## 30114 EE reported that she had her lt hand positioned on the slider and was not aware that the slider was opening the slider opened and caught her hand
## 30115 EE reported that she had hurt back while lifting a chair early part of the day
## 30116 EE reported that she leaned over to talk to a patient and the patient hit EE in her face(nose) with her hand.
## 30117 EE reported that she pinched the top of her lt hand as she was shutting a desk drawer
## 30118 EE reported that she slipped on floor that was moist.
## 30119 EE reported that she was coming down the stairway in the control room to get something from the canteen when she slipped on the stairway.
## 30120 EE reported that she was going down the side of stairs when her rt shoe caught the hem of her dress she fell down two of the middle steps
## 30121 EE reported that she was having pain in her neck. EE reported to her supervisor
## 30122 EE reported that she was involved in training exercise with cell extraction when she entered into cell while bending down her rt toe was stretched
## 30123 EE reported that she was on her way to court from the probation office when a lady ran a stop sign and hit Miss Long's car causing her to run into fir
## 30124 EE reported that she was returning a state vehicleat the end of a trip to raleigh. She dropped some paper and when she bent down to pick them up she..
## 30125 EE reported that she was searching the drop ceiling in a dorm dayroom for contraband when she moved a panel fiberglass dust dropped into her eyes
## 30126 EE reported that spider bit her on rt foot.
## 30127 EE reported that steel rolled over from wgt of steel and hit wrist--contusion lft arm at wrist
## 30128 EE reported that the lock to her office was difficult to open. While attempting to unlock the door the key broke off in lock, she felt pain in chest
## 30129 EE reported that transporting an inmate to clinic a vehicle stopped immediately in front of him causing him to collide in the rear of that vehicle
## 30130 EE reported that upon returning to her work area she opened the tx door and reached to turn on the light. She slipped in a slppery liqiud on floor
## 30131 EE reported that when staff entered the sergeant'soffice with inmate, staff and inmate fell on EE's right chest.
## 30132 EE reported that while conducting routine cell block check, an inmate threw liquid in both eyes. (liquid believed to be bleach)
## 30133 EE reported that while in route to dot shed; a ?? Flew up from another vehicle that was in front of him, hit drivers side window, cracked it,
## 30134 EE reported that while participating in pert basiche twisted his knee conducting a bldg search-inj occurred while searching closet on lower level
## 30135 EE reported that while serving food he strained his back by picking up a large container of milk & juice.
## 30136 EE reported that while she was entering the front door of the dormitory she caught her left thumb between the screen door.
## 30137 EE reported that while sonducting unarmed self- defense training he injured his upper back.
## 30138 EE reported that while stopped at a red light in marion, he was struck in the rear by another vehicle.
## 30139 EE reported that while supervising the kitchen 220 door, she felt a pain in her finger tips and wrist of her right arm.
## 30140 EE reported that while walking around one side of the trailer, his l knee struck the bracket which holds the brake lights for the trailer.
## 30141 EE reported that while walking down hallway on 2nd floor of dobbs building on way to hearing, slipped on floor and fell hitting hands and knees
## 30142 EE reported that while walking to his assigned post in j blocks, he attempted to stop and turn to his left and his right foot slipped causing him to..
## 30143 EE reported tht he was supervising inmates spreading mulch when a gust of wind blew some mulch into his rt eye
## 30144 EE reported to blue light when he was exposed to smoke and fumes of burning mattress. Smoke inhalation
## 30145 EE reported to flooded area and slipped on bottom step and fell.
## 30146 EE reported to her supervisor in Nov/Dec 2003 thatshe was having pain on left side of neck and shoulder from daily use of computers
## 30147 EE reported to medical with open area 1/2 inch from left eye ()
## 30148 EE reported to supervisor on 4/28/00 she had been out of work and the Dr Told her she had carpal tunnel syndrome
## 30149 EE reported to work 11:00pm & at 12:00am she went to her car to get some items & fell on uneven pavement hitting her head.
## 30150 EE reported to work w/red eye syndrome.
## 30151 EE reported to work, reported her rt hand was not functioning, trouble moving fingers.
## 30152 EE reported whe was exiting the bathroom when she tripped on the wooden threshold of the bathroom resulting in her falling. Landing on right side/hip
## 30153 EE reported while assisting with placing patient in cpi, patient twisted her arm causing injury ()
## 30154 EE reported while breaking up a fight, inmate hit him in the chest area. EE further stated that he was struck in the hand while blocking punch.
## 30155 EE reported while climbing onto the truck for a security check, he bumped his shin on the floor of the truck
## 30156 EE reported while enroute for modular check he was walking on the sidewalk his rt foot stepped over the edge causing him to twist his ankle
## 30157 EE reported while placing a inmate into cell he was assaulted by the inmate
## 30158 EE reported while sitting in a chair in 3rd floor nurses taking report, a chart fell off the top of a 6 foot patient chart rack hitting her head/neck.
## 30159 EE reported while trying to restrain an inmate, hestruck his left arm between the elbow and shoulderon the steel bars of the security cage.
## 30160 EE reported while unlocking the lock on the central door of the warehouse at the central cantee for central canteen operator he bumped his hand on. ..
## 30161 EE reported wrist and hand pain, but didn't know the cause.
## 30162 EE reported: transporting project from another office to the office of the assistant secretary and fell on wet floor. Injury to back
## 30163 EE reportedly has a sore rt ankle unsure of how orwhen it was injured
## 30164 EE reporting for work and while exiting his vehicle he was stung on rt thumb by a bee
## 30165 EE reporting for work duty and slipped on a rock on the steps and sprained rt ankle.
## 30166 EE reporting to 5-4 acute when stepped off ramp & fell
## 30167 EE reporting to shift duty. EE slipped on ice walking through sallport front gate. He fell on left side, hurt left knee, ankle, and wrist.
## 30168 EE reporting to work and slipped and fell on wax floor injuring head, hip and buttock.
## 30169 EE reporting to work when client pulled EE in another direction causing pain in lower stomach and lower back.
## 30170 EE reporting to work when he stepped on suffle- board disk causing EE feet to slide, pulling or straining back.
## 30171 EE reporting to work-tripped over chair on porch hitting rt knee.
## 30172 EE reports a 3" diameter hard, red, raised area in left axillary region; draining thick red/green drainage; painful.
## 30173 EE reports a bite to the top of her left foot.
## 30174 EE reports a muscle became very tight or stiff in lower left back after doing a seclustion restrainton a patient. Lumbar strain.
## 30175 EE reports and insect bite to stomach
## 30176 EE reports another EE walked up to her and she pushed him away with both hands, exchanged words hit her in the face. Soft tissue injury to nose.
## 30177 EE reports back pain that May be a result of patient care required by job discription. (lifting and assisting).
## 30178 EE reports bending over while seated in her chair to pick up a pen off floor when her back locked upfelt pain in low back
## 30179 EE reports bumping right elbow and right knee while restraining agressive patient.
## 30180 EE reports diagnosis of epicondylitis
## 30181 EE reports dizziness, headaches, nausea form fumes
## 30182 EE reports due to repetitive hand motion with key-board and typewriter she developed tendinitis in her right hand.
## 30183 EE reports during a use of force with an inmate inmate struck him in the chest with his fist
## 30184 EE reports during use of force with an inmate inmae bit him on the lower front portion of forearm
## 30185 EE reports feeling overheated while fighting fire ** this is a federal EE - not employed with denr**
## 30186 EE reports gradual pain in upper right arm/shouldrafter participating in an educational conference relaxation exercises.
## 30187 EE reports having an embedded tick on body which is said to have produced lyme disease ** nurse cm -tina richardson 252-714-8959 **
## 30188 EE reports having shortness of breath and severe headaches
## 30189 EE reports he had a tightness in lower abdomen during baton training.
## 30190 EE reports he picked up on some dirty laundry to place in clothes cart after picking up the clothes he observed red spots on both his forearms
## 30191 EE reports he slipped on wet food on the floor.
## 30192 EE reports he was bitten by some insect while working in shop area. Insect bite to neck area.
## 30193 EE reports he was decending stairs in the west wing of upper e unit after completing population count, tripped or slipped & fell down 5 or 6 steps
## 30194 EE reports he was working on a piece of equipment with a pair of pliers and was trying to tighten something with the pliers when they slipped off and he injured his right wrist. He reports it was like something popped in his wrist.
## 30195 EE reports increased pain in rt thumb from using 5 hole punch - pain in on-going and the area is very tender
## 30196 EE reports increased pain in shoulder after lifting patient from floor to wheelchair.
## 30197 EE reports injured rt wrist from repetitively pulling charts
## 30198 EE reports injury occured while he was trying to subdue an inmate
## 30199 EE reports injury to wrist is from the first accdtwith the lt hand and resulting in overuse of the rt hand(wrist). ""do not pay bills on this claim""
## 30200 EE reports lft hand (thumb) started hurting 9-10 days ago. Hurts to move lft thumb. Pain goes up thumb to wrist 3-4 in. From wrist. Tendonitis
## 30201 EE reports lumbar pain after bending to pick up an object.
## 30202 EE reports mental and emotional harassment inimidation being singled out and discrimnated over the last year
## 30203 EE reports multiple health conditions resulting from repetitive nature of data entry & prolonged sitting and standing. ()
## 30204 EE reports of shoulder, neck and back pain from working at workstation.
## 30205 EE reports onset of pain in left wrist after helping to reorganize several books shelves
## 30206 EE reports pain & swellin in right hand & wrist that is worse when opening bottles &/or packages of meds or turning keys in door locks. Sprain r hand.
## 30207 EE reports pain in ears and difficult breathing after ward he works on was painted. Pain in ears & respiratory complaints.
## 30208 EE reports pain in left wrist and thumb after turning on the suction equipment
## 30209 EE reports pain in right forearm and fingers from computer use
## 30210 EE reports pain in right hand and up her arm that began about three weeks ago.
## 30211 EE reports pain in right shoulder as a result of repetitive motion of reaching into isolators. ()
## 30212 EE reports patient twisted wrist back and pulled back on thumb while trying to give him a bath. Sprain right fifth finger
## 30213 EE reports placed hand cuffs on inmate inmate struck me with handcuffs in the neck and rt shoulder area
## 30214 EE reports rash of unknown ortigin on neck at the end of her shift. Possible contact dermatitis
## 30215 EE reports retaliation and harassment from management and supervisor has induced stress and mental anguish.
## 30216 EE reports right leg and groin/buttock strain while using a pole saw at work
## 30217 EE reports she became ill due to exposure while on the firing range for annual inservice qualifications.
## 30218 EE reports she caught shoe string in gero chair w/ feeding a pt and fell on l knee adn buttock
## 30219 EE reports she gave an im of haldol w/ no needle protector cover. She went to drop the needle in biohazard box and it flipped up and struck finger.
## 30220 EE reports she slipped on stairs
## 30221 EE reports she touched an open wound on a patientsarm while doing an evaluation.
## 30222 EE reports she was exposed to MRSA - unknown when or how. ()
## 30223 EE reports she was helping move a juvenile to her room; she had her right leg & another staff had the juv left leg & arm; juv grabbed hold of doorway fram & kicked... EE flew backwards and landed on her back on the floor- did not hit her head.
## 30224 EE reports she was playing basketball w/ student, jumped up and turned her ankle when she came down
## 30225 EE reports something bit her arms.
## 30226 EE reports spider bite on bottom of right leg while cleaning bleachers in gym
## 30227 EE reports that a table fell on his rit foot/toe ()
## 30228 EE reports that he injured his back following lifting a small 2 drawer file cabinet without the assistance of another person. ()
## 30229 EE reports that he instructed inmate to retrun to his cell. Inmate turned around and struck EE in left forearm.
## 30230 EE reports that he was crossing 3rd street when he was struck by a minivan injured left leg/knee. Subro
## 30231 EE reports that he was escorting an inmate back toyard, when another inmated came from behind, tryingto hit inmate being escorted & hit EE on shoulder
## 30232 EE reports that he was moving and unpacking boxes in the store room located in the kitchen ()
## 30233 EE reports that he was restraining an agressive inmate and received a strained tendon to his lt shoulder and a superfical scratch to his rt thumb
## 30234 EE reports that inmate spit in EE's face and her right eye.
## 30235 EE reports that she assigned yard and slipped on wet grass twisting her right knee.
## 30236 EE reports that she is having pain in thigh & hip that she thought occurred during nci on 2-7-07, from sitting up & down during lifts.
## 30237 EE reports that she was walking from the gymnasium back to the kirk building and turned her right ankle because the ground isn't level.
## 30238 EE reports that w/out warning a juvenile struck him with a closed fist on the left side of the face ()
## 30239 EE reports that while delivering personal propertyin inmate in single cell inmate became irrate & threw liquid substance hitting upper body & face
## 30240 EE reports that while he was loading a wheelchair that belonged to a transport inmate at central prison in the back of transport van
## 30241 EE reports that while restraining an inmate on third floor after that he accidentaly hit his rt hand
## 30242 EE reports that while running the bloodhounds, he stepped in a stump hole and fell to the ground, landing on his elbow and causing pain in his shoulder
## 30243 EE reports to supervisor that he was having shoulder pain but couldnot pin point the exact event that caused the pain.
## 30244 EE reports twisting and feeling a sharp pull in upper left arm as she attempted to empty some hevytrash cans unaware someone placed books in it
## 30245 EE repositioned client in chair and later noticed pain in back.
## 30246 EE repositioned client in wheelchair and felt sharp pain in lower arm going up elbow. Rt forearmstrain with mild tendonitis.
## 30247 EE repositioned pt w/ assistnace of another EE when pt's needle dislodged from iv tubing port and struck EE in finger
## 30248 EE repositiong client & felt a pull & pop in rt arm with some tingling in hand & shoulder
## 30249 EE repositioning client in bed noted pain in back
## 30250 EE repositioning client in bed to change-client isspastic-EE noted pain in left shoulder
## 30251 EE repositioning client in wheelchair, w/c came down on left big toe
## 30252 EE repositioning client on bed and felt sharp pain in back
## 30253 EE repositioning client with another EE using a draw sheet. They moved client up in day bed when EE felt a ()
## 30254 EE repositioning client-moved client onto side experienced sharp pain in left wrist.
## 30255 EE repositioning patient in bed & felt stabbing pain in right hip radiating down leg into foot.
## 30256 EE repostioning client in wheelchair, pulling client up and felt something in back pull.
## 30257 EE repostioning pt to assist with administering prn & schedule meds. Pt had several episodes
## 30258 EE repots rash on left side of back & he has been in contact w/MRSA patient. Sat in chair that had pus on it
## 30259 EE reprted that she was walking toward the loadingdock and slipped on the icey surface. EE stated she fell on her lower back and left hip bone.
## 30260 EE requalifying at firing range when shotgun safety jammed jerked caused bad sprain to left wrist
## 30261 EE requested to leave at 11am complaining of nausea. He stated that he had vomited earlier that day.
## 30262 EE required to walk through fields of posion ivy on regular basis-rash on both legs and abdomen.
## 30263 EE res with cold spit in her eye. Herpes simpley
## 30264 EE reset computer alarm, when returning to seat, chair rolled out from under EE causing him to fall on rear end. Mid & lower back.
## 30265 EE resetting the reset button on the paint booth and fell.
## 30266 EE respond to pt-went down to floor on knee pl holly cutler 919-831-1815-**ag's# 03-0284 monthly aww=$3031. 73- tpd not due for 9&10/-2004**
## 30267 EE responded to a call from student complaining about an aggressive bat. Bat flew over officer ()
## 30268 EE responded to a code 5 on uit 1-a block ()
## 30269 EE responded to a code in the dorm area which lead to the hand cuffing of a inmate. When restraining she injured her left upper arm.
## 30270 EE responded to a fight involving inmate & smearedblood on her arm due to contract with inmate. Blood on rt arm.
## 30271 EE responded to a fire, he helped extinguish fire and inhaled some of the smoke. Smoke ventilation of the lungs.
## 30272 EE responded to a physical confrontatin between two inmates inmate threw trash can it hit EE in the back of head
## 30273 EE responded to a report of an usecure door in the comparative medicine divison. While attempting to close doors, EE's left hand was slammed between both doors. ()
## 30274 EE responded to a use of force involving staff. Was breaking up the use of force when inmate bit EE on right leg
## 30275 EE responded to a visitor accident when he came incontact with blood of injured.
## 30276 EE responded to a woods fire caused by hazardous materials-possible respiratory contamination from hazardous materials
## 30277 EE responded to alarm; upon closing access panel on system, the latch failed &the panel forcefully opened & struck EE in face; causing injury
## 30278 EE responded to an escape and attempt by an inmateee states that as he was trying to ? The inmate, the inmate threw a broken stool leg at him(notes)
## 30279 EE responded to an escape attempt by an inmate. Eewas trying to approach inmate & inmate threw a broken stool leg @ EE. Object hit EE in the back.
## 30280 EE responded to call for assistance reference subject fleeing arrest in a motor vehicle. Suspect struck EE's patrol car, inj to neck & upper shoulder.
## 30281 EE responded to cell of inmate with a self-inflicted wound that cause exposure to bloodbourne pathogens on EE arm ()
## 30282 EE responded to disturbance, inmate set cell on fire. Smoke inhalation
## 30283 EE responded to emergency call of smoke or fire inthe street when EE arrived on the scene, steam wascoming out of the ground blowing toward manholes.
## 30284 EE responded to femae restrm where female student has passed out. Student was passed out, while moving the student out of stall, officer strained her back ()
## 30285 EE responded to fight involving 2 inmates, was exposed to blood from inmate injuries
## 30286 EE responded to help call for client-went into room were client had voided on floor-EE slipped and fell reinjuring ham string area.
## 30287 EE responded to industrial fire at unimin plant inspruce pine, breathed in hazardous materials during fire
## 30288 EE responded to inmate fight and exposed to blood
## 30289 EE responded to inmates call after a use of force to examine inmate after oc spray was used. The smell & fumes took ees breath & burned eyes.
## 30290 EE responded to nc memorial hosp to transport a patient to john umstead hosp, EE was exposed to a disease that on site Dr Deemed highly contagious
## 30291 EE responded to scene of accident-while observing accident EE unknowingly stepped on mound of red fire ants-they rapidly covered body stinging EE
## 30292 EE responded to service call for broken down lawnmower & laid down to service lawnmower. Later he noticed bumps all over his body.
## 30293 EE responded to two inmates fighting, when he broke the fight up he got some blood on right forearm and his left hand
## 30294 EE responding for assistance he slid into officersstation door while trying to stop forward motion &struck rt knee on door. Sprain/contusion rt knee
## 30295 EE responding to a call swerved his EE to Miss A veh that entered roadway frm p/lot-EE hit a curb and airborne before landing.
## 30296 EE responding to a code 400 disturbance, he hurt the middle part underneath his right foot when he started up the stairway
## 30297 EE responding to a fight between two inmates-when separating inmates one inmates elbow hit EE in rt eye cheek.
## 30298 EE responding to a fight call on foot at kfc/taco bell in butner. Raining & ground was wet, slipped on pavement & fell. Rt ankle/lt leg & knee/ lt elbow
## 30299 EE responding to a fire in boiler building a pieceof wire stuck through his show and pricked his foot - first aid administered
## 30300 EE responding to a motor veh accident and was exposed to a toxic substance.
## 30301 EE responding to a report of impaired driver bus entered intersection striking EE's vehicle causing contusions lt hand/shin/knee/wrists/neck
## 30302 EE responding to a use of force in 1043 building. At that time he slipped & fell on ice in front of building. Neck, back, rt elbow, lt side groin area
## 30303 EE responding to an emergency call, while running to the area, went up flight of steps, grabbing the rail, stopped the motion of his upper body, twisting
## 30304 EE responding to body alarm & twisted lft leg going downstairs
## 30305 EE responding to call on patrol bike with jump start box in hand, bike fell injuring left ring finger.
## 30306 EE responding to call, walking down a flight of steps, left knee snapped and twisted
## 30307 EE responding to code "yellow" infirmary, inmate being subdued when inmate began kicking officer hit rt lower leg area - causing pain.
## 30308 EE responding to code 300 on east yard when he twisted his right ankle in hole that rain had washed out on yard.
## 30309 EE responding to code blue where inmate slashed his throat, chest & both arms
## 30310 EE responding to code yellow on lower yard, she fell on uneven pavement in fromt of adm. Bldg. Causing injury to rt ankle, shoulder, elbow, palm
## 30311 EE responding to code yellow running to location & tripped over pile of dirt between dorms. Causing injury to rt knee.
## 30312 EE responding to domestic situation on probationeree got out of car at site-proceeded to front door when he was bit by dog on left calf
## 30313 EE responding to emergency within instituion when his hip popped. Felt sharp pain when weight was applied.
## 30314 EE responding to help call and turned rt ankle
## 30315 EE responding to help call, rushing down stairs, slipped hitting r knee against wall.
## 30316 EE responding to incident involving inmate damaginstate property and discharging fire extinguisher at staff, EE hit on rt hand by extinguisher, inhaled
## 30317 EE responding to inmate being down in hallway-ran to assist-doesn't know how, but injured rt ankle
## 30318 EE responding to medical emergency in cellblock 605, attempted south wind door from closing door closed on finger. Injured middle finger.
## 30319 EE responding to motor veh accident-exposed to toxic substance.
## 30320 EE responding to officers call for help, EE hurt foot going down steps at admin building bruise to left foot
## 30321 EE responed to a call for assistance on unit I recreation yard EE ran through c block twisted foot
## 30322 EE responging to emer call to cardinal unit, EE slipped and fell hurt knee
## 30323 EE rested arm on desk, realized a rash when she picked it up ()
## 30324 EE rested her hand upon a garment and was stuck by1 3/4" to 2" straight pin
## 30325 EE rested jackhammer on inclined surface to test while taking a break-it slipped and landed on EE's right toe behind steel toe of boot
## 30326 EE rested rt forearm on upturned desk. Cut rt forearm on metal plate attached to desk ()
## 30327 EE restocking paper tray in copier, whet to stand & felt sharp pain in knee.
## 30328 EE restrain inmate, cut right forearm on filing cabinet lt elbow cut & lt shin bruised & bloody inmate attmpted to choke EE.
## 30329 EE restrained an inmate who was involved in a fight with another inmate & got blood on his handsfrom the inmate's injury.
## 30330 EE restrainin inmate other EE head hit EE nose
## 30331 EE restraining a cat for injection when cat becamefrighten and bit EE on rt thumb
## 30332 EE restraining a juvenile when he twisted lt knee
## 30333 EE restraining a student in an argument with another student. EE injured finger & was hit in stomach. Lt index finger & stomach contusions
## 30334 EE restraining a student that was out of control felt strain to upper back and chest
## 30335 EE restraining a student with aggressive behavior while down on the floor. Knee injury.
## 30336 EE restraining aggitated pt, twisted knee
## 30337 EE restraining cat so iv would not be pulled out and in process cat bit EE on left hand.
## 30338 EE restraining client pain/swelling left knee
## 30339 EE restraining client, staff fell on his hand
## 30340 EE restraining client-client kicking at EE who turned head out of the way and popped neck
## 30341 EE restraining inmate in single cell, he was kickedin rt hand, hitten on lt hand, spit on in face & upper torso.
## 30342 EE restraining juvenile and was struck in face, causing bruising and nose to bleed. Right cheek.
## 30343 EE restraining juvenile; juvenile struck EE in thehead & pushed against table & wall.
## 30344 EE restraining pt to chair. Pt was kicking legs furiously, EE tried to hold pt's leg that was moving. EE didn't notice pain until morning (19th). Pain in (left) wrist got worse from hold on 18th. ()
## 30345 EE restraining resident and resident fell to the floor and injured EE's neck.
## 30346 EE restrainting student who kicked EE in lower lip and scratched EE on left wrist EE injured lower back during restraint
## 30347 EE resupplying stock bending over when stood up hefelt strain in lower back he attempted to continueresupply pain grew more severe
## 30348 EE retirning to blding stumbled on stone step thatwere cracked/broken.
## 30349 EE retreiving & replacing notebooks from overhead cabinet, felt gripping pull in back; radiated into chest, neck, hips
## 30350 EE retreiving lumber from stack. Picked up board held at waist level. Stepped into another piece oflumber. Tripped over lumber fell on hands & knees
## 30351 EE retrieved a chart from rn-felt a pull/pain in right wrist.
## 30352 EE retrieving a bag of lime from storage room w/fumigant present. Fumigant cylinders had begun to leak resulting in inhalation of the fumigant
## 30353 EE return from lunch, slam door on rt hand, pinchedpointer finger & middle finger
## 30354 EE return trip with inmate tried to grab him when returning to his cell, grabbed handcuffs and cut rt index finger.
## 30355 EE returned fm lunch, going to ward, fell up stairs ()
## 30356 EE returned from Dr Apt on 10-4-06 state she had carpal tunnel in both wrists.
## 30357 EE returned from eastern radiology from picking up patients and twisted rt ankle getting out of van
## 30358 EE returned from making a room reservation for meeting in Feb. When she returned to office fell on ice base of steps. Lt knee & rt hip pain
## 30359 EE returned from off grounds outing with patients, exiting van and felt dull pain in right side of lower back/hip area
## 30360 EE returned from walking on an elliptical machine during his meal hour. EE sat in his chair. The back of the chair was not locked in place which caused EE to fall backwards in his chair and he strained his back. ()
## 30361 EE returned to patrol vehicle from mailing letter set in patrol vehicle and positioned his upper torso, injuring his back
## 30362 EE returned to the concession stand at the swim beach after picking up loose litter, when she noticed a bite/sting on inner left thigh. The area was red with the diameter of approx. 2 inches and had a white ring around it. EE didn't notice being bitten ()
## 30363 EE returned to work after lunch. Was feeling light headed and dizzy. Went to the restroom, started to return to job site and fainted
## 30364 EE returning a bottle of wax to top shelf of cabinet. Set bottle up-right his thumb on his rt hand caught under top lip on cabinet cut thumb.
## 30365 EE returning back to bldg when she slipped & fell.
## 30366 EE returning back to desk and heel of shoe slippedon plastic pad under desk and lost her balance hitting left hand,.
## 30367 EE returning back to work and tripped over a stop block injuring rt elbow, right knee.
## 30368 EE returning for safety inspection when struck on the left front side of an oncoming car.
## 30369 EE returning from a county fair inspection when his car was rear ended by a change of reaction car hit back of another car from another car.
## 30370 EE returning from bank after depositing admis rectee stopped to talk with other EE in parking lot, eeattacked by flying insect possibly wasp or bee
## 30371 EE returning from break-had seizure-fell hitting head
## 30372 EE returning from conference on airlines flight- starting having extreme pain in ears when flight got to 39, 000 causing loss of hearing in both ears
## 30373 EE returning from daily trip tp courthouse, trippedon pavement & fell face down on concrete sidewalk laceration rt eye; scraped nose; sore hand.
## 30374 EE returning from delivering mail and slipped and fell on steps in sink bldg.
## 30375 EE returning from leave w/out pay-changing cages caused EE problems with wrists and rt shoulder.
## 30376 EE returning from lunch and fell on sidewalk outside of office. Pulled ligament lt foot.
## 30377 EE returning from lunch in the rain slipped on steps and fell forward on right knee
## 30378 EE returning from records dept. Passed diagnositicdept - had to move off pavement slipped in mud. Sprained rt ankle.
## 30379 EE returning from route when hit in the rear by another vehicle causing injury to neck.
## 30380 EE returning from taking trash out, floor wet fromrain which made it slick injury to left ankle
## 30381 EE returning from the courthouse in route to her office when she walked behind vehicle which backedup & hit her in leg. Bruised left knee.
## 30382 EE returning from ward 115, fell on steps outside of avery conference, hip pain
## 30383 EE returning from warehouse with supplies. Walked through doorway, door closed hitting EE on left arm and shoulder. Neck pain, back pain.
## 30384 EE returning from youth center, got out of car and slammed car door on left thumb
## 30385 EE returning inmate to cell after sick call when his right thumb was caught in sliding door
## 30386 EE returning inmate to cell, door hard to open, when she pushed door open her rt middle finger wascaught in door causing small abrasion
## 30387 EE returning to campus from driving training with basic school. While exiting patrol vehicle EE twisted left knee. Possible acl meniscus injury
## 30388 EE returning to desk, lt foot slid, ankle turned caught self on desk with rt hand and chest
## 30389 EE returning to her office area, when she stepped on chair mat, and it slid causing her to fall. Rt foot, rt forearm and shoulder.
## 30390 EE returning to his office - EE's vehicle was struck on drivers side rear door - spinal injury causing severe pain rt shoulder, arm, hand, & neck
## 30391 EE returning to hotel room and slipped on wet sidewalk and struck stairwell with rt leg
## 30392 EE returning to office from doing task pertaining to teaching fell on steps outside berryhill kneesrt wrist, eye scrapes, arm
## 30393 EE returning to office to answer phone, turned corner of hallway and turned left ankle
## 30394 EE returning to office-tripped and fell landing onface.
## 30395 EE returning to patrol veh from a traffic stop andstepped on uneven pavement spraining left ankle.
## 30396 EE returning to patrol vehicle when dog came from behind and bit EE on left thigh
## 30397 EE returning to program area and slipped and turned rt ankle.
## 30398 EE returning to the u1 bldg from canteen & was stung by a yellow jacket ()
## 30399 EE returning to veh after visiting an er on agcy business-slipped and fell on pavement.
## 30400 EE returning to work station while attempting to sit down tripped hitting (r) arm on desk EE statedthat EE also trying to protect head from desk
## 30401 EE returning to work via stairs after fire alarm when the building was evacuated when she became lightheaded and short of breath
## 30402 EE returning van to fire depart another vehicle backed out in front of EE causing damage to vehicle EE bruised by seat belt
## 30403 EE reviewing set up for chancellor installation, tripped over cords and fell onto right knee
## 30404 EE riding bus to dot when the bus rear view mirrorstruck the mirror of a passing 18-wheeler which caused glass to fly into EE's left eye
## 30405 EE riding down hill on bicycle when a student ran in frt of the bicycle-EE applied brakes and the bike flipped over.
## 30406 EE riding elevator 2nd floor from 3rd floor eleva-tor dropped doors came off track & elevator jolted& stuck between floors. Neck stiffness & headaches
## 30407 EE riding elevator to 2nd floor from 3rd floor elevator dropped doors came off track. Neck stiff-ness and headache.
## 30408 EE riding elevator when elevator stopped suddenly throwing EE to floor causing back injury
## 30409 EE riding elevator when it stopped suddenly jarring EE's entire body.
## 30410 EE riding elevator, elevator stopped door opened asee stepped to exit, elevator dropped 4" causing EE to fall into hallway, injured arms, backand knee
## 30411 EE riding front seat when we were struck by a vehicle. Passenger in rear seat knee ran into backof seat. Injured face, nose, neck and lt ankle.
## 30412 EE riding gator with open windshield-something caused burning in left eye
## 30413 EE riding horse when strap on saddle broke causingee to be thrown from the horse
## 30414 EE riding in back of dietary trk and cart came loose hitting truck.
## 30415 EE riding in golf cart, stacey pulled EE head overand while doing so my tooth or sunglasses busted my lip. Bruise to upper lip
## 30416 EE riding in horse and buggy during historical parade-foot got caught on crinoline slip when exiting buggy and fell into highway.
## 30417 EE riding in pickup, stopped at t intersection, driver did nto see oncoming car, pulled out and truck car
## 30418 EE riding in swamp buggy, crossing canal, buggy slipped, EE fell into canal ()
## 30419 EE riding in trk and thrown into dashboard when rt frt wheel fell into a hole.
## 30420 EE riding in trk and thrown into w/shield when rt frt wheel fell into hole injuring head/neck.
## 30421 EE riding in truck p735 when it was struck by a privately owned vehicle. Lower back.
## 30422 EE riding in van coming from football game when hit by oncoming veh headon.
## 30423 EE riding in van returing from football game when van was hit head on.
## 30424 EE riding in van returning from football game whenstruck headon by oncoming veh.
## 30425 EE riding in van returning from football game whenvan was hit head on by another veh.
## 30426 EE riding in van returning from football game whenvan was hit headon.
## 30427 EE riding in van-when driver went over a bump EE hit head on top of van
## 30428 EE riding in vehicle, another vehicle struck the vehicle he seperated from behind. Injured hand & neck area.
## 30429 EE riding lawn mower mulchinx leaves at side of adams bldg subject walked by me & hit my shoulder with his arms hand brick dropped on knee.
## 30430 EE riding merry-go-round with clients and lost footing and fell scraping left shoulder and pain in rt knee
## 30431 EE riding on back of golf cart-coworker hit cart crushing EE's left foot
## 30432 EE riding on back of truck-driver turned to fast and threw EE off back of truck
## 30433 EE riding on rear of truck driver applied brakes EE complained of being hit in groin area
## 30434 EE riding van returning from football game when another veh hit van headon.
## 30435 EE riding whith another EE when the other EE turned left in front of another vehicle.
## 30436 EE riding with group attending training. Another vehicle approaced car from opposite direcion, trailer came off back and hit EE car. Lt knee/ribs
## 30437 EE riding with group attending training. Another vehicle approached car from opposite direction, trailer came off back and hit EE veh. Knees/lw bk
## 30438 EE right foot caught in chair and fell - hitting nose on edge of guest chair, bruising both knees &jammed right shoulder
## 30439 EE right foot slipped in water on the floor and fell on left knee. Low back/hip/left knee.
## 30440 EE right foot was crushed by a machine operated byco-worker while working on a highway project.
## 30441 EE right hand was hit by a stack of two (2) traffic cones while they were being placed on another stack of traffic cones.
## 30442 EE right leg was noticed to be swollen, EE had a previous injury to same body part. Swelling was noticed while performing regular job duties
## 30443 EE right shoulder trying to lift patient onto his wheelchair
## 30444 EE right thumb was caught between the stretcher and the rail
## 30445 EE rinsing empty cans with lids-one lid coming outand cut EE on rt middler finger
## 30446 EE rinsing sheet pan-placed in sterlizing sink- when removing pan burnt rt arm
## 30447 EE ripping a piece of plywood for use as counter top when the pylwood kicked backwards causing injury to left hand little finger
## 30448 EE rising garage door, middle finger of lt hand caught in door as it was raised.
## 30449 EE rocky mountain spotted fever from tick bite checking research plots at mason farm injury bite on right leg (body systems)
## 30450 EE rolled a downed tree with a log roller to free bound chainsaw, a sapling caught under tree and snapped back hitting EE lower left leg ()
## 30451 EE rolled a tv cart(pushing/pulling)out of the wayin order to inventory equipment that was behind the cart. When she moved the cart she felt a sharp
## 30452 EE rolled ankle on gravel. Sprained left ankle.
## 30453 EE rolled back in chair to get up-chair got stuck in carpet and turn over-EE landed on rt knee.
## 30454 EE rolled desk chair away from desk and bumped left ankle against bottom edge of desk.
## 30455 EE rolled down bed to chainge patients diaper, EE pulled down the sheet and patient kicked EE on theright side of her face around the cheek bone.
## 30456 EE rolled golf cart ()
## 30457 EE rolled his ankle when stepping off of the sidewalk into his golf cart ()
## 30458 EE rolled left ankle while walking to hotel during work-related travel in seattle wa
## 30459 EE rolled on left ankle assisting with taking pa- tient down in pic.
## 30460 EE rolled out the recycle bin to tylerhall's dumpster to empty it. He asked for help but did not get any EE pulled the recycle bag & felt a burning dow
## 30461 EE rolled right ankle while walking on unpaved parking lot ()
## 30462 EE rolled the trash can to the dumpster and lifted the bag to put it in the dumpster with her right hand and felt a pull on her left side. ()
## 30463 EE rolled to give the soap to a patient and the chair rolled out from under her and fell on her knees and had knee replacement sx in 10/2002
## 30464 EE rolled to outside on right ankle as he was pushing mowing to edge of back.
## 30465 EE rollerskating with special skills group- ran into wall at high rate of speed to avoid collision and hit nose on wall
## 30466 EE rolling ball cart and mats out of room caught wrist between cart and metal door.
## 30467 EE rolling barrell down hill-attempted to grabbed barrell and yanked rt shoulder.
## 30468 EE rolling chair from computer to printer-rt side of body hit floor especially knee & shoulder
## 30469 EE rolling food cart thru security slider & got left hand caught between door & foot cart
## 30470 EE rolling small roller onto trailer-arm of rollerfell back striking EE on left knee
## 30471 EE rolling two chairs across p/lot and tripped over cement block.
## 30472 EE rolling up a section of wire, the wind picked upand blew something into EE left eye.
## 30473 EE rose from filing and hit hand on filing shelf (metallic edge)-cut on forehead
## 30474 EE rose from her chair suddenly and accidently tripped/stumbled causing extreme pressure on her right foot.
## 30475 EE rose from her desk and moved toward her copier. She lost her balance and fell.
## 30476 EE rotated her hip during a child pic training and felt a sharp pain.
## 30477 EE routinely squeezes hose sprayers and handles of cleaning instruments repetitively. She regularly pushes and pulls equipment around work area and is on her feet on uneven work surfaces. ()
## 30478 EE rpts pain/both hands-repetitive computer use **average tpd monthly is $362. 87*** **EE began working w/diff er 1/3/02 at $1789. 87**
## 30479 EE rreached for paper on shelf and hit head while reading
## 30480 EE rt finger rubbed against the edge of hubcap
## 30481 EE rt finger was closed in a door
## 30482 EE rt finger was closed in door
## 30483 EE rt foot hit the leg of a table. EE lost balance& fell into an unused computer table. Fall caused EE to hit lt shoulder causing a severe bruise.
## 30484 EE rt foot slid into a pipe causing a cut at the top of foot and a severe contusion with broken blood vessel
## 30485 EE rt foot slipped while exiting a van door
## 30486 EE rt hand finger was caught in the door
## 30487 EE rt hand finger was caught in the trap door
## 30488 EE rt hand finger was shut in a metal door
## 30489 EE rt hand got caught in the file drawer. Tried to release drawer and drawer caught tip of hand and tore tissue off of her rt hand.
## 30490 EE rt hand was caught between the bar and the door
## 30491 EE rt hand was caught between the handle & the refrigerator door.
## 30492 EE rt hand was caught between two pieces of metal
## 30493 EE rt hand was caught in the control door
## 30494 EE rt index finger was caught in gate
## 30495 EE rt index finger was cut with a saw blade while working in the lab
## 30496 EE rt index finger was struck by by door lever.
## 30497 EE rt index was caught in a gate
## 30498 EE rt knee slipped out whne EE was doing a pic take down move. The knees started to swell and hurt.
## 30499 EE rt middle finger was closed in auto door causing laceration
## 30500 EE rt thumb cut as EE opened cabinet door.
## 30501 EE rt thumb was caught between a steel door
## 30502 EE rt thumb was caught in the gate
## 30503 EE rt thumb was caught in the hand rail at the bottom of the steps
## 30504 EE rt upper chest injured when tackling a fleeing suspect during foot persuit. Upper rt chest - scraped and bruised
## 30505 EE rt wrist was injured during self defense class by another employee.
## 30506 EE rtn from an out of town teaching assignment and was unpacking the vehicle and was lifting heavy equipment and twisted back while doing so.
## 30507 EE rubbed her left eye after she took off the glove that she was wearing
## 30508 EE rubbed his hand across the back of a chair in building lobby and cut top of right hand on protruding nail.
## 30509 EE rumors spread about her involvement with a third party. Caused her emotional stress & depression. Stress and depression.
## 30510 EE running & stepped in pothole. Causing extreme pain to right ankle as foot rolled outward.
## 30511 EE running 2. 5 miles in formation when top of rt foot began aching.
## 30512 EE running 300 meter run, when felt severe pain in upper leg area determined EE sprained lft groin
## 30513 EE running across campus to respond to a call, injured right heel
## 30514 EE running across front yard to an emergency when her lt leg gave way and her hip popped. Pain in lower back.
## 30515 EE running after inmate in attempt to get contra- band from an inmate. EE slipped & fell on concretesidewalk hitting rt elbow and both knee.
## 30516 EE running after inmate in attempt to get contrabdfrom inmate, EE slipped and fell on concrete sidewlabrasion rt elbow, both knees
## 30517 EE running after suspect trying to flee from scene and fell on rt arm
## 30518 EE running an obstacle course in a air walk during a departmental retreat when he strained his neck.
## 30519 EE running behavioral intevention-rt ring finger got caught on client's helmet
## 30520 EE running chain saw. Went to step over tree log and his foot got hung on a limb which knee to pop out of joint. Rt knee popped out joint.
## 30521 EE running client intervention when client bit EE on the left leg
## 30522 EE running clients program-client scratched EE on left index finger
## 30523 EE running computer cabel thru ceiling-ladder slipped causing EE to fall to floor injuring rt shoulder, left leg.
## 30524 EE running down stairs in pursuit of an individualwho had been reported to campus police in attempt to detain him. Bruised heel on landing.
## 30525 EE running down steps and twisted left knee.
## 30526 EE running during per exericse and pulled muscle in lt leg. EE acting in capacity of an escape inmate to allow pert & dog handlers. Lt mid calf.
## 30527 EE running during physical training at basick law enforcement training and develop a pain in left shin and right shin ()
## 30528 EE running hot water from hose which suddenly turned up and burned rt wrist.
## 30529 EE running in response to a call for assistance, injured both legs, felt no pain until next day strain to both legs in the shin region
## 30530 EE running mop water in j. C. And tried to catch light bulbs falling, hit right hand on the wall, jamming her right thumb.
## 30531 EE running obstacle course went under door behind another EE door injured lt shoulder and elbow. Lt shoudler and elbow/badly bruised.
## 30532 EE running out back door of office, fell off side of newly-installed handicap ramp. This fall resulted in twisting/spraining of rt ankle
## 30533 EE running police officer physical abilities test came upon tire rut course ankle popped & fell to the ground. Spraining right ankle
## 30534 EE running relays w/clients and felt pain in left calf.
## 30535 EE running sprints while particpating in srt training when he heard a pop & felt lt-hamstring tighten which caused sharp pain. (tight\\sore)
## 30536 EE running through a heavy wooded area pursuing anoffender, injured left foot.
## 30537 EE running through woods after suspect and trippedover some small trees and undergrowth falling on right hand.
## 30538 EE running to a code-4 (fight) EE rolled left-ankle
## 30539 EE running to answer telephone. Foot got tangled fell on rt knee
## 30540 EE running to assist in rescue and stepped in holein process spraining left ankle.
## 30541 EE running to class-stepped hard on uneven road felt sharp pain in middle of right foot-fracture
## 30542 EE running to disturbance in inmate dormitory, when he slipped and fell on concrete walkway. Contused, abraded knees and rt hand
## 30543 EE running to formation area and slipped and fell on ice.
## 30544 EE running to library in response to fire alarm, slipped on wet sidewalk, struck arm on handrail.
## 30545 EE running to observe inmate activity, EE stepped down in hole twisting left ankle sprain to left ankle
## 30546 EE running to pick up water cup lid stepped in pot hole fell injury to hip, right hand, wrist & back
## 30547 EE running toward bldg to open door for students that thought a tornado was approaching when she fell on grass-left shoulder/elbow-low back
## 30548 EE running two mile for pert team his leg started aching, didn't realize it was hurt until later. Lt knee possible torn ligament (sore, red, swollen)
## 30549 EE running up stairs responding to code when he felt sharp pain in right ankle/foot-pain increasedwith time
## 30550 EE running up the lower level of steps to et the mobile unit in order to check on a suspicious vehicle when he turned his left ankle
## 30551 EE running, felt sharp pain left achilles tendon. Determined the left achilles was offset from bone, also inflammed & lining surround tendon detached
## 30552 EE ruptured bulged disc in area of l5 & s1 when hewas operating in an awkard angle having to apply pressure with an elevator in extraction of tooth
## 30553 EE ruptured rt achilles tendon when dismounting bike while chasing a fleeing suspect
## 30554 EE rushing across her office to answer the phone &tripped over garbage can falling on desk across chair.
## 30555 EE said a pt was extremely angry threw a pool stick and hit EE on top of the head very hard.
## 30556 EE said client was getting on couch. EE helped herstaff remove. Client caused fall to floor. EE injured strain back, rt knee, rt thumb.
## 30557 EE said during grooming time I asked a jackson to go to bathroom but he fell to floor & refusing to go. Rt knee pattello/emoral syndorme some lacerat.
## 30558 EE said he was unloading postal containers, turning them to line them up at the x-ray machine. When he got in car to go home he realized he couldn't lift his right arm fully or stretch it out without pain. He was having pain in his chest.
## 30559 EE said he was using box cutter to cut rope and the box cutter slipped and punctured upper portionof left arm muscle.
## 30560 EE said his back was hurting, did not want to go to emergency room would wait to see if better 7/16 not better injury low back
## 30561 EE said phone rang picked up phone was attempting to sit down in chair. Chair slipped from under herfell on floor hit back - injured rt lower back.
## 30562 EE said she got bit by something but denied knowing by what - ants recently on unit
## 30563 EE said she had turned a file cabinet over on her, it knocked her back into the table behind
## 30564 EE said she stepped wrong and twisted her ankle. She heard a snap work no- 919-575-1966
## 30565 EE said she walked around the corner too fast, herknee gave way and she strained her back
## 30566 EE said she was in the #3 trailer she was putting saftey strap in place to secure baskets in front trailer when her foot slipped and fell on lt knee
## 30567 EE said she was lifitng and pulling a wheelchair and strained the muscles in her left rib cage.
## 30568 EE said she was mopping and felt a sorness in her rt shoulder
## 30569 EE said she was moving furniture on 2/16/2010, on 2/17/2010 she was taking out the trash and noticed a pain in the upper left part of her back. ()
## 30570 EE said she was spraying the elevator wall and thechemicals splashed in her face and a little got onher upper lip.
## 30571 EE said she was stepping to place door stopper under door when she felt somehting pop in her lower back
## 30572 EE said that after responding to a call and running to the halifax dorm, his left knee started to hurt.
## 30573 EE said that he was working in door he was removing the lt security cover when it broke loose and smashed his lt hand
## 30574 EE said that she was pulling bag out of trash can and ant bit her.
## 30575 EE sampling @ streamside, slipped on bank fell to creek bed, contact with poison ivy and contusion to lf shoulder
## 30576 EE sanding board & fingers came in contact with belt
## 30577 EE sanding frp coupon & splinters got under index finger & on rt hand
## 30578 EE sat at the officer's table with her legs crossed EE could not move at all and req to call 911 EE has a slipped disk
## 30579 EE sat at the table and the table fell striking her rt leg below the knee and landed on big toe.
## 30580 EE sat back in chair and back of chair gave way. EE jerked forward to avoid falling out of chair and injured lower back
## 30581 EE sat back in chair and the chair back gave way causing EE to land on his back on the floor.
## 30582 EE sat down & chair rolled from underneath her causing EE to fall injuring right side-rt arm-rt wrist
## 30583 EE sat down at work area after changing the patients and felt pain in the lower back.
## 30584 EE sat down beside file cabinet going through forms leaned forward to pick up soda the fan fell over and hit EE in the head and the cover came off
## 30585 EE sat down in a broken chair injuring her lower back
## 30586 EE sat down in a chair and it tipped forward and fell in the floor and 31 weeks pregnant-did not know the chair was broke.
## 30587 EE sat down in a chair and the chair broke causingee to fall straight down to the floor used his hand to brace his fall.
## 30588 EE sat down in a chair when the chair broke causing him to fall to the floor
## 30589 EE sat down in a metal chair the chair collapsed and EE hit head on wall.
## 30590 EE sat down in broken chair and it started to fall-EE tried to catch herself from falling and strained back
## 30591 EE sat down in chair & it turned over
## 30592 EE sat down in chair and fell out out chair hitting metal support bracket.
## 30593 EE sat down in chair to reach the bottom drawer and the chair slid out from under her.
## 30594 EE sat down in chair which broke and caused EE to fall backward, hitting head on black wall and injuring knee.
## 30595 EE sat down in chair which is tilted down (broken)and she could not wlak from the weight put on herself from the chair being tilted.
## 30596 EE sat down in chair which was sitting on plastic chair pad. Chair slipped out for under her. Sat down hard on floor. Injured tail bone.
## 30597 EE sat down in chair, chair moved causing her to fall to the floor & injure her left shoulder
## 30598 EE sat down in chair; EE fell over to right side; leg fell off chair; EE fell to the floor on right side
## 30599 EE sat down in driver's seat of state vehicle withbriefcase in lap. Picked up briefcase to place in passenger seat floorboard area. Shoulder popped
## 30600 EE sat down in grassy area while waiting to work k9; EE sat in poison ivy
## 30601 EE sat down in med room to sign forms & suddenly felt someone jump on her back & grab her around the neck, hitting her head and ears.
## 30602 EE sat down in rocker-rocking back the whole chair went back EE put arm down to catch herself injury to left arm and elbow
## 30603 EE sat down in the chair to sign his time sheet when the chair collapsed to the floor, and he hit the floor. ()
## 30604 EE sat down in white plastic chair and it gave waycausing her to fall. Injury t o right shoulder, cervical and lumbar strain
## 30605 EE sat down on chair and seat was broken and shifted tossing EE on her backside
## 30606 EE sat down on chair in workroom and the chair back gave way. EE fell back and jerked forward and felt pain in lower back.
## 30607 EE sat down on rock ledge next to the window. A wind gust blew a box fand sitting in the window, striking EE on the head ()
## 30608 EE sat down on scales in order to balance scale. EE fell off landing on her left hip
## 30609 EE sat down on stool and ankle caught in the leg of the stool, stool slipped out from under EE, caughright ankle causing it to twist.
## 30610 EE sat down on the chair and legs broke and screws rolled across the floor. EE hurt his lower back left side.
## 30611 EE sat down on unlevel bucket and caught self withall of his wt. On rt leg. ***form 63 processsed 6-23-08**
## 30612 EE sat down too close to front edge of chair. Chair tipped forward throwing him to floor on buttocks and rolling back with feet in air.
## 30613 EE sat in a broken chair and fell backwards; injured lower back
## 30614 EE sat in a chair and the chair broke and EE fell out of it, hitting her head and back.
## 30615 EE sat in a chair in food service office, felt twist in lower left back, experienced sharp pain, burning sensation thereafter.
## 30616 EE sat in a chair that appeared to be intact but the seat was completely out of it. EE injured back when she tried to catch herself from falling.
## 30617 EE sat in a chair that was broken & fell onto the floor
## 30618 EE sat in chair & it collapsed resulting in multiple injuries
## 30619 EE sat in chair & it collapsed, EE fell onto floorbruiseing lt shouder & lower back.
## 30620 EE sat in chair and it broke causing EE to fall injuring back, legs and arms
## 30621 EE sat in chair and it broke causing EE to fall to the floor
## 30622 EE sat in chair and it broke falling to floor landing on back.
## 30623 EE sat in chair and placed her hand under the chair in order to pull chair up to desk. She cut left third finger on a staple
## 30624 EE sat in chair and the back gave way. EE fell to the left and twisted back.
## 30625 EE sat in chair next to student, the chair collapsed causing her to fall to the floor and injure her buttocks, tailbone, lower back and head. ()
## 30626 EE sat in chair than had a broken piece and was unstable, chair collasped and scratched right leg.
## 30627 EE sat in chair the chair popped up and EE fell to the floor on both knees.
## 30628 EE sat in chair to turn on computer; the chair rolled from underneath her. She slipped out of the chair and fell to the floor injuring her left wrist. ()
## 30629 EE sat in chiar, chair and chair roller from underhim hi head hit wall.
## 30630 EE sat in elevator on floor 1-pushed button to go down-elevator fell hit bottom spring jerked.
## 30631 EE sat in his new chair and the chair broke, EE hithis l chin on the desk, falling to the floor, hit his r shoulder and r side of head
## 30632 EE sat in office chair and felt stinging pain in right buttocks; EE stood and saw sewing needle sticking from seat of chair
## 30633 EE sat in plastic chair which collasped causing eeto fall backwards hitting head on wall-strained back and neck
## 30634 EE sat on bench and felt a splinter go into rt thigh
## 30635 EE sat on bench, swung her legs back under bench & struck right ankle on beanch
## 30636 EE sat on chair in nurses station, chair flipped over backwards, fell on floor
## 30637 EE sat on edge of chair & fell to cement floor hitting buttocks, lower back and cervical areas on floor
## 30638 EE sat on edge of chair and chair rolled out from under EE and EE fell on the floor. Right leg, righthip, and back.
## 30639 EE sat on patients bed and held her while discussing the death of her room mate. Scabies exposure
## 30640 EE sat on table and it started to fall, getting off table but went down with it, table fell on my left leg
## 30641 EE sates reinjured back while taking patient neru-vascular status in lower extremities.
## 30642 EE sates she had put a contaminated needle on a paper towel b/c there was no sharps container available and when she went to pick up stuck rt hand
## 30643 EE sates she was walking down the admin. Hall and the inmate had just mopped the floor foot slipped on the wet floor and her rt leg twisted
## 30644 EE sates that he was involved in un-armed self defense between 8-11 am. Next morning had pain in his left shoulder and neck on left side
## 30645 EE sates that he was searching an inmates property when his finger struck against razor blade in the inmate's bag
## 30646 EE sates that she stumbled on brick flooring in front of entrance to bldg knoocking glasses across the uneven brick flooring
## 30647 EE sates that while he was sprinting he hit unevenground and lost balance. While he was falling he attempted to keep hitting face, landed on rt knee
## 30648 EE sates the ceciling where she works falling on on her. Injured shoulder.
## 30649 EE sates while working @ the universities off site storage facility he injured rt hand, arm, shoulder & upper back area. ()
## 30650 EE sates writer left out of the chart room and thepatient jumped up and struck EE in the face unpro voked.
## 30651 EE satted that while walking inspecting doors and gates he stepped on some black ice in the parking area and fell
## 30652 EE sattes I was crawling under building locating leak from first floor pipes when I twisted and pulled my back
## 30653 EE saw a mouse in the copier room and got scared proceeded to run and twisted ankle
## 30654 EE saw a pt leaning sideways about to tilt chair over unto another pt. EE help another EE put pt on the bed. Pain in the middle of back.
## 30655 EE saw a veh coming towards him-att to get into veh had hand on inside of door as veh struck him injuring hand
## 30656 EE saw client put another EE in headlock-attempting to help other EE when EE hit left arm on ping pong table.
## 30657 EE saw immate in wheel chair trying to stand immate fell EE grabed immate to prevent hitting head EE pulled him towards him causing pain shoulder
## 30658 EE saw little red dot on arm.
## 30659 EE saw patient to consulate room for treatment. Eecontracted head lice from patient.
## 30660 EE saw patient walking into the dayroom & asked ifhe was alright & patient came @EE swinging and EE pushed him back and fell on the floor.
## 30661 EE saw resident about to fall and I caught resident before he hit the floor. ()
## 30662 EE saw resident getting up tried to stop him, EE and resident both fell to the floor. ()
## 30663 EE sawed into hornet nest and was stung once. EE was removing downed tree. Hornet sting to rightwrist, swelling, stinging and red streaks on arm
## 30664 EE sawing a piece of plywood and table saw grabbedplywood and threw back ripping nail of rt 4th digit finger.
## 30665 EE sawing thru tree when saw hung in the log causing saw & hands to thrust forward.
## 30666 EE says a client stopped walking and she strained her back.
## 30667 EE says box of sugar fell on herr rt foot. EE inspecting contents of box. Bruised rt foot & toe.
## 30668 EE says he was on his way to work at 4 am and hit a deer and it upset his back injury
## 30669 EE says he was struck with a baton during use of force in hcon
## 30670 EE says her r knee starting burning while she was pushing a medication cart.
## 30671 EE says she felt a pop on her back after lifting a client. EE seen at er rtw 9/29/09 ()
## 30672 EE says she felt back pain while changing a client
## 30673 EE says she injured her lower back while pivoting a client
## 30674 EE says she needs an appt due to pain in l wrist from repetitive strain injury. EE's primary doctoralso recommended she be seen for this. EE would l
## 30675 EE says she stepped from a concrete slab to the ground. EE caught herself on car and twisted her right foot.
## 30676 EE says she suffered smoke inhalation when inmate set fire to cell and she helped pull inmate out ofcell block.
## 30677 EE says she thought a client was going to fall andshe tried to grab him. EE says her back popped. Eewas seen in the er & taken out of work for 7 days
## 30678 EE says she was injured either 4-30-09 between 1-5 pm or 5-01-09 @9:30 am. EE said she felt tension in rt lower back when she arrived to work on 5-1-0
## 30679 EE says she was on her way to change a client. Herfoot became stuck on some dried pepsi on the floor& she fell. She injured her left knee, left wrist
## 30680 EE says student had been restrained & was upset w/security officer. Handcuffs removed, student ran for door causing EE's arm to jolt & finger caught.
## 30681 EE says that while walking with his litter crew he felt a sharp pain in his low back.
## 30682 EE scaled a wall, stepped down onto a cabinet and then jumped to floor injuring heel
## 30683 EE scalling/root, planing/polishing/flossing teeth job is repetitious in nature.
## 30684 EE scraped arm against open ??? Door while checking.
## 30685 EE scraped eyelid on trellis wire while bending down
## 30686 EE scraped finger on cage door and wound had reaction to disinfectant .
## 30687 EE scraped her right lower leg on a piece of metal
## 30688 EE scraped his arm while helping restrain an inmate during a use of force.
## 30689 EE scraped his hand on a rusty nail.
## 30690 EE scraped his right knuckle restraining a studentwhich did not bleed. Also, the next day EE hit er hand again & opened up the wound again.
## 30691 EE scraped knee on planter ()
## 30692 EE scraped palm of hand on a sharp edge of a cart handle ()
## 30693 EE scraped top left side of left foot on the filing unit as she was moving from one aisle to another ()
## 30694 EE scraping caulk on wall, painting tool slipped off working surface stricking upper lip.
## 30695 EE scraping snow off windshield and slipped on ice injuring wrist.
## 30696 EE scratced by a rat during admin. Of anesthesia.
## 30697 EE scratched agressive patient while trying to puthim in therapeutic hold. Minor lacerations to hands.
## 30698 EE scratched by patient while assisting pt in bathroom ()
## 30699 EE scratched finger on protruding dead bolt lock
## 30700 EE scratched her elbow and arm while performing a training.
## 30701 EE scratched left index finger with needle used togive allergy injection needle bounced out of patients arm & scratched EE finger.
## 30702 EE scratched palm on sharp object in trash dumpster ()
## 30703 EE scratched r forearm on file cabinet
## 30704 EE scratched rt eye.
## 30705 EE scratched rt posterior forearm while assisting resident in bed. Sent for tetanus update.
## 30706 EE scrubbed dishes with bleach. EE had gloves on but arms above gloves broke out in rash from bleach exposure
## 30707 EE scrubbing floor w/long handle brush between thewindow & step rails, was bent over, when he raisedup he hit his back/spine on shelve st end of rails
## 30708 EE scrubbing stalls, using toilet bowl cleaner to remove heavy soap scum from the soap dishes, then wiped down with rag that had bleach on it. When EE inhaled fumes, it caused a shortness of breath and tightness in chest. ()
## 30709 EE search of inamtes bed he was stuck by a sewing needle lt ring finger by a needle that was in bed. Lt ring finger.
## 30710 EE searching inmate jacket & cut left finger on razor blade in pocket.
## 30711 EE searching inmate locker when inmate became agressive & altercation took place causing EE to strike r hand on metal bed frame. ()
## 30712 EE searching inmate that had poison ivy on clothesee developed poison ivy on right leg/foot/groin
## 30713 EE searching inmate's locker, EE ran right hand along front inside edge and stuck his middle fingron homemade tattoo needle. Puncture to right figr
## 30714 EE searching inmates personal property, wearing latex gloves, EE pricked by safety pin on left mid finger
## 30715 EE searching rec bldg., reached hand into bush to retrieve suspected contraband & was bitten on lt index finger by an insect
## 30716 EE searching under sink and opened up a protectivecap covering pipes and was stuck by a tattoo needle on left index finger
## 30717 EE searching woods for hit and run driver injury entire body became covered in ticks
## 30718 EE seated at desk, reached forward to pick up envelope chair slipped from under her when her weight shifted
## 30719 EE seated at keyboard-front panel became dislodge and fell on left foot.
## 30720 EE seated by a computer when she turned to respondto a question, she hit her head on safety device on back of computer. Contusion to head.
## 30721 EE seated in his patrol car parked on shoulder, hisvehicle was struck from rear by another vehicle
## 30722 EE seated in his vehicle investigating a previous collision when EE vehicle was struck by another vehicle injury to back
## 30723 EE seated in veh behind a stopped violator-anotherveh slowed to pass EE and hit a second veh-pushing2nd veh into EE's veh
## 30724 EE secluding patient when patient became combative & began kicking. Lumbar region strain spasm
## 30725 EE securing cell for showers, cell door closed on left hand and smashing EE thumb
## 30726 EE securing entrance door closed finger in door jam
## 30727 EE securing inmate in car-closed door on right middle finger
## 30728 EE securing pad lock to gate when he stepped on edge of concrete sidewalk causing injury to ankle
## 30729 EE securing trolley in order to client on it. Client bit right arm.
## 30730 EE securred outside sally port gate. EE retured tocare when gust of wind caught door-striking her ltside of face.
## 30731 EE seizing property inside a taxpayers home EE informed taxpayer had TB TB exposure
## 30732 EE sent over computer and cut back of head on nail protruding from shelf above
## 30733 EE separated his shoulder struck the mat as supt wallace rolled him into the prone position during a defen tactic technique.
## 30734 EE separated three juveniles who were fighting, twisted his knee while restraining one of the juveniles.
## 30735 EE separating 2 patients that were fighting one ptgrabbed EE around waist & EE felt chest pop & fellinjuring rt arm also
## 30736 EE separating student who were fighting when his right index finger was injured
## 30737 EE separating two patients when they were in a confrontation. While separating patient's EE states, I turned top half of body w/out using correct body mechanics. ()
## 30738 EE seperating students engaged in fight. Right armcontusions
## 30739 EE served a search warrant at 346 jones st trentonnc and loaded 4video machinces. EE had to unload amachines at dist 11 ale office. Strain lower abdom
## 30740 EE served food at graduation leaving she opened the door felt her arm pull
## 30741 EE servicing a network outlet plate-EE closed doorto typewriter shelf-after completion of work att to reopen door and hand got gouged.
## 30742 EE servicing dishwasher at hobbton elem school stepped up on drain to reach hoses slipped & fell on his back on floor
## 30743 EE servicing roof top exhaust and dust got into eyes.
## 30744 EE serving meat, wnet to place meat on tray, and turned lt ankle wrong, heard a popping sound.
## 30745 EE serving tax warrant, while entering mobile homestepped into hole in floor coverd by carpet, lost balance, fell through door frame injured rt knee.
## 30746 EE set a 250 pound ?? On her finger
## 30747 EE set a box on her hand; left hand
## 30748 EE set handtrucks upright then handtrucks came back & hit right side of the ribs. EE said that hefelt something "pop".
## 30749 EE set leg of chair down on lower portion of leg behind her ankle in the achilles tendon region. Bruising to left ankle
## 30750 EE set pan down on the trucj and the gravy spilledcausing it to burn EE's left hand and finger.
## 30751 EE set up machine put plug in outlet started mach electrical short, left arm and shoulder
## 30752 EE setting performing daily duties closing out work orders has cused pain in neck shoulder wrist and back from years now
## 30753 EE setting snacks on table when client came up andpushed EE causing neck and back to snap and hit chair with stomach.
## 30754 EE setting up an activity for an student and injured left shoulder and neck.
## 30755 EE setting up cage wash machine when the door dropped down on rt hand
## 30756 EE setting up computer system, lcd panel overhead projection also taking panel and projector to campus site for training strained back
## 30757 EE setting up for a class, stepped over a screen leg support, stepped on a chair leg which slipped & EE fell on (r) knee
## 30758 EE setting up for park event involving multiple physical activities. EE felt sore but pain worsened until 9/16/2013 ()
## 30759 EE setting up hosp suites in sac. Leaned a folded table against wall table fell and strukc knee. Sprained knee.
## 30760 EE setting up kc park for client activity, EE and other EE picked up table to move in place and feltpull in left side back
## 30761 EE setting up meeting room lifting heavy tables & moving chairs when he strained his back
## 30762 EE setting up tables when sole of left shoe got caught on carpet causing EE to wrench left knee
## 30763 EE setting up the nc dept state display. EE state he placed display in car and had to move to shut door at that time pulled something in right knee.
## 30764 EE setup and took down furniture for training session and strained back
## 30765 EE severed left ring finger while loading canoe on vehicle. Wedding ring got caught in roof rack when EE slipped and fell back.
## 30766 EE shadowing client in behavior; EE turned head for second to see who was coming in door; client bit EE's right upper arm. ()
## 30767 EE shake down of single cell, inmate being placed back into cell when he turned and spit on myself and another officer. Spit in face.
## 30768 EE shampooing the carpet with buffer-noted pain in lower back
## 30769 EE shampooing, blow drying, and lifting up chair client hair and EE started having pain in wrist.
## 30770 EE sharp pain in lower rt back and rt upper shoulder.
## 30771 EE sharpening a hatchet on grinder-piece of metal flew into EE's eye.
## 30772 EE sharpening bush axe with file, as he made a downward stroke the blade rolled on bush axe & hishand hit top of blade, cutting right ring finger
## 30773 EE sharpening knife & his hand slipped & lt hand between the index finger & thumb
## 30774 EE sharpening paint scrapers when a piece of metalwent in my safty glassed and hit my eye. Piece of metal stuck in eye.
## 30775 EE shaving client-client became upset and grabbed EE rt wrist until it popped
## 30776 EE she hit her lt knee on dayroom desk she was getting up. Lt knee
## 30777 EE she tripped off side of sidewalk and hurt her ankle.
## 30778 EE she was removing the wood around the lock screws with knife when blade slipped & cut left thumb ()
## 30779 EE shearing sheep debris got into eye.
## 30780 EE shearing sheep in windy conditions felt something in eye.
## 30781 EE shelving books, bent over to pick up stack of books and hit head on corner of book truck
## 30782 EE shifting of weight on concrete buggy caused fall & injured left shoulder, l hand, and rt hand rt hand > lt ..
## 30783 EE shoe got caught on the carpet... Fell... Both hands, right elbow, chest, and both knees
## 30784 EE shoe heel caught the hem on her dress and fell down steps, contusion to left leg
## 30785 EE shoe heel got caught carpet on bottom step fe ll on lt knee causing pressure on lt ankle which was under the body
## 30786 EE shoe hit stump on uneven brick and fell and landing on lt side
## 30787 EE shoe stuck in uneven pavement on sidewalk injured both legs, lt foot, and back.
## 30788 EE shoe was caught on the edge of step causing her to fall
## 30789 EE shoes gripped on floor & EE fell on both knees in the hallway hurting both knees
## 30790 EE shoestring got caught on something in hall, EE fell face first to floor. Hall was very dimly litbroke skin lt knee, both knees hit floor hard
## 30791 EE shook a cold pack to activate it when it exploded and got into both of his eyes.
## 30792 EE shook down about 10 inmates on the last one shefelt a muscle in her right leg tighten as if it was a rubber band.
## 30793 EE shooting at approved targets-a piece of shrapnel from guilet jacket flew back and hit EE in the ear.
## 30794 EE shooting at training range-recoil of shot gun bruised EE's rt shoulder.
## 30795 EE shooting gun, the recoil of weapon caused in- jury to right arm in bicep area.
## 30796 EE shooting handgun on snow covered firing range when foot slipped.
## 30797 EE shooting revolver, she noticed her ears ringingshe couldn't her well - sensitive ears, decreased hearing ears.
## 30798 EE shoots hands w/a contractor who is bleeding andgot blood on her hand.
## 30799 EE shoowered before entering hog farm
## 30800 EE shot self with nail gun in the left finger. Seen in er, rtw the same day as injury. ()
## 30801 EE shot the shotgun and injured her right arm
## 30802 EE shoulder hurting while she was moping floor. Lt shoulder sprian. Went to doctor day after injury.
## 30803 EE shoulder pain when he picked up tool box, felt pain in lt shoulder joint later picked up child felt same pain.
## 30804 EE shoveling ice and felt pain in lower back
## 30805 EE shoveling sand into sand bags & fiberglass piece from handle of shovel broke off in pointer finger of right hand
## 30806 EE showering blind resident, while walking out of shower room, resident became aggressive & jerked back. Causing pain to lower back. Muscle spasm.
## 30807 EE showing committee tour of campus and twisted ankle on sidewalk.
## 30808 EE showing inmate how to add some shortening to fryer & shortening slipped from hand. Hot grease splashed on rt arm. Redness rt forearm & hand.
## 30809 EE showing student how to pull cap of needle. When student pulled cap off struck EE left index finger with needle.
## 30810 EE showing students a drill and he felt his right thigh and groin pull/back
## 30811 EE shredding old clothing with box cutter when shelost her grip, cutter slipped & scrapped inside ofright leg just above knee.
## 30812 EE shut car door on finger. He was on work premises, coming to work.
## 30813 EE shut car door on left thumb.
## 30814 EE shut closet door on left thumb
## 30815 EE shut door on right 2nd digit ()
## 30816 EE shut door to dinning room lt-thumb caught in door
## 30817 EE shut his finger in car door when he exited the vehicle.
## 30818 EE shut right thumb in door.
## 30819 EE shut rt middle finger in a door
## 30820 EE shut rt middle finger in the back of cottage door.
## 30821 EE shut the gate on her index finger and pulled it out without opending gate
## 30822 EE shut vehicle door on rt index finger while exiting vehicle. ****do not pay any bills on this claim****
## 30823 EE shuting back door to housekeeping office and shut rt hand in door.
## 30824 EE siad his back felt stiff but didn't hurt enough to complain & the next day-8-10-93- he said it was hurting back. No source given
## 30825 EE sipped on iced sidewalk going into the building,
## 30826 EE siting at desk when she felt something crawl on her leg & bit her.
## 30827 EE sits in high task chair to work on computer and serve counter customers. Legs swelled up, numb, tingles with cramping pain from knee down
## 30828 EE sittin at my dest hand paperclip in lthand & holder in rt. Brought up lt hand misjudged poked self in lt eye.
## 30829 EE sitting 1:1 w/pt, pt was being re-directed, kicked EE in chest area 2x ()
## 30830 EE sitting 1:1 w/pt, there was an eri, EE responded, later noticed that back was hurting ()
## 30831 EE sitting 1:1, pt refused to listen to EE, pt punched EE in face, both fell to floor ()
## 30832 EE sitting a traffic light, he was struck by one vehicle from rear and pushed into another. Recurr-ing headaches.
## 30833 EE sitting at computer-leaned back and chair brokecausing EE to fall backwards.
## 30834 EE sitting at control desk she felt something bite her on back of neck. Insect spider bite causeswelling and redness on back on neck.
## 30835 EE sitting at desk and slid feet under table and a piece of wood went into left foot
## 30836 EE sitting at desk by window when the wind blew the window glass out and it fell on her head. It scraped her skin & removed a wad of hair from her scalp. ()
## 30837 EE sitting at desk documenting chart & moved for- ward in chair - chair tripped fell onto floor stricking low back area.
## 30838 EE sitting at desk doing daily duties and paint fumes caused nausea.
## 30839 EE sitting at desk doing paperwork on some type of insect bit me on lt leg just above knee. Injured lt leg just above the knee.
## 30840 EE sitting at desk opening mail whn chair slipped frm undr her- hitting neck & back. EE fell 2nd tmewhen sitting back down - whls messed up on chair.
## 30841 EE sitting at desk typing letter. Felt something in the edge of her hair around ear. Brushed area, sting on ear and spider fell on desk. Joint pain.
## 30842 EE sitting at desk when metal grate from overhead light broke loose and fell on top of EE's head. Laceration.
## 30843 EE sitting at desk when shelving above collapsed books & shelf fell, I rolled out of way but had shelves fall on r hand, twisted shulder. Back
## 30844 EE sitting at desk working on daily transmittal when a piece of paper slipped from hand and hit her in rt eye.
## 30845 EE sitting at desk working-turned to left to work on cordenza and hit left knee on edge of desk
## 30846 EE sitting at desk writting-client came into room and picked up a chair and threw it hitting EE on left arm/shoulder.
## 30847 EE sitting at desk, became short of breath, had chest pains. ()
## 30848 EE sitting at desk, leaned to rt to give instructions, chair started rolling and EE fell onto another chair dislocating rt shoulder
## 30849 EE sitting at desk-bent over to pick up paper fromfile cabinet and felt pull in back.
## 30850 EE sitting at desk-pulling herself back & forth in chair on carpet, using toes, chair elevated in order to reach keyboard/felt pain in right knee
## 30851 EE sitting at gazebo-notice spider crawling on hand-killed it and notice discloration on hand.
## 30852 EE sitting at her desk & was asked to pull a file. When she stood up, lost footing, grabbed onto table to break fall & left knee hit floor-bruised
## 30853 EE sitting at light waiting for it to turn green- when other veh hit EE in rear pushing EE veh into another veh.
## 30854 EE sitting at light when hit in rear by another veh causing whiplash.
## 30855 EE sitting at table bitten by insects on on inner thigh
## 30856 EE sitting behind control desk of dorm 3 when she noticed a bump just above her right elbow
## 30857 EE sitting behind counseling client for about an hour. She stood up foot had gone to sleep. Steppedaround desk turned her ankle. Feel on floor.
## 30858 EE sitting beside client. Client started to spreadarms in air & finger hit EE in lft eye
## 30859 EE sitting client on toilet, client jerked on staff injuring rt shoulder.
## 30860 EE sitting down @ desk chair flew out from under her, hit floor on back & also hit back of head. Muscular injury of lower back
## 30861 EE sitting in an armed chair screening charts, reached lt to obtain chart, lost her balance & struck arm on chair. Injured rib cage area lt side
## 30862 EE sitting in boat as another EE got onto boat andknocked over gas can which caused gas to splash into EE's eyes and face.
## 30863 EE sitting in chair - bending underneath his desk to plug in palm pilot when his chair coiled back and EE felt pain in back
## 30864 EE sitting in chair and chair abruptly reclined causing whiplash to neck
## 30865 EE sitting in chair and chair collapsed and EE fell injuring lower back, rt rib cage, rt forearm and neck
## 30866 EE sitting in chair and inmate came up behind her and pushed the chair real hard - injured right leg and back
## 30867 EE sitting in chair and pulling self closer to computer-feet went forward and chair would not roll and EE fell out out chair.
## 30868 EE sitting in chair and was reaching for list, chair gave way under her and she fell. Hitting her head and pulled her back. Low back pain
## 30869 EE sitting in chair at desk. Hit knee on desk, when EE jumped to grab knee, twisted back.
## 30870 EE sitting in chair at lecture-chair broke pulled rt knee and ankle.
## 30871 EE sitting in chair collapsed throwing him out onto floor. Ring finger on rt hand rubbed against sharp metal piece and cut finger - lower back
## 30872 EE sitting in chair inside of bca & was leaning back in chair, chair fell out from under him, causing him to fall on floor - low back pain.
## 30873 EE sitting in chair monitoring patients during breakfast. EE leaned in to speak w/ other staff & the chair came out from under EE causing EE to land on floor on EE's bottom. ()
## 30874 EE sitting in chair that broke caused EE to fall to floor-landing on lower back.
## 30875 EE sitting in chair when chair tipped over EE felldown hitting lock on door with head
## 30876 EE sitting in chair when residet hit EE in the rt knee. EE walking resident back to unit when he kicked & hit EE several times in right leg
## 30877 EE sitting in chair when wheel came off causing eeto fall to floor. Felt severe pain in lower back at this time
## 30878 EE sitting in chair, reached up to bookshelf, heard a popping sound and felt sharp pain in rt shoulder
## 30879 EE sitting in chair, reaching down to right side to put paper in trash, chair fell over to right side and EE fell to floor hurting r shoulder, back
## 30880 EE sitting in chair, turned and chair broke, throwing EE on the floor. Injured right knee.
## 30881 EE sitting in chair-arm slipped off chair arm and EE lost her balance & fell into wooden chair arm, trying to regain balance and she fell again.
## 30882 EE sitting in chair-bent over removing scratch marks from bottom of desk-chair rolled from underneath EE and hit floor.
## 30883 EE sitting in chair-pushed back w/legs to a table to get some file folders-pushed back with her legsand felt a sharp pain across lower back
## 30884 EE sitting in chair. Chair broke loose from top portion causing him to fall backwards, injured lt arm, hand, rt elbow, hand.
## 30885 EE sitting in classroom during officer refresher training a bee stung him on his head area.
## 30886 EE sitting in closet and sheetrock fell from ceiling and hit EE in the head.
## 30887 EE sitting in computer lab chair, and it turned over as EE rolled to the left to hand student a folder ()
## 30888 EE sitting in construction traffic-when veh behindhim did not slow down and hit EE's veh in the rearinjuring rt elbow and hand
## 30889 EE sitting in dayroom, arms & face/neck burning, itching, hives ()
## 30890 EE sitting in desk chair, rolled chair back to get behind desk. Chair overturned due to loose con- crete on floor. EE fell on floor.
## 30891 EE sitting in his veh waiting to clear up collision when veh was struck in rear by another veh
## 30892 EE sitting in line of traffic when struck in rear by another veh.
## 30893 EE sitting in office an biten by insect on back ofneck.
## 30894 EE sitting in passenger seat of inmate transfer van, with seatbelt on, driver tried to avoid collision with tower, contusion rt side, neck, back
## 30895 EE sitting in patrol veh investigating a minor incident-when hit in rear by another veh.
## 30896 EE sitting in plastic chair for approx 4 minutes, chair collapsed and went straight down from his weight. Tenderness rt lower back.
## 30897 EE sitting in rolling chair, scooted backwards, chair flipped ()
## 30898 EE sitting in rolling chair-leaned over to open bottom file drawer-felt sharp pain in low mid back
## 30899 EE sitting in sbi issued veh when ov backed up striking EE's veh, minor damage to both veh's, EE not injured and did not seek any treatment
## 30900 EE sitting in smoking area in albemarle when her leg began to hurt & swell. It appeared somthing had bitten her leg.
## 30901 EE sitting in staff support room when a client hitee with fist in the face.
## 30902 EE sitting in swivel desk chair when chair broke and went out from under EE causing him to fall back hitting head/shoulders & arms on floor
## 30903 EE sitting in traffic waiting on light to change when ov hit EE veh from behind causing neck strain
## 30904 EE sitting in van and getting ready to get out of van when another vehicle knocked van up on curb. EE injured back and left shoulder.
## 30905 EE sitting in van at red light, 2 cars collided and hit van EE was in- headache, stiff neck, and shoulder
## 30906 EE sitting in veh as passenger while trk was in reverse when trk hit two park signs.
## 30907 EE sitting in veh completing a crash report-when another veh ran off rt of road and collided with EE's pushing EE into another veh.
## 30908 EE sitting in veh completing accident report when ov hit EE veh
## 30909 EE sitting in veh getting ready to get out when security officer backed into EE's veh.
## 30910 EE sitting in veh prepairing to move from parked position when another veh rolled from adjacent parking space and hit EE's veh in rear bumper.
## 30911 EE sitting in veh taking enforcement when struck on left driver side of veh.
## 30912 EE sitting in vehicle parked operating lidar for the tact 2009 operation when his veh was struck by an impaired female causing back pain
## 30913 EE sitting monitoring clients when started itching on stomach. Around 9:30 pm then entire body started itching and rash on entire body. ()
## 30914 EE sitting on 18" highstool on wheels while filingstool moved & EE fell & landed on buttox, lumbar contusion, out 2 days released ft sed work.
## 30915 EE sitting on a stool and reached over to pick up a pump-felt something pull in middle of back-couldnot stand up straight.
## 30916 EE sitting on bench with spiders and was bitten on upper leg
## 30917 EE sitting on picnic table eating lunch when bitten by insect on back of neck
## 30918 EE sitting on steps putting video tape in vcr- twisted body and knee started hurting.
## 30919 EE sitting on the floor in the clotheshouse installing shelving and heard his back pop. Back strain
## 30920 EE sitting on the floor with kids, getting up and down to chase after child, rest of day complained about knee being sore
## 30921 EE sitting typing chair, ankle under chair, turnedquickly and ankle foot caught. Lot of force on ankle.
## 30922 EE sitting under dining hall confined space re- moving & installing iron joints. Had disk problemsyears back. Strain lower back
## 30923 EE sitting w/ client who tried to get up & run outof room client's foot hooked EE's foot causing injury to left knee & ankle
## 30924 EE sitting with client at hospital. EE constantly refraining client from falling out of bed -slidingclient up in bed.
## 30925 EE sitting with client-client began to roll out ofbed-EE jumped to get client and injured back.
## 30926 EE sitting with patient at hospital on entering the bathroom a spider fell down on top of forearm bitting EE
## 30927 EE sitting with student in cafeteria, eating lunchee instructed student to use fork to eat with. Student bit EE lt index finger-broke skin.
## 30928 EE sittting on patio with clients; felt something sting her lt foot; looked down and saw yellow and black bug.
## 30929 EE skidded his car on a patch of ice while traveling back to wrok from training session and strained back and neck
## 30930 EE skin on hands peeling due to chemicals soaked through gloves onto skin
## 30931 EE skinned, bruised, and swelled rt knee as a result of trippeing on uneven pavemnt.
## 30932 EE slammed 2nd finger on left hand.
## 30933 EE slammed activity bus door on left pinky finger.
## 30934 EE slammed door against rt index middle index finger of the rt hand.
## 30935 EE slammed door and caught her left hand in door jam. Contusion.
## 30936 EE slammed door on her finger. ()
## 30937 EE slammed door on lt ring finger
## 30938 EE slammed finger between door and door frame while trying to get in.
## 30939 EE slammed finger in bathroom door.
## 30940 EE slammed finger in door while letting othe shiftinto building
## 30941 EE slammed fingers of left hand in window as letting it down.
## 30942 EE slammed hand in door. Contusion/sprain l wrist/forearm.
## 30943 EE slammed her finger in a door... Right index finger
## 30944 EE slammed her left index finger in a filing cabinet drawer while filing. Subungual hematoma.
## 30945 EE slammed index finger in door.
## 30946 EE slammed left hand in closet door
## 30947 EE slammed left thumb in supply cabinet
## 30948 EE slammed right index finger in door
## 30949 EE slammed right middle finger in door while escorting inmates to the dining hall
## 30950 EE slammed right middle finger in steel door.
## 30951 EE slammed rt hand into van door while unloading material
## 30952 EE slammed rt hand ring finder into door. EE tip of finger was severed and could not be reattached. ()
## 30953 EE slammed rt index finger in car door
## 30954 EE slammed rt thumb into cabinet door
## 30955 EE slammed the door on her finger while placing aninmate in the cell
## 30956 EE slammed the gate slide on her rt index finger. While her finger was pinched, EE removed her fingerto open the gate.
## 30957 EE slashed hot gravy on wrist while trying to transport container
## 30958 EE slept on floor and awoke with low back pain which relates to 8/13 injury from subduing and carrying patient
## 30959 EE sliced arm on edge of metal door while placing box on tip of cabinet.
## 30960 EE sliced thumb with exacto knife while cutting out a picture for exhibits
## 30961 EE sliced while cutting cabbage l thumb ()
## 30962 EE slicing meat and cut rt thumb
## 30963 EE slicing orange to eat and cut left thumb.
## 30964 EE slid I a puddle of ice-cream and fell landing on lt buttocks, hip, ankle, nad hnad.
## 30965 EE slid and fell on her left side upon standing, she realized she had injuried her right ankle
## 30966 EE slid and fell on right shoulder at double doors wet floor
## 30967 EE slid and fell on slick floor near office, cheekbone hit tile floor. Fractured little finger
## 30968 EE slid black snake off porch, put his foot on snake. Snake bit EE's right middle finger/
## 30969 EE slid chair & felt something pull or twist in her back. Referred to ortho. Out of work since inj
## 30970 EE slid down on brick pavement due to mud accumulation from rain. Injured lt knee.
## 30971 EE slid hand along edge of newly installed metal face plate and cut left index finger.
## 30972 EE slid off tailgate was holding on but driver accelerated quickly-injured lt ankle/foot
## 30973 EE slid on eggs that was on floor in pt-rm EE was able to break the fall by holding on to dresser in pt-rm. Discomfort to rt-ankle & rt-lt back
## 30974 EE slid on mud in a puddle while leaving u2 bldg at the courtyard entrance, slid to ground on right knee & left hand ()
## 30975 EE slid on object on the floor injurying her lt foot
## 30976 EE slid on slippery bathroom floor, which had beensprayed with air freshener. EE's left knee hit thecommode causing pain in her knee and swelling.
## 30977 EE slid on wet floor while restriaining juvenile and struck rt knee on the metal bed rail
## 30978 EE slid open office window and window fell out of frame. EE reached for window and strained back
## 30979 EE slid tank from the vehicle to avoid slamming onto the concrete. The next morning EE woke up w/ asharp pain on left lower side.
## 30980 EE slid the chair located in k & l dorm back to open the cabinet & sat up too fast & bumped her head on the panel behind the chair.
## 30981 EE sliding binding machine off shelf and dropped it on rt foot.
## 30982 EE sliding out of chair, EE tried to catch her. Injuring EE's rt wrist and lower rt side and back. Soreness middle wrist to forearm
## 30983 EE sliding the gate's support bar closed and her finger got caught in gate.
## 30984 EE slip and fell on a greasy floor... Injured righthip and back of head
## 30985 EE slip and fell on wet floor injuring head, neck, and back
## 30986 EE slip on wet floor in hallway of entrance insidethe building to work site (tacc)
## 30987 EE sliped and fell down the steps... Injured her legs, arms, elbow and buttocks
## 30988 EE sliped and fell on snow/ice.... Injured right hip/leg
## 30989 EE slipeed while emptying the laundry bag and tried to brace hisself and felt a sharp pain, 15mins later escorting pt, and he fell pinning hand/wall.
## 30990 EE slippe dand fell on wet floor.
## 30991 EE slipped & fell down on floor on hands & knees in front of refrigerator
## 30992 EE slipped & fell down stairs in back stairwell; which caused injury to her foot, twisting it.
## 30993 EE slipped & fell down the hallway of hoey admin bldg 1st floor. It was raining outside.
## 30994 EE slipped & fell foward due to wet floor-landing on left knee-right hand -laceration right middle finger
## 30995 EE slipped & fell in hallway
## 30996 EE slipped & fell in ladies restroom on 5th floor in albemarle bldg injured lt knee
## 30997 EE slipped & fell in liquid on floor
## 30998 EE slipped & fell in the hallway. Carpet had just been cleaned, which caused the slickness. EE struck right knee when she fell & suffe
## 30999 EE slipped & fell in the rain while she was on the way to her assigned post exiting the line up room near soar & psych trailers ()
## 31000 EE slipped & fell off moving doly & broke wrist.
## 31001 EE slipped & fell on a rock
## 31002 EE slipped & fell on cement stairs. Scraped & bruised both legs & knees. Some swelling of left leg.
## 31003 EE slipped & fell on floor wet w/stripper
## 31004 EE slipped & fell on ham spilled on floor from salad bar in dining room. Fell on butt and right hip
## 31005 EE slipped & fell on ice in parking lot striking lt side of hand & hip on pavement
## 31006 EE slipped & fell on ice while investigating traffic collision on I-40 in davie co. EE experienced pain to right shoulder & numbness in right hand.
## 31007 EE slipped & fell on knee while she was turning off shower that had been lt dripping. Sprained rt knee.
## 31008 EE slipped & fell on soapy wet floor outside test-ing room on 4th floor when she exited testing roomto go down hallway to use phone. Lt hip, checkbone
## 31009 EE slipped & fell on stairs injury rt-knee calf & ankle
## 31010 EE slipped & fell on steps exiting dining hall
## 31011 EE slipped & fell on wer floor in kitchen. Lumbar contusion.
## 31012 EE slipped & fell on wet floor causing bruise to left knee and light strain to left leg
## 31013 EE slipped & fell on wet floor during physical confrontation w/inmate. Fell on wet floor after incident unable to get out of bed.
## 31014 EE slipped & fell on wet floor in lobby (as resultof heavy rain) as she was returning from escortingoffender out
## 31015 EE slipped & fell on wet spot on floor-hit his head on meat slicer & while trying to recover knee gave out & fell on rt knee
## 31016 EE slipped & fell trying to access the location ofan air conditioning unit
## 31017 EE slipped & fell while cleaning restroom spraininlt ankle
## 31018 EE slipped & fell while trying to mop up a puddle by shower, his right foot slipped & his weight shifted to his left knee, caused left foot twist
## 31019 EE slipped & fell while walking in the back hall way. Floor wet from mopping, & no caution signs. EE landed on both knees.
## 31020 EE slipped a post-it note and fell injuring his lt knee
## 31021 EE slipped an fell hurt right knee
## 31022 EE slipped an fell in dishroom and struck left forearm and wrist
## 31023 EE slipped and EE caught client injuring lt shoulder.
## 31024 EE slipped and feel on wet bathroom floor injury left knee and right elbow
## 31025 EE slipped and felf hurting her back and head
## 31026 EE slipped and fell
## 31027 EE slipped and fell ()
## 31028 EE slipped and fell after leaving court room.
## 31029 EE slipped and fell after walking on recently shampooed carpet - contusion lt knee
## 31030 EE slipped and fell against sign on sidewalk whilewalking across campus brickyard. Laceration on forehead.\\
## 31031 EE slipped and fell and hit face against wall.
## 31032 EE slipped and fell as he walked into visitation area for training. Stepped on mat inside door, it moved causing the fall. Right knee.
## 31033 EE slipped and fell as he was walking up steps-swollen rt knee
## 31034 EE slipped and fell as she was coming to relieve another employee
## 31035 EE slipped and fell as she was entering the building to work. ()
## 31036 EE slipped and fell at rear entrance to building, slipped on pine needles.
## 31037 EE slipped and fell at the stairway injuring her rib cage/back
## 31038 EE slipped and fell at tram office.
## 31039 EE slipped and fell backward hitting elbow, wrist and back ()
## 31040 EE slipped and fell catching self on freezer hurt-ing finger on left hand, ring finger.
## 31041 EE slipped and fell coming down stairs injuring rt/left kneecap and bruises.
## 31042 EE slipped and fell coming down the hill.
## 31043 EE slipped and fell coming into bldg-fell on rt side injuring knee.
## 31044 EE slipped and fell down 8 stairs and landed on the basements platform. Injured left foot, left shoulder and buttocks.
## 31045 EE slipped and fell down a stream embankment injuring lower back
## 31046 EE slipped and fell down auditorium steps straining lt ankle (called er- states inj was to the rt ankle... Phy has rated both ankles
## 31047 EE slipped and fell down flight of stairs injuringchest and both legs.
## 31048 EE slipped and fell down front of stairs preparing for class. Injury to left hip and back
## 31049 EE slipped and fell down on rocks with hip ()
## 31050 EE slipped and fell down some steps with multiple body parts injured. Pl atty-j. Tseng-919-656-5887- atty recieves (( full check in addition)) to full check to EE on 4th payment cycle
## 31051 EE slipped and fell down stairs in dorm injuring his lower back and rt leg
## 31052 EE slipped and fell down stairwell landing on lt knee and both palms; hit wall midway of steps.
## 31053 EE slipped and fell down step causing injury to her lt ankle
## 31054 EE slipped and fell down step ladder while doing inventory injurying his lower back
## 31055 EE slipped and fell down steps injuring her back
## 31056 EE slipped and fell down steps injurying her knee.
## 31057 EE slipped and fell due to urine on the floor - rthip and lumbar
## 31058 EE slipped and fell due to water in the floor hitting right elbow
## 31059 EE slipped and fell due to water on floor in kitchen prep area
## 31060 EE slipped and fell due to wet shoes on floor and sprained lt arm
## 31061 EE slipped and fell fracturing both bones in left arm trying to break fall
## 31062 EE slipped and fell from a bead on the floor. Injured low back
## 31063 EE slipped and fell going up stairs landing on left knee and falling over on back ********atty steve bowden, 800/523-4845***********
## 31064 EE slipped and fell hitting coccyx on corner of timber
## 31065 EE slipped and fell in a puddle of water injuring his lt foot
## 31066 EE slipped and fell in bathing straining back and hip
## 31067 EE slipped and fell in breakroom injuring lower back
## 31068 EE slipped and fell in breakroom. There was a wet spot on the floor
## 31069 EE slipped and fell in dining hall entrance.
## 31070 EE slipped and fell in dining room floor
## 31071 EE slipped and fell in floor stripper on back. Hitleft elbow and back of head.
## 31072 EE slipped and fell in front of handwash sink injuring left leg, hip and hand
## 31073 EE slipped and fell in garage injuring hip.
## 31074 EE slipped and fell in hallway from liquid spilled
## 31075 EE slipped and fell in hallway while proceeding tooffice from copy room. Floors had been recently waxed.
## 31076 EE slipped and fell in hallway.
## 31077 EE slipped and fell in office spraining wrist
## 31078 EE slipped and fell in parking lot injuring his lt hand and rt knee
## 31079 EE slipped and fell in parking lot injuring lt hand and rt knee
## 31080 EE slipped and fell in parking lot.
## 31081 EE slipped and fell in resident spittum.
## 31082 EE slipped and fell in restroom from water on floor. She landed on rt hand & rt knee.
## 31083 EE slipped and fell in snow and hurt left wrist and rt knee
## 31084 EE slipped and fell in snow on sidewalk and injured left elbow and left hip
## 31085 EE slipped and fell in the dishroom
## 31086 EE slipped and fell in the doorway of office. She fell on left knee and left arm is swollen, sore left leg
## 31087 EE slipped and fell in the front lobby, contusion to r leg and forehead
## 31088 EE slipped and fell in the kitchen--she cut 2 fingers on the bottom of the fridge, has a headache and backache, and her left wrist is very sore ()
## 31089 EE slipped and fell in urine on the floor, injuring back.
## 31090 EE slipped and fell in water on fllor and twisted lt knee
## 31091 EE slipped and fell in water on floor and bruised both knees
## 31092 EE slipped and fell in water on pt. S floor in front of toilet
## 31093 EE slipped and fell in watrer... Twisted her left ankle
## 31094 EE slipped and fell in wet spot on the floor
## 31095 EE slipped and fell in wet/oily parking deck and hit head on concrete
## 31096 EE slipped and fell injuring back
## 31097 EE slipped and fell injuring both elbows and knees
## 31098 EE slipped and fell injuring both knee, lt arm, and lower back
## 31099 EE slipped and fell injuring her head
## 31100 EE slipped and fell injuring her rt knee
## 31101 EE slipped and fell injuring rt knee and left wrist
## 31102 EE slipped and fell into a fence topped with razorwire and cut his head.
## 31103 EE slipped and fell into a puddle of water injurying her lt knee rtw 1/20; oow 1/21/99
## 31104 EE slipped and fell into rock work and exhibit pool
## 31105 EE slipped and fell landing on bolt puncturing lt forearm
## 31106 EE slipped and fell landing on her rt knee and rt hand
## 31107 EE slipped and fell landing on left hip.
## 31108 EE slipped and fell off a step of a ladder injuring his head, neck, and back
## 31109 EE slipped and fell off ladder while repairing steam line. Fell on right wrist and back.
## 31110 EE slipped and fell off of steps. EE seen at urgent care.
## 31111 EE slipped and fell on a floor that had just been waxed. Contusions to left arm, wrist and hip.
## 31112 EE slipped and fell on a fresh waxed floor injuring his lt thigh and lt elbow
## 31113 EE slipped and fell on a grassy slope and severed his righ patellar tendon ()
## 31114 EE slipped and fell on a hill while carrying a roll of lamination--EE injured her rt hip/lower back
## 31115 EE slipped and fell on a lid container injurying her hip and leg.
## 31116 EE slipped and fell on a mat in the hall
## 31117 EE slipped and fell on a mat injuring his rt hip and wrist
## 31118 EE slipped and fell on a patch of ice while makingyard routine rounds.
## 31119 EE slipped and fell on a piece of wood... Injured left knee right index finger
## 31120 EE slipped and fell on a slick concrete floor
## 31121 EE slipped and fell on a stump and injured his inner left thigh
## 31122 EE slipped and fell on a waxed floor injuring lt ankle, rt knee, and lt hand
## 31123 EE slipped and fell on a wet 4 x 4 board injuring his lower back
## 31124 EE slipped and fell on a wet and greasy floor injuring neck, hands, and shoulder
## 31125 EE slipped and fell on a wet area outside cleaningsupply closet in basement of archdale building.
## 31126 EE slipped and fell on a wet floor
## 31127 EE slipped and fell on a wet floor injuring buttocks, hands, arms finger
## 31128 EE slipped and fell on a wet floor injuring his lt ankle
## 31129 EE slipped and fell on a wet floor... Injured right knee and ankle
## 31130 EE slipped and fell on a wet floor... Injured rightwrist and thumb.... Right knee bruised
## 31131 EE slipped and fell on a wet floor... Injuring her left knee
## 31132 EE slipped and fell on a wet floor.... Head
## 31133 EE slipped and fell on a wet floor.... Injured his right leg and right shoulder
## 31134 EE slipped and fell on a wet floor; broke her right wrist
## 31135 EE slipped and fell on a wet spot on the floor.
## 31136 EE slipped and fell on a wet waxed floor injuring his lt knee, foot and hip
## 31137 EE slipped and fell on an embankment, severe pain in his lower leg
## 31138 EE slipped and fell on an icy patch injuring her left arm and back
## 31139 EE slipped and fell on an icy patch injuring her right hip and left knee
## 31140 EE slipped and fell on an uneven sidewalk injuringher rt finger, rt knee and caused nose bleed
## 31141 EE slipped and fell on back and rt elbow while performing housing site evaluations with other employees.
## 31142 EE slipped and fell on bathroom floo... Fell face down... Left knee... Chin
## 31143 EE slipped and fell on bathroom floor. Injury to left arm, wrist, ankle, leg and buttocks
## 31144 EE slipped and fell on black ice in parking lot hit left hip and elbow
## 31145 EE slipped and fell on black ice landing on rt knee
## 31146 EE slipped and fell on bridge injuring his knee
## 31147 EE slipped and fell on broken sidewalk-injuries unknown
## 31148 EE slipped and fell on carpet in hallway injuring rt elbow
## 31149 EE slipped and fell on cement steps injury to right leg left wrist & hand
## 31150 EE slipped and fell on concrete while working stock truck injuring rt knee
## 31151 EE slipped and fell on copy machine, left index finger, right foot & ankle.
## 31152 EE slipped and fell on floor
## 31153 EE slipped and fell on floor injuring her left ankle, right knee, and right shoulder
## 31154 EE slipped and fell on floor injuring her rt elbow
## 31155 EE slipped and fell on floor injuring left knee shoulder and rt hip
## 31156 EE slipped and fell on floor landing on her buttock and wrist area
## 31157 EE slipped and fell on floor that custodian was sweeping. She landed on both knees and her rt elbow. Contusion both knees and elbows.
## 31158 EE slipped and fell on floor walking out of office spraining and bruising low back and left arm
## 31159 EE slipped and fell on floor where someone had vomited. Bruised left hip and left arm. Small cut on left elbow
## 31160 EE slipped and fell on floor while conducting survey--injuring lt wrist, lt hip, and lower back
## 31161 EE slipped and fell on floor while counting inmates injuring her back/buttocks
## 31162 EE slipped and fell on floor, twisting her right ankle, struck her left kne and injuried her facial area and nose when she struck the floor
## 31163 EE slipped and fell on floor... ..
## 31164 EE slipped and fell on freshly mopped floor while walking down a hallway - low back
## 31165 EE slipped and fell on front steps injuring left shoulder
## 31166 EE slipped and fell on grass injuring his left ankle
## 31167 EE slipped and fell on hands and knees surgery scheduled for 10-5-2001
## 31168 EE slipped and fell on her knees--food tray also struck EE in the mouth
## 31169 EE slipped and fell on ice as she reported to work
## 31170 EE slipped and fell on ice breaking his left leg.
## 31171 EE slipped and fell on ice covered ramp connectingmedical school wing b and unc hospitals-knocked unconscious by fallin on concrete ramp
## 31172 EE slipped and fell on ice in building loading dock parking lot. Fell on left side hip and left wrist. ()
## 31173 EE slipped and fell on ice in front of master mechanic's office twisting left knee.
## 31174 EE slipped and fell on ice in p/lot injured back and left wrist.
## 31175 EE slipped and fell on ice in parking lot
## 31176 EE slipped and fell on ice in parking lot and fell injuring lt elbow and rt shoulder
## 31177 EE slipped and fell on ice in parking lot. EE hurtright hip, elbow, and knee. Scratched right shoulder and neck.
## 31178 EE slipped and fell on ice in the facility parking lot.
## 31179 EE slipped and fell on ice injuring head, shoulder, back, and hip
## 31180 EE slipped and fell on ice injuring her back
## 31181 EE slipped and fell on ice injuring her left foot
## 31182 EE slipped and fell on ice injuring her right shoulder
## 31183 EE slipped and fell on ice injuring her right sideof back, pelvis, and right shoulder
## 31184 EE slipped and fell on ice injuring his left elbowand left side
## 31185 EE slipped and fell on ice injuring his right shoulder, left neck and right skull
## 31186 EE slipped and fell on ice injuring rt leg and back rehab-carolina case mgmt - pam harris
## 31187 EE slipped and fell on ice landing on left hand.
## 31188 EE slipped and fell on ice near car injuring ribcage
## 31189 EE slipped and fell on ice on floor injuring her lower back
## 31190 EE slipped and fell on ice on sidewalk injuring rt knee, hands - EE 26 weeks pregnant
## 31191 EE slipped and fell on ice on walkway and injured low back and tailbone
## 31192 EE slipped and fell on ice outside and injured her left arm, left hand, and back
## 31193 EE slipped and fell on ice spraining his right ankle
## 31194 EE slipped and fell on ice while assisting motorist
## 31195 EE slipped and fell on ice while going up the steps... Back and hips
## 31196 EE slipped and fell on ice while investigating an accident
## 31197 EE slipped and fell on ice while spreading salt chemicals on parking lot in order to clear parkinglot.
## 31198 EE slipped and fell on ice while walking across parking lot
## 31199 EE slipped and fell on ice while walking across parking lot injuring rt wrist and hand
## 31200 EE slipped and fell on ice while walking from one building to another
## 31201 EE slipped and fell on ice while walking on a walkway
## 31202 EE slipped and fell on ice---striking buttocks
## 31203 EE slipped and fell on ice. Injured low back/hip.
## 31204 EE slipped and fell on ice. Injured shoulder/back. **********salary continuance******************* **employer has approved chiro treatment**
## 31205 EE slipped and fell on ice. Strained wrist
## 31206 EE slipped and fell on ice... Buttocks and right hip
## 31207 EE slipped and fell on ice... Injured his left shoulder, left arm, and hand
## 31208 EE slipped and fell on ice... Injured the back of his head
## 31209 EE slipped and fell on ice... Left knee, left ankle, right elbow/shoulder
## 31210 EE slipped and fell on ice... Lower back and tail bone
## 31211 EE slipped and fell on ice... Right shoulder
## 31212 EE slipped and fell on ice.... Injured his left ribcage
## 31213 EE slipped and fell on ice.... Left lower back
## 31214 EE slipped and fell on ice.... Shoulder and head
## 31215 EE slipped and fell on ice...... Injured right kneeand right foot
## 31216 EE slipped and fell on ice/snow, injuring left knee
## 31217 EE slipped and fell on icegoing into building to do a job. Injured wrist.
## 31218 EE slipped and fell on icy covered parking lot.
## 31219 EE slipped and fell on icy gravel; injured his back and head
## 31220 EE slipped and fell on icy sidewalk injuring his lt hand/wrist--having pain in neck and back
## 31221 EE slipped and fell on icy step landing on left hip.
## 31222 EE slipped and fell on icy walk way landed on rt hip.
## 31223 EE slipped and fell on icy walkway
## 31224 EE slipped and fell on icy walkway going into library atrium for work.
## 31225 EE slipped and fell on juice rack in the middle ofstaircase injuring rt elbow and shoulder
## 31226 EE slipped and fell on kitchen floor. Twisted back, leg, arm and wrist
## 31227 EE slipped and fell on left knee and elbow
## 31228 EE slipped and fell on left side causing injury to left shoulder, arm, knee and left foot.
## 31229 EE slipped and fell on metal steps...... Index finger, left leg, shin
## 31230 EE slipped and fell on packed snow on sidewalk injuring neck and rt hip
## 31231 EE slipped and fell on pavement
## 31232 EE slipped and fell on pavement... Injured left side... Swelling in the left hand
## 31233 EE slipped and fell on recently waxed floor sprainlt knee/hand/wrist & shoulder
## 31234 EE slipped and fell on right knee
## 31235 EE slipped and fell on rock bank. Injury to right arm
## 31236 EE slipped and fell on sidewalk and injured left hip and leg
## 31237 EE slipped and fell on sidewalk coming into work injuring rt shoulder, rt hand, and lt knee
## 31238 EE slipped and fell on sidewalk injuring hand and backside
## 31239 EE slipped and fell on sidewalk injuring her lt ankle
## 31240 EE slipped and fell on sidewalk; injured left hand & bump above left eye
## 31241 EE slipped and fell on slick floor injuring lt rib and arm
## 31242 EE slipped and fell on slick spot in floor bruised hip, left arm and rightk nee
## 31243 EE slipped and fell on slippery floor injuring rt hip and elbow
## 31244 EE slipped and fell on snow on sidewalk injuring left elbow and left hip
## 31245 EE slipped and fell on some cleaning solution an inmate was cleaning the floor with the solutioninjury to the lower back
## 31246 EE slipped and fell on some ice
## 31247 EE slipped and fell on some ice.
## 31248 EE slipped and fell on some liquid spill that was on the floor injuring lt shoulder, rt knee and lower back
## 31249 EE slipped and fell on some sand on steps injuring his lt ankle
## 31250 EE slipped and fell on some wet steps injuring both elbows and lt hip
## 31251 EE slipped and fell on something in dining room area.
## 31252 EE slipped and fell on something slick on floor.
## 31253 EE slipped and fell on stair tread; injured his left hip and shoulder, lower back
## 31254 EE slipped and fell on staircase injuring neck and back
## 31255 EE slipped and fell on stairs injuring lt arm, rt ankle, and buttock
## 31256 EE slipped and fell on stairs... Injuring his ankleand middle right toe
## 31257 EE slipped and fell on stairs; injured right arm and elbow, right knee sore, twisted back and neck
## 31258 EE slipped and fell on standing water
## 31259 EE slipped and fell on steps
## 31260 EE slipped and fell on steps and injured both knees
## 31261 EE slipped and fell on steps and twisted rt ankle
## 31262 EE slipped and fell on steps in front of building injuring her lt hip and thigh
## 31263 EE slipped and fell on steps injuring his rt knee and rt wrist
## 31264 EE slipped and fell on steps while shoveling ice.
## 31265 EE slipped and fell on steps while walking down stairs
## 31266 EE slipped and fell on steps while walking out of building injuring her rt foot
## 31267 EE slipped and fell on the ice in parking lot as she stepped upto walk on sidewalk. Injury to left side of body, shoulder, arm, hand, hip and leg
## 31268 EE slipped and fell on the ice on the sidewalk
## 31269 EE slipped and fell on the kitchen floor causing her to land on her left elbow.
## 31270 EE slipped and fell on the restroom landing on herrt side injuring her rt rib cage
## 31271 EE slipped and fell on the walk way at the front entrance gate.
## 31272 EE slipped and fell on the wet pavement landing onleft knee. Laceration.
## 31273 EE slipped and fell on tile floor exiting the classroom. Injury to left knee
## 31274 EE slipped and fell on tile floor fracturing left ankle and bruising shoulder, neck, head, and hip
## 31275 EE slipped and fell on tile floor while entering a door.
## 31276 EE slipped and fell on uneven pavement and sprained left foot
## 31277 EE slipped and fell on uneven pavement injuring rt hand and rt knee
## 31278 EE slipped and fell on uneven pavement.
## 31279 EE slipped and fell on uneven sidewalk injuring lt side of body, elbow, finger and wrist
## 31280 EE slipped and fell on urine in the bathroom injuring her back and buttock
## 31281 EE slipped and fell on water in hallway and hurt foot.
## 31282 EE slipped and fell on water injuring her rt leg
## 31283 EE slipped and fell on water spill in bathroom while bathing resident, causing her to fall on her back.
## 31284 EE slipped and fell on water that had been spilledon the floor in the hallway near the elevator in the basement on the archdale building. EE hit the..
## 31285 EE slipped and fell on water twisting rt leg and ankle.
## 31286 EE slipped and fell on waxed floor injuring her rt arm
## 31287 EE slipped and fell on waxed floor injuring rt wrist and lt knee
## 31288 EE slipped and fell on waxed floor striking her rt knee on the floor
## 31289 EE slipped and fell on waxed floor. EE was going to restroom. Injury to hip and lower back
## 31290 EE slipped and fell on waxed floor. Shoes were wetwhen entering building. EE is in first trimester pregnancy
## 31291 EE slipped and fell on wet air vent.. Sprain to left knee
## 31292 EE slipped and fell on wet cafeteria floor. Signs were not posted.
## 31293 EE slipped and fell on wet concrete in front of building/dorm injuring rt knee
## 31294 EE slipped and fell on wet deck injuring head, neckhip, ankle and shoulder
## 31295 EE slipped and fell on wet floor ()
## 31296 EE slipped and fell on wet floor and strained low back
## 31297 EE slipped and fell on wet floor being cleaned by the inmates.
## 31298 EE slipped and fell on wet floor bruising rt leg, hip and hand
## 31299 EE slipped and fell on wet floor causing a cut on left leg and left arm sore
## 31300 EE slipped and fell on wet floor causing back injury
## 31301 EE slipped and fell on wet floor causing injury to her rt arms/hand, rt hip and lt legs
## 31302 EE slipped and fell on wet floor causing rt hip and leg injury
## 31303 EE slipped and fell on wet floor forward landing on chest and both arms.
## 31304 EE slipped and fell on wet floor from water spill.
## 31305 EE slipped and fell on wet floor hitting head against metal door facing ()
## 31306 EE slipped and fell on wet floor in client's bed-room landed on rt side-hitting head on dresser.
## 31307 EE slipped and fell on wet floor in front of dish machine striking back against dish machine handle.
## 31308 EE slipped and fell on wet floor in medlin campus center injuring left foot
## 31309 EE slipped and fell on wet floor injuring her back
## 31310 EE slipped and fell on wet floor injuring her back, trunk, lt shoulder, lt leg and lt foot
## 31311 EE slipped and fell on wet floor injuring her lt leg and rt knee
## 31312 EE slipped and fell on wet floor injuring her rt leg/knee/back
## 31313 EE slipped and fell on wet floor injuring his lt knee
## 31314 EE slipped and fell on wet floor injuring his lt leg
## 31315 EE slipped and fell on wet floor injuring his lt leg/knee
## 31316 EE slipped and fell on wet floor injuring his rt knee and lower back area
## 31317 EE slipped and fell on wet floor injuring his rt shoulder
## 31318 EE slipped and fell on wet floor injuring his rt wrist
## 31319 EE slipped and fell on wet floor injuring left arm
## 31320 EE slipped and fell on wet floor injuring left hip and both elbows
## 31321 EE slipped and fell on wet floor injuring left knee and elbow.
## 31322 EE slipped and fell on wet floor injuring lower back
## 31323 EE slipped and fell on wet floor injuring lt knee
## 31324 EE slipped and fell on wet floor injuring lt shoulder
## 31325 EE slipped and fell on wet floor injuring lt shoulder/elbow
## 31326 EE slipped and fell on wet floor injuring rt ankle
## 31327 EE slipped and fell on wet floor injuring rt elbowand rt hand
## 31328 EE slipped and fell on wet floor injuring rt hand
## 31329 EE slipped and fell on wet floor injuring stomach area - EE is pregnant
## 31330 EE slipped and fell on wet floor injurying her back.
## 31331 EE slipped and fell on wet floor injurying her middle lt finger.
## 31332 EE slipped and fell on wet floor landing on buttocks
## 31333 EE slipped and fell on wet floor landing on rt side. Injured rt knee and hip.
## 31334 EE slipped and fell on wet floor striking head on door
## 31335 EE slipped and fell on wet floor striking his backand head
## 31336 EE slipped and fell on wet floor striking lt shoulder and head
## 31337 EE slipped and fell on wet floor walking into a bedroom and hurt rt knee.
## 31338 EE slipped and fell on wet floor wax. EE observed wet sign outside door. Injured back, right side, right ankle, elbow, face.
## 31339 EE slipped and fell on wet floor while chasing patient injuring back, left shoulder and rt knee
## 31340 EE slipped and fell on wet floor while going down steps injuring rt knee
## 31341 EE slipped and fell on wet floor, contusion to right knee, elbow and lower back pain
## 31342 EE slipped and fell on wet floor.
## 31343 EE slipped and fell on wet floor. Contusion both knees.
## 31344 EE slipped and fell on wet floor. EE had been advised not to walk on wet floor. Fracture to right wrist
## 31345 EE slipped and fell on wet floor. Injured left knee and ankle.
## 31346 EE slipped and fell on wet floor. Injured right elbow and lower back.
## 31347 EE slipped and fell on wet floor. Injured top of left shoulder
## 31348 EE slipped and fell on wet floor. Injury to lowerback, neck and head.
## 31349 EE slipped and fell on wet floor. Lt elbow abrasion, cut on rt thumb, lower back
## 31350 EE slipped and fell on wet floor. Seen at er and released back to work on 11/16/09. ()
## 31351 EE slipped and fell on wet floor. Strained right knee and muscular injury to back.
## 31352 EE slipped and fell on wet floor... Injured lower back
## 31353 EE slipped and fell on wet floor... No sign indicating that the floor was wet
## 31354 EE slipped and fell on wet floor; injured her left knee
## 31355 EE slipped and fell on wet grass, landing on low back. Got up and fell again on rt. Hip.
## 31356 EE slipped and fell on wet grass. Injured ankle.
## 31357 EE slipped and fell on wet leaves injuring left knee and foot.
## 31358 EE slipped and fell on wet metal grate injuring rt hip and finger
## 31359 EE slipped and fell on wet mulch while reaching for student on playground equipment
## 31360 EE slipped and fell on wet pavement injuring back, neck, rt shoulder and rt hand
## 31361 EE slipped and fell on wet pavement leaving a workshop
## 31362 EE slipped and fell on wet rocks injuring her left side, left shoulder, left forearm
## 31363 EE slipped and fell on wet rocks while hiking... Rotator cuff, left shoulder, and left forearm
## 31364 EE slipped and fell on wet sidewalk injuring her left hip, hand/ankle
## 31365 EE slipped and fell on wet sidewalk injuring her lt ankle and bruising rt knee
## 31366 EE slipped and fell on wet sidewalk straining rt ankle
## 31367 EE slipped and fell on wet steps causing back injury
## 31368 EE slipped and fell on wet/waxed floor injuring his lt wrist
## 31369 EE slipped and fell on wood floor and injured hislower back
## 31370 EE slipped and fell over some floor mats that was against a wall.
## 31371 EE slipped and fell over some steps injuring his nose, lt knee, rt shoulder, and elbow
## 31372 EE slipped and fell over water.... Right ankle, left elbow, and knee were bruised.
## 31373 EE slipped and fell pulling muscle in rt shoulder
## 31374 EE slipped and fell stepping off elevator striking her head on floor
## 31375 EE slipped and fell striking her rt knee on steps
## 31376 EE slipped and fell to the ground striking his lt knee
## 31377 EE slipped and fell twisting her rt foot
## 31378 EE slipped and fell twisting his lt ankle
## 31379 EE slipped and fell twisting left ankle
## 31380 EE slipped and fell twisting lt ankle - strained lt foot
## 31381 EE slipped and fell walking across campus. Injuringrt knee.
## 31382 EE slipped and fell while attempting to enter the restroom; landed on her buttocks
## 31383 EE slipped and fell while coming out of shower room
## 31384 EE slipped and fell while descending a hill and injured rt arm and shoulder
## 31385 EE slipped and fell while exiting bathroom causinginjury to her rt wrist.
## 31386 EE slipped and fell while getting out of a truck in parking lot
## 31387 EE slipped and fell while getting water up off thefloor. Left hip and lumbosacral region contusion sprain
## 31388 EE slipped and fell while going down stairs injuring her lt knee
## 31389 EE slipped and fell while going downs stairs injuring her rt foot
## 31390 EE slipped and fell while goining down stairs and struck lt upper arm on cement
## 31391 EE slipped and fell while making security rounds of the unit. Right wrist sprain.
## 31392 EE slipped and fell while on crossing a creek on patrol. Injured rt knee
## 31393 EE slipped and fell while opening gate-hit back of head
## 31394 EE slipped and fell while patroling injuring chest
## 31395 EE slipped and fell while putting trash inside the truck ()
## 31396 EE slipped and fell while responding to code yellow-bruised elbow, knee, back, finger
## 31397 EE slipped and fell while scraping state car and bruised left shoulder
## 31398 EE slipped and fell while unloading debris
## 31399 EE slipped and fell while unloading mattresses from a hand cart. Feet slipped out from under her while lifting mattress.
## 31400 EE slipped and fell while walking down wet stairs. Injured foot, abck, and some dizziness.
## 31401 EE slipped and fell while walking on sidewalk injuring her rt ankle
## 31402 EE slipped and fell while walking to building. Injuring shoulder, wrist, and knee.
## 31403 EE slipped and fell while walking to car-contusionlt leg and foot
## 31404 EE slipped and fell while waxing floor.... Knee and lower calf
## 31405 EE slipped and fell while weedeating... Contusion to left knee
## 31406 EE slipped and fell, hitting head, rt knee, left chest, left shoulder, and arm on step - left shoulder injury
## 31407 EE slipped and fell, landed at bottom of stairway. Rt knee made popping sound, unable to straighten w/out pain
## 31408 EE slipped and fell. Hung onto mower for support. ()
## 31409 EE slipped and fell...... Hips
## 31410 EE slipped and felled in water that was on the floor injurying her back, rt hip, and rt wrist. ****p/a david schiller 789 4677
## 31411 EE slipped and felled on concrete steps injurying her lt finger and lt ankle
## 31412 EE slipped and felled on wet floor injurying his rt knee.
## 31413 EE slipped and grabbed file cabinet to break her fall and file cabinet wrenched EE in the shoulder. Torn rotator cuff
## 31414 EE slipped and hit her head while waiting for an elevator in floor lobby, sprained ankle
## 31415 EE slipped and hit her left knee while assisting co-workers with a seat in the state owned van
## 31416 EE slipped and scrapped her rt knee and twisted her rt toe as she was walking up the stairs.
## 31417 EE slipped and started to fall, fell over buffer, pulled back.
## 31418 EE slipped and struck her head and elbow against truck
## 31419 EE slipped and tripped on stairs
## 31420 EE slipped and twisted her rt ankle while coming out of the shower room
## 31421 EE slipped and twisted left foot while walking on a wet floor of school of health sciences building
## 31422 EE slipped but did not fall, however twisted her knee
## 31423 EE slipped coming into office and tried to catch self on desk-heard popping noise in rt arm
## 31424 EE slipped down 4 steps due to it being wet.
## 31425 EE slipped down hill in the service area on wet surface and leaves hurting elbows, knees, stomach and rt hand.
## 31426 EE slipped down on wheelchair ramp and fell down injuring back, buttom, elbow, and neck.
## 31427 EE slipped down ramp (linen room in basement) & twisted left foot.
## 31428 EE slipped down steps ()
## 31429 EE slipped down steps and fractured her lt distal fibula ***pymts to be paid on new injury***
## 31430 EE slipped down steps spraining both ankles
## 31431 EE slipped down steps taking out trash and hurt foot and ankle
## 31432 EE slipped down steps that lead down to exit of control room hitting lower back and left arm on steps.
## 31433 EE slipped down the boat dock and injured the shoulder.
## 31434 EE slipped down the stairs, but caught herself on the railing, missing two steps coming down
## 31435 EE slipped down the steps on liquid in stairwell causing strain to lower back
## 31436 EE slipped down the steps while taking out a box of trash that contained a broken mirror. ()
## 31437 EE slipped down when entering door on 3rd floor and hurt her leg on left side. Facilities services was working on a pipe in the ceiling and the floor was wet. ()
## 31438 EE slipped down when he stepped in urine in th hallway, twisted left ankle
## 31439 EE slipped due to ice... Left elbow, left hip, leftknee, and left side of the head
## 31440 EE slipped due to water being on the floor... Injured left arm
## 31441 EE slipped entering a room
## 31442 EE slipped exiting her building
## 31443 EE slipped fell while walking injuried his back due to water on floor. EE moving to sit down for morning briefing. Lumbar strain.
## 31444 EE slipped getting onto elevator causing injury to left arm/right hip/back/right knee/neck
## 31445 EE slipped going down a stairwell and hit his headon the concrete wall at bottom of stairs
## 31446 EE slipped going down embankment causing fx on rt ankle.
## 31447 EE slipped going down steps and twisted rt foot
## 31448 EE slipped going down wet stairs of parking deck &fell backwards, hitting her back against the concrete.
## 31449 EE slipped going in to crew room hitting door. Right ear.
## 31450 EE slipped hitting lt shoulder and arm pit, while walking up stairway unlocking doors in mental health west
## 31451 EE slipped in a mud puddle and pulled thigh muscle
## 31452 EE slipped in a puddle and fell spraining left knee and ankle
## 31453 EE slipped in a puddle of water in lobby causing injury to her rt wrist and ankle
## 31454 EE slipped in a puddle of water twisting her rt ankle
## 31455 EE slipped in a puddle of water while going to geta soda - fell on hip & left hand
## 31456 EE slipped in cable tray and went in hole in tray.
## 31457 EE slipped in cleaning solution that was sprayed on floor and fell-rt knee and hand injured.
## 31458 EE slipped in condensation on floor when checking out ro system; injury to left knee.
## 31459 EE slipped in cooking area and hurt back/left arm.
## 31460 EE slipped in dining hall and injured rt foot/toe
## 31461 EE slipped in dirt while carrying pipes injuring his lt knee
## 31462 EE slipped in drain hole & fell backward.
## 31463 EE slipped in floor stripper and fell on the left side of her body. Landing on lt elbow/shoulder/legand hip.
## 31464 EE slipped in front of the refrigerator; floor might have been wet.
## 31465 EE slipped in grease on floor and fell contusions to lt side of body and strained back
## 31466 EE slipped in hallway & tried to break her fall & doing so she twisted her back
## 31467 EE slipped in hallway bruising rt knee and strainglower back.
## 31468 EE slipped in hole in the pavement and fell- twisted lt ankle, abrasions rt hand, elbow, knee pain in rt wrist
## 31469 EE slipped in ice in parking lot and fell injuring back and rt wrist
## 31470 EE slipped in icy step. Injured ankle.
## 31471 EE slipped in kitchen and landed on lt knee
## 31472 EE slipped in liquid on pavement falling on flashlight injuring rt shoulder, hand, rib cage
## 31473 EE slipped in liquid substance on the floor and hit his head on metal switch plate box and fell on his rt side on the floor
## 31474 EE slipped in lobby of duke cancer center and sprained rt foot.
## 31475 EE slipped in mud whil doing yard checks and injured left wrist.
## 31476 EE slipped in mud while walking to tobacco barn and fell injuring lower back
## 31477 EE slipped in oil on concrete floor and fell backwards causing strain to rt knee, back and neck
## 31478 EE slipped in parking lot @ mountainview crctnl facility and strained rt knee
## 31479 EE slipped in parking lot going to her car. Abra- sion and muscle pain back and neck.
## 31480 EE slipped in patient's sputum; fell on right hip shoulder, elbow, hand & ankle. Irritation right rotator cuff & trochanteric bursisis right hip.
## 31481 EE slipped in puddle of water floor near the watercooler.
## 31482 EE slipped in puddle of water on floor and fell pain in back, legs, neck
## 31483 EE slipped in shower when the floor was wet from being cleaned.
## 31484 EE slipped in some grease on floor and fell injuring rt knee and shin
## 31485 EE slipped in some water and twisted right ankle.
## 31486 EE slipped in some water on the floor near the water fountain in side segregation.
## 31487 EE slipped in some water that was on the floor right wrist
## 31488 EE slipped in stream while holding survey rod. Briars scratched left eye causing corneal abrasion
## 31489 EE slipped in stripper & fell on right side hitting right knee on edge of cabinet room 142 glaxo.
## 31490 EE slipped in the shower... Hit right elbow on a cement wall
## 31491 EE slipped in urine and fell.
## 31492 EE slipped in water & fell landing on back strain to neck/contusion to elbows
## 31493 EE slipped in water & fell. Injury to shoulder.
## 31494 EE slipped in water and caught herself from falling - straining back
## 31495 EE slipped in water and fell left side of body andbuttock.
## 31496 EE slipped in water and fell on left knee
## 31497 EE slipped in water and fell to floor
## 31498 EE slipped in water and fell, hitting her left shoulder and left wrist on dietary cart, then falling onto floor landing on left hip and wrist.
## 31499 EE slipped in water from rain ()
## 31500 EE slipped in water in floor and fell
## 31501 EE slipped in water in the dish room causing strain to lower back.
## 31502 EE slipped in water on floor
## 31503 EE slipped in water on floor after stepping out of elevator and injured neck, left side and right thigh
## 31504 EE slipped in water on floor and fell face first injuring left arm
## 31505 EE slipped in water on floor and fell hitting headfell on arm, unconcious for 2-3-minutes.
## 31506 EE slipped in water on floor and fell landing on left knee
## 31507 EE slipped in water on floor and fell on rt knee
## 31508 EE slipped in water on floor and fell on water cooler
## 31509 EE slipped in water on floor and fell spraining back
## 31510 EE slipped in water on floor and fell spraining rt ankle
## 31511 EE slipped in water on floor and strained left knee
## 31512 EE slipped in water on floor causing her to hit her rt shoulder & hip.
## 31513 EE slipped in water on floor in bathroom and grabbed on to sink and felt immediate pain in lower back.
## 31514 EE slipped in water on floor injuring right foot.
## 31515 EE slipped in water on floor when EE was walking. Injured foot, neck, head, arm, bottom.
## 31516 EE slipped in water on floor while walking by the salad bar.
## 31517 EE slipped in water on floor.
## 31518 EE slipped in water on kitchen floor in work unit, falling on left knee and causing back to be thrownback. Immediate pain in lower back
## 31519 EE slipped in water on ladies bathroom floor and twisted left leg, ankle and foot
## 31520 EE slipped in water on restroom floor and fell. Both knee--particulary left, and back.
## 31521 EE slipped in water on the floor and fell spraining ankle
## 31522 EE slipped in water puddle and fell straining left knee
## 31523 EE slipped in water puddle and sprained rt ankle and bruised rt knee
## 31524 EE slipped in water/ice on floor in restroom and injured left hip, left elbow and low back.
## 31525 EE slipped in wet grass and fell injuring knee
## 31526 EE slipped in wet mud while making security check on the west yard and twisted her ankle and foot
## 31527 EE slipped in what appeared to be urine in the hall. Injured right hip, lower back low back strain
## 31528 EE slipped into water and fell striking the lt side of her head on a door frame
## 31529 EE slipped nad fell on wet floor. Injures shoulder.
## 31530 EE slipped off a ladder and hit his chin on a cabinet which made a cut on his chin
## 31531 EE slipped off a ladder while exiting the attic of on campus residence, EE caught self & injured (l) thumb
## 31532 EE slipped off air unit and strained rt knee.
## 31533 EE slipped off bed frame he was using as a ladder ()
## 31534 EE slipped off cart while lifting rack of water bottles, striking rt hand and wrist- aggravate old injury
## 31535 EE slipped off chair when it moved while filing papers at counter injuring left leg
## 31536 EE slipped off ladder and fell hitting his head against the table
## 31537 EE slipped off ladder while working on fire damperin ceiling-caught self w/left hand.
## 31538 EE slipped off loading deck and left leg went between trk and deck.
## 31539 EE slipped off of curb and twisted ankle and fell hitting knees
## 31540 EE slipped off of truck step and fell striking head and hip on the ground
## 31541 EE slipped off of uneven curb and fell fracturing rt ankle
## 31542 EE slipped off roof. Hurting his shoulder.
## 31543 EE slipped off shuffleboard and twiste ankle.
## 31544 EE slipped off sidewak and ankle turned, EE fell and skinned rt knee. Torn cartilage.
## 31545 EE slipped off sidewalk in canteen area and sprung thumb on l hand
## 31546 EE slipped off sidewalk jarring his right leg and lower back.
## 31547 EE slipped off step carrying mail load and strained lower back
## 31548 EE slipped off step climbing ladder. EE injured left ankle.
## 31549 EE slipped om some food on dinnning room floor in trying to prevent fal turned rt foot over
## 31550 EE slipped on 6th floor hall going to lunch. Pull-ed cartlage and ligament on r knee.
## 31551 EE slipped on a brick and fell
## 31552 EE slipped on a client's belt in the hallway injuring her left knee
## 31553 EE slipped on a coat lying on floor. EE fell to floor
## 31554 EE slipped on a empty bag and slid to the floor
## 31555 EE slipped on a floor that was wet from mopping.
## 31556 EE slipped on a freshly unmarked mopped wet floor. In the radiology dept.
## 31557 EE slipped on a gown thrown down in the hallway bya pt. When EE fell pt lost his balance and fell onee left leg
## 31558 EE slipped on a icy step and fell on his buttocks; injured lower back and buttocks
## 31559 EE slipped on a large rock twisting his right knee
## 31560 EE slipped on a liquid substance and fell in the dayroom, contusion to lower back and left knee
## 31561 EE slipped on a mat which had ice on it and fell, lnading with weight of body on the left forearm and elbow
## 31562 EE slipped on a patch of ice. Injured left knee and left ankle
## 31563 EE slipped on a piece of ice as he enterd the taylor education building. **ag's #03-1136- patrick wooten**
## 31564 EE slipped on a piece of paper and fell hurting left knee. Sore left knee.
## 31565 EE slipped on a piece of paper at receptionist desk and fell on rt hand.
## 31566 EE slipped on a piece of wet carpet and injured lt side, knees, elbows, ankle, and side
## 31567 EE slipped on a puddle of water while walking downthe hall falling on wrist.
## 31568 EE slipped on a rock and fell injuring her wrist when startled by a passing golf cart
## 31569 EE slipped on a rock that was on the stairway and strained back and leg
## 31570 EE slipped on a rock; left knee, leg, buttocks, lower back
## 31571 EE slipped on a rug and strained low back
## 31572 EE slipped on a sheet of ice... Back
## 31573 EE slipped on a small limb and fell on left knee and rt ankle
## 31574 EE slipped on a tile floor causing her rt foot to go under the support beam striking the top of her rt foot
## 31575 EE slipped on a waxed floor & fell, twisting her left ankle & landing on her left knee, left hand &head
## 31576 EE slipped on a wet bathroom floor injuring his left leg.... Other unknown
## 31577 EE slipped on a wet floor
## 31578 EE slipped on a wet floor and fell on back
## 31579 EE slipped on a wet floor and fell on the pour spout of a steam kettle
## 31580 EE slipped on a wet floor injuring left elbow
## 31581 EE slipped on a wet floor; strain to wrist and both knees, rt wrist bruised.
## 31582 EE slipped on a wet metal ramp... Injures are multiple.. Lt leg/ankle... Rt wrist, elbow, shoulder spine
## 31583 EE slipped on a wet spot on the floor, right leg went out from under him & pain went up leg to hip and back. Right back muscle strain.
## 31584 EE slipped on a wet surface... Back, spine, and neck pain
## 31585 EE slipped on a wet tailgate... Injured lower back
## 31586 EE slipped on a wet, sticky substance by a garbagecan & fell, spraining her left ankle & causing a right knee contusion.
## 31587 EE slipped on a wheelchair ramp and fell, injuring left shoulder and hip
## 31588 EE slipped on algae covered boat ramp and cut bottom of left foot
## 31589 EE slipped on an iced area in parking lot landing on her buttocks and hitting the back of her head on a parked truck.
## 31590 EE slipped on an oil spill froma weiling machine, injured EE right wrist hand area
## 31591 EE slipped on an outside ramp falling over the rail striking her head on the floor deck and causing an eye injury
## 31592 EE slipped on bathroom floor
## 31593 EE slipped on beads on floor and fell spraining left foot
## 31594 EE slipped on bedroom floor.
## 31595 EE slipped on bedroom floor; left knee and arm hit floor first and then head. ()
## 31596 EE slipped on black ice and fell to ground hittingher right knee
## 31597 EE slipped on black ice on the way back to car
## 31598 EE slipped on boat deck and heard is knee pop. Several weeks later while kicking w/fins, his knee locked then popped. The knee began to swell and ca
## 31599 EE slipped on bottom step and turned left ankle
## 31600 EE slipped on broken down boxes and fell on rt knee.
## 31601 EE slipped on broken twigs and fell... Injuring both knees, and both palms
## 31602 EE slipped on carpet and fell forward
## 31603 EE slipped on carpet in front door. Fell and pallet jack rolled over EE's left big toe.
## 31604 EE slipped on ceramic tile floor and fell causing injury to left and rt knees
## 31605 EE slipped on cheese that was on dining room floor
## 31606 EE slipped on coffee spill in hallway, hit r hand on corner of wall
## 31607 EE slipped on concrete ditch culvart and fell on left knee cutting it
## 31608 EE slipped on concrete floor and fell cutting rt hand when he landed. Lacertation to rt hand.
## 31609 EE slipped on curb and my rt ankle twisted.
## 31610 EE slipped on damp floor
## 31611 EE slipped on damp floor while checking students rooms for lock down.
## 31612 EE slipped on door mat and fell striking head back and arm on brick wall
## 31613 EE slipped on drbris on steps and fell twisting left knee
## 31614 EE slipped on egg and fell hitting left knee on floor.\\
## 31615 EE slipped on fender climbing out of the boat; injured back
## 31616 EE slipped on flat rock walking up incline and fell on top of weapon with weight on left wrist.
## 31617 EE slipped on floor & fell with his right ankle under him. Possible sprain of right ankle.
## 31618 EE slipped on floor after leaving from outside floor wet from rain
## 31619 EE slipped on floor and fell ()
## 31620 EE slipped on floor and fell and landed on left arm behind her.
## 31621 EE slipped on floor and fell in classroom - injuryto rt ankle and left knee
## 31622 EE slipped on floor and fell injuring lt wrist
## 31623 EE slipped on floor and fell knocking glasses off and straining chest
## 31624 EE slipped on floor and fell landing on right knee and right forearm
## 31625 EE slipped on floor and fell on knee.
## 31626 EE slipped on floor and fell straining back
## 31627 EE slipped on floor and left foot twisted from under her.
## 31628 EE slipped on floor and strained left knee
## 31629 EE slipped on floor and twisted left knee on slickkitchen floor
## 31630 EE slipped on floor as she was walking the hallwayleading to front exit.
## 31631 EE slipped on floor at hvac maint in building space and sprained ankle.
## 31632 EE slipped on floor hitting knee and elbow ()
## 31633 EE slipped on floor in hallway
## 31634 EE slipped on floor in hallway and felt pain in left shoulder and skinned left knee
## 31635 EE slipped on floor in ice and hit hip and arm
## 31636 EE slipped on floor in lobby building & fell on floor. Rt hip & leg hit floor, & right arm & shoulder hit end table. Neck pain also.
## 31637 EE slipped on floor injury to lft hip area
## 31638 EE slipped on floor outside of courtroom and that had some matter on the floor. Injured back.
## 31639 EE slipped on floor that had been mopped, landed on back
## 31640 EE slipped on floor that was slick
## 31641 EE slipped on floor twisting rt foot and hurting both elbows
## 31642 EE slipped on floor when entering the door and fell hitting the left side of face and head on the floor
## 31643 EE slipped on floor while going into diningroom and fell on her lt knee.
## 31644 EE slipped on floor while walking into coffee room
## 31645 EE slipped on floor, twisted fell against wall then fell to the floor. Injured left shoulder, elbow, arm, wrist, & knee.
## 31646 EE slipped on floor. Sprain back ligaments
## 31647 EE slipped on food in floor of dining room startedto fall-twisted back. Low back strain
## 31648 EE slipped on food item on the floor & lt knee popped. Injured lt knee.
## 31649 EE slipped on food on floor of dining room, twisting right knee, falling to the floor.
## 31650 EE slipped on food that was on the floor and fell on rt leg and hip
## 31651 EE slipped on fresh mopped floor and not wet floorsigns around. Injured rt thigh.
## 31652 EE slipped on freshly mopped floor & hit her left wrist & hand on the corner of a table resulting ina sore wrist.
## 31653 EE slipped on freshly waxed floor and lost balanceleg was hyper-extended as he slipped and strained his r knee.
## 31654 EE slipped on grass and fell on knee ()
## 31655 EE slipped on grass and hit knee on spinkler head. Salary continuance employee
## 31656 EE slipped on grass at base of tower, landed on left ankle & sprained it.
## 31657 EE slipped on grass that was on the sidewalk and fell twisting rt knee and landing rt elbow.
## 31658 EE slipped on grass... Later felt pain in his rightcalf
## 31659 EE slipped on gravel and fell injuring his lt ankle
## 31660 EE slipped on gravel and fell on her back with left foot under her.
## 31661 EE slipped on gravel in parking lot and fell on rt knee
## 31662 EE slipped on grease in floor twisting right foot and knee
## 31663 EE slipped on grease in floor, and fell on buttockand lower back
## 31664 EE slipped on greasy floor while exiting the cafeteria after getting her lunch ()
## 31665 EE slipped on hallway floor that was wet landing on her back
## 31666 EE slipped on ice
## 31667 EE slipped on ice and fell
## 31668 EE slipped on ice and fell hitting back, elbows and hands
## 31669 EE slipped on ice and fell in parking lot and strained rt wrist
## 31670 EE slipped on ice and fell in the parking lot of the steam plant ()
## 31671 EE slipped on ice and fell injuring back and rt arm/elbow
## 31672 EE slipped on ice and fell injuring elbow
## 31673 EE slipped on ice and fell injuring rt ankle rt hand, rt hip, rt elbow
## 31674 EE slipped on ice and fell landing on left heel and knee.
## 31675 EE slipped on ice and fell landing on rt wrist oow 12/6-12/10/00 rtw 12/11/00, oow again 7/19/01
## 31676 EE slipped on ice and fell on left knee
## 31677 EE slipped on ice and fell used left hand to braceself.
## 31678 EE slipped on ice and fell; hit her head (left temple/skull) and injured both knees and hands when she hit the pavement
## 31679 EE slipped on ice and felt pull to right groin area ()
## 31680 EE slipped on ice and fractured rt ankle
## 31681 EE slipped on ice and heard right knee pop
## 31682 EE slipped on ice and injured knees and left shoulder
## 31683 EE slipped on ice and injured lower back and groinarea.
## 31684 EE slipped on ice and injured right wrist and leftknee
## 31685 EE slipped on ice and pulled muscles in back
## 31686 EE slipped on ice and snow and fell on parking lot
## 31687 EE slipped on ice and snow, left foot went into the air didn't fall on ground, strained lower back
## 31688 EE slipped on ice and strained back
## 31689 EE slipped on ice as she was walking in the parking lot. She hit her knee on the pavement
## 31690 EE slipped on ice coming into work. Back injury at base of spine
## 31691 EE slipped on ice covered step falling backward injuring back of rib cage.
## 31692 EE slipped on ice entering building, laceration onrt hand and soreness rt wrist and arm.
## 31693 EE slipped on ice getting out of veh to close back glass hatch, injuring left shoulder
## 31694 EE slipped on ice in drive while entering buildinghe stopped his fall with left hand and jammed leftmiddle finger
## 31695 EE slipped on ice in front of dumpster
## 31696 EE slipped on ice in gravel parking lot while walking into work. ()
## 31697 EE slipped on ice in gym parking lot.
## 31698 EE slipped on ice in her driveway attempting to goto work with campus police.
## 31699 EE slipped on ice in p/lot and sprained left knee.
## 31700 EE slipped on ice in parking lot & fell against his vehicle and then landed on his back in the paved parking lot.
## 31701 EE slipped on ice in parking lot and fell backwards hitting head on pavement
## 31702 EE slipped on ice in parking lot and fell hitting left knee on pavement
## 31703 EE slipped on ice in parking lot and fell real hard.
## 31704 EE slipped on ice in parking lot and fell straining back
## 31705 EE slipped on ice in parking lot and sprained left ankle
## 31706 EE slipped on ice in parking lot going into work place.
## 31707 EE slipped on ice in parking lot when walking intobuilding (parking lot not maintained by the dept)
## 31708 EE slipped on ice in parking lot while walking to plant to work landing on left elbow
## 31709 EE slipped on ice in parking lot. Hurt left hip and knee.
## 31710 EE slipped on ice in parking lot. She tried to break her fall causing her hurt arm. She fall on her buttocks. Fracture rt arm.
## 31711 EE slipped on ice injured left hand
## 31712 EE slipped on ice on covered walkway. Fell flat on back knocking the breath out of them.
## 31713 EE slipped on ice on main parking lot by administration bldg and fell injuring lt wrist
## 31714 EE slipped on ice on pavement falling on left knee
## 31715 EE slipped on ice on pavement walking to his car and fell striking back of head
## 31716 EE slipped on ice on sidewalk and broke wrist
## 31717 EE slipped on ice on sidewalk delivering typewriter.
## 31718 EE slipped on ice on sidewalk while running errands on campus. Fracture to right leg
## 31719 EE slipped on ice on step while taking out trash fell on rt knee.
## 31720 EE slipped on ice on the kitchen floor, was caughtby another employee before hitting the floor.
## 31721 EE slipped on ice on the sidewalk and fell spraining rt wrist
## 31722 EE slipped on ice on the sidewalk. EE was leaving the building going to the parking lot.
## 31723 EE slipped on ice on walkway and fell striking left knee
## 31724 EE slipped on ice outside mechanical room door after changing filters. ()
## 31725 EE slipped on ice outside of trailer door; right hand, left hand, left shin, right knee, right shoulderright elbow
## 31726 EE slipped on ice patch in parking lot and fell face down on asphalt.
## 31727 EE slipped on ice striking his back against a car door
## 31728 EE slipped on ice to prevent himself from falling he extended his arm. Injured knee, elbow pain, back
## 31729 EE slipped on ice walking across parking lot and fell injuring rt hand, chest, and both knees
## 31730 EE slipped on ice when entering building for work injuring neck, back, head, and left shoulder
## 31731 EE slipped on ice while checking bathrooms during winter season.
## 31732 EE slipped on ice while consulting investigation and received abrasions to left knee and thigh
## 31733 EE slipped on ice while he was salting the exterior bldg; injured back, shoulder
## 31734 EE slipped on ice while walking across the parkinglot to his truck; discomfort in his knee after the incident; EE had surger 9/02 on same knee
## 31735 EE slipped on ice while walking on sidewalk. EE sprained left knee, hit back of head, and had slight back pain.
## 31736 EE slipped on ice while walking to parking lot and fell injuring rt knee and torse
## 31737 EE slipped on ice, fell, and hurt knee
## 31738 EE slipped on ice.
## 31739 EE slipped on ice. Complained of back pain. Supervisor sent him to hospital. Doctor found nothing wrong, & released him.
## 31740 EE slipped on ice. Walkway was not cleared. Injured rt leg.
## 31741 EE slipped on ice... Back and neck strain
## 31742 EE slipped on icy deck of boat while launching into water.
## 31743 EE slipped on icy parking lot near loading dock atcourier service building landing on his head. Taken to raleigh comm. Hsp by ems
## 31744 EE slipped on icy patch in the parking lot at workafter shoveling snow from the sidewalks. Threw outhis right arm to catch his fall & injured shoulder
## 31745 EE slipped on icy pavement and fell to ground.
## 31746 EE slipped on icy sidewalk onto parking lot jamming back and both feet as she hit the pavement
## 31747 EE slipped on icy spot in parking lot and fell injuring right thumb
## 31748 EE slipped on icy spot in parking lot. Fractured lt. Wrist.
## 31749 EE slipped on icy stairs. Injured lt shoulder.
## 31750 EE slipped on icy steps and fell injuring head and lower back.
## 31751 EE slipped on icy steps causing injury to his back
## 31752 EE slipped on icy street causing hyperextension ofright knee and pulled muscle in lower back.
## 31753 EE slipped on icy surface and fell hitting head went to get up and fell again-paramedics call EE was found unconscious
## 31754 EE slipped on icy walkway while picking up mail from state agency.
## 31755 EE slipped on incline of roof that was metal and wet with dew
## 31756 EE slipped on jelly on floor and fell face first knot on forehead, neck discomfort, rt shoulder arm pain
## 31757 EE slipped on juice on floor, injurying back; patient also punched EE in back of head & neck ()
## 31758 EE slipped on juice on the cooler floor and fell hitting lft knee and lft elbow
## 31759 EE slipped on kitchen floor slipped and fell on floor hitting back, lt hand and lt foot on the floor
## 31760 EE slipped on ladder and sprained rt hand trying to catch himself
## 31761 EE slipped on last step of bus
## 31762 EE slipped on last step, fell and hit head. Cut eyebrow
## 31763 EE slipped on leaf and fell bruising both knees
## 31764 EE slipped on leaves & acorns when exiting state vehicle. Injured left foot.
## 31765 EE slipped on leaves and debris and fell into street while walking into work. Contusions to right knee
## 31766 EE slipped on leaves getting out of scooter and strained lt knee
## 31767 EE slipped on leaves while walking down ramp into mechanical room landing on rt elbow.
## 31768 EE slipped on liquid and fell on back
## 31769 EE slipped on liquid coming down stairs twisting her left foot
## 31770 EE slipped on liquid in hall and fell face first onto floor.
## 31771 EE slipped on liquid soap in the bathroom atty is perry morrison. Karissa davan
## 31772 EE slipped on liquid spill by food service co back, hips, hip joint, left arm, head injured
## 31773 EE slipped on loading dock hitting shin on edge. Contusion rt shin.
## 31774 EE slipped on machine & hit elbow
## 31775 EE slipped on mat under chair while hurrying to answer phone and strained knee
## 31776 EE slipped on mat, fell off clog and twisted rightankle.
## 31777 EE slipped on metal bracket which was on the floor, fell injuring right knee and hip
## 31778 EE slipped on milk in floor, fell to floor in a split position.
## 31779 EE slipped on mud injuring her rt toe and rt knee
## 31780 EE slipped on mud while walking on trail on lunch hour. Twisting ankle.
## 31781 EE slipped on now on sidewalk and fell hitting back
## 31782 EE slipped on oil & fell down 8 steel stairs; feltpain in back and (l) leg
## 31783 EE slipped on oil in hallway and fell bruising back
## 31784 EE slipped on oil on floor while inspecting and fell straining shoulder and rt ankle
## 31785 EE slipped on oily substance on floor and fell on left wrist and hand
## 31786 EE slipped on outdoor stairway and twisted her right knee.
## 31787 EE slipped on own shoe strings falling on left knee.
## 31788 EE slipped on oyster reef cutting her hand ()
## 31789 EE slipped on patch of ice while stepping into cabof truck she was searching, landing on her tail- bone
## 31790 EE slipped on patient's clothing while taking patient to seclusion room.
## 31791 EE slipped on pebble on sidewalk and fell injuringrt knee, chin, rt hand and knocking 3 teeth loose
## 31792 EE slipped on pebble, fell on ramp, fx to lt foot
## 31793 EE slipped on piece of bacon which had been dropped by EE on the floor, cutting elbow
## 31794 EE slipped on piece of lemon while walking down hall.
## 31795 EE slipped on plastic lids on floor and injured lt leg
## 31796 EE slipped on plastic on floor and fell injuring left wrist and arm
## 31797 EE slipped on porch and injured left ankle.
## 31798 EE slipped on puddle of rain water in entry ()
## 31799 EE slipped on rain slick stairs & cut his left armcut on left arm required 16 stitches.
## 31800 EE slipped on recently mopped wet floor
## 31801 EE slipped on restroom floor that was wet---feet went out from under her and she hit the floor withweight of fall going into lt leg, mostly knee.
## 31802 EE slipped on rock display and fell on back and shoulder
## 31803 EE slipped on rock in parking lot which cause leftfoot to twist.
## 31804 EE slipped on rock in stream while collecting fish for genetic analysis and injured right ankle and knee. ()
## 31805 EE slipped on rock while collecting oysters near bogue sound and cut hands on oysters growing on rocks ()
## 31806 EE slipped on rock, twisted foot and fell injuring lft knee, rt foot, strained muscles in upper body
## 31807 EE slipped on rocks ()
## 31808 EE slipped on rocks and fell to the cement when leeaving for lunch
## 31809 EE slipped on rug and fell injuring rt arm/hip
## 31810 EE slipped on rug entering bldg and fell on left arm, strained left shoulder and neck
## 31811 EE slipped on rug in ofc, no fall to floor ()
## 31812 EE slipped on saw dust the was on floor and strained back
## 31813 EE slipped on sawdust on concrete floor and fell on rt side of back.
## 31814 EE slipped on sawdust on the floor and struck his right knee against desk leg.
## 31815 EE slipped on seat belt cover and fell. Neck & head.
## 31816 EE slipped on sheet while changing patient and fell injuring rt hand and left fingers
## 31817 EE slipped on sidewalk and fell injuring left buttock, shoulder, elbow, wrist and head
## 31818 EE slipped on sidewalk and fell to knees. Felt pain in ankle and back.
## 31819 EE slipped on sidewalk and twisted rt knee
## 31820 EE slipped on sidewalk as she was leaving work ()
## 31821 EE slipped on sidewalk while making rounds on the yard during rain and hail storm. No injury
## 31822 EE slipped on skateboard ()
## 31823 EE slipped on slick floor and fell bruising lt knee
## 31824 EE slipped on slick floor tile, fell face down on carpet over concrete, hit left side of face.
## 31825 EE slipped on slick solution in parking area slipped causing injury to left leg, right knee, both hands, bottom, chest, left side, head
## 31826 EE slipped on slick speed bump and fell in parking lot injury to right foot
## 31827 EE slipped on slick stepps due to the rain. Injured general parts.
## 31828 EE slipped on slipper floor inside elevator from recent waxing-contusion both knees & right ankle
## 31829 EE slipped on slippery floor and fell hitting headon metal.
## 31830 EE slipped on slippery floor and fell on rt knee
## 31831 EE slipped on slippery floor and fell on rt knee and hand
## 31832 EE slipped on slippery spot on floor bruised rt knee.
## 31833 EE slipped on slippery wet marble steps while exiting the building. ()
## 31834 EE slipped on small amount of water on floor
## 31835 EE slipped on small rock and cooler fell over causing EE to injury legs.
## 31836 EE slipped on small stones on sidewalk and fell fracturing rt leg
## 31837 EE slipped on snow as he was exiting a building.
## 31838 EE slipped on snow on sidewalk and fell flat on her back, twisting her lt foot and bruising her back, head, shoulders, and buttocks.
## 31839 EE slipped on snow walking across campus and fell injuring left leg and arm
## 31840 EE slipped on snow walking to car. Fell on back and wrist. ()
## 31841 EE slipped on snow/ice and fell on back/knee ()
## 31842 EE slipped on soiled floor and fell injuring knee, hand and lt shoulder.
## 31843 EE slipped on some baby oil and pulled a muscle inhis lt thigh while assisting with an agressive inmate.
## 31844 EE slipped on some food which was on the floor andbanged her left hip and left wrist.
## 31845 EE slipped on some grits that had been spilled, attempted to stop fall by grabbing cart handle, scraped arm and hit knee on the floor.
## 31846 EE slipped on some ice in front of oil tank #1 EE was turning on the condensate pump locate inside the kike wall.
## 31847 EE slipped on some ice located on the sidewake, she attempted to brace her fall, injuring hand
## 31848 EE slipped on some mop water left in the floor. She did not fall bu injured her neck regaining her balance. Strain to lower back
## 31849 EE slipped on some paper clips on floor and fell rt hip, shoulder and neck.
## 31850 EE slipped on some raised cement located on the walkway. Left knee.
## 31851 EE slipped on some shampoo that was located on the floor which resulted in twisting his rt knee
## 31852 EE slipped on some snow and ice and fell on back very flat my rt knee popped and hurt badly for short time
## 31853 EE slipped on some uncured concrete and injured his rt knee by landing a rock. Rt knee has rednessand some swelling - no open cuts.
## 31854 EE slipped on some water in bathroom twisted her knee
## 31855 EE slipped on some water in which the inmates used to clean the floor. EE caught himself beforehitting the floor.
## 31856 EE slipped on some water that was wasted on the floor hurting both knees & elbows
## 31857 EE slipped on some wooden steps injuring her rightankle and right elbow
## 31858 EE slipped on something and fell.
## 31859 EE slipped on something on the floor and fell straining upper back, shoulders, knees and lt foot
## 31860 EE slipped on something wet on the floor and fell on rt knee.
## 31861 EE slipped on sopay floor and strained rt hip
## 31862 EE slipped on stairs and fell cutting rt hand, bruised low back
## 31863 EE slipped on stairs and fell, landed on right hipand leg.
## 31864 EE slipped on stairs and hurt her ankle.
## 31865 EE slipped on stairs and sprained rt foot
## 31866 EE slipped on stairs descending from roof access door due to wet roof and wet shoes. Landed on left elbow.
## 31867 EE slipped on stairs going to parking lot and injured left ankle/foot
## 31868 EE slipped on stairs of activity bus that were covered in power discharge from a fire extinguisher ()
## 31869 EE slipped on stairs on campus while walking towards building where she works. ()
## 31870 EE slipped on stairs-grabbed handrail and injured thumb on rt hand.
## 31871 EE slipped on stairs. EE rolled and bumped her way down not stopping until I came to the landing.
## 31872 EE slipped on stairs. Injury to back.
## 31873 EE slipped on stairs. She landed on metal bar on stairs, which was at lower back. Lower back and leg pain
## 31874 EE slipped on stairs. She was delivering forms to graduate student.
## 31875 EE slipped on stairway ()
## 31876 EE slipped on stairway and fell
## 31877 EE slipped on stairway and fell down six steps.
## 31878 EE slipped on standing water and fell
## 31879 EE slipped on step and fell from mid way to the bottom. Injured lt arm/leg.
## 31880 EE slipped on step and strained low back
## 31881 EE slipped on step and struck rt foot
## 31882 EE slipped on step and twisted lt ankle
## 31883 EE slipped on step straining lt knee
## 31884 EE slipped on step twisting his back
## 31885 EE slipped on steps and fell bruising both knees and lt elbow
## 31886 EE slipped on steps and fell injuring both feet
## 31887 EE slipped on steps and injured knee
## 31888 EE slipped on steps and strained left ankle
## 31889 EE slipped on steps at entrance of fort bldg.
## 31890 EE slipped on steps coming down from tower to the main building
## 31891 EE slipped on steps in stairway trying to assit another EE who was calling out for help-injury to lower back, forehead and head.
## 31892 EE slipped on steps outside of bldy while rushing to a call of assistance to another unit.
## 31893 EE slipped on steps which were covered with snow and ice, left leg slipped down several steps, causedee to strain right buttocks and hamstring.
## 31894 EE slipped on steps while she was sweeping near stairwell. Resprained rt knee.
## 31895 EE slipped on steps while trimming trees
## 31896 EE slipped on steps. Injured both knees
## 31897 EE slipped on strip wax on floor tripping over strip machine. Hit head on a window, arm on window frames, and bottom on floor.
## 31898 EE slipped on tenderfost-fell landed on right ankle
## 31899 EE slipped on the 2nd to the last step and fell face down and twisted ankles, r&l toe& r-knee
## 31900 EE slipped on the edge of a rubber floor mat in front of the dish machine ()
## 31901 EE slipped on the floor and fell on wooden chair.
## 31902 EE slipped on the floor as he was exiting kitchen
## 31903 EE slipped on the floor that the inmate had just mopped he said he tried to catch himself with his rt hand and hurt his rt wrist
## 31904 EE slipped on the ice in parking lot and fell to the ground injuring neck
## 31905 EE slipped on the ice in parking lot and fell. EE has pain in right hand.
## 31906 EE slipped on the iced parking lot there was no salt on the parking lot. **dob 3/15/1964**
## 31907 EE slipped on the icy sidewalk and fell backwards
## 31908 EE slipped on the metal portion of the step and missed teh last two steps.
## 31909 EE slipped on the plastic piece used to hold the carpet down. L arm, abdominal area, l/r legs and knees.
## 31910 EE slipped on the rear stair of the building whilewalking up to the stairs
## 31911 EE slipped on the sidewak and fell
## 31912 EE slipped on the sidewalk, almost fell, caught him self with right arm and pulled muscles in right shoulder and upper back.
## 31913 EE slipped on the snow and ice in the parking lot
## 31914 EE slipped on the stairs and fell down them. She was going to mail room
## 31915 EE slipped on the steps and twisted his back whilegoing up darkened stairwell because lights were turned off
## 31916 EE slipped on the tile floor & fell while enteringthe building. Hit rt hip, leg & arm.
## 31917 EE slipped on the top of the steps and fell onto side of buttocks and forearm; ice
## 31918 EE slipped on throw rug & fell on right leg twist-ing ankle under.
## 31919 EE slipped on tile floor ()
## 31920 EE slipped on tile floor and lost balance landing on left foot
## 31921 EE slipped on two acorns that were on a step and fell down 3 steps. Contusions right knee, wrist andelbows.
## 31922 EE slipped on uneven pavement, lt hand & finger cut, rt knee bruised
## 31923 EE slipped on unlevel floor while emptying mop bucket and fell backwards hitting lt hand and back
## 31924 EE slipped on urine in bedroom and fell on back.
## 31925 EE slipped on urine in floor & fell - pain in back& left leg
## 31926 EE slipped on urine that was on floor.
## 31927 EE slipped on water as she was walking around corner of hall way injuring lower back, straining her right knee and ankle
## 31928 EE slipped on water in floor and fell hitting headon doorframe, cutting forehead and bruising knee
## 31929 EE slipped on water in floor fell on back and leg.
## 31930 EE slipped on water in floor, walking performing clinical duties. Lt-hip buttock knee thigh
## 31931 EE slipped on water in hall, fell on knee and turned right ankle. Injured right ankle.
## 31932 EE slipped on water in hallway while carrying large container - right foot & left elbow
## 31933 EE slipped on water in hallway. Hit right knee andinstep of right foot.
## 31934 EE slipped on water in kitchen from icemaker & twisted left knee
## 31935 EE slipped on water leak in hall way(leaking thru the ceciling) EE fell on rt knee, cuaght self withlt hand and rt side of knee.
## 31936 EE slipped on water near shower area. Injury to left leg.
## 31937 EE slipped on water on floor and fell on right side-multiple contusion on rt side
## 31938 EE slipped on water on floor of lab while taking materials to teach a class
## 31939 EE slipped on water on floor-injuring lower and middle back, neck, jaw and head
## 31940 EE slipped on water on hallway while carrying software purchases. Right knee bruised and pulled.
## 31941 EE slipped on water on steps and hit her head
## 31942 EE slipped on water on the floor in the men's dormitory which was coming from the ice machine. Twisted back/knee.
## 31943 EE slipped on water running from a closet. Left foot slipped and EE fell onto right knee.
## 31944 EE slipped on water spill as he was leaving office
## 31945 EE slipped on water spot in floor, feet went out from under her hitting elbow, slamming lt knee to ground.
## 31946 EE slipped on water while floor was being mopped. Left side of neck and upper back.
## 31947 EE slipped on waxed & buffed floor & fell, injuringrt knee & hitting head on sallyport floor.
## 31948 EE slipped on waxed floor and fell straining arm
## 31949 EE slipped on waxed floor and fractured 5th metatarsal
## 31950 EE slipped on waxed floor injuring ankle, knee elbow, hand, forearm
## 31951 EE slipped on waxex floor-injury ot neck and left shoulder
## 31952 EE slipped on wet area of the sidewalk, and fell hurting right wrist & hand.
## 31953 EE slipped on wet bathroom floor and fell landing on lt side
## 31954 EE slipped on wet bathroom floor.
## 31955 EE slipped on wet clay and fell injuring left kneeand hip
## 31956 EE slipped on wet concrete and fell bruised knee.
## 31957 EE slipped on wet concrete and fell on his rt shoulder rt arm rt leg and rt hip
## 31958 EE slipped on wet concrete and fell on right knee
## 31959 EE slipped on wet concrete and twisted his back
## 31960 EE slipped on wet concrete floor while feeding pigee put her hand out to catch herself.
## 31961 EE slipped on wet concrete step while watering flowers. Rt knee came into contact with the edge of the step.
## 31962 EE slipped on wet curb (from rain) at shipping and receiving and turned right ankle.
## 31963 EE slipped on wet debris and fell
## 31964 EE slipped on wet deck on entry to water to make a patron rescue from deep water.
## 31965 EE slipped on wet doormat while attending to client.
## 31966 EE slipped on wet floor
## 31967 EE slipped on wet floor & twisted left knee
## 31968 EE slipped on wet floor & twisted lt ankle
## 31969 EE slipped on wet floor (from rain) fell & hit head against wall & left elbow
## 31970 EE slipped on wet floor - both feet went out from under EE, hit floor, landed on buttocks w/both feet in the air.
## 31971 EE slipped on wet floor after coming inside & fellsplitting my left small finger open
## 31972 EE slipped on wet floor after entering building injuring rt arm, head and body.
## 31973 EE slipped on wet floor after mopping hitting his head
## 31974 EE slipped on wet floor after removing a water heater and hit arm on door case.
## 31975 EE slipped on wet floor after walking on wet carpet no signs were posted injured back & lt knee
## 31976 EE slipped on wet floor and caught herself causing strain to rt rib
## 31977 EE slipped on wet floor and caught herself on table straining back
## 31978 EE slipped on wet floor and elbow hit door.
## 31979 EE slipped on wet floor and falling on buttocks and left knee
## 31980 EE slipped on wet floor and fell
## 31981 EE slipped on wet floor and fell backwards straining neck and back
## 31982 EE slipped on wet floor and fell bruising left knee
## 31983 EE slipped on wet floor and fell hitting head and back
## 31984 EE slipped on wet floor and fell hitting head on cart causing mild concussion
## 31985 EE slipped on wet floor and fell injuring back and rt knee
## 31986 EE slipped on wet floor and fell injuring buttocks
## 31987 EE slipped on wet floor and fell injuring left shoulder
## 31988 EE slipped on wet floor and fell injuring lower back
## 31989 EE slipped on wet floor and fell injuring lt hand
## 31990 EE slipped on wet floor and fell injuring lt side and foot work number 919-529-0587
## 31991 EE slipped on wet floor and fell injuring rib cageand shoulder
## 31992 EE slipped on wet floor and fell injuring rt knee lt hip and back
## 31993 EE slipped on wet floor and fell injuring rt knee rt foot, and rt lower back
## 31994 EE slipped on wet floor and fell landed on her left knee and head.
## 31995 EE slipped on wet floor and fell on buttocks
## 31996 EE slipped on wet floor and fell on knee.
## 31997 EE slipped on wet floor and fell on left side
## 31998 EE slipped on wet floor and fell on rt knee
## 31999 EE slipped on wet floor and fell on rt side rolled over to left side and landed on face
## 32000 EE slipped on wet floor and fell on rt side straining rt wrist
## 32001 EE slipped on wet floor and fell on rt. Knee.
## 32002 EE slipped on wet floor and fell straining rt arm, neck, back and leg
## 32003 EE slipped on wet floor and fell straining rt wrist
## 32004 EE slipped on wet floor and fell to the floor.
## 32005 EE slipped on wet floor and fell.
## 32006 EE slipped on wet floor and hurt knee
## 32007 EE slipped on wet floor and injured her lt foot and leg
## 32008 EE slipped on wet floor and injured lt leg
## 32009 EE slipped on wet floor and injured rt hip and wrist
## 32010 EE slipped on wet floor and jammed big toe on my lt foot on desk leg. Lt foot bruised, great toe joint (bruised and swollen)
## 32011 EE slipped on wet floor and jammed lt knee into door
## 32012 EE slipped on wet floor and landed on her back causing injury to back, shoulders and hips
## 32013 EE slipped on wet floor and landed on her side.
## 32014 EE slipped on wet floor and landed on right elbow.
## 32015 EE slipped on wet floor and left knee popped
## 32016 EE slipped on wet floor and pulled left groin
## 32017 EE slipped on wet floor and slammed hand on locked door. Injured hand/ middel fingers.
## 32018 EE slipped on wet floor and sprained lt ankle
## 32019 EE slipped on wet floor and sprained rt thumb
## 32020 EE slipped on wet floor and strained ankle
## 32021 EE slipped on wet floor and strained back
## 32022 EE slipped on wet floor and strained left knee and lumbar spine ** EE's cell 919-454-4380 **
## 32023 EE slipped on wet floor and strained lt wrist while breaking fall
## 32024 EE slipped on wet floor and strained rt knee and leg
## 32025 EE slipped on wet floor and struck rt knee on bed
## 32026 EE slipped on wet floor and sustained a torn meniscus of the right knee.
## 32027 EE slipped on wet floor and twisted back
## 32028 EE slipped on wet floor and twisted lt ankle
## 32029 EE slipped on wet floor and twisted lt leg & foot
## 32030 EE slipped on wet floor and twisted rt knee.
## 32031 EE slipped on wet floor as she came into the swisher ctr's side door.
## 32032 EE slipped on wet floor caused by water spilled broke right wrist
## 32033 EE slipped on wet floor causing and sustained a right hip contusion and low back pain.
## 32034 EE slipped on wet floor crossing hallway, did a split, injured low back. (low back claim)
## 32035 EE slipped on wet floor due to weather conditions landing on left side, shoulder, hip and neck.
## 32036 EE slipped on wet floor grabbed co-worker to break a fall & twisted her wrist
## 32037 EE slipped on wet floor hitting head on steps
## 32038 EE slipped on wet floor huring rt knee and wrist
## 32039 EE slipped on wet floor hyper extending knee ()
## 32040 EE slipped on wet floor in bathhouse and hit her right cheek on countertop ()
## 32041 EE slipped on wet floor in bathroom and fell. Plt atty susan rhodes patrick wooten ***overpayment of $294. 48- credit from ppd***
## 32042 EE slipped on wet floor in dinning room and twisted lt ankle.
## 32043 EE slipped on wet floor in hallway while returningto work area
## 32044 EE slipped on wet floor in he gym where she was signing in guests.
## 32045 EE slipped on wet floor in micropsy room and hit head and pulled muscle in side
## 32046 EE slipped on wet floor injuring knee.
## 32047 EE slipped on wet floor injuring left wrist
## 32048 EE slipped on wet floor injuring lt leg, hip and foot
## 32049 EE slipped on wet floor injuring right knee.
## 32050 EE slipped on wet floor injuring rt side
## 32051 EE slipped on wet floor injuring shoulder and knee
## 32052 EE slipped on wet floor injuring tailbone, left and rt hip
## 32053 EE slipped on wet floor landing on both knees.
## 32054 EE slipped on wet floor landing on left knee.
## 32055 EE slipped on wet floor landing on lower back and tailbone.
## 32056 EE slipped on wet floor landing on rt side & both wrists (primarily lt wrist & ankle) twisted & pullmusecles. Small abraison back of rt ankle
## 32057 EE slipped on wet floor of a kitchen & her neck & right shoulder hit the ground hard.
## 32058 EE slipped on wet floor of dishroom and hurt kneesand right hand.
## 32059 EE slipped on wet floor outside of womens rest room. Sprained knee.
## 32060 EE slipped on wet floor striking his head on a table and twisting his lt ankle
## 32061 EE slipped on wet floor that had just been mopped and hand got caught in door on the way down.
## 32062 EE slipped on wet floor twisting back and hitting rt elbow.
## 32063 EE slipped on wet floor while attempting to get keys to open cell doors, during emer soreness to right thigh
## 32064 EE slipped on wet floor while pulling out bed and sprained rt shoulder and arm
## 32065 EE slipped on wet floor while stripping in dorm-- rt arm, wrist
## 32066 EE slipped on wet floor while walking between c3 & c4. Injured lower back.
## 32067 EE slipped on wet floor while walking near his office
## 32068 EE slipped on wet floor(mopped area) injuring shoulder. Staff was walking to group home office.
## 32069 EE slipped on wet floor, fell and injured right wrist. Possible wrist sprain
## 32070 EE slipped on wet floor, fell on rt knee and ankleee rec'd $35, 360. 00 ppd to knee on 8-9-1994 as a result of 40% ppd given by physician.
## 32071 EE slipped on wet floor, fell twisted knee and hitknee on floor
## 32072 EE slipped on wet floor, felt pop in lt ankle area& has had pain in heel area since then
## 32073 EE slipped on wet floor, hit left arm on food cart, jarring left arm shoulder and neck muscles.
## 32074 EE slipped on wet floor, overhead heater leaking making floor slick, EE twisted right knee, hip, back and ankle ()
## 32075 EE slipped on wet floor, twisted l knee ()
## 32076 EE slipped on wet floor-falling on lt forearm & elbow & jerked neck
## 32077 EE slipped on wet floor. Injury to lower right back and right thigh
## 32078 EE slipped on wet floor. Strain to right hip
## 32079 EE slipped on wet floor. Wet sign was not in placeee was having great pain and caused EE to leave work.
## 32080 EE slipped on wet floor; bicep area left side
## 32081 EE slipped on wet grade and fell while going to conduct training session. EE landed on left hand and wrist. Contusion and sprain to left hand/wrist
## 32082 EE slipped on wet grass and fell on knee.
## 32083 EE slipped on wet grass and fell spraining ankle
## 32084 EE slipped on wet grass and fell striking right shoulder
## 32085 EE slipped on wet grass at inspection site, landed on l hand, creating contusion ()
## 32086 EE slipped on wet grass on a bank while using weedeater. Sprained left wrist/hand.
## 32087 EE slipped on wet grass while mowing it.
## 32088 EE slipped on wet grassy slope while walking. Injured lt shoulder.
## 32089 EE slipped on wet kitchen floor; there was no signindicating that the floor was wet
## 32090 EE slipped on wet leaves and acorns. He stumbled a few steps, hit ground on hip.
## 32091 EE slipped on wet leaves and fell on left knee
## 32092 EE slipped on wet leaves and landed on his lt foot
## 32093 EE slipped on wet leaves left on curb of parking lot by maintenance personnel.
## 32094 EE slipped on wet leaves while obtaining samples on nature trail injuring left shoulder.
## 32095 EE slipped on wet leaves while on trail and fell with right arm stretched out behind EE & caught all her weight on right wrist ()
## 32096 EE slipped on wet mat and fell int floor injuring rt knee and left shoulder. Sandra carswell 828 433 2429 fax 433 2098
## 32097 EE slipped on wet mat in frt of breezeway-injured left/rt knees and hands.
## 32098 EE slipped on wet mulch and fell dislocating shoulder.
## 32099 EE slipped on wet parking lot pavement and fell injuring her right elbow and back.
## 32100 EE slipped on wet patio carpet and landed on her left hip, twisted her right knee and felt immediatback pain.
## 32101 EE slipped on wet pavement - fracture rt leg
## 32102 EE slipped on wet pavement and fell breaking arm and foot.
## 32103 EE slipped on wet pavement and fell.
## 32104 EE slipped on wet pavement between two doors on loading dock.
## 32105 EE slipped on wet ramp and fell off ramp onto gravel-bruised and cut shoulder, elbow, ankle and tailbone
## 32106 EE slipped on wet running board when he stepped down one step on a tractor trailer, causing a sharp pain in lower left back
## 32107 EE slipped on wet sidewalk and tried to catch herself with lt hand. Ly pinkie.
## 32108 EE slipped on wet slippery floor
## 32109 EE slipped on wet soapy floor in hallway of court house. EE was doing administrative work and working on transcripts.
## 32110 EE slipped on wet soapy floor when EE was coming down the stairs carrying an inmate's property
## 32111 EE slipped on wet spot and fell on right shoulder and arm
## 32112 EE slipped on wet spot in common hallway twisting lt knee.
## 32113 EE slipped on wet spot in foyer & injured right knee
## 32114 EE slipped on wet spot in hallway, grabbed door frame with left arm to prevent fall, this aggravaterotator cuff which had seen by doctor this week.
## 32115 EE slipped on wet spot in the hallway and fell on knee. Contusion lt patella
## 32116 EE slipped on wet spot on floor
## 32117 EE slipped on wet spot on floor and fell injuring back
## 32118 EE slipped on wet spot on floor and fell onto a coffee table injuring lower back
## 32119 EE slipped on wet spot on floor and started falling. Twisted her body to herself against wall to prevent fall. Neck and back.
## 32120 EE slipped on wet spot on floor falling foward hurting left ankle, rt knee rt elbow and wrist
## 32121 EE slipped on wet spot on floor injury fell on left knee and elbow
## 32122 EE slipped on wet spot on floor while returning todesk from lab working area possible strain to shoulder
## 32123 EE slipped on wet spot on the floor near her desk.
## 32124 EE slipped on wet stairways and jolted low back
## 32125 EE slipped on wet steps and injured her left knee
## 32126 EE slipped on wet steps when getting off hauling unit and fell backwards striking his hand on the battery cover that fell to the ground.
## 32127 EE slipped on wet steps while performing field work
## 32128 EE slipped on wet surface
## 32129 EE slipped on wet surface while arranging an exhibit in an aquarium. Bruises on left knee, left lower ribs, and right forearm.
## 32130 EE slipped on wet tile and fell on rt leg/side twisting ankle, knee, hip and back
## 32131 EE slipped on wet tile floor ()
## 32132 EE slipped on wet tile floor in parking deck, fell and bruised both knees, lt elbow, tried to catch self hurt rt hand, jammed shoulder, back pain
## 32133 EE slipped on wet tile floor, when trying to pre- vent the fall she twisted her back and right knee.
## 32134 EE slipped on wet tiles (due to rain) and fell on left knee.
## 32135 EE slipped on wet van step and sprained knee
## 32136 EE slipped on wet wax floor, causing body to do a split and hit right knee on floor
## 32137 EE slipped on wet waxed floor and fell straining shoulder, neck, groin, finger and bruising hip
## 32138 EE slipped on whatever was put out for snow and ice... Injured left hand
## 32139 EE slipped on yogart that was on floor, injuried rhip, lower back, r knee
## 32140 EE slipped onnice in parking lot and fell hitting back on car door.
## 32141 EE slipped or lost balance and fell to the floor landing on her back
## 32142 EE slipped or tripped on top step-tried to get balance but couldn't fell injuring neck-lefg-arms-side
## 32143 EE slipped out of chair and caught self with left hand
## 32144 EE slipped out of chair while turning from desk to computer and strained back
## 32145 EE slipped out of office chair while bending over to pick up something off floor.
## 32146 EE slipped stepping down from platform where he was collecting rain samples
## 32147 EE slipped twice in a spill on the floor and injured thumb
## 32148 EE slipped under bathing table, fell back hitting top of head and twisting right hand.
## 32149 EE slipped walking to parking lot on gras that waswet. Strain right wrist.
## 32150 EE slipped wet bricks in front of holladay hall during rainstorm. Returning from mtg. Injured left ankle.
## 32151 EE slipped when walking downstairs. Managed to catch self b/c of handrail; neck is strained
## 32152 EE slipped while apply stripper to remove wax fromfloor
## 32153 EE slipped while cleaning a low area and fell against a wall bruising her head, hip and shoulder
## 32154 EE slipped while climbing bank in dry river channel and struck shin severly.
## 32155 EE slipped while climbing down a piece of machinery and injured his left hand.
## 32156 EE slipped while climbing steps striking his lt leg on the edge of the steps
## 32157 EE slipped while crossing fence and injured rt hand
## 32158 EE slipped while descending embankment after firing rocket net for trapping wood ducks. ()
## 32159 EE slipped while getting down from truck and twisted arm. ()
## 32160 EE slipped while getting off shuttle bus injuring rt elbow and hip.
## 32161 EE slipped while getting out of a muddy hole, tried to catch self and strained finger
## 32162 EE slipped while getting out of veh and jammed left finger into door
## 32163 EE slipped while going down stairs and sprained rt ankle
## 32164 EE slipped while going uphill in garden with a loaded wheelbarrow, strained back and right leg.
## 32165 EE slipped while in womens bathroom. Lt arm and back.
## 32166 EE slipped while moving boxes and fell onto concrete floor during repacking of handbooks
## 32167 EE slipped while stepping over beam on roof to enter equipment area causing injury to left eye, arm and shoulder
## 32168 EE slipped while walking and ankle turned and popped ()
## 32169 EE slipped while walking down hall-ankle twisted and pulled knee on left side
## 32170 EE slipped while walking down hall. Referred to glenda.
## 32171 EE slipped while walking down the hall.
## 32172 EE slipped while walking down the stairs... Left shoulder and head
## 32173 EE slipped while walking on icy brickwork; injuredneck, back, elbow, head
## 32174 EE slippedo n trash bag on the floor and strained lower back and knee
## 32175 EE slippedon leaves in exhibit and twisted rt knee
## 32176 EE slippled and fell on wet floor from ice and snow.
## 32177 EE slippled on icy back steps while taking trash out landing on rt side and arm.
## 32178 EE slippped and fell on a wet floor causing injuryto his rt hand and lt knee
## 32179 EE slippped and fell on bathroom floor injuring his rt shoulder
## 32180 EE slippped and fell on wet grass injuring his rt elbow
## 32181 EE slippped and fell while walking around the boat - sciatic nerve injury
## 32182 EE slippped on a pipe cuppling and fell on butt.
## 32183 EE sllammed supply room door on left index finger
## 32184 EE sllipped on wet concrete rt shoulder hip and back.
## 32185 EE slowed for a fire truck. Vehicle behind EE rear-ended vehicle and caused head to snap forward, back and shoulders also
## 32186 EE slung a bag of toys over her back.... Back, neckshoulder
## 32187 EE smacked head on overhanging pallet above the bin. ()
## 32188 EE small coil other trade jammed against steam pipe. Slipped and quick response to catch, finger jammed under unit & dislocated.
## 32189 EE smashed her finger in the middle of pans... Left ring finger
## 32190 EE smashed his fingers in window ()
## 32191 EE smashed his rt thumb while pulling out conduit to straigthening rod
## 32192 EE smashed left hand in filing cabinet when closing drawer
## 32193 EE smashed rt hand between care handler on fence
## 32194 EE smashed rt. Ring finger between door and door frame. Fractured tip of finger.
## 32195 EE smashed/cut/brused middle right finger while loading bottle washer in steel rack
## 32196 EE smell bug spray in cube area, had headache and nose was burning, felt dizzy
## 32197 EE smelled a strange fume in the building. Her breathing had gotten rapid, heart rate was fast and felt light headed. ()
## 32198 EE smelled an odor throught the building as con- ducting classification reviews.
## 32199 EE smelled bad odor in building and upset stomach.
## 32200 EE smelled strong odor of sulfur @ mary townes science complex, which brought on an asthmatic attackee is asthmatic & takes reg breathing treatment
## 32201 EE smelled unpleasant fumes in building. There areno know effects from the smells.
## 32202 EE snagged rt foot on paper case.
## 32203 EE snagged toe on uneven concrete step--fell down-length on concrete--scraped both palms, lt elbow, lt leg, lt hip rt wrist, lt knee
## 32204 EE sneezed and struck her head on a metal card box
## 32205 EE sneezed on the way to work, at which time he started experiencing severe back pain.
## 32206 EE soaped down loading dock area to be power washdwent to step on truck to turn on machine and slipdon tailgate, fell on tail bone right side
## 32207 EE sorting mail and a splinter from mail boxes went under nail on rt hand.
## 32208 EE sought to borrow phone in 402 brauer, caught toe in carpet edge near door, fell and hit head oncorner of desk. Preparing for lab at time.
## 32209 EE speaking with inmate his hand was holding the base at bar door of c-block - was not aware bar door being opened. Rt hand - back on hand bruised.
## 32210 EE spends 5 days a week canoeing and believes constant exposure to lake and river caused infection in his big toe on left foot. ()
## 32211 EE spends 60% of time at computer.
## 32212 EE spends majority of the day typing on keyboard repetitive motion.
## 32213 EE spends mjority of the day computer imputting. Injured wrist.
## 32214 EE spent several hours moving heavy ice and snow with a shovel. Right achilles tendonitis
## 32215 EE spent several hrs repairing turntable, much of it kneeling @ the end of task lt knee was painful especially when pressure applied.
## 32216 EE spent three days sanding drywall mud nonstop- low back became sore from repetitive stretching and bending
## 32217 EE spent two days bending, lifting, pulling on a file cabinet, and lifting bags. Injured low back.
## 32218 EE spies states while searching inmates he had floss tied to his id card and I pulled the floss and cut my finger
## 32219 EE spilled 300-500 ml of ethanol, while trying to obtain aliquot methanol. She left the room to get paper towels and returned and tried not breathing while putting them on the spill, then took the methanol and notified the lab tech. ()
## 32220 EE spilled a phenol/choroform mix while placing a piece of tape around the lid.
## 32221 EE spilled caustic acide on left foot when replacing pipe at the water plant
## 32222 EE spilled hot coffee on rt hand
## 32223 EE spit and hitting EE-EE trying to redirect client and client grabbed EE's lt index finger
## 32224 EE splipped and fell in an area that had been recently mopped. Rt and lt arm, head and lt knee. Bruising back.
## 32225 EE splipped and fell.... Water.... Injured left wrist
## 32226 EE spotted a parolee who he had a warrant on. EE pursued offender & cornered him in lot. As a result of a fight EE got a hairline frac. To thumb
## 32227 EE spotted a parolee who he had warrant on. The offender ran & EE pursued cornering him in lot offender gave fight while EE restrained him.
## 32228 EE spotting a gymnast on floor-she became disoriented & EE had to catch her & keep her from landing on her neck-EE twisted left knee
## 32229 EE sprain her ankle while running down the stairs
## 32230 EE sprain her left fifth finger
## 32231 EE sprain her lt foot while walking on a uneven sidewalk
## 32232 EE sprain/strain left hand while attempting to adjust mobile furniture
## 32233 EE sprained ankle and hairline fracture of small bone in left foot.
## 32234 EE sprained ankle restraining patient
## 32235 EE sprained ankle trying to restrain out of control student
## 32236 EE sprained ankle while trying not to drop computemonitor.
## 32237 EE sprained her left ankle while walking down the stairs
## 32238 EE sprained his right wrist while using top hand technique while participating in an unarmed self- defense refresher class.
## 32239 EE sprained left ankle
## 32240 EE sprained left ankle during seclusion
## 32241 EE sprained left ankle while descending stairs
## 32242 EE sprained left knee getting out of van
## 32243 EE sprained left knee while restraining patient
## 32244 EE sprained left shoulder while spreading mulch
## 32245 EE sprained left thumb twisting top on the cooler
## 32246 EE sprained left thumb when patient had a muscle spasm during bathing.
## 32247 EE sprained left wrist preventing client from fal-ling in shower.
## 32248 EE sprained left wrist trying to catch trashcan from rolling
## 32249 EE sprained left wrist while lifting box.
## 32250 EE sprained lt shoulder while trying to stop client from falling.
## 32251 EE sprained lt thumb while trying to put patient in restraints
## 32252 EE sprained mid back while lifting box of file folders
## 32253 EE sprained middle finger during baton training
## 32254 EE sprained right knee and ankle.
## 32255 EE sprained right wrist pushing and pulling a deadhorse to get it in position to be picked up by fo rklift.
## 32256 EE sprained rt ankle and ligaments while coming down steps of staff house fell and landed on rt ankle
## 32257 EE sprained rt ankle when he answered supervisor's telephone
## 32258 EE sprained rt foot while jumping over a ditch
## 32259 EE sprained rt wrist while trying to restrain patient
## 32260 EE sprained wrists while empting trash containers
## 32261 EE sprang rt thumb while removing trash from one container to another.
## 32262 EE sprayed chemicals in l eye
## 32263 EE sprayed disinfectant spay into both eyes when filling bottle
## 32264 EE sprayed floor in 4th barn hallway and hit his head on plexiglass biosafety supply box.
## 32265 EE sprayed in face and eyes as part of pepper spray exposure training. Lt eye irritation and infection.
## 32266 EE sprayed in face with pepper spray during traingee reported becoming dizzy and difficult breathing
## 32267 EE sprayed inmate with oc spray and she inhaled some of it
## 32268 EE sprayed inmate with pepper spray to bring him under control. Inmate kicked him striking him in his back and in the process left hand was cut
## 32269 EE sprayed prosan on the ceiling in the restroom trying to clean the tile, the prosan dropped into her eye ()
## 32270 EE sprayed sanitizer on towel and some fell on the floor/ EE then got up and slipped in it unknowling
## 32271 EE sprayed w/pepper spray as part of regular training. EE stated when she woke up the following morning face was swollen
## 32272 EE spraying mirrow in bathroom and solution splashed in left eye
## 32273 EE sprayint iodine on cows-didn't release spray wand handle causing iodine to spray into eye.
## 32274 EE spreading fire with drip torch on four wheeler, four wheeler rolled on right side, tourch left handand saild through air hitting EE in mouth.
## 32275 EE spun around to talk to an officer and in the process he stepped off the edge of the sidewalk and lost his balance causing pain in low back
## 32276 EE squating in food svc cooler. Row of liquid egg containers fell. A box struck EE across left neck and shoulder. ()
## 32277 EE squatted down and placed left hand under consumers right arm and assisted him to his feet. EE felt something pop in lower back.
## 32278 EE squatted down on rovel control panel. Sprained right knee.
## 32279 EE squatted down on the floor to take a patients blood pressure and felt a sharp pain in right ankle. ()
## 32280 EE squatted down to go under rack to get numbers from computer equipment. When she was getting up felt bones rubbing and popping and knee hurting.
## 32281 EE squatted down to lift laser printer and strained causing inguinal hernia
## 32282 EE squatted down to lift window a/c unit, extendedarms out to grasp unit and lower back snapped and EE knelt to ground on knees.
## 32283 EE squatted down to pick up paperwork that had fallen to the floor she lost her balance, fell back & hit head on keyboard holder under desk. ()
## 32284 EE squatted down to provide treatment to animal & when she stood up, she hit her head on the metal cage. Referred to glenda.
## 32285 EE squatted down to service gas pack, felt pullingsensation in right knee when he stood up.
## 32286 EE squatted down to wash geri chair and strained lt mid back
## 32287 EE squatted in the floor to talk to patient where pt was sitting pt kicked this writer in the left side of chest
## 32288 EE squatted to fire weapon, placed right knee on rock causing left leg to slip out from under him.
## 32289 EE squatted to repair flat tire when hid knee popped and twisted to ground.
## 32290 EE squatting down to x-ray a foot-when getting back up felt pain in lower back & groin
## 32291 EE squatting to look in bottom of cabinet for envelopes, EE started to get up, grabbed hold of middle piece of cab. It came off and EE fell
## 32292 EE squeezed mop out and began to mop felt sharp pain in middle rt side of back.
## 32293 EE squeezing plants out plastic container-- container broke and a piece of plastic flew into EE left eye.
## 32294 EE squirrel came through door and jumbped on window sill. Tryed to remove squirrel from scratchshoulders.
## 32295 EE stabbed EE in arm with pencil. Puncutre wound lt upper arm.
## 32296 EE stabbed hand with scissors ()
## 32297 EE stabbed self in palm of hand with glass pipette
## 32298 EE stack mse goods and caught arm between rows. Lt forearm/scraped
## 32299 EE stacked dishes near switch of converyor belt and when he moved dishes switch was engaged and caused belt to move/causing EE finger to be smashed
## 32300 EE stacking fire wood-bent down to pick up anotherlog and another log from top fell and hit EE in head
## 32301 EE stacking plastic tables-removed table leg from one to correct poition when leg went into right eye
## 32302 EE stacking tables on cart when one fell onto rt foot.
## 32303 EE stacking wood in carpentry shop. Wood began falling and rolled over his left hand causing fx w/dislocation to left index finger
## 32304 EE staes client fell down in wheelchair on EE's hand.
## 32305 EE staes client grabbed EE around the waist and slammed her on the ground hurting her hip, shoulder and head.
## 32306 EE staes door shut on lt hand, middlenail, when entering bldg 72. EE was trying to keep door from slamming.
## 32307 EE staes hurt back while asisting placing patient in s&r room.
## 32308 EE staes patient threw a remote and it struck EE in the temporal of the head.
## 32309 EE staes student elbowed student in stomach.
## 32310 EE staes that he was in conversation with inmate thomas miles when saliva flew from inmates mouth and hit him in the eye
## 32311 EE staes walking down the steps, as he turn to answer question he fell down four steps
## 32312 EE staes while doing everyday cleaning EE noticed her hands were breaking out. Beginning at wrists and down to the fingers.
## 32313 EE staes while getting up from breakroom and felt pain in right thigh from hip of rt leg.
## 32314 EE staes while restraining patient, EE fell on rt knee.
## 32315 EE stamping case numbers as reg job, cts in both hands and wrists
## 32316 EE standing against building and the electricty from lighting struck him on lt side.
## 32317 EE standing around for long time in one place in cold water, strain to rt knee
## 32318 EE standing at desk when another EE attacked her and knocked EE to the floor.
## 32319 EE standing at frt counter-co-worker picked up a spray bottle and chemical went into left eye
## 32320 EE standing at the door, had her hand up on the bar and the officer in the control room opened the door and her hand was caught in it
## 32321 EE standing behind client's wheelchair-client pushed wheelchair backwards into EE causing EE to hit back against elevator door
## 32322 EE standing behind client-bent down to check clients attend-client kicked EE in stomach.
## 32323 EE standing behind client-client kicked sideways and hit EE on the rt claf
## 32324 EE standing behind door-door pushed open hit EE in right side of hip
## 32325 EE standing beside filing cabinet and a metal bar fell and hit EE on the left forarm.
## 32326 EE standing beside lawn mower tow bar fell off and hit her toe.
## 32327 EE standing btwn last 2 seats reaching over back seat reposition supplies, foot slipped causing EE to fall face forward, hit chest on hard metal rod
## 32328 EE standing charting patient's vital signs, janitor came too close and came in contact with dorsal surface of EE right foot. Abrasion rt foot
## 32329 EE standing client up to change clothes-client kept going down-EE noted pain in arms, shoulder, neck and back
## 32330 EE standing client-client dropped and EE att to catch EE from falling-fel crunch in back/left leg
## 32331 EE standing in basket of lift; lift swayed slightlyas EE cut cable loose & when EE depressed the downbutton the lift tipped over and EE fell to floor
## 32332 EE standing in chair to clean board - chair moved causing EE to lose balance and fall to floor injuring lower back, elbow and rt ankle
## 32333 EE standing in chair to operate video monitor and fell from chair.
## 32334 EE standing in chair to reach supplies fell from chair while reaching. Left back & ribs.
## 32335 EE standing in chair with wheels on it on a bare floor. And fell.
## 32336 EE standing in dayroom observing inmates. Turned around to walk out of dayroom knee popped. Injury to lt leg (knee)
## 32337 EE standing in doorwary when wasp went under pantsand stung her leg
## 32338 EE standing in doorway checking in inmates when door slammed shut hitting EE in back & left shoulder
## 32339 EE standing in doorway of kitchen with her back todoor when inmate opened the door, slaming door in back.
## 32340 EE standing in doorway of suspects veh-suspect backed veh up 3 times injuring EE's back and left arm
## 32341 EE standing in doorway talking to inmate, inmate stood up and struck EE in the face around his lower left side of lip. Laceration to inner lip
## 32342 EE standing in front of class-observed a student enter & excitedly jumped-felt snap in right calf cannot put pressure on leg
## 32343 EE standing in front of dry rack for beverage containerl one of containers was stacked on top shelf, it fell & struck EE on head
## 32344 EE standing in front of housing unit and heard a noise in front of b-dorm. Stepped over ptps and lost balance. Fell back onto cement drain-gravel
## 32345 EE standing in frt of client-told client to sit down and client hit EE on left lower arm.
## 32346 EE standing in lab when EE2 entered lab; tried to step back out of the way, but EE2 stopped on my right foot ()
## 32347 EE standing in parking lot talking, when stepped backwards, falling & hitting head and right arm on concrete
## 32348 EE standing in room during shift briefing at beginning of shift. EE fainted without warning.
## 32349 EE standing in the brc center w/0 notice or provocation, pat hit him with a book on right forearm, strained lower back. Owe EE ttd 2-15-08 & 8-11-08
## 32350 EE standing near basketball court when ball hit her neck and caused her to pass out. Neck stiff and swollen
## 32351 EE standing near basketball pole from basketball court. An inmate dribbling toward basket in crowd inmates elbow hit EE in eye area.
## 32352 EE standing next to closed gate-car skidded to a stop & then ran over EE's right foot
## 32353 EE standing on a chair placing a training device used in his intruction in the celing of a room andfractured rt wrist.
## 32354 EE standing on bas e working to replace coupling pump motor-when feet slipped frm under him causingrt finger to twist inside of coupling housing
## 32355 EE standing on chair cleaning a/c vents chair moved causing EE to fall on right ankle
## 32356 EE standing on chair to take a photo-made a suddenmovement to regain balance and strained muscle in upper left chest
## 32357 EE standing on chair while attempting to kill waspand jumped off chair and fell landing on left kneeon the floor
## 32358 EE standing on chair-while getting down hurt rt knee
## 32359 EE standing on couch to water plants, misjudged distance from couch to floor, lt foot slipped, fell bckwrds and hit rt heel on office chair.
## 32360 EE standing on curb talking and stepped down and twisted left ankle.
## 32361 EE standing on ditch bank bank caved in caused herto fall. She caught herself with left hand. Injured left hand and left wrist
## 32362 EE standing on front porch-client came up and hit EE on neck causing it to pop.
## 32363 EE standing on ladder & opened ceiling file, therewas broken brick on other side, fell into EE ear
## 32364 EE standing on ladder operating trailer when trk backed up and started dumping boxes causing EE to loose hand grip and footing falling to ground.
## 32365 EE standing on loading dock, taking sheets of lumber and stacking 15 ft away, hurting elbow
## 32366 EE standing on porch beside mobile home knocking on door, p0rch covered w/carpet, he was leaving lt ankle gave way. Ligaments of lt ankle.
## 32367 EE standing on roadway working traffic, as he was turning around, his left arm was struck by the mirror of passing vehicle.
## 32368 EE standing on soda bench & bent to remove 55# soda off top of stack & stepped off of bench with soda injury occurred.
## 32369 EE standing on stool in order to reach key board to assign out keys when stool slipped and fell to floor. Injured left l eg and right arm.
## 32370 EE standing on the bow of patrol boat collecting dead fish from a fish wagon spilling wagon. Bacteria of water.
## 32371 EE standing on top of 4 bales of straw when the bales shuffled causing him to fall. EE fell to ground one bale struck head. Bruise to back & nek
## 32372 EE standing on top step while talking to vendor EE sliped from top step & fell causing injury to back, head, lt arm
## 32373 EE standing on trash can to change light bulbs when getting down fell and twisted left knee-cut back on heater
## 32374 EE standing outside backdoor when wind blew door open causing door knob to hit EE in middle of back.
## 32375 EE standing outside building, felt a bug crawling on right elbow, EE hit it and killed it on arm, eelooked at it it was a spider. Bite to right arm
## 32376 EE standing standing in water tank trailer-stepped on plank-floor plank broke-EE fell through floor hitting hit rt. Arm on trailer rail. ()
## 32377 EE standing to close to instrument tray and as he moved around the tray, struck his right hand on a dental drill. Description stated by m. A. Blancher
## 32378 EE standing under catwalk stairing & the unknown liquid from cellblock struck him in head & shoulders
## 32379 EE standing up to judges bench to obtain signaturefrom judge on doc during session, EE moved to rtrn to desk step missed EE fell bruised neck
## 32380 EE standing with back to stack of boxes when two boxes fell onto EE's rt foot.
## 32381 EE starined back trying to stop client from falling.
## 32382 EE start feeling sick with an upset stomach. He was taken to memorial mission hosp.
## 32383 EE start running to call and fell injuring left foot
## 32384 EE started across the breakroom floor-slipped in wsome water that leaked on floor, fell and landed on rt hip, leg twisted underneath her.
## 32385 EE started breaking out in rash on both arms afterwork
## 32386 EE started breaking out with blisters on left sideof body while welding manure carts fro large animal facility
## 32387 EE started complaining of headaches and flu-like symptoms 2 hrs after using herbicide
## 32388 EE started crossing the parking deck, was standing water, EE was looking, but her feet slipped and fellon her knees and then on hip. Strain back/hand/leg
## 32389 EE started developing carpal tunnel syndrome in the lt wrist over the past 2 weeks.
## 32390 EE started down steps on the back of loading dock he tripped on a piece of ply wood causing him to fall down seven steps. Left wrist, shoulder, ribs
## 32391 EE started down the stairs and fell on right side. Missed a step ()
## 32392 EE started experience pain in his footand ankle while working at the world trde ctr site.
## 32393 EE started experiencing severe pain in neck and arm during computer use
## 32394 EE started feeling a burning feeling in her throat and chest, and started struggling to breathe. ()
## 32395 EE started feeling numbness, swelling, and pain after cleaning the shower.
## 32396 EE started felling numbess in rt toe over several months and pull in rt leg May have started during physical training.
## 32397 EE started gallon size paint shaker. Stand moved &caught right hand between shaker & table injuring right hand.
## 32398 EE started getting sharp pains in neck on 2/28 andwas swollen when EE woke on 3/01 EE was spreading fertilizer injury right shoulder pain & swollen
## 32399 EE started having breathing problems walked downstairs felt light headed face felt stiff and swollen.
## 32400 EE started having chest pain
## 32401 EE started having chest pain, scratchy throat, headache, due to allergic reaction due to mold growth in work environment.
## 32402 EE started having chest pain----unknown reason pt was transport via ambulance to the er
## 32403 EE started having pain from hand-elbow-shoulder while typing and working at computer work station loss of strength and aches in both arms.
## 32404 EE started having pain in back after emptying a mop bucket
## 32405 EE started having pain in chest and arm area while restraining a student
## 32406 EE started having pain, burning and some numbness in hands, fingersm and forearms about 6 months ago
## 32407 EE started hurting by end of day after moving boxes. Rt groin.
## 32408 EE started hurting in her back shile assisting pt. Out of bathtub.
## 32409 EE started itching, she looked in mirror and saw stripes and white whelp marks on back and under arms.
## 32410 EE started mopping dining room floor spill/fluid on floor, slipped & fell landed on lt knee/foot
## 32411 EE started out on the catwalk, when he stomped histoe over the wooden plat. Injury to left knee and hip.
## 32412 EE started running responding to a disturbance and felt pain in legs
## 32413 EE started seeing small red bumps and had itching after pulling weeds. Developed rash on other parts of his body later.
## 32414 EE started to close down the coke trailor, when her hand slipped while cranking dowm the roof. Crank handle caught EE's arms and wrist
## 32415 EE started to fall backwards after he let go of walking rail and felt pain in low back soon afterwards.
## 32416 EE started to fall-EE caught client and tried to balance client when client struck EE in rt lower groin.
## 32417 EE started to feel bad (light headed & nauseated) and her hands started to itch ()
## 32418 EE started to feel pain in upper right chest area while using vacuum cleaner to vacuum carpet floor. ()
## 32419 EE started to get up from chair in the medication room and her feet became tangled in the phone lineand she fell on right knee
## 32420 EE started to leave post & stepped on the pavement& her rt foot slipped out from under her causing her to fall back hitting rt knee & elbow.
## 32421 EE started to put key in door, and another staff opened door injuring EE right pinky finger.
## 32422 EE started to retrieve laundry detergent from stack above machine injury pain in back
## 32423 EE started to sit at co-workers desk and chair rolled from under EE and hit bottom on floor and jarred back & hit head on desk.
## 32424 EE started to sit down and chair slipped out from under her, causing her to lose balance and fall to floo
## 32425 EE started to sit down in a chair and it rolled back out from under EE. I fell onto the floor on buttocks.
## 32426 EE started to sit down on the sofa in restroom. Itwas lower than expected and the back of head hit the wall before her back touched the back of sofa
## 32427 EE started to sit in a manicure chair w/rollers. Chair rolled out from under her & she in an attempt to catch herself fell to the floor
## 32428 EE started to sit on bus & hit rt elbow on safety bar.
## 32429 EE started to walk across office to get glasses and tripped over telephone cord-falling on both knees
## 32430 EE started up a slope, his left foot slipped on leaves and needles, put r foot out to prevent fall. Cat -- 695627
## 32431 EE started up stairs to deliver medications, stumbled and fell hitting left hip and ankle on floor
## 32432 EE started walking across lower parking lot from his vehicle and fell on ice left from recent snow. EE landed on back, shoulders and head.
## 32433 EE starting an iv on patient with scabies
## 32434 EE starting thru the slider it was half way open and the operator started and continued to clsoe it on EE, contusion to upper chest and back
## 32435 EE starting work duty getting into state veh and slipped on ice twisting left ankle.
## 32436 EE starts that due to poor lighting in the bottom of the tower she stepped on the floor unstead of the step
## 32437 EE state "I was struck in the face w/ a bat while taking water out on the field to the umpires."
## 32438 EE state 2 people were locked in office. EE tried to open door by kicking the metal door with his left foot. Tore tendons in the left knee.
## 32439 EE state a box a paper fell off a shelf striking EE on the lt side
## 32440 EE state a closet door swung back striking her on the lt big toe
## 32441 EE state a door closed on his lt hand
## 32442 EE state a gate door closed on her rt middle finger
## 32443 EE state a hand truck flipped over and struck him on the rt side of head around the rt eye area
## 32444 EE state a piece of glass was lodged in his lt middle finger
## 32445 EE state a probationer became disruptive and push him---he started feeling pain in his lt shoulder the next day
## 32446 EE state a set of handcuffs was being removed froman inmate with a bolt cutter the bolt cutter cut inmate causing blood to drop on EE middle finger
## 32447 EE state a softball struck her on the lt leg.
## 32448 EE state after completing an inspection of a tractor trailer he climbed down off the tractor and came down on his lt heel and felt pain in back
## 32449 EE state after drawing blood from an inmate, as she was discarding the needle to the sharp contain-ers, she stuck her inner wrist.
## 32450 EE state after inspecting an area that inmates had just cleaned--EE felt something in his lt eye
## 32451 EE state after patient was taken to ito by staff, EE was assisting to help search pt--as EE was reaching to hold pt feet-pt kicked EE in lt breast
## 32452 EE state ambulated on grounds - returning to work EE injured rt knee.
## 32453 EE state an inmate spitted on him.
## 32454 EE state an inmate tripped him with his foot causing him to twist his lt ankle and knee
## 32455 EE state an insect bit him on the rt leg
## 32456 EE state an unknown insect stung or bit him on thelt hand.
## 32457 EE state assisting with a hog the hog moved unexpectedly striking the back of his rt hand
## 32458 EE state because of computer mouse placement and repetitive use of computer - rt lateral epicondylitis
## 32459 EE state cut finger lowering stand for id camera
## 32460 EE state during a blood drawing on an inmate she puncture her rt index finger with a needle
## 32461 EE state during a home visit he stepped off some steps and twisted his lt knee
## 32462 EE state during a medical exam on an inmate the inmate struck and kick him causing injury to his face, shoulder, and chest area.
## 32463 EE state during a rope course he injured his rib area.
## 32464 EE state during basic training she injured her rt shoulder
## 32465 EE state during lab procedure she was punctured bya needle to the lt index finger
## 32466 EE state he came in contact with TB
## 32467 EE state he cut his rt hand on the back of a bus seat
## 32468 EE state he felt a sharp pain in his rt wrist while trying to unlock a door with a key
## 32469 EE state he had an allergic reaction from an unknown substance while searching the wooded area for an escape inmate
## 32470 EE state he had closed valve on #2 boiler and proceeded to descend from ladder and stepped off last rungs when foot twisted to the side.
## 32471 EE state he injured his lt hand while restraining an agressive inmate.
## 32472 EE state he lifted a trash bag when he felt pain in his lt knee
## 32473 EE state he slipped and fell on a just waxed wet floor injuring his back
## 32474 EE state he slipped and fell on some step causing injury to his lt hand and wrist
## 32475 EE state he stepped in a crack on floor in a door way and twisted his rt ankle
## 32476 EE state he stepped into some water and fell
## 32477 EE state he stepped off a rock twisting his rt knee
## 32478 EE state he struck his head on a vending machine
## 32479 EE state he was assisting with moving a metal locker when it begin to fall causing back pain.
## 32480 EE state he was bitten by a tick
## 32481 EE state he was bitten by a tick on the rt leg while walking thru a field site
## 32482 EE state he was bitten by an insect on his rt inner leg/thigh
## 32483 EE state he was cleaning out the truck when he fell on some wire
## 32484 EE state he was exposed to blood from a probationer
## 32485 EE state he was kick in the rt leg by a visitor
## 32486 EE state he was placing the top section on a machine when it slipped striking his lt index finger
## 32487 EE state he was struck in the face by an inmate.
## 32488 EE state he was throwing softball w/ students, stepped on uneven part of playground, slipped and twisted l knee.
## 32489 EE state he was unloading equipment from a truck stepped down from the truch and injured his rt knee.
## 32490 EE state he was vaccinating birds --one of the blades jumped up and knocked hand into the needle.
## 32491 EE state he was walking, getting off tower, slipped in mud on 1-24-96 on 1-25-96 stepped off curb jarring back causing pop in back, leg pain
## 32492 EE state her finger was caught between the door
## 32493 EE state her foot slipped off steps injurying her lt ankle
## 32494 EE state her hand was propped against a pole when the pole fell she fell across the pole injuring her back
## 32495 EE state her lt finger was caught in a trap door
## 32496 EE state his back became stiff while driving a truck with a broken seat
## 32497 EE state his back started hurting during road patrol.
## 32498 EE state his lt elbow was burn while attempting toput out a fire
## 32499 EE state in the attempt to catch an offender who was running trying to get away he noticed pain in his back area
## 32500 EE state injured back while pushing ger-o chair.
## 32501 EE state inmate threw a cup with urine and feces at him.
## 32502 EE state she injured her rt middle finger while trying to pull a cabinet from a window in order toclean the window
## 32503 EE state she reached up to pulled down a roll-up door in the program department and felt pain in her lt arm
## 32504 EE state she stepped off a porch into a hole causing lt ankle, back, and shoulder injury
## 32505 EE state she suffered carpal tunnel syndrome due to excessive typing and filing.
## 32506 EE state she walking when her rt foot was caught on an uneven sidewalk causing her to fall forward to the ground
## 32507 EE state she was assisting lifting a client into chair when she felt pain in neck and back area
## 32508 EE state she was involved in a motor vehicle accident while in the state vehicle.
## 32509 EE state she was involved in a motor vehicle accident--a car pulled out in front of her causingher to strike the vehicle
## 32510 EE state she was involved in a motor vehicle accident.
## 32511 EE state she was walking back to work to alford building when she tripped over a trailer ramp and fell & hit left knee, palm, face, lip & nose.
## 32512 EE state she was walking when she tripped over a g-volt battery.
## 32513 EE state some powder got into her lt eye
## 32514 EE state that an inmate threw an unknown fluid on his lower back, upper lft arm, a nd upper lft leg area.
## 32515 EE state that as he was attempting to restrain inmate gonzales for transfer, inmate resisted thenbit EE on the right hand and spit in his face
## 32516 EE state that during a sue of force on an inmate that he sustained some bruised ribs and abrasions.
## 32517 EE state that during defensive tactives instructortraining trooper bright was practicing frontal choke wrist out exercises when he strained neck
## 32518 EE state that during use of force, inmate jeanette mutz spit in her eye and sctracted EE r ring finger breaking skin
## 32519 EE state that he cut his thumb while trying to cut a piece of duct tape.
## 32520 EE state that he was exposed to dust from fire retardant which caused breathing problems.
## 32521 EE state that he was walking on sidewalk when he stumped his foot on the uneven sidewalk and fall
## 32522 EE state that pt kicked her leg twice while she had him in a therapuetic hold. EE was kicked in both legs.
## 32523 EE state that she was head butted on rt thigh by a resident wearing a helmet.
## 32524 EE state that she was hit on the lt side of face and grabbed around the throat by a pt
## 32525 EE state that she was returning the food cart to the dining hall & while moving the foodcart thru the doors, EE alleges she pinched her rt palm.
## 32526 EE state that she was walking to her car when she felled on a metal pipe that was sticking out of the ground injurying her rt knee.
## 32527 EE state that the fumes from the bleach that was used to clean the floors caused her to have breathing problems.
## 32528 EE state that while pushing a resident in a chair into the elevator the resident put feet on the wall causing chair to push against EE abdomen
## 32529 EE state the constance mounting/dismounting has cause increase pain of the prostate. Pt was refer to a consult for consultation.
## 32530 EE state the fumes from used to clean the floor has caused breathing problems
## 32531 EE state the repetitive motion from bending and stooping has cause pain in lt thigh
## 32532 EE state the repetitive motion from daily task working with computers has numbness and pain in rt hand
## 32533 EE state the repetitive motion from her daily job duties--typing and using the computer has caused pain in her rt arm/hand
## 32534 EE state the repetitive motion from lifting has caused a hernia
## 32535 EE state the wind blew something into his lt eye
## 32536 EE state the wind blew the door open causing his rt hand to be caught between the door and the guard rail
## 32537 EE state whil opening delta door the door scrathced her left hand ()
## 32538 EE state while applying chemical some of the substance dripped on his boot causing a burn to his lt foot/toe
## 32539 EE state while assisting other staff with use of force on an inmate he injured his chest area.
## 32540 EE state while assisting with a pt in in pic hold he was struck by a chair on the rt hip
## 32541 EE state while assisting with an aggressive inmatewho was fighting causing EE to fall striking his head
## 32542 EE state while assisting with an inmate he accidently sprayed his eyes with pepper spray
## 32543 EE state while assisting with an inmate he tried to lift the inmate up into the transportation vehicle injuring his back
## 32544 EE state while assisting with an inmate who was having a seizure she struck her head on a napkin container in the bathroom
## 32545 EE state while assisting with inmates her wrist began to itch and a rash appeared.
## 32546 EE state while attempting to discard a needle she was punctured in the lt index finger
## 32547 EE state while attempting to loosen a drain pipe he hand slipped striking the blade of the fan
## 32548 EE state while attempting to put an unknown objectin vehicle his lt index finger was cut
## 32549 EE state while attempting to sit in a chair the chair roll back causing EE to fall to the floor injuring lt hip and lower back
## 32550 EE state while attempting to stand his head struckthe bio harzard box located in a booth
## 32551 EE state while attempting to stand up from a chair the chair rolled from under her causing her to fall injuring her lt elbow and forearm
## 32552 EE state while cleaning buses he stood up and stuck his head
## 32553 EE state while cleaning out a cooling tower his foot slipped and he struck his elbow on top of a fan while trying to keep from falling.
## 32554 EE state while demonstrating a dance in dance class a he felt a sharp pain of his lt knee
## 32555 EE state while driving a cart the wind blew a doorclosed and while attempting to stop door with his lt foot his foot was caught
## 32556 EE state while driving a truck something flew into his rt eye
## 32557 EE state while driving company vehicle he was struck on the driver's side by a truck injuring neck and back
## 32558 EE state while driving he was struck by another vehicle on the driver side causing lt shoulder and back injury
## 32559 EE state while driving she pulled off the road to allow an ambulance to pass but the driver of the ambulance lost control striking EE car in the rear
## 32560 EE state while driving the brakes failed causing EE to strike another vehicle
## 32561 EE state while escorting an inmate back to his cell the inmate pulled EE rt hand thru the trap door
## 32562 EE state while examining a cow the cow kicked him.
## 32563 EE state while existing the office her shirttail got hung on the door handle causing the door to close striking EE in the back
## 32564 EE state while getting in the state vehicle to warm it in order to transport inmates he felt a pain in his back and neck area
## 32565 EE state while getting out the car in the parking lot the wind blew an unknown object into his rt eye
## 32566 EE state while going thru a door the door closed striking EE head and lt eye
## 32567 EE state while going up some stairs to his office his lt shoe was caught on the edge of the steps EE injured his rt arm-while breaking the fall
## 32568 EE state while handling pressure washer he received a pinched nerve to his hand and cervical strain
## 32569 EE state while he was attempting to break-up a fight b/w two inmates he was struck on the rt upper cheek araea.
## 32570 EE state while in a kneeling position and upon standing she lost her balance and fell backward injuring her lower back
## 32571 EE state while leaning forward in a chair the chair slipped from under her causing her to fall to the floor
## 32572 EE state while lifting a tracker he injured his lower back
## 32573 EE state while locking a metal lock on a gas pump his lt thumb was caught between the lock and the handle
## 32574 EE state while making sercuity rounds the fan blewsome trash in her lt eye
## 32575 EE state while opening gate the gate slipped causing EE rt arm to be jerked injuring rt shoulder
## 32576 EE state while opening the driver door to vehicle the door swung back and struck her under the lt eye
## 32577 EE state while packing van, he stepped off steps of building-steps wet and leaf covered.
## 32578 EE state while performing a phlebotomy procedure the pt jerked causing the needle to puncture EE finger on the lt hand
## 32579 EE state while playing volleyball he twisted his rt ankle
## 32580 EE state while responding to help call she lost her balance and fell injuring rt knee
## 32581 EE state while restrainig a cat--it bite her on the lt hand
## 32582 EE state while restraining an aggressive inmate he injured his lt eye and lip
## 32583 EE state while riding in the state van the van made a lt turn causing the door to open when EE fell out of the van injuring his head
## 32584 EE state while running bloodhounds he drop the leash and while reaching down to grab the leash his rt thumb was caught on a hidden root
## 32585 EE state while supervising inmate he was sitting in a chair when the chair flipped over backward causing EE to fall to the floor back/elbow injury
## 32586 EE state while trying to keep two students from fighting her finger was injured.
## 32587 EE state while trying to open a locked door he felt pain in his lt hand
## 32588 EE state while turning keys in gate she felt numbness and swelling in rt hand
## 32589 EE state while walking he slipped on some leaves and fell injuring his rt knee
## 32590 EE state while walking her foot went out from under her causing her to fall on the floor twistinher lt leg/knee
## 32591 EE state while walking into conference room, rt foot slipped on wet floor & EE fell sharply on rt knee & buttocks, lt hip and knee are sore.
## 32592 EE state while walking on cement floor he started having pain in his rt foot
## 32593 EE state while walking she felt a pop in her lt ankle
## 32594 EE state while walking she slipped and fell on icefalling on her lt elbow
## 32595 EE stated "I was filling out discharge summary-started to roll chair backward-back of chair leaned back and tripped over backwards."
## 32596 EE stated "I was walking out of the storage barn on the firing range, stepped down on a concrete slab & twisted ankle and fell to the ground.
## 32597 EE stated "I went to get out of the van, my left foot slipped & went to the ground leaving my rt leg in the van when I fell heard rt knee pop
## 32598 EE stated "I'm not mentally prepared to work I want to see a doctor EE was asked what the problem was EE stated they've done it I want to file wc clai
## 32599 EE stated "he went out of medical w/ streacher andslipped at doorway and fell against sitting bench outside medcial area-stricking his rib area on the
## 32600 EE stated "walking down the stair.... I missed thelast step & ankle went down & I hit my right arm against stairs"
## 32601 EE stated "while outside checking fire ext. & doorlocks, turned to go another direction when feet & legs shot out from under med slipping on ice
## 32602 EE stated -returning food cart to the kitchen and a mop and bucket was inside the door and the food cart must have pushed the corner of th
## 32603 EE stated I bent down to put medication into refrigerator and I hit my head on open cabinet door when I stood up
## 32604 EE stated I was standing by the opened window of tower #6 at whicj time a bolt of lighting struck a pine tree appox 100ft away
## 32605 EE stated I was standing up to come off the mat I turned my ankle on the edge of the mat
## 32606 EE stated I was walking, tripped on uneven sidewalk (by tree on sidewalk of polk st. ) she sustained unspecified injuries to right hand, knee, lips, mouth and nose ()
## 32607 EE stated I/m came out of cuff and hit him in on l-sided of his head ()
## 32608 EE stated a bug flew into EE left ear while EE wasdriving perimeter patrol, left ear was sore after bug was removed by flushing water
## 32609 EE stated a case of food started to fall & she reached & grabbed case of food & twisted wrist in process. Right wrist.
## 32610 EE stated a cup full of yellowish liquid was thrown on his abdomen. ()
## 32611 EE stated a inmate grabbed baton & hit her across the right hand.
## 32612 EE stated a sewing needle punctured right hand inside palm area, brought blood from hand.
## 32613 EE stated a splash from gly-4 plus went into rt eye
## 32614 EE stated a take down move was performed with a pr-24 and landed on EE's lt shoulder and elbow
## 32615 EE stated a yellow jacket stung him on the back of his head
## 32616 EE stated after decontamination, left eye continued to burn
## 32617 EE stated after firing revolver she felt a slight irritation in lt eye subsequently her eyelid has become swollen & tender
## 32618 EE stated after giving an insulin injection EE went to pull cover over needle and scraped lt index finger
## 32619 EE stated after kneeling repeatedly, she stood & something pulled in her right thigh
## 32620 EE stated after moving desk felt discomfort in back
## 32621 EE stated an inmate had set a fire in the cell and he was removing the inmate from the cell had to use force
## 32622 EE stated an inmate handed him a piece of foam w/ 5 needles stuck in it. EE pulled one needle out toinspect, pierced rt in finger placing back in foam
## 32623 EE stated an inmate refused to be handcuffed and pulled his arm through the trap opening. Rt and left forearms
## 32624 EE stated an inmate refused to sit down when ordered. The inmate jumped & bit him on left breast. EE was scratched on nose and neck
## 32625 EE stated an inmate refusing orders to return to his wing, causing EE to used physical force when inmate kicked EE in right leg
## 32626 EE stated another staff member stepped on her ankle while doing a cell extraction training
## 32627 EE stated another vehicke pulled out of winn-dixieparking lot & struck state vehicle in right front door.
## 32628 EE stated arm struck inmates bed. Stated both hands struck floor. Involved in use of force with inmate and unknown substance sprayed in eyes
## 32629 EE stated as he closed his door in central prison visitors parking lot, as he stepped away he slipped in snow and ice landing on his back
## 32630 EE stated as he gave the order to stop fighting (2inmates fighting), one inmate scratched his left arm. Poss. Bbp exposure - medical only
## 32631 EE stated as he placed inmate back in his cell he started to walk away the inmate spit in his face striking him on the rt ear rt eye and rt side face
## 32632 EE stated as he was escorting inmate to the recreation cell in segregation inmate threw what smelled like urine on him
## 32633 EE stated as he was getting into the food service truck at u-4 building when his right knee popped and he felt a sharp pain in the front of his knee.
## 32634 EE stated as he was ordering disruptive inmate to submit to handcuffs, inmate spit in his face. (EE sent for possible bbp exposure testing.)
## 32635 EE stated as she stepped off the porch of the mainbuilding, she fell & hit her right knee on the ground.
## 32636 EE stated as she stepped out of the ppv truck her foot was half on the pavement and half off and her ankle rolled to the side
## 32637 EE stated as she turned to her rt to lean over andpick up a piece of paper that had fallen on the floor her chair rolled out under her throwing.. ..
## 32638 EE stated as she walked through the serving line area she slipped and fell due to water on the floor
## 32639 EE stated as she was cleaning the control room and checking the stockroom she slipped in some water and fell hit lt hand on the corner of the shelf
## 32640 EE stated as she was climbing down the stairs on tower 5 she hit her lt knee on the railing
## 32641 EE stated as she was walking from parking lot to work she saw ice on a speed bump and tried to be careful while walking there. Her foot slid out from underneath her and she fell injuring multiple body parts. ()
## 32642 EE stated assaulted by inmate chris williams #0811481 in dng hall. Struck by food tray & attem pted to block strikes with rt. Arm/hurt rt. Shoulder
## 32643 EE stated assisting in pulling stretcher on incline, pulled a muscle in back
## 32644 EE stated at approx. 15: oo p. M., he & another EE were attempting to lift a desk onto a moving cart when he felt pain in his back.
## 32645 EE stated at firing range completing handgun, began to feel very hot, dizzy, head throbbing, cramps in hands, legs buckle & disoriented
## 32646 EE stated at residence to install eha unit. He wasbit on lt wrist by spider.
## 32647 EE stated attempted to lift gate handle & caught hand between handle & fence rail injured rt hand
## 32648 EE stated attending re-certification class, shooting gun, gun kicked right shoulder
## 32649 EE stated awkwardly during officer assistance technique fell on ribs resulting in bruised ribs
## 32650 EE stated bar poped out of carrier and hit EE in face across and below left eye
## 32651 EE stated bending over to get syringe, stood up & hit her head on the box that hold keys
## 32652 EE stated bent over to sit on toilet head hit corner of cabinet that is directly in front of toilet. Cut middle forehead below hair line
## 32653 EE stated blood being drawn from patient side of needle touched EE's rt index finger causing blood exposure to rt wrist
## 32654 EE stated blood vessel ruptured in eye due to straining to repair pipe
## 32655 EE stated by telephone that she was using a bufferwhen losing control of machine & caused muscle strain to right arm.
## 32656 EE stated car pulled out in front of her, slammed on breaks, but could not avoid hitting the vehicle.
## 32657 EE stated car rear-ended while stopped at red light
## 32658 EE stated changing and checking equipment and locks and eye started itching and touched or rubbed eye.
## 32659 EE stated checking mail & a sewing needle stuck inthe rt index finger
## 32660 EE stated coming home from grocery store, noticed small red bump on back of left thigh
## 32661 EE stated coming in door when another EE was goingout & reached for the door handle & rt pointer finger was jammed in the door
## 32662 EE stated conducting rounds on lower floor stepped off the stair into dorm when he slipped on the wet floor ()
## 32663 EE stated descending stairs to restroom & fell down last six steps hit lt elbow & lt arm impact on lt hip
## 32664 EE stated did a lot of lifting on 12-17-00 and woke up monday with sever back pain.
## 32665 EE stated doing baton training twisted her wrist around
## 32666 EE stated doing bent wrist to arm bar take down into cuff position urt his right shoulder ()
## 32667 EE stated door on ice machine came down & cut his index finger rt hand
## 32668 EE stated driving assisgned car when it was hit on rt side by another vehicle. Strained lower back
## 32669 EE stated due to stress and working conditions, she suffered a psychological injury which actuallyturned into physical problems as well.
## 32670 EE stated during cell extraction training, she tripped trying to take an officer down landed on lside the inmate bed
## 32671 EE stated during pepper spray training, she was sprayed in eyes by it.
## 32672 EE stated during performing routine duties of opening phone box injured middle finger
## 32673 EE stated during plowing a wild fire a tree fell across the fire pow. While trying to repostion the tree on the fire EE fely pain in back
## 32674 EE stated during recertification for shotgun the recoil weapon kicked her back about three feet and injured her rt shoulder
## 32675 EE stated during recreation duties a person threw a basketball. EE tried to catch it but deflected off right hand bending pinky finger back.
## 32676 EE stated during refesher training (cdrt) his leftcalf was hurt during a training scenario
## 32677 EE stated during surgical removal of tooth she was stuck with surgical instrument
## 32678 EE stated during the prescribed physical fitness run he stepped into a hole, twisting his left ankle. Sprain left ankle
## 32679 EE stated during wall locker searches he had a reaction from the powdered gloves. Left index finger
## 32680 EE stated entering the gatehouse for duty her hand slipped off of the door handle and she fell to the floor
## 32681 EE stated escorting I/m to rec yard he began arguing with another I/m one of the I/m threw a cup a urine hitting EE in the left eye ()
## 32682 EE stated exposed to blood on his lt arm from wrist to half way to elbow.
## 32683 EE stated exposed to chemical, paint spill & someone attempted to clean spill w/bleach
## 32684 EE stated exposed to inmate's blood while escrotinan inmate who had cut himself, also supervised clean up of blood contaiminated areas
## 32685 EE stated felt something pull in groin area while executing one of the movements in crdt training
## 32686 EE stated floor was sticky & uneven & she fell injurying her lt knee & hip. Safety officer could not find uneven area on floor.
## 32687 EE stated gate hit rt foot when closing. Walking to pull gate, gate closed she injured rt heel.
## 32688 EE stated getting mop the clean m/c bathroom he stepped off the 3rd step and fell back down the steps ()
## 32689 EE stated getting off transfer bus turned right and knee popped ()
## 32690 EE stated getting out of the food truck he tripped across dock ramp with right foot. ()
## 32691 EE stated going up stairs between h & g dorms when slipped and fell on staircase, landing on right knee.
## 32692 EE stated he & occupant in van laying down sleepi ng when impact occurred was thrown against back ofseat injurying neck and back
## 32693 EE stated he and another EE arrested a probationerhe resisted arrest and was handcuffed in front. Hepulled EE's arm up and bite him
## 32694 EE stated he and howard were lifting an inmate of f the floor in medical to transfer him into wheel chair and felt sharp pain in his lower back
## 32695 EE stated he approached inmate from behind as he was attempting to throw a chair. EE tackled inmateto the floor with chair. EE's arm hit table.
## 32696 EE stated he attempt to sit down in plastic chair. When the chair broke causing EE to fall and hit head on wall behind him. Back and head-pain
## 32697 EE stated he attempted to take a bit of a sandwichthat he purchaed out of canteen, it had blood on it. He spit out what he had in his mouth, the same
## 32698 EE stated he belived the injury was caused by herself stretching her arm to press th ebuttons on thecontrol panel
## 32699 EE stated he bent over and squatted in front of the medicine cabinet. After removing the 18 pound control safe, he felt a severe pain in low back.
## 32700 EE stated he bump his knee on the desk in segregation
## 32701 EE stated he checked out a pair of handcuffs ten minutes later he went to use the restroom, latehis groin area was swollen due to pepper spray.
## 32702 EE stated he cut his hand while opening box. ()
## 32703 EE stated he entered a shower & as he was stepping out of shower area & slipped on the concrete floor twisted back.
## 32704 EE stated he escorted an inmate in the unit 3's sergeant office and was questioning-- he struck him in the face and head. ()
## 32705 EE stated he escorted an inmate to the noncontact area. The inmate swung at EE hitting him on the left side of his face and scratching him on hand.
## 32706 EE stated he escorted med staff through seg unit when liquid was thrown on him containing feces. (small cut on neck prior to incident affected).
## 32707 EE stated he fell down the stairs on cell block a could of tripped over something ()
## 32708 EE stated he fell on his left arm and wrist while playing softball during the time he was attending a divisional meeting and picnic.
## 32709 EE stated he fell while using use of force on an inmate & his left wrist was caught under the inmate.
## 32710 EE stated he had a physical confrontation with an inmate and suffered contusions to his left hand
## 32711 EE stated he had a sore on his rt leg below knee for 6 weeks that would not heel it pops and drains occassionally.
## 32712 EE stated he had been stung 10 times on the hands by fire anyts. EE began sweating profusley stated both ears were stopped up. Found EE on floor cons.
## 32713 EE stated he had car wreck. Another staff member was driving. EE was on passenger side front seat when car collided w/truck in front of them
## 32714 EE stated he had the trap door open to let an officer down and he turned and stepped into the open trap door and fell catching his arm on the door
## 32715 EE stated he had to use force on an assaultive inmate to prevent further assaults of staff
## 32716 EE stated he hurt his hip while restraining a student-felt sharp pain in front of upper thigh in groin area.
## 32717 EE stated he hurt his self lifting computers
## 32718 EE stated he injured his knee when he put an inmate to the floor. ()
## 32719 EE stated he injured his knee while breaking up a fight between 2 juveniles
## 32720 EE stated he injured his left knee while stepping up and down out of wrecker
## 32721 EE stated he injured his rt knee attempting to restrain an inmate during the search of inmate abd his property
## 32722 EE stated he is unsure how it happened but he strained his rt hip
## 32723 EE stated he jammed and sprained his left thumb on a dorm cell door left thumb sprained
## 32724 EE stated he lifted a box and hurt his back
## 32725 EE stated he moved a coffee cup in sgt. Brown's box that was already broken & pieced back togetherwhen it shattered & cuty his lower right palm.
## 32726 EE stated he noticed foul smell upon entering the building. No injury.,
## 32727 EE stated he opened the big drawer at the front desk and there was a dirty napkin in the drawer and he got it out to throw away and there was a needle
## 32728 EE stated he opened the segregation control door tto pull mop bucket, mop, broom, cleaning supplies in room & door closed on broom & it made him fall.
## 32729 EE stated he opened the trap door on inmate cell dispensing food tray. The inmate struck his lt wrist and forarm with a sharp plastic object
## 32730 EE stated he picked up a water cooler full of ice and water to place in the van. He turned and felt a sharp pain in the middle of his lower back.
## 32731 EE stated he picked up food trays and felt a large pain down his lower back walking down the stairs with trays. ()
## 32732 EE stated he picked up mop bucket to the top stairs bent over to put bucket down felt sharpe pain inlower back both feet went numb
## 32733 EE stated he placed an inmate on the floor from assault on staff and EE twisted his back.
## 32734 EE stated he pulled his back out while picking up windows.
## 32735 EE stated he pused into wall stricking his left shoulder
## 32736 EE stated he responded to call for assistance in the large visiting hall. An inmate was throwing chairs at officers. EE was hit on the face.
## 32737 EE stated he slipped in a puddle of water when walking out of the gate
## 32738 EE stated he slipped in rear of"b" dorm on snow & fell on his right elbow on right side.
## 32739 EE stated he slipped on stainless steel pan around floor drain and struck his lt side on the lip of the drain pan as he walked through the prep area
## 32740 EE stated he slipped on wet floor in kitchen & fell on his left knee. He stated he had problems with the knee before.
## 32741 EE stated he slippedo n the floor causing his left foot to slip shifting his weight to his back. Strained back
## 32742 EE stated he started getting pain in right foot when he worked in unit four 3 months ago ()
## 32743 EE stated he started having pain from his lt shoulder to lt hand---also blood pressure was checked
## 32744 EE stated he stepped off curb on to paved parking lot and twisted left knee.
## 32745 EE stated he stepped off elevated tile flooring, lost his balance and fell to the floor.
## 32746 EE stated he stepped off sidewalk and twisted left knee, leg, ankle and hip.
## 32747 EE stated he stepped off the steps and turned his body and felt a twinge of pain in his back
## 32748 EE stated he stepped off uneven edge of sidewalk on gravel area and foot slipped causing him to fall forward and injury his left knee.
## 32749 EE stated he stepped on barricade during training stepped on mat awkward ()
## 32750 EE stated he stepped out of the walk in, and slipped on the edge of the step and hit his lower back
## 32751 EE stated he strained back liftin coupling from pallet to floor
## 32752 EE stated he stretched from ladder to put drill screw in duct work and get pain in back.
## 32753 EE stated he stumbled on a raised nail on the deckof the residence.
## 32754 EE stated he tackled a fleeing inmate, grabbed him& scraped his left elbow. Bruised his left thigh & wrenched his back.
## 32755 EE stated he twisted his lt ankle while crossing aside ditch. He is assigned to the road squad & was performing his duties
## 32756 EE stated he walked by the stone bench & the seat fell off the stand & hit his left heel. ()
## 32757 EE stated he walked down ramp to go check telephones turned rt his foot slipped causing his rt foot to turn and went down on rt leg and ankle
## 32758 EE stated he was approaching two inmates who were fighting, when EE was hit on his lft hand by one of the inmates, causing abrsion to his lft hand.
## 32759 EE stated he was approcahing an agressive inmate when he was struck in the head by inmate. Sent to cvmc-sutures & can return to work 4/11 w/o restric
## 32760 EE stated he was assaulted by an inmate
## 32761 EE stated he was assaulted by inmate while trying to remove him from a cell. Injury to right knee, right arm and right leg.
## 32762 EE stated he was assaulted by two inmates he states he was struck in the face, mouth, ear and back ofhead with one of these blows knocking to the floor
## 32763 EE stated he was assigned to the kitchen for duty & his eye started hurting, EE reported to medical and was treated for a black speck in his rt eye. ..
## 32764 EE stated he was assigned to the yard he stated while he was doing a security check behind old dorm he stepped off sidewalk onto some loose gravel
## 32765 EE stated he was assisting food service at dinner time to segregation, when after opening food tray door, inmate threw liquid splashing EE.
## 32766 EE stated he was assisting in handcuffing inmate, during this time EE was scratched by inmate on topof right hand.
## 32767 EE stated he was assisting in restraining a hostile inmate when a cut on the inmates arm began to bleed EE was exposed to inmates blood
## 32768 EE stated he was assisting in the arrest of a probatoner when the probationer resisted arrest his voilent actions knocked EE to the floor injured lt
## 32769 EE stated he was assisting inmate with mop up of fire line when inmates saw hung in a layer of locust trees that had been pushed over tree broke and
## 32770 EE stated he was assisting officer being attack by an I/m and got hit in the mouth.
## 32771 EE stated he was assisting ppo kim lucus w/arresting one of her probationers. Wjile placing hancuffson the offender, he pushed kim to the side and.. ..
## 32772 EE stated he was assisting staff members in a use of force and while trying to get control of inmates arms was struck in the face
## 32773 EE stated he was assisting with an inmate in medical the inmate needed to be placed in whellchair eeassisted in lifting him into the wheelchair
## 32774 EE stated he was assisting with lifting an inmate off a stretcher & pull his back.
## 32775 EE stated he was asst a inmate from a gurney to emergency bed in acute hospital when EE something pull in back
## 32776 EE stated he was at annual district meeting involved in approved wellness activity (softball) and was injured as a result to a fall.
## 32777 EE stated he was attemped to pull gun from behind out of holster during training & hurt hand
## 32778 EE stated he was attempting to arrest an offender there was a chase and he twisted his knee in process
## 32779 EE stated he was attempting to climb onto a trailor when his right right leg slipped off the edge of the trailor.
## 32780 EE stated he was attempting to close the lock which was wet. His right hand slipped and knot started to rise on right palm.
## 32781 EE stated he was attempting to extinguish 2 fires.
## 32782 EE stated he was attempting to handcuff inmate when inmate began to swing his fist striking him above his lt eye
## 32783 EE stated he was attempting to remove show from inmate's foot who was struggling and EE was kicked in the nose, upper lip and right cheek.
## 32784 EE stated he was attempting to restrain an inmate & the inmate resisted putting him to the floor, twist left wrist.
## 32785 EE stated he was attempting to secure a disruptiveinmate in his cell when the inmate pushed cell door hitting EE. Inmate hit EE in face with fists.
## 32786 EE stated he was attempting to sit in the chair. The chair broke causing him to fall to the floor lt elbow struck floor, lower back hit floor
## 32787 EE stated he was attending oc pepper spray training I took a blast of pepper spray directly into lt eyeball
## 32788 EE stated he was bending down reaching up under the button machine to adjust the belt and felt a sharp pain in his rt hip and leg
## 32789 EE stated he was bending over into a hamper re-arranging some bundles of work. He stayed in that position about 3 minutes then went & sat at his workstation for about 2 hours before getting up again. When he stood up, he had severe pain in his back. ()
## 32790 EE stated he was bringing inmates off unit one rec yard fell oh his abdomen while in a use of force ()
## 32791 EE stated he was called to the kitchen to light pilot light. As he entered throught back door approximately six mop handles fell. Hiting mouth
## 32792 EE stated he was carrying a bag containing inmate property over his shoulder and experienced pain in lower back
## 32793 EE stated he was carrying food cart up steps when he twisted his back, mid-center
## 32794 EE stated he was carrying trash to empty into dumpster when he felt a sharp pain in his lower back. Stated trash was heavier than normal.
## 32795 EE stated he was checking fire doors and hit his finger on the handle
## 32796 EE stated he was checking the fence in the ball- field. He pulled on the fence and a wasp came out and stung him.
## 32797 EE stated he was climbing onto the trailer to strap his load down when a sign crate fell over and crushed his rt thumb-broken rt thumb
## 32798 EE stated he was completing paperwork at the file cabinet when he moved to let another EE go by while moving his lt foot slipped off the steps
## 32799 EE stated he was conducting a routine locker search & was moving some clothes to check the locker & got stuck by a straight pin
## 32800 EE stated he was conducting a shake down of the stone ash trays at entrance he felt a sharp pain in the center of his lower back area
## 32801 EE stated he was conducting an adminisiration check when he stumbled and twisted his lt ankle
## 32802 EE stated he was conducting cell search of a seg. Inmate the inmate attempted to leave area the inmate turned and kicked EE
## 32803 EE stated he was cuffing an inmate and he became aggressive striking him on the head and shoulder.
## 32804 EE stated he was cutting measuring stick with a bush ax. Bush ax bounced back hitting him in rightknee
## 32805 EE stated he was directing traffic at auto accident when auto traving at high rate speed hit a power line stricking EE
## 32806 EE stated he was distributing laundry bags bag snagged edge of cuff door trapping his rt finger b/t the edge of the door and bag
## 32807 EE stated he was doing a complete search of the operations building when he stepped on a roofing tack, penetrating his boot and into right big toe
## 32808 EE stated he was doing a security check came back and was leaning on a table the table collapse causing serg to fall to the floor
## 32809 EE stated he was doing calf raises(standing) & board slipped from under his foot and all the weight came down on his left big toe.
## 32810 EE stated he was doing the backward standing fall during crdt trainin when he began having pain across his neck and shoulders
## 32811 EE stated he was driving the vehicle that was transporting inmates back from unc stopped at stop light and lady from behind ran into rear
## 32812 EE stated he was driving to raleigh. He put his arm on the arm rest and felt something bite his left arm. Took off his coat and spider fell out.
## 32813 EE stated he was entering blg, it was raining outside, shoes were wet, stepped onto floor, slipped and fell, contusion to left knee
## 32814 EE stated he was escorting 6 inmates to the sgts. Office for disciplinary measure. While walking, heslipped on a patch of mud & landed in a ditch.
## 32815 EE stated he was escorting an inmate to his cell the inmate struggle & his finger got caught in hisclothes.
## 32816 EE stated he was escorting inmate to shower and when inmate resisted, pulled him and stomped his right foot
## 32817 EE stated he was escorting inmate to shower when inmate resisted causing him to push and pull the inmate for control, hurting back
## 32818 EE stated he was escorting inmates from the kitchen back to the dorm as he exist the kitchen he felt something bit him on rt outside palm
## 32819 EE stated he was exposed to an inmate's blood while escorting an inmate who had cut himself
## 32820 EE stated he was feeding chow & an inmate hit him with a plastic tray in the face, it cut his lt eye.
## 32821 EE stated he was filing 141's in an inmate's folder, he cut his left index finger on metal paper fastener.
## 32822 EE stated he was finishing searching inmates, overstepped out of door and almost fell. (medical report indicated muscle spasms) ()
## 32823 EE stated he was getting his machine serviced and the tech hit the start button. When tech hit start button, EE's finger got caught in the chain. During the process, EE received a broken nail, fractured finger and a deep cut under his nail. ()
## 32824 EE stated he was getting mershandise off the deli-very cart & passing it canteen operator who was placing it on the shelves, struck rt elbow on cabin
## 32825 EE stated he was getting out f back door of ambulance and door closed on his right third finger.
## 32826 EE stated he was getting out of the van & slipped on some ice in the courthouse sallyport.
## 32827 EE stated he was getting ready to pick up mop bucket to empty it. As he lifted it he felt a sharp pain in his lower back.
## 32828 EE stated he was grinding metal on outside of gate when the wind blew metal in eye
## 32829 EE stated he was handling pallets of rolls of cloth. A roll of cloth needed straighten. He stated whenhe pulled up on the roll of cloth he hurt shoulder
## 32830 EE stated he was having mental issues and needed time off due to a trooper he supervises suffered serious injuries after being shot. EE also worked a chase which resulted in a death of the person being chased.
## 32831 EE stated he was headed w. On nc24-27 e. Following a vehicle. Vehicle turned lft, EE slowed to allow the front vehicle to make the turn, and (see notes)
## 32832 EE stated he was helping restrain an agressive inmate and in the process I fell to the floor with the inmate and injuryed his shoulder
## 32833 EE stated he was helping to restrain a disruptive inmate when his rt. Thumb caught underneath inmate's leg & bed frame. (per physician: small fracture)
## 32834 EE stated he was helping to unload a steam kettle from the back of the service truck it slopped and caused the control box to cut finger
## 32835 EE stated he was hit in left rib cage while assisting with cell extraction activity
## 32836 EE stated he was hooking a trailer up. While cranking his hand slipped off & jammed rt elbow on underside of trailer.. Red/swollen next day..
## 32837 EE stated he was hot and dizzy, felt faint while working, cold to touch - taken to hosp
## 32838 EE stated he was in straight baton training, performing a 'strike' when he felt pull or pop in his rt shoulder, pain con't & informed instructor
## 32839 EE stated he was in the parking reporting to work when he slipped and fell on ice and fell on his right knee. ()
## 32840 EE stated he was in the process of use of force restraining inmate & was bitten on lt wrist area.
## 32841 EE stated he was injured during a two-man take down at crdt training, subject fell on wrist with knee (rt wrist)
## 32842 EE stated he was injured during firearms situational shoot. EE stated he attempted to kneeland foot slipped on wet grass, he injured knee.
## 32843 EE stated he was injured while leaving prison after counseling inmate, staff memeber closed door on him and pinned him, neck and ribcage
## 32844 EE stated he was inventorying canteen. He picked up a case of drinks and hurt his lower back
## 32845 EE stated he was involved in a use of force and was immediately struck with a short baton by co- worker while attmepting to strike inmate.
## 32846 EE stated he was involved in a use of force on an inmate inmate scatched EE on his rt forearm and lt elbow caused tooth to be chipped
## 32847 EE stated he was involved in conducting visitationof inmates & their families when he was exposed toextreme heat. Later felt lightheaded. Threw up..
## 32848 EE stated he was leaving the facility armory when he stepped on loose stone which rolled under his foot. Causing him to twist his left knee.
## 32849 EE stated he was leaving the unit at rowan cc & stepped wrong.
## 32850 EE stated he was lifting a box and strained his left shoulder.
## 32851 EE stated he was looking for a probationer that ran from him while looking he stepped on a nail that was sticking out from board
## 32852 EE stated he was mapping up after wild fire groundgave away and his rt leg fell into a hole filled with hot ash..
## 32853 EE stated he was marching in formation. When he made a turn his back started hurting real bad. This happened while on pert training.
## 32854 EE stated he was montoring inmates in the kitchen and slipped on the wet floor.
## 32855 EE stated he was moving a box off a file cabinet and cut his rt palm
## 32856 EE stated he was moving a table in the recreation building and cut his rt middle finger on a sharpedge from the table
## 32857 EE stated he was moving an upset inmate after a staff member was assaulted.
## 32858 EE stated he was moving the paper cutter back in place on table and blade sliced little (pinky) finger
## 32859 EE stated he was on a six foot ladder and lost his balance on the third step and felt a twitch in low back
## 32860 EE stated he was on a stakeout and ran into a limbgetting piece of wood in left eye. Scratch to lefteyeball
## 32861 EE stated he was on his feet for @ 10 hrs. Walking& felt a sharp pain in lower back.
## 32862 EE stated he was opening interior sallyport gates to let in road squat bus. He was pushing gates open, thumb got squeezed between gates.
## 32863 EE stated he was packing the inmate's personal property bags into the luggage compartment on bus andafter he finished noticed index finger was bleedin
## 32864 EE stated he was parked in his personal vehicle when strick by a state owned vehicle being driven byanother staff member.
## 32865 EE stated he was participating in pert trng. He hadcompleted the pushups, 25 situps, then felt a pain in lower back. Lft leg, buttock went numb
## 32866 EE stated he was performing his duties as yard officer and that he was clearing the yard and he slipped on some rocks and fell on upper buttocks
## 32867 EE stated he was performing maintenance on the airhandles stood upright & struck head on metal beam
## 32868 EE stated he was picking up a 16 ft ladder when lifting it up and twisting his body he felt his back strain
## 32869 EE stated he was picking up trash in the bathroom and got his left foot caught in the tile division and twisted it
## 32870 EE stated he was placing a bag of garbage outside the control room and the door closed on lt hand
## 32871 EE stated he was placing equip into cabinet in lower drawer and hit his head on upper cabinet doors which were open, 'almost knocking myself out'.
## 32872 EE stated he was placing handcuffs on a combative inmate when EE hurt his back. Strain back
## 32873 EE stated he was pulling a power cabinet lifted with both arms went to put the power pack on the desk then it slipped out of rt arm
## 32874 EE stated he was pulling a strand of barbed wire, as the rool of wire turned, slid down against lefthand and cut top of left thumb
## 32875 EE stated he was pulling clothes from washer and felt pain in upper right leg and groin area.
## 32876 EE stated he was pulling the food cart off the food truck and his lower back poped
## 32877 EE stated he was pulling up on heavy gate & heard something pop in his back area. He has since started having numbness in left leg to the foot.
## 32878 EE stated he was putting a water jug on f block & when he tried to lift the jug up with his lt arm hurt in the shoulder area
## 32879 EE stated he was putting inmate back in cell aftercleaning his cell. EE has cuts and abrasions to right eye and right side of head cut to mouth
## 32880 EE stated he was putting notice on bulletin board and side stepped to his right and felt pain in knee and a small knot appeared on his right knee.
## 32881 EE stated he was putting supplies on a hand cart when he went to lift the buffer onto the cart the cart moved hurting lower back ()
## 32882 EE stated he was putting the weapon back into the vehicle & he got a electrical shock. Supervisor stated he did see how it happen (capt. Wyatt
## 32883 EE stated he was qualifying with the revolver a pain started in his rt muscle
## 32884 EE stated he was reaching on the shelf in the storage closer in segregation & he was bringing his arm back & knocked over a bottle of mildew strain. ..
## 32885 EE stated he was reapiring radiator guard for segretation when metal flew in EE eye. Left eye
## 32886 EE stated he was receiving his security equipment and went to move from the security key box rt footstepped into crack of floor
## 32887 EE stated he was removing commode drain line to put trap for mop sink when hand slipped while pulling on long pry bar. Cut on left wrist
## 32888 EE stated he was responding to a code 4 and twisted his right ankle coming down the stairs ()
## 32889 EE stated he was responding to a code two & placed all weigh on right knee striking the cement
## 32890 EE stated he was riding in state vehicle ice came off the vehicle in front and struck windshield causing it to shatter
## 32891 EE stated he was running bathroom breaks and askedofficer to open c hall doors from the officers station inmate kicked door open when he walked by
## 32892 EE stated he was running down the main hallway responding to 'code blue' (medical emerg) when he felt a 'pop' in his left leg behind the knee.
## 32893 EE stated he was running to a code 400 slipped & fell on the wall hitting his right hip.
## 32894 EE stated he was searching the state supply truck to make sure no inmates were on it. When he jumpedoff the truck his ring finger caught an object
## 32895 EE stated he was securing the back door when he slipped on some ice on stpes and fell, landed on back hip and shoulder
## 32896 EE stated he was seperating a fight between two inmates when an inmate hit him in the back with his hand.
## 32897 EE stated he was shutting trailer doors on the tool trailer and trailer door hit lt index finger
## 32898 EE stated he was sitting at desk and reached for file cabinet door, as EE leaned over he felt pain in back
## 32899 EE stated he was sitting in chair assigned to light duty watching inmates prepare food when inmate came up and slapped EE on rt side of head
## 32900 EE stated he was sprayed with hot coffee while collecting canteen orders from inmates.
## 32901 EE stated he was stabbed in the neck. Per med. Staff-sustained 6" laceration to throat & 2" lac. To rt shoulder. Airlifted to cmc from inst.
## 32902 EE stated he was standing behind patient who fell back into left knee. Left knee sprain
## 32903 EE stated he was standing break fall & hurt his back in crdt.
## 32904 EE stated he was standing in high grass and weeds on road squad when he pulled a tick on lower abdomen that was stuck and red.
## 32905 EE stated he was standing on a five gallon bucket in storeroom & reaching for trays & lost balance & fell directly on his knee & it popped
## 32906 EE stated he was standing on steps when he was bumped by a corr officer he fell injuring his rt big toe and side of foot
## 32907 EE stated he was stopping a inmate from advancing on an inmate that had cut his face. During subdueing the inmate, EE got blood on sleeve, skin of arm, rt
## 32908 EE stated he was stripping the floor and went to move bed to other side and felt something pull in mid back and neck
## 32909 EE stated he was struck in the temple area with a flashlight when the officer in front of me went tomotion me to his rt. EE was closer than what.... ..
## 32910 EE stated he was struck twice on the head/neck with a pencil
## 32911 EE stated he was supervising inmates & stepped on a floor with wax & floor stripper & slipped & fell
## 32912 EE stated he was supervising inmates washing the beverage coolers from the dinner meal. The inmate using the water hose, sprayed water on EE.
## 32913 EE stated he was taking I/m to his cell I/m became asertive and EE hit his hand against the holding cell injury his r- hand ()
## 32914 EE stated he was taking pot to the pot sink and slipped and fell on some water on the floor.
## 32915 EE stated he was taking the view glass off the boiler. He was using a pipe wrench and the wrench slipped off and mashed the middle ring finger
## 32916 EE stated he was the front gate and was bitten by unknown object. ()
## 32917 EE stated he was training with pert team when he was accidentally hit with baton on lt front side of ribcage
## 32918 EE stated he was traveling down hwy 24 w/window down & a foreign object struck him in lt temple
## 32919 EE stated he was traveling from office to court- house, in state vehicle. He was completely stoppedat red light and another vehicle struck him.
## 32920 EE stated he was trying to catch the door from closing in the gatehouse. He was holding it for 2 female officers.
## 32921 EE stated he was trying to open a jammed door during a file and hurt his feet trying to get the door open.
## 32922 EE stated he was trying to restrain an inmate & fell.
## 32923 EE stated he was trying to restrain an inmate to take him to seg. When he injuried himself. ()
## 32924 EE stated he was turning of a switch underneath security panel when EE received a shock leaving left arm nuumb, with spasms
## 32925 EE stated he was turning pages of the alpha rosterwhen he flipped through a few pages and they fell back one of the pages stuck EE in lt eye
## 32926 EE stated he was turning water on for cell esxdu- 005 opened pipe chase room door and mashed middle finger on lt hand
## 32927 EE stated he was unsure when he injured himself but does remember vacuuming floor in kamphoefner auditorum, as he moved between the bolted down chairs, hit his left leg on corner of chair and leg gave way and he almost fell. ()
## 32928 EE stated he was using an electric welder the light from the welder burned eyes
## 32929 EE stated he was walking across compound to let ambulance into compound & foot slipped on grass causing EE to fall on back & hurt left hand/wrist
## 32930 EE stated he was walking across icy parking lot when his right left popped.
## 32931 EE stated he was walking around fence checking fence he was on top of a hill when all of sudden he felt a sharpe pain down lower back
## 32932 EE stated he was walking back to his car after doing a curfew check at 7000 snow ln., when he slipped in the mud on an enbankment falling & hitting. ..
## 32933 EE stated he was walking backwards watching the inmates pick up trash and stepped in a hole and twisted his back.
## 32934 EE stated he was walking down stairs after being relieved at nomh and slipped on icey stairs
## 32935 EE stated he was walking down stairwell and slipped on some liquid on steps
## 32936 EE stated he was walking down steps and when he turned at the landing, his knee twisted, gave way ()
## 32937 EE stated he was walking from shop area on sidewalk when he experienced pain in his left knee
## 32938 EE stated he was walking from the rear loading dock to the office when his knee gave out
## 32939 EE stated he was walking on the grass, slipped andfell. Left leg buckled under.
## 32940 EE stated he was walking the bloodhound and he stepped in a hole and turned his right ankle.
## 32941 EE stated he was walking thru unit hallway when knee buckled out from under him. He caught himself to prevent falling. ()
## 32942 EE stated he was walking toward the lower gate when he slipped on a patch of ice he said he turned his lt foot the wrong way when he fell
## 32943 EE stated he was watching inmated move z-bar from storatge area on yard to loading dock of plant when the sign started ***** see log notes*******
## 32944 EE stated he was watching the new inmates in frontof the seg. Office and turned to go to the sgt's office and tripped over a rug at door way lt knee
## 32945 EE stated he was wet from rain, & when he opened gatehouse door he received an electrical shock to his l. Hand & wrist.
## 32946 EE stated he was working in the courtroom processing cases he stated he tripped over a raised area in the courtroom and plunged forward to the floor
## 32947 EE stated he was working inside recreation when aninmate threw urine and feces on him. Arm had minor abrasion on it. Possible bbp exposure
## 32948 EE stated he was working inside recreation when aninmate threw urine and feces on him. Small open wounds/areas on EE's rt hand and l forearm.
## 32949 EE stated he was working on unit 1, the recreation yard, when inmate reached out and cut him in the face & head. ()
## 32950 EE stated he went to a residence of an offender under his supervision slipped on ice covered porch
## 32951 EE stated he went to the residence of an offenederto conducy drig search the offender agreed to the search then ran attempting to destroy some drugs
## 32952 EE stated he woke up with back pain, no specific injury at work that he is aware of. ()
## 32953 EE stated he ws breaking up a fight when I/m bled over a open cut he got from home ()
## 32954 EE stated heavy lifting in extreme temperature, awaken with muscle spasm, pain rt side of shoulderneck, back, chest, arm.
## 32955 EE stated helping secure inmates someone closed holding cell on her fingers ()
## 32956 EE stated her rt foot started hurting while going down the steps
## 32957 EE stated his foot got caught in the strip on floor causing EE to fall striking his head on the mailbox
## 32958 EE stated his foot slipped on wet rear dining hallfrom rain, & he fell down three steps hitting his buttocks and back on all three step
## 32959 EE stated his left leg, left hip & foot started toitch, he went to the bathroom & noticed 6 or 7 redbites.
## 32960 EE stated his right eye became red and swollen after going through pepper spray training.
## 32961 EE stated his right foot was pinned underneath a push dolley and as he attempted to dislodge his foot, he twisted his upper leg area.
## 32962 EE stated his struck his lt knee on concrete whiletrying to keep pt from jumping the fence
## 32963 EE stated hit rt ring finger against sharp jagged edge of the desk top
## 32964 EE stated in addition to regular duties ( phone, entering info. System), assign to 2 teams 5/19/09 took 13 pgs notes cramped, 5/23 numbness fingers rt hand, 5/28 went Dr Diagnosed bursitis, 2 wk later lft hand numb, 7/18/09 bck Dr, Felt was carpel tunnel (
## 32965 EE stated in self-defense training fell forward hand hit floor to stop his fall felt pain in rt hand
## 32966 EE stated in tower #7 walking down steps and one foot slipped causing her to fall
## 32967 EE stated in training during mock escape person tried to run past him he tackled him landing on shoulder
## 32968 EE stated in training thought he felt muscle pull to rt abdomen,
## 32969 EE stated in training, doing a technique & rolled over his rt ankle, immediately felt pain
## 32970 EE stated incident occured over the morning routine of lifting bathing and normal routine
## 32971 EE stated injured lft arm and hand while pushing and pulling on charlie dorm door to get it to open ()
## 32972 EE stated injured occured sometime during a use offorce inccident with inmate. Abrasion right thumb.
## 32973 EE stated injury occured during pepper mace training, when pepper mace was sprayed in her face.
## 32974 EE stated injury occured while participating in a cell extraction
## 32975 EE stated injury occured while she was sitting in the control room in a broken chair. **clmt is working**
## 32976 EE stated inmate attacked him from behind and hit him 3 times while trying to cuff another inmate ()
## 32977 EE stated inmate came out of cuffs hand slammmed between inmate and wall ()
## 32978 EE stated inmate charged him causing his lower back into a desk and then they fell to the floor
## 32979 EE stated inmate fell on him initially which made him hit the concrete floor while trying to restrain an inmate
## 32980 EE stated inmate had blood on him and EE got bloodon himself, during a handcuff
## 32981 EE stated inmate pulled him across steel bed hurt lt & rt leg
## 32982 EE stated inmate pushed him and as he pushed inmate off inmate fell. He got up and hit him in mouth and eye
## 32983 EE stated inmate pushing a segregtion food cart ran over EE. The cart pushed him forward & ran over his right foot & leg.
## 32984 EE stated inmate refused to go to his cell after being ordered several times inmate head butted employee over left eye
## 32985 EE stated inmate rubbed the handcuffs that he had on down his left arm causing abrasion on left arm
## 32986 EE stated inmate spit on face around eyes, nose, andmouth.
## 32987 EE stated inmate struck her in the leg kicking a table.
## 32988 EE stated inmate struck him on his rt arm and hand bending his rt thumb backwards spraining his rt hand
## 32989 EE stated inmate threw empty bottle thru trap doorhit EE on rt leg
## 32990 EE stated inmate was empting dust pan by striking it on edge of trash can. Dust & dirt got in eyes
## 32991 EE stated inmate was running in hallway, running from another inmate and hit her in back
## 32992 EE stated inmate was swinging pencil at him, hitting him in the right arm
## 32993 EE stated insect crawled into her sock & bit her
## 32994 EE stated is use involved in a use of force restraining I/m and hurt his right thumb and right hand ()
## 32995 EE stated it was raining & fell in the lobby
## 32996 EE stated juvenile was swinging the vcr as a weapon, stumbled when trying to get out of way and left hand hit file cabinet.
## 32997 EE stated ladder was wet & floor slipped off. He fell about 3' & scraped left shin against ladder the skin was torn off & leg is swollen.
## 32998 EE stated leavuing unit five to pick up cleaning supplies in va while adjusting van seat his finger was caught on track under the seat ()
## 32999 EE stated lifting air conditioner caused umbilical hernia
## 33000 EE stated lifting bag of inmate's personal property when shoulder popped
## 33001 EE stated locking lower tier dorm 1b pulled on cell door handle and a tack stck in her right middle finger ()
## 33002 EE stated lt arm started to hurt when EE lifted a client into tub.
## 33003 EE stated maintanence personnnel was working on the air conditioner in tower #2 the compressor erupted violently spraying freon into tower
## 33004 EE stated making rounds through the cafeteria when she stepped wrong and twisted right foot.
## 33005 EE stated not sure when injurry happend during warm ups or break fall techniques. ()
## 33006 EE stated on 10/4/96 her back began to have pain, pain continues off and on. Doesn't know why it hurts. Pain middle of back rt side.
## 33007 EE stated on baton training step on a piece of pipe that was on floor, twisted right knee
## 33008 EE stated on my knees searching shelf under bunk and hit my head on table when rising ()
## 33009 EE stated opening the back door of the trailer, door went up and lock came down and hit EE in the left eye.
## 33010 EE stated participating in cell extraction trainininjured rt shoulder
## 33011 EE stated participating in unarmed self defense training & was injured .
## 33012 EE stated patient became agitated that required containing for safety-patient butted EE in rt eye
## 33013 EE stated patient contact
## 33014 EE stated patient throw trash can lid & hit EE's foot causing sprain. EE oow Mar. 13th -27th EE referred to ortho
## 33015 EE stated patient was agitated. Patient hit staff in the head. ()
## 33016 EE stated picking up mail struck rt hand in woodenmailbox & stuck a piece of wood under fingernail
## 33017 EE stated piece of brick fell into eye when he was scraping ivy off wall
## 33018 EE stated pt was swinging to punch EE as EE was attempting to asst in opening restrain room EE blocked pt and force made EE rt arm, shoulder go ba
## 33019 EE stated pt was throwing weight on EE, EE atteptinto get legs out from under staff lifting pt on bedstrain low back
## 33020 EE stated pulled tendon in foot
## 33021 EE stated pulling trash out of fence, cut arm on razor wire.
## 33022 EE stated pushed by staff member & landed on the floor, hurt back
## 33023 EE stated rash on abdomen and under arms had been giving care to immate with scabies
## 33024 EE stated repeated pulling of trigger caused swelling in her rt index finger, hand, and arm rt hand, index finger, lower rt forearm
## 33025 EE stated repetitive motion of opening pill packs caused carpal tunnel syndrome in rt wrist
## 33026 EE stated res hit EE finger with pillow. EE finger is red and EE heard finger pop
## 33027 EE stated resident walked up to her and kicked heron shin
## 33028 EE stated responding to a code 4 then code blue hurting r-knee ()
## 33029 EE stated responding to code 4 while running off the yard toward unit 2 yard door EE twisted her right knee
## 33030 EE stated restraining defendant, fluid transfer to lt hand
## 33031 EE stated restraining inmate & got feces on clothes
## 33032 EE stated restraining inmate & got feces on clothes, lt knee
## 33033 EE stated restraining inmate knee hit bed frame & later started swelling
## 33034 EE stated running to a code 400 on the moore unit, she turned to go through l5b, she twisted her knee& ankle.
## 33035 EE stated searching an inmates locker in kneeling position when he went to get up he heard a pop noise in his rt knee
## 33036 EE stated searching inmates that were being kicked out of school/accidentally stuck with a lead pencil that was in an inmate's back pocket.
## 33037 EE stated she began to feel dizzy and faint duringpic training--EE is 4 months pregnant
## 33038 EE stated she bent down to get some bowls under the counter and when she turned her nek, somethingpopped. Could not turn nec back.
## 33039 EE stated she bent down to pick up three trays & felt something pop. Reported to sgt skinner lower back hurting
## 33040 EE stated she came out of the elevator to 5th floor on 2/17/10 and turned right using her right leg. She lifted left foot and could not put the foot down. ()
## 33041 EE stated she caught her rt foot between the training mat. Instructor wrote a statement statingshe did not fall.
## 33042 EE stated she closed a file cabinet drawer on her finger. ()
## 33043 EE stated she completed fingerstick blood sugar check on inmate & while removing lancet from pen, shestuck her rt 4th finger... Tx'd wallace urgent care
## 33044 EE stated she dropped off couier & u. S. Mail. Was driving her personal car stated she stopped at yield sign on person street for ongoing traffic and
## 33045 EE stated she dropped the safe onher finger when she was moving from the floor
## 33046 EE stated she entered in the assist. Supt's officefor a meeting and smelled pepper mace in the air. She left and went elsewhere, however suffered reac
## 33047 EE stated she fell coming out of staff dining hitting her left knee & right arm & shoulder. She stated she noticed the mop & bucket near the door
## 33048 EE stated she fell down metal spiral stairs after leaving the restroom
## 33049 EE stated she felt pain in left upper chest going through to her back when she picked up clothes to put in dryer.
## 33050 EE stated she felt sharp pains in the center of her chest. EE felt it is stress related
## 33051 EE stated she got up to let first shift in and herfoot was numb and she lost her balance twisting her right ankle.
## 33052 EE stated she had started to sit down to do some typing and the chair had rolled back & when she down she missed the chair and fell in floor.
## 33053 EE stated she has pain in shoulder, arm and wrist while using machine
## 33054 EE stated she hit right knee against desk when shewent to set down.
## 33055 EE stated she hurt thumb while participating in self defense technique.
## 33056 EE stated she injured her back moving boxes
## 33057 EE stated she mashed middle finger into the metal table, was assisting with shaking down the inmates returning from the laundry
## 33058 EE stated she noticed back pain while working, no specific incident was noted as cause.
## 33059 EE stated she noticed swelling of her lower back one week after lifting client
## 33060 EE stated she poked her finger with the needle that was stuck in the thread
## 33061 EE stated she pulled down gate on back of food truck it came down on her arm.
## 33062 EE stated she reached for towel & pulled it to runthrought machine, felt a pain in right shoulder towel apparently hung in small opening
## 33063 EE stated she recapped a syringe after giving an I/m TB shot needle punched the side of the plastic bag and pierced her left middle finger ()
## 33064 EE stated she set in a chair it tilted down & sheefell on floor hitting elbow pain shot up to shoul-der
## 33065 EE stated she slid her chair back from computer toturn on printer. As she slid chair back, her chairslid out from underneath her causing her to fall.
## 33066 EE stated she slipped and fell on wet floor coming from the kitchen. ()
## 33067 EE stated she slipped and fell on wet floor in the gatehouse
## 33068 EE stated she slipped on second set of steps twisting ankle ()
## 33069 EE stated she slipped on water fell and hit her head on the door and hurting rt hand
## 33070 EE stated she smelled an odor and started to itch and her breathing changed.
## 33071 EE stated she stepped off walkway into a hole while making her rounds
## 33072 EE stated she thinks she May have lifted one of the blue heavy seat chairs wrong on the wing whileconducting contraband check. Rt upper back/spine
## 33073 EE stated she tried to turn key in lock & it got stuck & she felt pain in left wrist.. F18 filed. ..
## 33074 EE stated she triped on sidewalk while walking back from meeting, hitting rt side of her face bruising cheekbone, scrathed glasses, bent frames
## 33075 EE stated she tripped on a rock and fell on the dirt path near west Dr. On mason farm rd. EE went toer and was treated for fractured shoulder.
## 33076 EE stated she tripped on walkway & fell.
## 33077 EE stated she tripped over a push cart while escorting inmates out to take trash out
## 33078 EE stated she twisted her ankle on 061404 on the minimum custody unit yard in pot hole. She didn't advise anyone of such
## 33079 EE stated she was "pulling inmate property off theelevator, when property caught on inside of elev. -she pulled on it, felt pain in rt. Elbow.
## 33080 EE stated she was a passenger in a state vehicle. Driver hit deerm force caused air bag to emerge with extreme pressure and pressed EE against drive
## 33081 EE stated she was about to sit down in her chair as she moved toward the chair she bumped it and itrolled away from her causing her to fall in floor
## 33082 EE stated she was administering meds to seg I/Ms And 1 I/m threw a small container-appeared to be urine on her face/head/shoulder. Poss. Bbp-eyes
## 33083 EE stated she was assigned to work at school & wasbeginning to sit in chair when the chair flipped over her head she fell to the floor/lt elbow
## 33084 EE stated she was assirting to restrain an inmate from assaulting a staff member EE jammed lt ring finger and has abrasions on lt knee
## 33085 EE stated she was assisting to restrain an inmate when the inmate struck her in the lt jaw and top of lip
## 33086 EE stated she was assisting to restrain inmate when inmate struck her in lt jaw and top lip
## 33087 EE stated she was at court house with patient; patient hit EE on her right upper breast, spat in her face, attempted to bite her & scratched her. ()
## 33088 EE stated she was at her desk the maintenance staff was working on another unit when smoke and fumes entered her area had headache and other respirato
## 33089 EE stated she was attempting to assist in arrest and was hit in the eye
## 33090 EE stated she was attempting to close a window, window glass shattered glass cut off icer bond on her lt wrist
## 33091 EE stated she was attempting to fax document and turned too quickley bumping elbow on table where fax machine was
## 33092 EE stated she was attempting to sit down & the chair slid backward, she further states she fell backward hitting the chair w/ her back, in trying to..
## 33093 EE stated she was attemting to quaified with the shotgun she placed the butt of the shot gun on her rt shoulder and fired the weapon
## 33094 EE stated she was bending over to raise up chair. She raised herself up but the chair did not come up with her.
## 33095 EE stated she was bitten by an insect while working on the yard
## 33096 EE stated she was catchimg up her dc141's and her hand started cramping she noticed her hand was swollen
## 33097 EE stated she was checkinh the inside yard perimeter when she stepped in a hole
## 33098 EE stated she was cleaning the gatehouse floor when EE opened the door the mop fell and the handle hit her in the headknocked off her eye glasses
## 33099 EE stated she was cleaning up the seats and the floor after a graduation ceremony when she reached underneath one of the seats and scraped her finger on a wire. ()
## 33100 EE stated she was closing d wing door of dorm #2 her third finger of her lt hand was caught while closing the door
## 33101 EE stated she was coming down the stairs & twisted her rt knee & it popped
## 33102 EE stated she was coming into the building and fell over defect in new pavement causing EE to break left ankle
## 33103 EE stated she was coming out of line up for assigned duties and tripped or stumbled and hit cement
## 33104 EE stated she was coming out of staff bathroom with cleaning cart after cleaning the bathroom and the door struck her right hip at 2:00 pm. ()
## 33105 EE stated she was doing finger stick acc check after finger stick when removing the lancet it was difficult removing and it slippd off and struck fi
## 33106 EE stated she was doing weekly inventory, tripped over perturding wheel from cart & hit right elbow on table and tried to stop fall with left hand.
## 33107 EE stated she was dorm-headache, eye started to swell, and large lump on head appeared. ()
## 33108 EE stated she was drawing lab using a 231/4 bd vaccatainer needle and stuck her finger. ()
## 33109 EE stated she was driving state car and was rear-ended by another vehicle. ()
## 33110 EE stated she was driving the perimeter patrol vehicle and as she stepped out to stretch legs, she felt something 'pop' in her l foot. 15mins-swelled
## 33111 EE stated she was entering kratt hall when she tripped on rubber door mat fell
## 33112 EE stated she was escorting inmate from the main building when she stepped on a rock and twisted her rt ankle
## 33113 EE stated she was escorting inmate to single cell and she spit at someone and some came back into EE face
## 33114 EE stated she was escorting med staff in segregation when an inmate threw a cup of feces/uring on her hitting her in the head, neck, chest, trunk, etc
## 33115 EE stated she was exiting restroom and reaching for door handle. Someone was coming rather forcefully and pushed door open as EE reached for the handle. Door swung open and hit EE's hand, bending it down. ()
## 33116 EE stated she was filling out paperwork and opening doors for offciers when something bit her
## 33117 EE stated she was getting of van. Stepped down right leg to close to van. She steppe, down wrong. () right knee sprain. Happened in the facility parking lot and it was a corrections unit van. She stumbled getting out of the van and stepped down hard.
## 33118 EE stated she was going behind desk and slipped on some water and fell
## 33119 EE stated she was going through sliding door of sally port, and the control operator shut the door
## 33120 EE stated she was in b block walking the floor andtalking to an inmate. She wasn't paying attention, bumped her knee on stationary seat in dayroom
## 33121 EE stated she was in class and she chose plexi- glass to do an demonstration. Pepper spray was sprayed directly into her face instead of on glass
## 33122 EE stated she was in crdt training & left arm joint swollen.
## 33123 EE stated she was in orientation and she bent overto pick uo some paper off the ground and when she came back up, her left knee locked up.
## 33124 EE stated she was in the chart room, opened the door to go back out & patient clocked her in the eye. ()
## 33125 EE stated she was injured while performing annual in service self defense training. She began havingpain in the middel of her neck & mid & lower back.
## 33126 EE stated she was lifting bed to put a block underhead of bed and felt a snap in her back.
## 33127 EE stated she was lifting items off top of filing cabinet, dropped items onto EE foot.
## 33128 EE stated she was loading the food trays onto food van and picked up the ice container and felt her lower back pop. ()
## 33129 EE stated she was locking the rear sallyport gate & locking bar fell on her right hand ring finger.
## 33130 EE stated she was making fence check behind a&e dorm by fence walking down steps stepped on a rock and twisted her lt ankle
## 33131 EE stated she was making secure check of fire door on dorm 2 when she pinched her lt index finger b/t the handle and frame
## 33132 EE stated she was moving a wooden table with the toaster on it to where an outlet is located so she could plug it up went to catch toaster as it fell
## 33133 EE stated she was on duty at the lift station (sewage/waste tank) outside and slipped on rocks. Hurt left shoulder and right thumb/fingers
## 33134 EE stated she was on elevator #3. She went from floor 1 to floor 6 when the elevator jerked & then dropped to the 4th floor very fast, fast enough. ..
## 33135 EE stated she was on the firing range & got too hot. EE had a headache & sick stomach.
## 33136 EE stated she was on the steps in wrb second floor g block when she twisted her lt ankle
## 33137 EE stated she was on way to meeting on 8th floor, as EE left office & turned lt into hallway, foot slipped off shoe & foot twisted & EE heard pop
## 33138 EE stated she was opening the drawer of a file cabinet & cabinet fell over & a drawer fell out landing on her foot. Lt foot & scrape rt arm.
## 33139 EE stated she was opening the hood of a vehicle and she injured her right hand.
## 33140 EE stated she was opening the line up room door when another employee opened the door from the opposite side. EE's finger got caught in handle.
## 33141 EE stated she was opening the trap door to give the I/m his clothing & she felt a pop in her l arm
## 33142 EE stated she was picking up 3 or 4 trays to put on scrapping table when she felt a pain in her back.
## 33143 EE stated she was picking up boxes to ck files, & sitting on fl. To fix files on bottom shelf, stoodup& unable to walk for several mins. Pain rt leg, back
## 33144 EE stated she was picking up timesheets from office floor.. As she stooped, her right lower back area 'caught' and sharp pain
## 33145 EE stated she was placing keys in the dropbox in the control center and while pushing the box her finger got caught in the box
## 33146 EE stated she was preparing to do an eye acuity exam went to close bar door between medical dental departments and caught finger b/t door
## 33147 EE stated she was pulling a package of forms in supply room. Standing in supply room and turned the wrong way felt a pop to back, leg went numb
## 33148 EE stated she was pulling the gate closed & her hand popped & started throbbing.
## 33149 EE stated she was pulling the latch open to open the enterprise gate and that her hand got caught between the latch.
## 33150 EE stated she was removing a bookcase and shelving from a box when she placed her lt foot on the lower shelf of the bookcase shelving fell on toes
## 33151 EE stated she was removing a needle & pushing cover over the needle & the needle hit the open cover top caused to swing back hitting finger
## 33152 EE stated she was returning back into the kitchen turned the corner at the bakers table and her foot slipped out from under causing her to go down
## 33153 EE stated she was returning to her desk. Her chair had been moved and she struck her left knee on chair. Pain/bruising/swelling next day.
## 33154 EE stated she was rising from a sitted position a wheel-chair beside her, her lt foot stuck in the foot part of chair causing her to fall
## 33155 EE stated she was scraping trays when she felt numbness in her l and pain in l shoulder
## 33156 EE stated she was serving chow & slipped on juice spilled off serving tray.
## 33157 EE stated she was shifting files and felt a pop in her left shoulder. ()
## 33158 EE stated she was shutting security door when her right thumb got caught in jam of door
## 33159 EE stated she was shutting the control room door and shut her right ring finger in the door jam.
## 33160 EE stated she was sitting in a chair in the diagnostic center she reached back to answer phone and fell backwards out of chair
## 33161 EE stated she was sitting in master control at themain control panel, when she moved her chair and flipped out of chair on floor. Injured left knee.
## 33162 EE stated she was sprayed w/pepper spray & felt effects of the spray. EE taken to water. Impact of water caused pain in her head. Pain became severe
## 33163 EE stated she was stepping up into van and strained rt lower back
## 33164 EE stated she was struck by the elevator door in the chest while putting the cart with supplies in the elevator.
## 33165 EE stated she was struck on the left jaw by an inmate.
## 33166 EE stated she was supervising inmates in the dining hall. She stated she was struck in the mouth closed fist and kicked in the rt shin by an inmate
## 33167 EE stated she was surveilling two inmates who werestripping the line up room floor, when she breathed in a mixture of chemical which made fumes
## 33168 EE stated she was taking food trays (in coolers) to loading dock from kitchen. Picked up cooler off buggy&pulled back. Reported to supv-no report file
## 33169 EE stated she was taking inmate some writing paperwhen inmate ejaculated through trap on her rt leg
## 33170 EE stated she was tingling, numbness and pain in her r hand, wrist, arm, elbow and shoulder, due to typing on computer and filing
## 33171 EE stated she was trying to get off the high chairin the control booth. As she was trying to get offof the chair she lost her balance & fell to floor.
## 33172 EE stated she was trying to intervine a behavioral issue with individual and another staff and individual struck her in the right eye. ()
## 33173 EE stated she was using bathroom and control room officer called for her over radio she jumped up anleg slid out from under her, caught self from falli
## 33174 EE stated she was walking across concrete floor, slipped, fell backwards landing on back and striking back of head.
## 33175 EE stated she was walking and stepped in a hole.
## 33176 EE stated she was walking around her desk and hip gave way causing her to fall. ()
## 33177 EE stated she was walking down sidewalk to begin central yard inspection. Before she got to intake area her rt foot stepped off the sidewalk, didn't f
## 33178 EE stated she was walking down the hallway and her right foot slipped from under her and she fell on her buttocks. ()
## 33179 EE stated she was walking down the hallway going to the back stockroom when her lt knee popped and her leg gave out
## 33180 EE stated she was walking from her car toward the administration building and slipped on black ice and fell flat on her back and hit the back of head.
## 33181 EE stated she was walking from her parking spot which was on blount st and walked through another parking lot on polk st. As she was coming out of that parking lot, she slipped on ice and fell ()
## 33182 EE stated she was walking from kitchen to the gatehouse, slipped on rubber mat covered with ice hitting head, back and buttocks
## 33183 EE stated she was walking from the cafeteria to her classroom in the royal building and caught her shoe on the sidewalk and lost her balance and fell
## 33184 EE stated she was walking in the grassey area b/ twhen she slipped on some mudd
## 33185 EE stated she was walking on the sidewalk when shetripped and fell. Contusion to left hand, arm and breast.
## 33186 EE stated she was walking to the drink machine and she slipped and fell on the wet floor. EE stated she was in a lot of pain all over her body ()
## 33187 EE stated she was walking when she was pushed from behind
## 33188 EE stated she was working at the sgt desk when a hold puncher fell fromt top shelf on her lt arm
## 33189 EE stated she was working dorm when 2 ofcrs had topepper spray inmate & take him down. She grabbed his leg & he kicked her lt foot & knee
## 33190 EE stated she went to janitors closet to get paper towels to use for lunch while reaching for paper towels she got her foot got caught on a mop bucket and fell hitting carts and other buckets ()
## 33191 EE stated she went to slide her chair under her desk & moved faster than the chair. Her knee shifted under desk & made loud sound & immediate pain. EE stated she went through day thinking it was ok. In evening @ home knee swelled more & she went to er
## 33192 EE stated slammed lt hand in door while closing
## 33193 EE stated slipped & fell to ground on lt knee & lthip & elbow.
## 33194 EE stated something stung him on inside of his upper lt thigh.
## 33195 EE stated spider fell in her shirt & bit her
## 33196 EE stated started to flush commode he caught his skin between his lt thumb & index finger in handleof commode
## 33197 EE stated stepped down off sidewalk & twisted knee
## 33198 EE stated stepped off steps going to produce cooler and rt knee popped and began to hurt.
## 33199 EE stated stepped off uneven ground & twisted lt ankle & scraped lt elbow injuring twisted rt ankle
## 33200 EE stated stepping on steel crate rt foot slipped on wet metal did not fall felt sting in rt foot back of heel
## 33201 EE stated student became aggressive when staff member asked her to sign an infraction EE grabbed student wrist, student fell to floor, injured EE
## 33202 EE stated taking trays down the stairs slipped on 4the step from bottom twisted ankle & hit arm on stair rail
## 33203 EE stated tha he was conducting weekly staff meet-ing in the conference room. None.
## 33204 EE stated tha observed inmate threw bood and it hit EE in the leg above the ankle.
## 33205 EE stated that a fight had broke out in front of him and blood sprayed from inmate and went on his arms, neck and shirt.
## 33206 EE stated that a foreign body embeded in EE's finger
## 33207 EE stated that a hsotile inmate attempted to take his baton away by taking hold of baton. Inmate then threw the officer on the floor causing scratc
## 33208 EE stated that a juvenile was being escorted to her room and scratched EE oh the arm.
## 33209 EE stated that a pencil fell out of his hand he tried to catch it with his foot. The right side ofhis left foot, push the pencil into rt foot.
## 33210 EE stated that a pick up truch pulling a utilly trailer merged into his lane of traffic stricking hit rt front quarter panel.
## 33211 EE stated that a piece of wood came out of table saw & hit in the center of his stomach while cutting dam boards for the hatchery.
## 33212 EE stated that after completing a security check in dorms and while exiting the form she struck by the slinder door as it closed
## 33213 EE stated that after drawing blood went to snap safety cap over needle & stuck left index finger.
## 33214 EE stated that after inmated dumped trash and cleaned the outside of kitchen, he held kitchen door opened, door sprung back and caught finger
## 33215 EE stated that after intense physical fitness training during the monthly pert training that he passed out from dehydration
## 33216 EE stated that after pepper srpay training, EE went home & her left eye swelled shut. Chemical conjutivitis
## 33217 EE stated that after removing restraints from inmate, hte inmate began hitting EE with his fist.
## 33218 EE stated that after removing restraints from inmate, the inmate began hitting EE with his fist.
## 33219 EE stated that after she checked the door on tower 1 she turned facing the institution to check the lock on the fence EE stepped in a hole
## 33220 EE stated that after starting iv fluids, stylet was removed, and accidently stuck left thumb.
## 33221 EE stated that after taking his self electrical test he noticed pain and swellin in his lft wrist that pm. Both wrist pulled tendons
## 33222 EE stated that an inmate grabbed by her lt forearm and that she pulled away
## 33223 EE stated that as he escorted an inmate to medicaldeptartment, the inmate swung at him with handcuffon. EE blocked the swing with right hand.
## 33224 EE stated that as he stepped out of the transfer van he twisted his rt knee.
## 33225 EE stated that as he walked by cell the inmate sprayed an unknown liquid substance on EE rt arm
## 33226 EE stated that as he was escorting an inmate out in fornt of post # 8, as he reached through the gate to unlock it an insect bit his forearm.
## 33227 EE stated that as he was replacing a window he wasusing a screwdriver to get the window in the slot and the screwdriver slipped hitting him in lt eye
## 33228 EE stated that as she entered the sallyport door of housing unit 6 to be relieved she was trying tokeep the door from slamming and it slammed on her
## 33229 EE stated that as she stepped off the stairs onto the floor, she felt her ankle pop, she later started with pain in her foot
## 33230 EE stated that as she was attempting to go up the steps that lead e-1 control she accidently hit her forehead on the bottom of the steps
## 33231 EE stated that as she was climbing the stairs that go from bc-1b to bc-2b that she hit her knee on the step that was in front of her
## 33232 EE stated that as she was going up the stairs the telephone began to ring she turned & slipped landing on her left ankle.
## 33233 EE stated that as she was leaving her rt hand was caught in the door
## 33234 EE stated that as she was spraying inmate with oc spray(pepper spray) inmate struck her in her right upper chest area with his fist.
## 33235 EE stated that at 12:30 pm he smelled a strong odor of perfumes, at 1:30 pm he began to get a headache and was light headed.
## 33236 EE stated that attempting to sit down and fell
## 33237 EE stated that back pain begin when project work started - clean floors, moving desks and chairs.
## 33238 EE stated that between January and february she was lifting boxes and felt pain from neck to left arm
## 33239 EE stated that co-worker picked up mail tray (4-6lbs) and shoved it at her. EE caught it w/ her left hand causing sprain
## 33240 EE stated that during 3 cell extractions, he hurt his left shoulder, but didn't feel any pain until he was driving home. (segregation-cell extraction)
## 33241 EE stated that during a complete search of inmate EE was struck on lt side of his head by inmate
## 33242 EE stated that during a fight between inmates; heqfelt a pull in his right shoulder.
## 33243 EE stated that during a use of force in segregation he used the body shield to pin the inmate against wall, other staff removed inmates (see log notes)
## 33244 EE stated that during a use of force on a disrupted inmate that his blood pressure was high. He rcvda scratch on his rt side of nose & bruise left elb
## 33245 EE stated that during a use of force with inmate, inmate head butted her in the right eye.
## 33246 EE stated that during cell extraction training that he was slammed into the wall by the instructor
## 33247 EE stated that during cellextraction training as amember of the cell extraction team he entered the cell during a mock excercise of removing....... ..
## 33248 EE stated that during her shift she had to do alotof walking and by the end of her shift her foot/ankle were hurting badly. She went to the doctoe.
## 33249 EE stated that during mandatory o. C. Pepper spray training-the instructor sprayed the spray into her eyes which caused a bodily reaction.
## 33250 EE stated that during training knelt down on rt knee during the kneeling exercise which eventuallycaused pain and swelling.
## 33251 EE stated that during training walking to the out side in the hallway her right foot twisted up towards her body.
## 33252 EE stated that during unit search, he reached to pull a piece of tape from a table and then saw blood coming from r mid. Finger then saw razor blade
## 33253 EE stated that finger on left hand hit the gate door
## 33254 EE stated that foreign object blew in the window while he was transporting physician orders on the patient's medication profile.
## 33255 EE stated that getting out of van was stepping down to the ground injured right knee ---denied back on form 61 ---
## 33256 EE stated that going up southside stairwell when slipped on step and smashed left knee on step.
## 33257 EE stated that he and inmate were moving a large container of juice from one cart to another cart and as they lifted the container EE felt a pain
## 33258 EE stated that he and two other officers were seperating two fighting inmates when inmates fell on EE's right knee against bed.
## 33259 EE stated that he bent down to pick up 2 inmate snack bags & when he stood up he struck the top of his head on the metal wrap securing the fence.
## 33260 EE stated that he broke up a fight and separated inmates when blood was unintetion out of inmates mouth from 4/5 feet away onto EE
## 33261 EE stated that he caught his finger in the bc station door when he was exiting the station.
## 33262 EE stated that he entered unit managers office andslipped on something damp and fell to the floor after falling against a desk.
## 33263 EE stated that he fell off a horse while training to ride. He stated he fell onto highway. Abrasion, hematoma to top of head, rt hip abrasion
## 33264 EE stated that he had a fragment of metal on finger and when he scratched his eye, the fragment got in his eye.
## 33265 EE stated that he had been sitting on a stool whenhe started to fall. EE allegedly grabbed bars to keep from falling.
## 33266 EE stated that he had his hand between 2 bars, he turned and began walking towards the control desk, his hand became caught between the bars &... ..
## 33267 EE stated that he had issued another officer a radio, and as he went to pull the security drawer back into control room the officer shut drawer on
## 33268 EE stated that he had just taken the hand cuff offone of the inmate's wrists when the inmate made anaggressive move and EE's thumb and shoulder injure
## 33269 EE stated that he had made some keys from blanks, cut the palm of his l hand on the sharp edge of newly cut key
## 33270 EE stated that he had parked & locked his car he was justa bout to walk away when he had a seizure attack
## 33271 EE stated that he had reached for the bar railing in the tower with his left hand and grabbed his lunch box with hand. Hand slipped, EE fell.
## 33272 EE stated that he has swelling in his rt. Elbow, denies any recent trauma, but reports past historyof gout in his lower extremeties.
## 33273 EE stated that he hit the top of his head on a light switch while standing up, he was pulling trash ()
## 33274 EE stated that he hurt his left thumb, he was in tthe process of placing a hostile inmate in restraints.
## 33275 EE stated that he jumped off chair into cement floor on both feet and he felt his neck pop.
## 33276 EE stated that he leaned aganist the trash can on tilery unit I the trah can turned over and he fell using his lt hand
## 33277 EE stated that he leaned back in chair & fell backwards. Neck hit the paper shredder. Wheel broke off the chair.
## 33278 EE stated that he noticed two inmates in a physical confrontation EE attempted to seprate both inmates he was hit upper head area twice and rt arm
## 33279 EE stated that he picked up a trailer tongue to move it around so that he could hook it up to a tractor
## 33280 EE stated that he picked up some open razors from a desk and placed it in a paper. The razor penetra-ted the paper, glove and cut his finger
## 33281 EE stated that he picked up the pump shaft and injuried his lower back.
## 33282 EE stated that he responding to a 10-40 fight in progress in unit#4 from the break room in unit#3 EE noticed cut on his left hand bleeding
## 33283 EE stated that he sat down in a chair to put on some boots because it was raining outside when the chiar flipped him out onto the floor
## 33284 EE stated that he sat down in the chair and the back of the chair broke
## 33285 EE stated that he scraped his left forearm on the fence while searching the fence line.
## 33286 EE stated that he slipped on water that was in the floor.
## 33287 EE stated that he started to enter sgt office and stepped on another officers heel. He stumbled and twisted ankle.
## 33288 EE stated that he step down from the curb to enter the security van slipped on some ice causing him to slide under the vehicle and strike the step
## 33289 EE stated that he stepped from the side of the boat and landed on the heel of his foot in parking lot causing lower back pain.
## 33290 EE stated that he stood up to prepare to get a head count, began coughing, and everything turned blackthen passed out. Co-worker witnessed EE fall to flr
## 33291 EE stated that he stumbled over a chair so he kicked it out of the way injuring the top of his lt ffot
## 33292 EE stated that he took over sawing a tree from an inmate he stepped in a hole causing him to fall
## 33293 EE stated that he topping trees out of a boom lt bucket with a chain saw he felt something pop on the lt side of neck and shoulder after cutting limb
## 33294 EE stated that he tripped and fell over a stump and hurt his right leg and also his back.
## 33295 EE stated that he trouble handcuffing an inmate, later became sore in right upper back
## 33296 EE stated that he turned and felt a pain in his lower back
## 33297 EE stated that he wa returning for lunch while training in apex as he was leaving the restaurtant parking lot a picked up rolled back into car
## 33298 EE stated that he walked into a window ()
## 33299 EE stated that he was above ceiling in dining hall& stretched awkwardly to enter inside air handler & standing on two milk crates to wire u
## 33300 EE stated that he was answering an inmates question about the farm squad, had his lt hand behind his back, the door was opening & his thumb got caught
## 33301 EE stated that he was assaulted by an inmate to the front of his body, while the handcuff had handcuffs on.
## 33302 EE stated that he was assaulted by an inmate while he was trying to restrain the inmate the inmate jerked away from EE striking EE on rt side of head
## 33303 EE stated that he was assigned to dorm 4-c and as he was getting the beginning coutn he was hit from behind in rt upper shldr w/a bar of soap-bruised
## 33304 EE stated that he was assigned to yard duty and at that time was checking outside perimeter lighting hit so close he pocked up some shock from fence
## 33305 EE stated that he was assisting in repositioning of a patient and that is when he experienced acutelow back pain.
## 33306 EE stated that he was assisting maintenance to open stuck gate he pushed the locking pin up through the hole finger went in hole and pushed gate on
## 33307 EE stated that he was at the pitt county center he was delivering inmate he turned to close the vehicle door and struck his rt hand on edge of door
## 33308 EE stated that he was attacked by a dog while investigating reported illegal open burning passedby dog snipped his hand and scrutched lt thigh
## 33309 EE stated that he was attempting to grab bleach bottle, finger caught in nozzle and got twisted -- rt index finger --
## 33310 EE stated that he was breaking up a fight on the yard and received a scratch on the left elbow.
## 33311 EE stated that he was carrying an inmate; s razor back to the razor box after a cell search and grabbed the blade end of the razor causing pinpoint cut
## 33312 EE stated that he was checking dorm 1a for cleanli-ness near the exit door when he brushed his hand across the bars, caught finger on razor blade
## 33313 EE stated that he was checking the insole of inmate for contraband when he felt a prick to his left little finger. ..
## 33314 EE stated that he was cleaning a weapon in the arsenal had the weapon in rt hand when a sharp pain went down from his elbow to his rt hand
## 33315 EE stated that he was cleaning up tree branches from hurricane
## 33316 EE stated that he was clearing growth at the firing range and was sharpening his bush axe and the file slipped and cut through his gloves
## 33317 EE stated that he was climbing a ladder into steam fell backwards foot slipped off ladder went into hole in sump pump pit
## 33318 EE stated that he was closing the d dorm door whenhis left finger got caught in the locking part of the cell door.
## 33319 EE stated that he was coming down the steps and missed a step causing him to fall
## 33320 EE stated that he was conducting a locker search in a dorm as he looked inside locker a foreign object fell into his rt eye
## 33321 EE stated that he was crossing ditch on side of road when he fell and hurt his lower back. Spasms right lumbar spine
## 33322 EE stated that he was cut by sharp object while placing boat cover in storage compartment.
## 33323 EE stated that he was cutting the plastic strip form around the new mop bucket when the handle of the wringer fell back and hit him in his right eye and right cheek. ()
## 33324 EE stated that he was delivering food to I/m's when his finger was caught betwn. Door & juice crate, tearing fingernail loose.
## 33325 EE stated that he was doing cpr on an inmate he was wearing his stethescope around his neck and he turned to throw he turned around and hit elec. Box
## 33326 EE stated that he was emptying a box of medication& bent over into the box & felt a spasm in low back
## 33327 EE stated that he was escorting an inmate off the yard, when the I/m twisted his fingers on his (r) hand.
## 33328 EE stated that he was escorting an inmate when inmate assaulted him
## 33329 EE stated that he was escorting immate up from recreation yard he ordered immate to sop immate refused EE took a hold of chain, twisting of handcuffs
## 33330 EE stated that he was exiting the kitchen after turning on the equipment when he stepped wrong as hewas exiting the door. Felt like bolt of lightning
## 33331 EE stated that he was getting a time report from the control roomofficer and as he was pushing the trap door inside EE third finger was caught in trap
## 33332 EE stated that he was getting out of truck to unhook trailer. He was holding on the hand rail and got his left ring finger caught between rail..
## 33333 EE stated that he was going on a use of force withthe protective shield, EE hit the inmate with the shield and pressed inmate against wall, hit nose
## 33334 EE stated that he was going through security entrance and notice that the door was stuck. He injured his hand by pushing on the door.
## 33335 EE stated that he was going to job site. A driverin a car ran stop sign and hit road squad bus headon injured head, neck, chest, back
## 33336 EE stated that he was hammering a steel pole into the ground when a piece of steel flew off the strucked him under his lower rt eye lid
## 33337 EE stated that he was helping staff, while walkingin stripper, his feet slipped in stripper.
## 33338 EE stated that he was in a confrontation with an inmate when he was pinned between inmate and bed inside of cell. Bruise to right leg
## 33339 EE stated that he was in office from 7:35 to about8:15 preparing for an audit trip to the western part of the state.
## 33340 EE stated that he was in the process of breaking up a alteracation between inmates EE stated that two small spots of blood was on front of his rt wris
## 33341 EE stated that he was in the process of connecting pipes for processing juice, when he stood up he bumped his head against a pipe hanging from a rack
## 33342 EE stated that he was involved in a foot chase of a fleeing probation violator he attempted to jump a ditch and his rt leg landed on the slope
## 33343 EE stated that he was involved in a pert training exercise that required running. As he was running he felt a very painful pull in right upper thigh.
## 33344 EE stated that he was involved in a physical confrontation with an inmate & during the alter- cation his right knee struck cement floor.
## 33345 EE stated that he was involved in auto accident involving state owned and another state owned autoee has shoulder/neck strain and cut to head.
## 33346 EE stated that he was involved in the use of force his hand got between handcuffs. The hand cuffs pinhed his lt thimb causing skin break with bleeding
## 33347 EE stated that he was involved in use of force andwhen asst. Other staff in getting inmate up off floor he injured his back.
## 33348 EE stated that he was involved in use of force was hit on the lt thumb and beside rt eye
## 33349 EE stated that he was invoved in an unanticipated use of force with an inmate and the inmate bite him on the rt forearm
## 33350 EE stated that he was looking for some paperwork when park of a desk fell and the brace part that holds two parts together and hit him in rib area
## 33351 EE stated that he was making a fence check in the rain and twisted his ankle on a piece of wet plywood
## 33352 EE stated that he was making a round when he walked in front of cell door #5 the inmate was coming out of his cell at the same time
## 33353 EE stated that he was making round in the shower area of g-dorm and slipped on a bar of soap
## 33354 EE stated that he was monitoring inmates while they navigated loaded carts out side
## 33355 EE stated that he was mopping the first floor ramp and felt some pain in his right shoulder. ()
## 33356 EE stated that he was moving a clothing locker up the stairway of the control room the locker pined him against the wall
## 33357 EE stated that he was moving a ladder and as he was sitting it down he caught his rt ring finger in the ladder. He lost his balance and the ladder. ..
## 33358 EE stated that he was moving furniture from the mail room so inmates could clean paint
## 33359 EE stated that he was on yard patrol behind dome when his ankle got tight and swollen from insect bite.
## 33360 EE stated that he was opening a gate to let out several work vehicle, cut right thumb.
## 33361 EE stated that he was othe EE bottle of floor cleaner when he went to grab the top of bottle lid came off and contents went into face and eys
## 33362 EE stated that he was performing a security check on abcd yard and slipped on wet muddy clay next toweight pile.
## 33363 EE stated that he was performing routine searches on inmates as they entered the kitchen area EE stated that during this began turning red & burning.
## 33364 EE stated that he was pulling clothes bag out from under locker a magnet was stuck to the bottom of the locker with a razor blade attached to it
## 33365 EE stated that he was pulling his daily trash out of the trash barrel and twisted the wrong way and felt a sharp pain in his lower back. ()
## 33366 EE stated that he was pulling the extraction machine and felt a sharp pain in his chest and back. ()
## 33367 EE stated that he was pulling up a loading ramp & pulled a muscle in his lower back
## 33368 EE stated that he was pulling up loading ramp and pulled a muscle in his lower back
## 33369 EE stated that he was punched in mouth by inmate while he was seated in chair in cell. EE states restrained inmate and then was thrown to floor.
## 33370 EE stated that he was putting c frame on dozer and piece of debris fell in r eye
## 33371 EE stated that he was putting the handcuffs into his pouch when a small piece of metal stuck into his finger
## 33372 EE stated that he was putting the light cover back on the light, cover slipped and he grabbed thesharp edge of the cover.
## 33373 EE stated that he was removing 5 gallon gas cans from bed of truck and strained lower back.
## 33374 EE stated that he was removing jammed lock on a trailer when he struck his left hand with a hammer. Caused tear to skin about size of quarter
## 33375 EE stated that he was responding to a code and slipped onth edge of the sidewalk.
## 33376 EE stated that he was responding to fight & while enroute stepped off of sidewalk and rolled his right ankle
## 33377 EE stated that he was responding to unit 2, while runnin across yard, turned ankle causing him to fall forward onto ground
## 33378 EE stated that he was retrieving an oxygen tank onwheels for the nurses & as he was removing it the wheels caught on the cabinet causing a sudden stop
## 33379 EE stated that he was returning from unc hospital when he stepped out of his vehicle and slipped on some water tha the inmate had thrown out
## 33380 EE stated that he was returning from using restroom when he slipped on step and fell down, landing on his right wrist.
## 33381 EE stated that he was searching inmates locker & was bent down & when he stood up he pulled something in the back side of knee cap area.. ..
## 33382 EE stated that he was separating two inmates whom were fighting inmate pushed EE against EE
## 33383 EE stated that he was serving food trays and sat a tray on trap door he say tray was going to fall and turned to try to catch
## 33384 EE stated that he was shaking down the a-1 closet in 4e when he bent down to pick up a piece of paper when he hit his head on a screw.
## 33385 EE stated that he was sitting at stop light & a car ran into back of trailer & the van jerked forward from the impact
## 33386 EE stated that he was sitting at the computer desk in the lieutenant's office he turned away from the phone and towards the computer desk striking his
## 33387 EE stated that he was sitting at the control desk, about to make a log entry when he heard what sounded like a shotgun blast to his left. Officer.. ..
## 33388 EE stated that he was sitting in a chair and when EE got up he felt a catch in his back
## 33389 EE stated that he was sitting in a chair reviewingthe duty roster when the chair broke from the pedastal and he fell to the floor on his left side.
## 33390 EE stated that he was sitting in control room chair operating control room the chair seat was brokenand EE fell from chair into grate floor landing on
## 33391 EE stated that he was standing and turned around caught foot and hyper-extended his left knee.
## 33392 EE stated that he was standing beside forest consultant's truck and was hit by wheel of car passing by.
## 33393 EE stated that he was stepping off bus when he slipped and fell injuring left elbow and neck
## 33394 EE stated that he was struck a glancing blow by person or thing unknown while assisting in restraining a combative inmate
## 33395 EE stated that he was supervising during trash detail, walked to move out of the way, stepped onto a slopping side of sidewalk, aggrevating rt knee
## 33396 EE stated that he was supervising inmates on road squad work detail when he stepped in a hole, twisting his right ankle.
## 33397 EE stated that he was supervising inmates tearing down a fish house. An ax accidentally slipped outof inmate's hand striking EE in the head.
## 33398 EE stated that he was sweeping out the back of thetrasfer bus and missed the back step
## 33399 EE stated that he was teaching his students in hisclassroom while assisting a student at the teacher's desk a pencil eraser was thrown and hit lt eye
## 33400 EE stated that he was transporting an inmate to cnetral prison when a car rana stop sign at intersection, and EE's vehicle struck other car.
## 33401 EE stated that he was transporting an inmate to court when another vehicle pulled out in front of him
## 33402 EE stated that he was traveling and turned on right hand signal. EE was struck from behind by another vehicle. Sprain muscle in neck and back
## 33403 EE stated that he was trying to prevent one inmatefrom assaulting another inmate.
## 33404 EE stated that he was using force on an inmate to bring him under control inmate was kicking and fighting during this time
## 33405 EE stated that he was walking across parking lot and stepped on a rock causing him to turn his rt ankle and fell on the ground
## 33406 EE stated that he was walking across the sidewalk at the admin office to get in vehicle there was ice on sidewalk and he slipped and fell
## 33407 EE stated that he was walking aroung the control room when he bumped his right knee on the control room panel cabinet causing it to hyperextend.
## 33408 EE stated that he was walking down stairs, turned to give another officer paperwork, took another stepw/rt foot&states doesn't remember what happened
## 33409 EE stated that he was walking down the kitchen hallway toward the warehouse to exchange his uniformswhen he slipped on a liquid substance
## 33410 EE stated that he was walking from behind the offcier's desk and caught the heel of his boot in the hole in the floor and twisted his rt ankle
## 33411 EE stated that he was walking into charlie dorms sallyport when he felt a sharp pain in his left ankle.
## 33412 EE stated that he was walking through the cook area and he attempted to step around an inmate that was cleaning floor lt foot slipped twisted knee
## 33413 EE stated that he was walking through the lower gate & stumbled when a stray cat ran between his feet. Employee did not fall but tripped.
## 33414 EE stated that he was walking to the door and slipped on some liquid that was on the floor in the clotheshouse.
## 33415 EE stated that he was walking up the stairs in segawing when his knee 'suddenly let go' & he caught himself on the rails.
## 33416 EE stated that he was working on a fan motor with no power holding a wire from it as he walked around another motor with power 277 volt shocked him
## 33417 EE stated that he was working with refrigerant lines on ice machine and liquid refrigerant got on both hands cause them to burn
## 33418 EE stated that he went to the four door area for awork roster other EE accidently shut his finger indoor when he shut the door
## 33419 EE stated that he ws trying to hit a fly and hit the tape dispenser and cut his left hand ring finger
## 33420 EE stated that her chair rolled out from under her causing her to fall. ()
## 33421 EE stated that her finger was struck by employer during routine dental procedure.
## 33422 EE stated that her foot missed the 2nd step as shewas stepping put of the rear entrance dormitory door-way and fell on both knees and left wrist. ..
## 33423 EE stated that her hand and arms started burning and itching with small bumps on hands and arms
## 33424 EE stated that her lt knee popped out of place during self defense training
## 33425 EE stated that his foot slipped on some wet grass and he fell, catching himself with rt hand, hurting rt thumb.
## 33426 EE stated that his hurt due to lifting exhibit material this cont. As he worked
## 33427 EE stated that his lt foot slipped as ahe stepped into vehicle and her knee turned causing her to fall
## 33428 EE stated that his lt hand was resting on the track of the trash compactor and he took his rt hand and slam the compactor closed
## 33429 EE stated that hit head on metal bar that is around signal light on trailer while bending down to pick up a strap.
## 33430 EE stated that immate bumped into him with a hot four inch pan injurying his rt hand
## 33431 EE stated that in an attempt to break up a fight, the EE fell down on a rock and cut his knee.
## 33432 EE stated that in the 1970's, he worked in the engine room for the cranes and was not required towear hearing protection. Today has hearing loss
## 33433 EE stated that in use of force on inmate, inmate began spitting
## 33434 EE stated that injury occurred while filing licensee folders in file cabinet.
## 33435 EE stated that inmate cannon mixed descaler & bleach. This in turn caused a chemical fume. EE & supervising inmates & evacuating from kitchen
## 33436 EE stated that inmate corey shayland, 0708489 jumped her from behind, knocked her to the ground, and began kicking her in the head & face.
## 33437 EE stated that inmate grabbed her on left wrist
## 33438 EE stated that inmate had to be physically restrained, during which time EE stated he wsa pepper sprayed, struck in ribs, bit on left palm fall to flr
## 33439 EE stated that inmate is a kitchen worker that gotdrunk and became violent and he was injured when he tried to restrain inmate.
## 33440 EE stated that inmate rushed him & struck him several times on the head
## 33441 EE stated that inmate struck him on the right sideof his face with his hands cuffed with handcuffs.
## 33442 EE stated that inmate threw a wooden chair leg at him and he blocked the object w/right forearm. As EE struck down, twisted his right knee & hit ground
## 33443 EE stated that inmate was hostile and aggressive and threw a chair and struck his lft upper arm and wrist removing the skin from lft wrist..
## 33444 EE stated that inmate was in full restraints when cell door was opened. When he came out, inmate was swinging his can, hitting him on his lt hand
## 33445 EE stated that inmate was trying to kill himself w/ a razor blade. Officer grabbed the inmate & went to the floor hurting right knee.
## 33446 EE stated that it happen when he pulled a fellow member over the tall wall he stated that when he pulled with his rt arm that he felt a hot feeling
## 33447 EE stated that leg hit tissue dispenser & tore legunder knee in east bathroom
## 33448 EE stated that maybe while lifting conference table he could have hurt his back
## 33449 EE stated that on 03. 15. 96 at approximately 12:45am he had opened the gate on "a" hall to do paperwork, pivoted on left foot and rt knee popped
## 33450 EE stated that on 4/20/95 while in process of running to a disturbance in the dormitory he fell and hurt his l knee
## 33451 EE stated that on the above date and time. After opening the hallway door. EE was trying to keep the door from closing back and mashed his index
## 33452 EE stated that on their way to the work site some one driving a car ran the stop sign and hit the road squad bus head on.
## 33453 EE stated that on thursday while on a maint trip his vehicle was struck on the right hand side by a semi-truck. Back strain
## 33454 EE stated that other corr offcier was handing EE a bag of containing a tatto gun and the tatto gun needle stuck EE in lt thigh
## 33455 EE stated that patient head butted him in lip
## 33456 EE stated that resident twisted wrist & pulled middle finger on left hand. Tenderness to left hand.
## 33457 EE stated that right arm was cold and numb
## 33458 EE stated that she May have hurt her back and leg when pushing a laundry cart with another officer.
## 33459 EE stated that she accidentally stepped off the walkway and fell. She stated she injured her rightankle, left knee, left hand, right elbow, small fi
## 33460 EE stated that she fell down while trying to get up stairs from parking lot to the sidewalk. As result she scraped her left leg and hit broken leg
## 33461 EE stated that she fell due to a wet floor being slippery as she entered the main building. Injured rt leg.
## 33462 EE stated that she fell when she slipped on a slippery floor
## 33463 EE stated that she fell while walking down hallwaywhich had a wet floor
## 33464 EE stated that she felt her eye itch, she began torub it & it started burning.
## 33465 EE stated that she got her right pinkie finger caught between a clothes basket and a door frame causing her finger to bend backwards
## 33466 EE stated that she had an allergic reaction to pepper spray when sprayed in her eyes.
## 33467 EE stated that she had search a inmates locker andfound a container with liquid substance in it the liquid appeared to be urine when it spilled
## 33468 EE stated that she hit her left little toe that was already broken on a wooden pallet in stockroomwhile getting inmate a pair of tennis shoes.
## 33469 EE stated that she hurt her groin and back when she slipped in the food service dept.
## 33470 EE stated that she picked up the intercom phone atmaster control & upon placing it it her rt ear thevolume was at a level it injured her ear drum
## 33471 EE stated that she picked upa bag of bus mail and tossed it into a buggy she felt a pain in her lower back in the middle of her back
## 33472 EE stated that she put on gloves to pat down an inmate & her right thumb start swelling. ()
## 33473 EE stated that she reached for the control panel to answer the intercom at the south gate and the phone began to ring felt a pull nd cutting pain
## 33474 EE stated that she responded to an inmate emergency the inmate was put on a stretcher when nures lifted the stretcher caught weight on her rt arm
## 33475 EE stated that she slipped and fell in the dining hall
## 33476 EE stated that she slipped and felled on an unknown object on the floor injurying multiple body parts.
## 33477 EE stated that she slipped on floor and hit table.
## 33478 EE stated that she started itching, burning and swelling on the left side of her body - allergic reaction to dogs during search. ()
## 33479 EE stated that she struck her lt big toe against the bottom of a door that was stuck
## 33480 EE stated that she tripped onto concrete floor entering segregation control. Fell on her right arm, and right leg
## 33481 EE stated that she twisted ankle while working on a fire training
## 33482 EE stated that she twisted her lt ankle by hitting it against a stool while working in control ctr 2
## 33483 EE stated that she was assigned to pick up the mail at the polkton post office & when she opened the car door it swung back & struck her on her jaw
## 33484 EE stated that she was assisting in moving tables during a tornado drill. While reaching under the table her right hand was caught and was shut between the tables being moved, causing a contusion. ()
## 33485 EE stated that she was attempting to get in chair. Placed her right foot on the platform and twisted her right leg. EE felt a pull.
## 33486 EE stated that she was attempting to lift the juice cooler on the food cart when EE injured her wrist
## 33487 EE stated that she was attending pert training EE was chasing officer he foot became tangled up in some ires EE fell forwad landing on her rt shoulder
## 33488 EE stated that she was being attcked by a goose, she re-injured her right ankle trying to avoid theattack.
## 33489 EE stated that she was bitten by a brown spider while working in the gatehouse
## 33490 EE stated that she was carrying a food tray upstairs when she fell walking up the steps.
## 33491 EE stated that she was checking in vehicles as they enter the sally port, she has to check under the hood and other parts--stated that her fingers were so cold, could not move them to grab hold of hood of vehicle, hood fell on hand/slammed right fingers.
## 33492 EE stated that she was checking the perimeter of yard four when she slipped on some ice and injured her lt foot
## 33493 EE stated that she was checking the top of the tv when she fell off the chair she was standing on she states that she hit her hip
## 33494 EE stated that she was cleaning instruments after treating inmate and stuck a pair of scissors in her right thumb.
## 33495 EE stated that she was cleaning off the housekeeping cart and accidentally sprayed the mildew stain remover in her right eye. ()
## 33496 EE stated that she was cleaning refrigerator in the EE break room when she scraped her arm across jagged edge od piece of metal
## 33497 EE stated that she was clearing tables when two glass candle holders started to fall and she triedto catch them. They hit together and broke in hand
## 33498 EE stated that she was climbing the stairs to the green unit and felt a pop in her left ankle. Further stated that she could not move it.
## 33499 EE stated that she was coming in the front gate with supllies used in pepper spray training and her hand hit the edge of the fence.
## 33500 EE stated that she was coming into work and fell on the rug. She tripped and hit right side of her forehead on cement.
## 33501 EE stated that she was doing a routine locker search in the east wing dorm b-bdm035 bented over pulling a plastic bag out of the locker an felt..
## 33502 EE stated that she was doing unarmed self-defense techniques and fell on her left shoulder possilby dislocating her shoulder.
## 33503 EE stated that she was driving acoss new bern ave. When she was struck on the drivers side by a truck. 2 pelvic fractures on left side.
## 33504 EE stated that she was driving past t-1 behind a state vehicle when the vehicle made a u-turn and struck her car.
## 33505 EE stated that she was enroute to her assigned post when she stepped in a broken crack in the sidewalk and turned her ankle
## 33506 EE stated that she was entering master control andher right hand hit the keys that were in the door and the door closed on her wrist.
## 33507 EE stated that she was escorting to the trash dumpster when she turned her right ankle,
## 33508 EE stated that she was exiting the institution walking in parking lot to her vehicle when she fell down on ice & snow on her right hand and right knee. ()
## 33509 EE stated that she was falling backward during exercise for self defense. Her elbow went into her upper right rib.
## 33510 EE stated that she was getting off of the securityvan on to the sidewalk her foot slipped across thesidewalk on to some rocks and fell on her rear end
## 33511 EE stated that she was getting off road squad bus when she twisted her lt ankle falling and hitting both knees and lt hand
## 33512 EE stated that she was getting the sick call list prepared and she slipped on a piece of paper lying on the floor by the offcier desk
## 33513 EE stated that she was getting up from her chair when she got her feet tangled up in the phone cordand fell to her hands and knees
## 33514 EE stated that she was going into the tower, and the wind blew the door closed catching her hand between the door and the frame.
## 33515 EE stated that she was going into workroom to file papers she stated she inserted the key to unlock the door w/ lt hand
## 33516 EE stated that she was going to make the trash run pushed the button to open door to the warehouse hallway when it unlocked someone on the other side
## 33517 EE stated that she was going to the restroom. Whenee walked in rr she slid on water & fell. Water came from flooding. Left hand/knee/side/back.
## 33518 EE stated that she was having pain in her right hand, wrist, and arm that causes her to to wake upat night
## 33519 EE stated that she was helping with unarmed self- defense training. They were demostrating the wristout technique and I was taken down to the mat
## 33520 EE stated that she was holding the door open for the canteen operator and the canteen operatoe pushed the cart across her rt foot
## 33521 EE stated that she was in a dorm bending down to get some gloves out of the desk draw and the radio fell out of her belt and hit her big toe
## 33522 EE stated that she was in a housing unit supervising inmates when she became nauseous and a little hot. She requested dramamine and then she fainted.
## 33523 EE stated that she was in pursuit of an inmate when she attempted to jump a chain. She fell on her hands and right knee
## 33524 EE stated that she was in the archive rooming pulling down boxes retrieving timesheets for raleigh, when on of the boxes start falling and she grabbed it and hurt her upper and lower back. ()
## 33525 EE stated that she was injured while restraining an inmate during an altercation staeted having pain in lower back several days later
## 33526 EE stated that she was leaving court room where the officers sit & when she went to step down she slipped & hit the banner around the wall.
## 33527 EE stated that she was leaving for the day, she went through the gatehouse & on the other side of the gatehouse she turned right on the sidewalk & her right foot caught a brick & fell. She injuried her right knee, her right elbow, her top& bottom teeth (
## 33528 EE stated that she was leaving her parked car to come into cobb residence hall when she tripped and fell hurting her knee and ankle
## 33529 EE stated that she was leaving out the back door and turned her ankle over edge of concrete
## 33530 EE stated that she was leaving the control center and was holding the door with her hands and the control door shut on her lt middle finger
## 33531 EE stated that she was making a routine round in seg. I when immate threw a liquid in her hair and on her shirt
## 33532 EE stated that she was making a security check, when she tripped on a limb, she lost her balance and fall to the ground. She struck her face, and eyebrow
## 33533 EE stated that she was monitoring inmates when shepickup a 5 gal bucket to prop open office door causing injury to lower back.
## 33534 EE stated that she was mopping the floor when her mop hit the bottom of the board that was sitting against the wall, causing it to fall and hit her on the left side of the head. ()
## 33535 EE stated that she was moving a rock & dropped it on her rt foot f18 filed
## 33536 EE stated that she was moving around in medication north and bumped backward into the metal table as she turned around and it lacerated her lt glusteu
## 33537 EE stated that she was moving the fan which is the lobby of housing unit 5 EE states that as she moved the fan the top section of the fan fell
## 33538 EE stated that she was moving through the treat ment area & tripped on a small step stool causing her to hit her lower right leg on table.
## 33539 EE stated that she was moving training booklets on a hand cart when the weight shifted going down an incline. Caused wheel to run over toe. Rt toe.
## 33540 EE stated that she was on firing range on 06-21-96for most of the day firing revolvers and that during afternoon eye became sore began to swell
## 33541 EE stated that she was on her way to a meeting, when she hit the back of a car in front of her. Injured 3rd rt toe when mashing brakes.
## 33542 EE stated that she was opening door to let an inmate in and when she reached up to pull the door closed the door with her finger in the door
## 33543 EE stated that she was opening doors in the gatehose as she turned in the chair she hit her knee on the desk
## 33544 EE stated that she was performing self defense technique. After placing thumbs on back of partnerhead and taking him down felt thumb pop.
## 33545 EE stated that she was placing inmate back into cell & left hand was caught in door jam when door closed on 2nd & 3rd finger
## 33546 EE stated that she was placing the newspaper in the desk jammed thumb on desk
## 33547 EE stated that she was preparing dirty instrumentsfor sterilizer when she poked herself in rt hand with one of contaminated untensils.
## 33548 EE stated that she was proceeding to call block lost balance on stair well and missed next step fell to bottom
## 33549 EE stated that she was pushing a cart of dirty linen up a ramp into truck the cart tilted her body twisted and back snapped causing sharp pain
## 33550 EE stated that she was reaching into a locker that she felt something go down her shirt and felt something bite her spider
## 33551 EE stated that she was reaching up and got over- balanced, couldn't catch herself, fell backwards with lt elbow hitting the floor first.
## 33552 EE stated that she was removing a lancet from pen after completing an accucheck on an inmate and accidently stuck the lancet in finger
## 33553 EE stated that she was removing chemical bottles off the side of her car to take to trash liner anda bottle fell, chemical splattered in her face.
## 33554 EE stated that she was removing the load off the truck the load was stuck and she went to get something the load was under pressure it popped loose
## 33555 EE stated that she was reporting to the housing area to post, slipped and fell on ice on cement -------------- atty ------------------_
## 33556 EE stated that she was responding to a code two inthe dining hall she went under the bar line to get to the fight later she stated that her low back
## 33557 EE stated that she was retrieving medical records from the medical records office and when she turned the corner she slipped and fell
## 33558 EE stated that she was rolling in the chair to answer the phone and the chair rolled under her EE fell out of chair hit back of her head chair fell on
## 33559 EE stated that she was running toward the buildingto assist another officer, when she fell over a drain grate, injuring chest, both legs..
## 33560 EE stated that she was searching the visiting area picked up table and injured her lower back EE stated she only picked up one side of wooden table
## 33561 EE stated that she was securing the doors she sat down and the chair broke as she made contact with it and she fell to the floor
## 33562 EE stated that she was sewing button back on her uniform shirt & she stuck her right index finger with the needle.
## 33563 EE stated that she was sitting at her desk and went to stand up and said that her foot must have gotten tangled in the computer or mouse cord and she fell. Landed on her right knee, she braced for the fall with her right hand ()
## 33564 EE stated that she was sitting in rolling desk chair and when she placed her hand on the edge of thedesk to get out of chair both moved and EE fell
## 33565 EE stated that she was sitting in the gate house when the florescent light fixture fell from the ceiling hitting her on the left shoulder.
## 33566 EE stated that she was sprayed with oc pepper spray during training, panicked & was given a shot of benadryl.
## 33567 EE stated that she was sprayed with oc spray and after the training she had a reactin to the spray
## 33568 EE stated that she was squatting down and leaned slightly forward to clean some spots up off the floor when she heard something pop in her neck, back
## 33569 EE stated that she was standing at the door of theis control waiting for the keys of the vehicle to go she felt a bite on her rt leg ..
## 33570 EE stated that she was stepping out of clotheshousstorage shed when she stepped on a nail that was sticking out of a piece of plywood
## 33571 EE stated that she was sweeping behind the steps when she bumped her head on the mantle piece
## 33572 EE stated that she was taking the inmates in segregation out to exercise and she twisted her rt ankle when she went down the stairs
## 33573 EE stated that she was traveling to the post office in state vehicle and traffic stopped the vehicl behind struck the state vehicle
## 33574 EE stated that she was trying to get papers out ofthe file cabinet; drawers tilted over on her rightshoulder, forearm and right hand/wrist
## 33575 EE stated that she was urinated on by an inmate through cracks of closed cell door, where the walland door meet. EE struck in face & upper body
## 33576 EE stated that she was walking across the faclity grounds and turned her foot over a rock EE rtw 2/18/02 - oow 2/19/02
## 33577 EE stated that she was walking across the parking lot and tripped over a parking curb and twisted her ankle
## 33578 EE stated that she was walking along the path frombldg to parking lot when her knee "just gave out"&her lt ankle turned. EE caught herself w/ her hands
## 33579 EE stated that she was walking along the side of road and stepped into a hole with her rt foot causing her to twisted that foot some
## 33580 EE stated that she was walking down the side walk in front of single cell dormitory when she twisted her right ankle fall forward on left knee & wrist
## 33581 EE stated that she was walking down the steps leaving the bost seg office EE alleges that she tripped on a step and fell into the wall
## 33582 EE stated that she was walking in kitchen area of the facility near steamer when she slipped on the wet floor injury her rt knee.
## 33583 EE stated that she was walking on narrow section of sidewalk with 1 crutch: lost footing, knees gaveway from lack of support, fell hard on cement swalk
## 33584 EE stated that she was walking on the sidewalk slipped in the mud and twisted her back
## 33585 EE stated that she was walking on walkway and heel of shoe was half on cement half on sidewalk heel went through cracks in cement
## 33586 EE stated that she was walking out the dorm turnedaround to ask officer gore to get other narrativesfrom c dorm for her stumbled and fell face forward
## 33587 EE stated that she was walking to her car, to go to lunch when she stepped in hole and twisted her ankle. Fractured lt foot.
## 33588 EE stated that she was walking to her vehicle in the parking lot when she slipped off the curb and fell down on the pavement
## 33589 EE stated that she was walking to the storage roombehind medical and almost fell on the sidewalk turning her left knee.
## 33590 EE stated that she was walking toward the admin. Bldg. EE states that she twisted her left ankle on loose rocks in parking area causing her to fall
## 33591 EE stated that she was walking toward the school area when she stepped on a rock and twisted her right ankle.
## 33592 EE stated that she was walking up the stairs in dorm when her foot slipped & she landed on her left knee cap.
## 33593 EE stated that she was winding up landing gear it all of sudden spun up caught her in lt jaw
## 33594 EE stated that she was working as oic of b- formitory when she was bitten by something on her right arm.
## 33595 EE stated that she went to sit down in a chair, the chair slid out from under her, causing her to fal in the floor
## 33596 EE stated that she went to the dinning hall went to transfer to wheelchair when became combative and pulled nurse in chair and hit hand
## 33597 EE stated that she went to the janitor closet & bent down to get a trash bag out of a box on the bottom of the janitor cart.
## 33598 EE stated that she ws in the parking lot getting ready to come inside the building to go to work when she crossed the wire, she fell.
## 33599 EE stated that something bit her rt-leg. EE statedthat she continue her job & at 10:00-pm severe pain began to hurt in her leg.
## 33600 EE stated that something flew in her face as she was trying to get it out of her eye her fingernail hit eyeball
## 33601 EE stated that standing up with a chair behind herdoing phone sheets, when another EE returned to room & moved chair & EE sat down & fell to floor.
## 33602 EE stated that the building was evacuated due to areported spill of toxic chemicals in lower level of the building. No injuries.
## 33603 EE stated that the bus ran into a ditch causing injury to his right knee, shin, arm & hip.
## 33604 EE stated that the elevator became stuck between floors & the passenger had to be pulled from elevator between the opening & the floor.
## 33605 EE stated that the elevator dropped very hard before reaching the ground floor.
## 33606 EE stated that the fluid thrown by inmate hit officer j. Harris in the face and chest area. Liquid splashed off officer harris and hit EE.
## 33607 EE stated that the inside door handle fell off thedoor and the edge fell on her toe.
## 33608 EE stated that the locking device on the gatehoude was filed down too sharp and his rt thumb rubbed across it causing small cut
## 33609 EE stated that the patient was not properly positioned int he dental chair and was uncoop- erative. As a result EE stuck herself with needle.
## 33610 EE stated that the smell of very strong fumes was present in the south piedmont area office on this date. No injuries reported at this time.
## 33611 EE stated that the wind blew shut the gate causing the gate to hit his rt heel
## 33612 EE stated that there was a car passing a trailer, EE swirved to r, red car hit EE and spun around and hit a tree on passenger side appr 40 ft off rd.
## 33613 EE stated that they were performing take down hold & her right arm was behind her back & the partner went to take her down inj. Neck, shoulder, l arm
## 33614 EE stated that upon attempting to handcuff inmate the inmate threw a deck of cards hitting me in the neck and facial area
## 33615 EE stated that upon entering the van she hit the top of her head on the frame of the door
## 33616 EE stated that upon entering the van she hit the top of her head on the frame of the door.
## 33617 EE stated that use of earplugs caused compacted wax in ear
## 33618 EE stated that when he came to work on this morn- ing he lost his footing walking away from car to building & slipped on ice & fell on his buttocks.
## 33619 EE stated that when he lowering tail gate it hit his lt arm.
## 33620 EE stated that when he walked through the back gate he tripped over a cage at greene causing him to fall
## 33621 EE stated that when opening the trap door she turned toward the window and her foot slipped and she fell through trap door to third step.
## 33622 EE stated that when removing needle from inmate's arm-needle pricked the tip of her finger.
## 33623 EE stated that when she had to come back from court and went to sit down in her chair, the chairwent out from under her.
## 33624 EE stated that when she shut the gate, she realizeher index finger was in the lock
## 33625 EE stated that when she turned to get a set of keys out of the vehicle key box, she twisted her knee. *attorney**
## 33626 EE stated that when she types on the computer her left wrist hurts
## 33627 EE stated that when she was scraping trays, she felt a pain in the lower part of her back when she picked up the trays from the hand cart.
## 33628 EE stated that when she went to pick up a box she felt something pull in her side
## 33629 EE stated that while EE was conducting a locker search in core c block EE reached toward back of locker and felt something pull in shoulder
## 33630 EE stated that while allowing an inmate to get dressed, suddenly inmate lunged at him and other staff present. This caused EE to hit the cell door
## 33631 EE stated that while applying brake to stop the bus her ankle twisted and began to hurt while mashing the brake
## 33632 EE stated that while assigned to tower #3, she wasstationed on the catwalk, with a weapon in her hands. As she turned, buttend of gun struck knee.
## 33633 EE stated that while assisting to restrain inmate she cut her left index finger
## 33634 EE stated that while assisting with baton trainingwhen demonstrating a technique trainee attempted to take baton away stricking her right hand.
## 33635 EE stated that while at crdt training she began to experience chest pains & pressure in chest
## 33636 EE stated that while at fire arms training he was walking on unlevel ground & lost his balance causing him to fall.
## 33637 EE stated that while attempting to hold a coffee cup, an opened can of 'boost', and a book, she cuther finger on the open can.
## 33638 EE stated that while attempting to place a box back on shelf, w/ r foot on bottom shelf, he strained lower r abdomen
## 33639 EE stated that while attempting to place shower mat down that it fell and he slipped breaking his fall with his left hand.
## 33640 EE stated that while attempting to restrain an inmate, he scratched EE on underside of wrist
## 33641 EE stated that while attempting to restrain inmate, left thumb was bent back by inmate.
## 33642 EE stated that while attending training lesson he fell out and hit side of door at line up room
## 33643 EE stated that while attending training she was executing a take down maneuver when she heard a popping sound at the top of her lt thigh hip
## 33644 EE stated that while backing up to keep fighting inmates from falling on her she was bumped and twisted my leg
## 33645 EE stated that while being a part of a cell extraction team his right thumb was hit on an unknown object.
## 33646 EE stated that while being taken down for crdt training, she felt sharp pain in abdomen.
## 33647 EE stated that while breaking up a fight between two inmates, he hit his right hand on some bars.
## 33648 EE stated that while breaking up an inmate fight he was injured on his lt arm and lt hip
## 33649 EE stated that while buring old files some tyoe of deris flew into lt eye
## 33650 EE stated that while checking yard behind dorm observed object within roped off area bent down to pick up object holding on to rope rope broke and fel
## 33651 EE stated that while climbing stairs in bc stationhis knee popped and went out.
## 33652 EE stated that while coming through the doorway ofthe east 161 door his left arm struck the doorway. He was attempting to stop inmates from fighting.
## 33653 EE stated that while compacting trash, a piece of glass from a bulb flew out of compactor and hit eein the corner of his left eye.
## 33654 EE stated that while conducting a check of the building and yards a black wasp landed on his lt elbow and stung him
## 33655 EE stated that while conducting a security check of f dorm, assuming sand and/or gravel on the sidewalk caused by feet to slip from under me.
## 33656 EE stated that while conducting count in j-dorm. She entered the bathroom shower area and slipped on the wet floor and fell.
## 33657 EE stated that while conduction the perimeter fence test, inmates were throwing rocks at the fence & EE backed up into the fence striking razor wires.
## 33658 EE stated that while controlling hostile inmate onblue unit, inmate punched staff in the facial area
## 33659 EE stated that while controlling inmate activity in hallway EE felt shoulder itching and noticed a bite mark
## 33660 EE stated that while cutting visitation passes thescissors slipped cutting middle finger of left hand.
## 33661 EE stated that while delivering mail in institution, he stepped off sidewalk by "c" dorm, lost balance and twisted left knee.
## 33662 EE stated that while doing a pat down search of inmate. The inmate kicked EE w/ heel of his foot in the nose & upper lip.
## 33663 EE stated that while doing check of doors the door mobed a little she proceeded with her lt hand to push the intercom with her index finger
## 33664 EE stated that while doing his security checks, hewent to open the fire escape door and caught his finger on his left hand underneath the handle.
## 33665 EE stated that while doing paperwork, she lifted a pc of paper and the page fell forward, somehow got under glasses, and scratched her open eye.
## 33666 EE stated that while doing stretching exercise in preparation for participating in unarmed self-def-ense training, her back started hurting.
## 33667 EE stated that while doing uasd she felt her back pop. She took short breath. The while conducting handcuffing, her partner stated EE couldn't get up
## 33668 EE stated that while driving the dodge van hit two bumps in the road which caused his lt foot to slip off the wheel beside the brake and turn ankle
## 33669 EE stated that while during a bumab operation in thick briars he contracted a rash on both legs as a result of walking through thick briars
## 33670 EE stated that while escorting imnates to the yard he was struck by the inmate in the face and during sruggle he fell to ground injuring shoulder
## 33671 EE stated that while existing her car she struck her arm with her knee which pushed lt arm into the door opening of car
## 33672 EE stated that while exiting her car she struck her arm with her knee which twisted her arm back as it jammed into the doorway of the car
## 33673 EE stated that while exiting the shuttle bus, slipped and fell on back down steps, water on steps
## 33674 EE stated that while feeding the morning meal he slipped on some spilt coffee and fell
## 33675 EE stated that while getting item from pass box turned on steps and lt knee gave way he fell down four steps and scraped his lt forearm
## 33676 EE stated that while getting kitchen workers upm on lower d unit he went to the control room for the needle and hit lt knee on hand rail
## 33677 EE stated that while handcuffing an inamte refusedto be handcuffed and force had to be used. The EE got scratches and bruises on his left arm and legs
## 33678 EE stated that while handcuffing an inmate that had been involved in a fight, he got body fluid on his hands.
## 33679 EE stated that while he was attempting to restrainan inmate the inmate kicked him w/his lft foot hitting EE in the rt cheek area dir. Under rt eye
## 33680 EE stated that while he was closing the operation gate between kitchen and operations he caught his left thumb between two pieces of metal
## 33681 EE stated that while he was collecting inmate food trays and returning them to the cart, he noticed pressure feeling on left upper chest, weakness.
## 33682 EE stated that while he was cutting I beam with torch the I beam twisted when cut into it mashed his finger between I beam and rail around cage of boo
## 33683 EE stated that while he was doing a cell inspectio he was checking the bed area and as he raised up he hit his head on the metal shelf on the wall.
## 33684 EE stated that while he was getting in state vehicle he slipped on some unknown substance twisting his lt knee
## 33685 EE stated that while he was running in physical training that he felt a sharp pain in his right ankle.
## 33686 EE stated that while he was trying to pull drawer back in, a officer pushed the drawer in before he could move his hand, causing his hand to get pinch
## 33687 EE stated that while he was video-taping inmate during an anticipated use of force, the inmate spin on him on chin just below mouth. Poss bbp exp.
## 33688 EE stated that while he was walking down a ditch bank he lost his footen and fell pain in his groin area
## 33689 EE stated that while helping inmates move tables one of the tables slipped off mashing his pinky finger on his rt hand b/t two tables
## 33690 EE stated that while holding an inmate's leg down his leg rubbed against the side of bed causing a small abrasion on the front of right leg.
## 33691 EE stated that while in the kitchen he was walking by the drain in the floor near the dishwasher and his rt foot slipped and turned on the wet floor
## 33692 EE stated that while inspecting vehicles entering the inst. Thru t-1 he stepped into a pothole in pavement, twisting his rt ankle. Rt ankle/leg sprain
## 33693 EE stated that while leaving the visitation area he pushed open door with his lt hand, after passingthru the door it closed smashing his mid finger.
## 33694 EE stated that while lifting a lawn mower onto the trailer, he felt a sharp pain in his lower back.
## 33695 EE stated that while loading inmates personal property on inmate transfer bus a pencil punctured my 3rd finger on rt hand
## 33696 EE stated that while making around in seg. He observed inmate with clothing on inmate given an orderto give the clothing to EE threw liquid at EE
## 33697 EE stated that while making check in xone a rock from yard hit and shattered the driver's side window
## 33698 EE stated that while making rounds of the facilityhe was wakling on the sidewalk when he grabbed thehandrail and felt a sharo burning on right finger
## 33699 EE stated that while making security rounds she slipped on ice while getting out the truck and twisted ankle
## 33700 EE stated that while mopping the control room he slipped on the wet floor this caused him to strike his forehead on a protective wall
## 33701 EE stated that while moving a refrigerator in the kitchen that he injured back..
## 33702 EE stated that while moving his chair from one computer to another he struck his left knee on a metal brack under the table.
## 33703 EE stated that while moving shelf it fell on lt foot
## 33704 EE stated that while moving swiftly to answer a code yellow he felt a pull in his lt lower thigh
## 33705 EE stated that while on break he saw a file on the ground picked it up door struck forehead
## 33706 EE stated that while opening the door in west housing area that she felt her rt wrist bend and felt pain
## 33707 EE stated that while participating in escape procedure observed two thorns stuck in rt forearm and removed them the are was infected next day
## 33708 EE stated that while participating in unarmed training, she felt her left foot pop. The same foot she injured previously at work.
## 33709 EE stated that while pat searching inmates she bent down when she stood up her rt ankle popped on the inside had sharp pain moving up the rt leg
## 33710 EE stated that while performing duties a substance that appeared to be urine was thrown in his face
## 33711 EE stated that while picking up inmate property bags in intake, bags were heavier than appeared tobe.
## 33712 EE stated that while placing a suture needle into the needle holder of the sharpe container a needlestuck her left forefinger
## 33713 EE stated that while playing basketball during his off duty time while recieving training at the justice academy, EE went to run and put pressure on..
## 33714 EE stated that while playing basketball, he jumped to block/recover a shot ball. As he landed he believed he jammed his lower back.
## 33715 EE stated that while pulling carts off the trailer she stated she pulled one that weighed 550 pounds
## 33716 EE stated that while putting out fire--caused by inmate-- with fire extinguisher, she inhaled smoke and/or extinguisher substance ()
## 33717 EE stated that while putting things in her locker she twisted her left knee, later as she was cleaning, she twisted her left knee again.
## 33718 EE stated that while putting trashcans back on food truck slipped on a patch of ice and fell on back side
## 33719 EE stated that while qualifying with the shotgun, she shot the gun and it jumped up and the stock struck her right collar bone & shoulder area.
## 33720 EE stated that while reaching for keys a scrapper was in his pocket and cut his finger
## 33721 EE stated that while removing cuffs from an inmatethrough a trap door, the I/m jerked his hands back& caught officer's hand between the cuffs.
## 33722 EE stated that while reseaching for keys a scrapp er was in his pocket and he cut his finger
## 33723 EE stated that while responding to a code 300 as she was running slipped as she tured the corner by the officers desk on freshly waxed floor
## 33724 EE stated that while responding to code 2 running down main hallway fell down hit head on floor & scraping knee
## 33725 EE stated that while running to a fight, felt something pull in the back of right foot.
## 33726 EE stated that while searching the janitors closethe slipped and fell, hiting his lower back.
## 33727 EE stated that while she attended manatory oc pepper spray training her face was burned on both cheekbones and scattered areas of t zone
## 33728 EE stated that while she was assigned to post 5, abee stung her on the right #4 finger. Swelling to finger.
## 33729 EE stated that while she was conducting the perimeter check she stepped turning her lt foot causing an injury to her lt knee and rt hand
## 33730 EE stated that while she was kneeling to shoot shotgun during training, she felt a strong pull down right spine, shoulder, and neck.
## 33731 EE stated that while she was walking on the sidewalk towards her job assignment her rt foot slipped on the ice causing her to fall on the ground
## 33732 EE stated that while shooting the shotgun at the firing range her rt shoulder was slightly bruised
## 33733 EE stated that while sitting in the chairm he leaned forward toward the desk in front of him, the chair slid back causing EE to fall.
## 33734 EE stated that while slicing watermelon on meat slicer tip of rubber glove caught in blade pulled lt finger toward the blade
## 33735 EE stated that while stepping into control ctr #1, loosing footing I fell hard onto my lt knee
## 33736 EE stated that while supervising inmates n recreation yard EE stepped off uneven sidewalk twisting rt knee and rt foot
## 33737 EE stated that while supervising inmates on recreation yard EE stepped off uneven sidewalk twisiing rt knee and rt foot
## 33738 EE stated that while supervising inmates on the back yard walking on the hill area of the backyard rt heel began to stretch burning pulling sensation
## 33739 EE stated that while supervising inmates placing napkins in the storage shed a inmate dropped two boxes of napkins which struck the top of his knee
## 33740 EE stated that while supervising road squad #1 he was backing up tripped on a tire falling down on his lt elbow
## 33741 EE stated that while talking to inmate, inmate throw a liquid substance in his facial and chest area
## 33742 EE stated that while teaching dance she began feeling pain in lower back and difficulty breathing.
## 33743 EE stated that while unloading a refrigerator off back of pickup truck in the maintenance yard he hurt his back
## 33744 EE stated that while unloading a refrigerator off the back of a pickup truck in the mantenace yard
## 33745 EE stated that while unloading laundry truck, the lid on the stainless steel cart fell open and hit him on the shoulder. Later painful to move arm
## 33746 EE stated that while walkiing to unit four step stepped off the edge of the sidewalk causing her ankle/foot to twist
## 33747 EE stated that while walking down the sidewalk on the way to the clotheshouse she slipped off sidewalk and fell down
## 33748 EE stated that while walking in front lobby her lt knee gave out on her causing her to fall to floor hitting her rt knee on floor
## 33749 EE stated that while walking on iced parking lot she fell on back and lt hand
## 33750 EE stated that while walking through the warehouse he was struck from the rear by inmate pushing the cart loaded w/ canteen supplies.
## 33751 EE stated that while walking to the unit that she was accidently bumped someone else and that she twisted her ankle when she stepped on the uneven sur
## 33752 EE stated that while walking up the steps rt foot slipped causing her to fall landing on her rt knee
## 33753 EE stated that while working as dorm control ofcr in oak dorm she accidently spilled hot coffee on her rt leg
## 33754 EE stated that while working in sogregation an inmate threw two cups of unidentified liquid into his face
## 33755 EE stated that while working in the control room her foot became tangled up on either chair or rug this caused her to fell and strike room
## 33756 EE stated that while working on dumpster forms he stepped on nail.
## 33757 EE stated that while working on the road squad he was walking and moved some branches out of the way and one came back sticking on the lt eye
## 33758 EE stated that while working on tower #2 was stung by a wasp on lt side of his heaf by his ear.
## 33759 EE stated the lock was stiff on the 208 yard. She attempted to hit th lock with the palm of her handand accidentally hit the side of her hand.
## 33760 EE stated the pain developed & became increasinglyworse as she spent more time filing. Now she is experiencing pain even when typing. Forearm/wrist.
## 33761 EE stated they were performing the simulated cell extraction of an inmate in the physical part & entry cell was quick, turned quickly & pain in neck..
## 33762 EE stated this is of a prior injury while unlocking doors she experienced sharp pain same as injury at community college
## 33763 EE stated thta inmate struck her in head knocking off her glasses as she reached down to pick them up the inmate hit her in her lt side of the head
## 33764 EE stated to complain about having chest pain EE was working in the office on office work
## 33765 EE stated to me on 3/16/2012 that she had used kiavac machine all day in shower of baseball locker rooms, she state she felt pull in right arm, but believed it to be ok until friday ()
## 33766 EE stated to me that he was walking to the maintenance department and slipped on incline sidewalk that was covered with snow
## 33767 EE stated to me while patroling outside perimeter while roving patrol #2 he dozed off due to being on sinus medication
## 33768 EE stated to nurse taht shoulder has been hurting for a couple of days.
## 33769 EE stated to supervisor that while on the firing range she became very hot & and EE right arm, side and leg became numb & and EE fainted and collapsed
## 33770 EE stated top piece of a tie broke and hit EE in head EE was wearing helmet, contusion to l arm, forehead, and cut on nose
## 33771 EE stated transporting urine to intake bite by some insect on rt arm
## 33772 EE stated traveling, noticed a car coming toward her, attempted to change lanes in order to avoid collision, still striked on driver side.
## 33773 EE stated trying to get I/m to comply so he could put cuffs on him scrapped his thumb and knuckle on I/m tooth ()
## 33774 EE stated trying to secure a cell door and accidentally closed it on his middle finger of his lt hand
## 33775 EE stated turned around to get to the other panel when she jumped up she was turning at the same time and felt pain in knee
## 33776 EE stated twist my wrist up to my arm, while assisting resident
## 33777 EE stated typing, using my hands, pain which got progressively worse; pain in fingers, burning in hands. ()
## 33778 EE stated upon recieving igloo jug filled with iceee lifted igloo to place it on chair inside block when EE turned towards the chair EE felt a pop
## 33779 EE stated use of force, confrontation w/inmate inmate scratched face
## 33780 EE stated use of force, elbow scratch from sheild
## 33781 EE stated use of force, elbow scratch from shield
## 33782 EE stated use of force, inmate grabbed neck and scratched EE
## 33783 EE stated use of force, restraining inmate, feces
## 33784 EE stated walk was covered with slushy ice that had not melted, employee slipped on the ice and fell on her rear end.
## 33785 EE stated walked into a door & injured her knee
## 33786 EE stated walking down flight of stairs knee poped & buckled causing him to have to catch himself
## 33787 EE stated walking down steps in master control and missed 1or 2 r-leg was under her and was twisted ()
## 33788 EE stated walking from car in parking lot to report for work while stepping off the curbing EE somehow lost balance and fell on fells
## 33789 EE stated walking into line-up room & slipped on puddle of liquid on floor, hurt lower back & hip
## 33790 EE stated walking into work fast and twisted ankle
## 33791 EE stated walking on floor towards cooler 3 when she slipped on th floor and caugh herself with the door handle something was on spliied on the floor.
## 33792 EE stated walking on gravel driveway of defendant, while conductng routine curfew check, stepped on loose gravel and twisted right foot.
## 33793 EE stated walking out floral shop, injured knee completely gace out, fell straight onto cement & eeslashed lt hand req'd 12 stitches. 2. 16 inj. Again
## 33794 EE stated walking out gatehouse left finger caught in door ()
## 33795 EE stated walking through kitchen struck lt forearm causing scrape on arm
## 33796 EE stated walking to the other side of the dorm he passed out. The heat and humidity was very high that day.
## 33797 EE stated walking towards desk, turned around to answer phone twisted right knee.
## 33798 EE stated walking towards u-2 gate from basketball court stepped in rut twisting right ankle. ()
## 33799 EE stated walking w/inmates, picking up trash dogsbit officer on rt calf muscle
## 33800 EE stated was assisting other officers placing an inamte in mobile restraints, hurt his back, lt knee, both forearms
## 33801 EE stated was attempting to close telephone box & lid of phone box fail hitting lt pinky finger causing injury
## 33802 EE stated was attemptng to restrain inmate from assaultng staff and sprung middle fngr on right hand
## 33803 EE stated was bitten by some type of insect & had a red swollen area about the size of a fifty cent coin.
## 33804 EE stated was giving insulin shot to inmate pricked lt wrist
## 33805 EE stated was installing electrical wiring and felt discomfort in rt knee-had reported also on 8/10 knee discomfort after installing floor
## 33806 EE stated was lifting boxes while moving and strained low back
## 33807 EE stated was locking laundry chute gate when he hit it with his right hand and it started to t ingle.
## 33808 EE stated was moving food pans from one cooler to another. Pans started falling so he set them down mashing 3rd finger & fourth on rt hand
## 33809 EE stated was removing p. I. D. S from one roving vehicle side door hit me in preinjuried knee ()
## 33810 EE stated was transporting inmates back to harnett correctional when van was struck by suv
## 33811 EE stated was walking up sidewalk & twisted her rt-ankle she walked out the institution without any assistance & drove home.
## 33812 EE stated water cooler slid off the edge of the table & as it fell. EE caught one handle with his left hand, cooler snatched the arm.
## 33813 EE stated water on floor in bathroom, feet shot outfrom under him, fell backwards neck, shdlr and butthit the floor jamming back. **atty rep**
## 33814 EE stated when coming into master control, she shut the door on her fingers.
## 33815 EE stated when going up stairs, her foot caught under top stair and tripped.
## 33816 EE stated when he stepped out of the sedan (car) to remove inmate jackets, he was stung by a bee.
## 33817 EE stated when he stepped outof his vehicle he slipped and fell on the sidewalk dur to ice
## 33818 EE stated when leaving royster bldgat the end of workday it was raining. I was jogging across parking lot to my car when I felt a pop in my knee & immediately felt pain. ()
## 33819 EE stated when leaving sgt's office coming down the stairs she was bitten by a spider that was on the rail.
## 33820 EE stated when making rounds on delta yard something bit her leg as the EE walked to the restroom she began itching when EE remover uniform had bumps
## 33821 EE stated when she came into activity room, wire in door latch caught on right arm, scratching right arm. ()
## 33822 EE stated when she entered my office this morning there was liquid in the floor EE slipped
## 33823 EE stated when she passed a syringe back to dentist and uncapped the needle, she was stuck on right thumb beside nail,
## 33824 EE stated when she was leaving the visitation area she slipped and fell on the floor at the door
## 33825 EE stated when she went to pull open drawer in desk the drawer got stuck causing sharp pain to run through her rt arm
## 33826 EE stated when walking through hallway covered walkway EE slipped on wet substance on floor EE landed on buttocks and rt hand
## 33827 EE stated while assisting carrying an inmate on a stretcher, he twisted his lower back.
## 33828 EE stated while assisting co bonner with hand -cuffing inmate molden, inmate hit me in mouth, cutting inner lip on left side with his free hand
## 33829 EE stated while assisting other officers trying torestrain inmate chambers, he was struck on left hand
## 33830 EE stated while assisting with inmates to move some boxes---she went outside to catch her breath and fainted
## 33831 EE stated while attempting to close an inmate's trap door the inmate spit on his rt wrist
## 33832 EE stated while attempting to place inmate on admin seg the inmate refused to comply pepper spray was used
## 33833 EE stated while attempting to search inmate for contraband inmate grabbed her rt wrist refusing to let go a struggle began as she pulled her wrist awa
## 33834 EE stated while attempting to sit in a chair the chair rolled away from under her
## 33835 EE stated while attempting to subdue inmate inmate swung and hit EE
## 33836 EE stated while attempting to subdue inmate the inmate bit EE on rt side of back hit EE in the nose and facial area
## 33837 EE stated while attending crdt training taken to the mat & injured her lt knee
## 33838 EE stated while attending unarmed self-defense training he was participating in escape move and another person grabbed his wrist
## 33839 EE stated while backing down I-40 near washed areaas he turned around to cross washed area, he stepsoff on left foot, area gave, knee popped
## 33840 EE stated while carrying inmate to the cell he believes his left arm got caught on the rstraints andwas nicked
## 33841 EE stated while changing out a heat pump wall unit by himself he pulled a muscle in lt hip
## 33842 EE stated while checking water level in engine, the plug blew out blowing water all over EE cause-ing EE to fall off engine onto platform
## 33843 EE stated while climbing stairway her lt foot got caught on the step above
## 33844 EE stated while coming down the stairs she missed the bottom step entirely and landed on the floor she twisted her rt foot
## 33845 EE stated while conduct in a count of inmates on the yard he was checking the wash house when he stumbled on the steps, catching himself by grabbing..
## 33846 EE stated while conducting a patrol in the woods at camp buttner a tree branch struck him in the rt eye
## 33847 EE stated while conducting cell search of inmate he threw a book st EE and on the floor
## 33848 EE stated while conducting showers on red unit a wing, trap door of cell was pushed by I/m by accident and it hit his finger.
## 33849 EE stated while controlling inmate, inmate bit EE's left forearm.
## 33850 EE stated while crossing a low wall on a rooftop he tripped or slipped and fell onto some metal frame work supporting the ac unit
## 33851 EE stated while doing the door check and climbing down stairs, stepped off the sidewalk into a hole that he did not see because of long grass ()
## 33852 EE stated while doing training he felt a slight pain in his lower back while doing leg lifts
## 33853 EE stated while driving the perimeter patrol vehiele with the window down she was stung on lt arm twice by bee
## 33854 EE stated while emptying urinal, urine splashed in her right eye.
## 33855 EE stated while entering the building via walkway she lost footing on icy surface causing her to split. Strain left groin and hamstring
## 33856 EE stated while escorting an I/m unit one seg a code four was called so she ran down the stairs and came down on steps on one leg wrong and to quick. ()
## 33857 EE stated while escorting inmate to sgt's office he stopped abruptly turned and struck her lt fore arm with his rt elbow
## 33858 EE stated while fastening a spring on a shop jack with pilers the pilers slipped off the spring causing EE arm to fly backward and hit metal couch
## 33859 EE stated while getting out of van, foot slipped off step, tried to catch himself with arm causing elbow to hit door.
## 33860 EE stated while getting up from the control desk turned and hit lft knee on control desk.
## 33861 EE stated while getting up from the toilet her lt leg slipped causing her to loose her stance she stated that she fell toward the faucet hitting shoul
## 33862 EE stated while going down to grab left leg he felt something pop in his right shoulder ()
## 33863 EE stated while handcuffing an inmate, inmate rt wrist was cuffed inmate hit EE on rt side of EE head with l uncuffed hand contusion to head
## 33864 EE stated while he was escorting inmate back to cell, inmate spit on his left side of face (head, neck, eye). Poss bbp exposure.
## 33865 EE stated while he was going through warm ups for unarmed self-defense when he went to do the first push up his lt shoulder popped
## 33866 EE stated while he was involved in hurricane clean up
## 33867 EE stated while he was lifting a table up to turn over to close legs, the table slipped causing the table to strike his left great toe.
## 33868 EE stated while he was posted outside the medication window, a fellow officer came up behind him & struck him between shldr blades-not intending hurt
## 33869 EE stated while he was supervising the feeding of the inmates in b block when he approched cell assigned to inmate he attempted to close trap door
## 33870 EE stated while he was unlocking the gate behind rdc and the acute hospital to cut the grass he hit the raz or wire and cut his middle finger
## 33871 EE stated while helping w/feeding going up/dwn stairs all day felt pain in left knee discomfort going up stairs
## 33872 EE stated while in a state vehicle two officers taking them to their post something blow of of vent into his eye
## 33873 EE stated while in basic training performing a breakfall in standing position she fell back on her right wrist.
## 33874 EE stated while in offender position partner performed escape possible fractured lower rt rib occured during control restraint training.
## 33875 EE stated while in pert training; he was entering building when he fell over fireplace in building and cut his hand, elbow knee and bruised hip
## 33876 EE stated while in process of taking the lid off of beverage cooler she bent down and as she stood back up felt a catch in her back
## 33877 EE stated while in stockroom inmate was moving boxes on shelf from one end to the other boxes fell on her head and right shoulder
## 33878 EE stated while in traiing instructor went to show technique the baton came open hitting EE in chin ()
## 33879 EE stated while in training exercises he got his right arm caught between the officer's body and the cell door frame.
## 33880 EE stated while inmate johnson was being a sprayeda little splashed on him around the front of his neck.
## 33881 EE stated while involved in a use of force, his lower left leg struck the metal desk in cell b-107
## 33882 EE stated while leaving work slipped on the handicap ramp while tryign to stop from falling she jerked her rt arm
## 33883 EE stated while letting a maintance man inside lower control she hit l wrist on the corner of the counter of the control panel ()
## 33884 EE stated while making checks in dorm inmate started swinging both fists at him
## 33885 EE stated while making rounds an insect stung her on the upper right arm
## 33886 EE stated while moving a filing cabinet from one office to another, he injured his back. He stated he moved another filing cabinet. Back spasm
## 33887 EE stated while moving to open the doors for EE she tripped & fell on her stomach. She felt a painin her stomach.
## 33888 EE stated while on tower #1 he was standing between the table and trap that he had opened for his relief officer fell trough trap door
## 33889 EE stated while on yard duty a gust of wind blew object in eyes
## 33890 EE stated while opening officers station door to place mop bucket outside of office at which the door closed and caught his rt hand mashing fingers
## 33891 EE stated while out on road squad, he was cutting a right of way on state road 2239 a bug flew in my left eye.
## 33892 EE stated while outside building he shut the door and caught his middle finger of his right hand between door and door jam.
## 33893 EE stated while participating in p. E. R. T training he was using scott air pack and slipped in puddle of water on floor twisted right knee.
## 33894 EE stated while patroling dormitory upstairs of west wing he closed the snap on the mace holster and the can was leaking.
## 33895 EE stated while patroling grounds she stepped in aunpaved hole, and twisted her ankle
## 33896 EE stated while performing a strong side block lt foot did pivot twisting the lt knee
## 33897 EE stated while performing cell extraction he fellon his left hand jamming his left shoulder
## 33898 EE stated while performing pr-24 training the instructor struck her with his training object andcaused a bruise. Right elbow.
## 33899 EE stated while picking up trash along side of theinmate handed him a sock with multiple syrunges init and one needle was broken off and bent back
## 33900 EE stated while practicing bent wrist takedown to handcuffing technique her self defense partner placed too much pressure on her right shoulder.
## 33901 EE stated while practicing blocking techniques w/the pr-24 baton he was accidently struck on the rt hand on the little finger
## 33902 EE stated while pulling door open to leave the pharmacy she pulled something in left lower back under/or around rib cage (bk area).
## 33903 EE stated while pulling on dining hall door several times to open it. Felt a pain in his shoulder blade
## 33904 EE stated while pulling the cart off the food ruck at the maintanance shop to be repaired the cart rolloed off the truck and mashed his rt thumb
## 33905 EE stated while putting keys in the security drop box in master controls. Another c/o pushed the box inward and it rolled over the tips of her fingers
## 33906 EE stated while removing an inmate having a seizure from top bunk, the inmate kicked him causing him to fall and injure his back.
## 33907 EE stated while removing syringe from pt mouth following injection of local anesthesia he stuck himself on l glove
## 33908 EE stated while responding to a situtation he had to run down a flight of stairs he turned to the right and felt pain in his right knee.
## 33909 EE stated while returning from lunch, fell on bricks at entrance to building. Right & left knee scraped, right arm bruised, shoulder & neck bruise
## 33910 EE stated while riding a rollercoaster with pt EE back and lt shoulder was injured.
## 33911 EE stated while riding in one of the vehicles provided by job. EE injured as a passenger, when another vehicle hit the car. Injury to head, neck
## 33912 EE stated while searching a inmate's locker in m dorm EE stated he stepped back and stepped on the k9 drug dog's paw
## 33913 EE stated while searching an inmate's property she was truck by a tattoo gun on the rt hand fourth finger while wearing gloves
## 33914 EE stated while searching unmat, inmate pushed EE out of the way and fled. Inmate struck EE in the left temple with his fist.
## 33915 EE stated while securing control area cell door onf&g side, he accidentally mashed his index finger in the door.
## 33916 EE stated while securing the door on the rear of the bus the latch secured quickly causing my wrist on my rt hand
## 33917 EE stated while securing units yard wind blew a foreign object into rt eye
## 33918 EE stated while she was opening the officers station door to go into dayroom the door and key jammed twisting wrist and thumb
## 33919 EE stated while she was shooting the shot gun the slide came back and hit her hand
## 33920 EE stated while shooting hand gun during training shooter came back and hit him in left thumb breaking skin.
## 33921 EE stated while sititng at the oficers station she was bitten by spider
## 33922 EE stated while sitting in capt's office he startethrowing up and could not keep his balance and he felt like he had water behind his ears
## 33923 EE stated while sitting in the chair it flipped and she fell on the floor hitting her head and body on the floor .
## 33924 EE stated while standing by cooler, inmate acccidentally knocked over the bread rack onto her leg. Abrasion on mid lower leg, oozing blood
## 33925 EE stated while stepping off elevator stepped on spilled scrambled eggs and grits injured rt hip lt knee back and hands and rt shoulder
## 33926 EE stated while stepping off van she felt pain up her back
## 33927 EE stated while surface cleaning trays, bleach solution got caught in the cuff of rainsuit. Irriatatedthe upper wrists and forearms. Rinsed after task.
## 33928 EE stated while taking out trash and linen his rt foot slipped on some soda or water causing him to sprain his rt ankle
## 33929 EE stated while taking to I/m the I/m kicked him int he right thigh ()
## 33930 EE stated while transferring supplies he injured his back. While he was pulling hand truck backwards up a short flight of stairs, the locking(see notes)
## 33931 EE stated while trying to apprehend an inmate attempting escape he injured his knee while restraining. Left knee injury
## 33932 EE stated while trying to get inmate to cooperate with cuffing inmates hands to return to cell inmate stuck his arm out of shower striking offcier
## 33933 EE stated while trying to reinstall ac unit in west canteen he pulled a muscle or hurt his back
## 33934 EE stated while trying to restrain aggressive student she was hit on the lt side of the face with students rt elbow, while taking student down.
## 33935 EE stated while trying to subdue inmate he fell onhis arm and right hand.
## 33936 EE stated while trying to unlock the outer sally port door of dorm-3. Felt like she twisted muscle. Had to use both hands and could not get it.
## 33937 EE stated while turning patient she had pain in her stomach. EE is pregnant. Pain got worse and went home.
## 33938 EE stated while unloading a bus tire I felt a burning sensation in my stomach
## 33939 EE stated while using hole punch pushing down the metal grip hit lt index finger
## 33940 EE stated while using the sheild to pin an inmate to the wall to gain control the inmate fought backcausing an abrasions to the head lt shoulder arm
## 33941 EE stated while walking down hallway he felt a sharp pain in his left knee.
## 33942 EE stated while walking to another building, she twisted her leg while getting on curb. Sprained ltknee & hip. Out Mar. 14 -30th. Rtw Mar. 31
## 33943 EE stated while working on post #6 that she was stung bu an insect.
## 33944 EE stated while working yard at mcu he twisted his rt ankle and took a fall on the sidewalk over a rope marking off sidewalk
## 33945 EE stated white in roving she hit the stop sign due to the bright sun light hitting her in the eyes
## 33946 EE stated whitle pushing sgt riddick back with the shield the floor mat came up and he tripped hurting right leg ()
## 33947 EE stated work 05. 20. 96 part of job is to wash dogrun daily m-f some weekends to do this EE squeezesnozzle for extended period of time.
## 33948 EE stated working in control booth went to sit down the chair turned over under hurting her breast ()
## 33949 EE stated working on vegetable slicer, caught second finger of his left hand while working on slicer.
## 33950 EE stated wrist caught in pass through box when closed from the other side while getting equipment
## 33951 EE stated, "I coming into work and parking lot wasnot was not cleared of ice & I fell on ice. Just stepped out of car, fell before & start walking
## 33952 EE stated, "I was on the firing range qualifying with the shot gun. After I had fired the shot gun, I began to have pains in my left shoulder and neck
## 33953 EE stated, "I was standing at desk, fell unconscious striking right side of head/face on concrete floor."
## 33954 EE stated, "coming down stairs, I got dizzy, stumbled and fell into rail in stairwell - trying to catch self on railing.
## 33955 EE stated, "twisted ankle when I turned to go unlock other door, fell across the hall in front of resp. Hit the side of left leg on the floor."
## 33956 EE stated, "while doing security check of coca cola truck entering unit, as I turned to walk to my left there was a pop in my right knee."
## 33957 EE stated, 'while firing shoutgun during pert shoutgun qualification, the recoil of the weapon jammed against the middle finger of my right hand
## 33958 EE stated, he was blowing his nose & felt light- headed & passed out, hitting the floor.
## 33959 EE stated, he was starting to go home and was in the parking lot by his car when his feet slipped out from under him causing injury to right leg.
## 33960 EE stated, notice hurting in rt forearm & elbow. Started wearing a band & thought it would get better, & it got worse when opening mail.
## 33961 EE stated, while conducting routine search of inmate he rvcd a punture wound to his right middle finger due to a sewing needle that was hidden on. ..
## 33962 EE stated-as lead nurse.. Provides med. Care resid. Mental health inmates-some have MRSA. 4/30/07 a. M. In shower-noticed large abscess-abdomen (MRSA).
## 33963 EE stated-counselling I/m-I/m became aggressive & after sgt sprayed with o. C. I/m struck him in the head & tried to bite him. No bbp exposure per Dr
## 33964 EE stated-responded to a med emerg & that as pulled & lifted I/m towards her to get him on backboard, sharp pain through rt shldr & lower back.
## 33965 EE stated: assisted a resident by positioning himin bed & pulled muscle in her shoulder. It felt as if her shoulder was out. 77880
## 33966 EE stated: slipped on floor in the ladies 1st floor restroom, did not fall to floor, fell against wall, injured right foot ()
## 33967 EE statedas he stood up from chair and stepped dwn, knee twisted and felt pop in knee
## 33968 EE statee she was breaking up a fight () left pinky distal joint is injured.
## 33969 EE stateed that while being a part of a cell extraction team, his right ring finger wasd hit onan unknown objct.
## 33970 EE states
## 33971 EE states " I reinjured mu chest while helping a patient."
## 33972 EE states " job assignment from supervisor to remove carpet and tile for new equipement.
## 33973 EE states "I sat down in a chair in front of the desk to assist w/ inmate pay-off when the chair kept going backwards and I landed hitting my neck. ..
## 33974 EE states "I was helping 3 inmates lift a piano. Once I lifted upon the piano I heard a loud pop and also felt the pop".
## 33975 EE states "I was moving a table for visitation & pulled something in my lower back on the right side".
## 33976 EE states "I was opening the #1 door in segregation, the door was stuck.
## 33977 EE states "I was practicing an officer assist takedown, as I fell I landed with my fist under my chest".
## 33978 EE states "accidently stuck my left index finger with dirty needle; able to identify inmate"
## 33979 EE states "answer body alarm call, patient was combative & resisting. Manual restraint reinjured right thumb
## 33980 EE states "as I was trying to secure the lock, whenit stuck & flipped back pinching my left hand between the post and lock"
## 33981 EE states "getting out of car and popped out started to walk up walk - rt knee" - rt upper calf strain
## 33982 EE states "he was conducting a crdt technique "mount escape"- legs became entangled with partnertwisting right knee
## 33983 EE states "lifted 60 fire extinguisher shaking them after taking down from rack. Pain in rt groinarea radiating to the back."
## 33984 EE states "patient got upset and threw a chair at staff and the attaked a female nurse, injured right shoulder."
## 33985 EE states "patient kicked me on the right side causing pain in the lower back"
## 33986 EE states "patient was doing flips, EE reached outto keep him from falling and was injured in the process."
## 33987 EE states "placed mattress on bottom bunk & when iturned to walk away the ladder fell, striking me onmy right calf area of my right leg"
## 33988 EE states "small amount of liquid in hallway, slipped and both feet and leg twisted outwarded. Felt pop and fell against wall slid to floor.
## 33989 EE states "while cleaning sewage spill in dialysis of infirmary, I was using the shop vac and went to turn on and it sprayed me."
## 33990 EE states "while performing a lab draw, as I moved the needle from a vein the needle punctured my third finger on the left hand"
## 33991 EE states "while riding resident on golf cart rideresidents attacted another resident when I restrained him he attacked me and bit.
## 33992 EE states - lvg gatehouse to report for duty & pushed door open with rt hand and felt something pop on spine. Pain is above shoulder blade.
## 33993 EE states = she was asking client if he wanted to go to a quieter area of the building when he grabbed her arm and bite her.
## 33994 EE states EE approached him in aggressive manner, EE pushed the inmate to put distance between them, inmate struck EE on the right side of face.
## 33995 EE states EE was putting lid on lg trashcan and mashed left third finger laceration and contusion to l third finger
## 33996 EE states I fell backwards in the parking lot and hit my head. Stepped backwards and fell over concrete barrier.
## 33997 EE states I had chest pains all day my chest beganto hurt severly around 09:45 walking back and forth on the upper yard of fccw
## 33998 EE states I had contact with scabies patient
## 33999 EE states I had lt my office to go to room 114 my foot turned and fell on my hands and knees
## 34000 EE states I was driving down 158 heading east towards yanceyville when another car crossed the yellow line and hit me head on. Multiple injuries
## 34001 EE states I was helping another EE to remove and put pateint in bed and injury occurred during taskinjury to lumber strain
## 34002 EE states I was in process of picking up supplies for the rehab dept I walked out the front door turned to the lt and fell over ceramic cigaette holde
## 34003 EE states I was patrolling the recreational yard when I walked towards the gate and felt a sharp pain in my lower back.
## 34004 EE states I was searching inmates when I contacted scabies
## 34005 EE states I was stung by a yellow jacket while sitting and writing at my desk
## 34006 EE states I was walking across the parking lot twisted rt ankle
## 34007 EE states I was walking down the stairwell when I slipped turning ankle
## 34008 EE states I went to pick my foot up over the chain and my toe caught the chain I fell
## 34009 EE states a Mr. Glenn came came to his car, EE got out to confront him, struggle to cuff him, Mr Glenn hit EE in the right eye
## 34010 EE states a angry patient ran down the hall and hit EE in chest, kicked ankles, & headbutted on lt side of chest.
## 34011 EE states a bar door closed on his lt hand
## 34012 EE states a bat crawled under the kitchen door andin attempt to move away, EE lost her balance and fell, hurting back and knee
## 34013 EE states a bed fell from forklift and hitting her left leg
## 34014 EE states a bee stung her on her rt forearm.
## 34015 EE states a bee stung him in the face
## 34016 EE states a bee stung him on the rt finger
## 34017 EE states a bee stung him on the upper lip
## 34018 EE states a bookshelf fell on her injuring her lower back
## 34019 EE states a box fell and struck his head.
## 34020 EE states a broom slipped from door frame strikinghim in the rt eye
## 34021 EE states a bug flew into his lt eye
## 34022 EE states a bug or piece of wood flew up & hit himin the right eye.
## 34023 EE states a bullentin board fell on her while she was sitting at her desk striking her rt shoulder
## 34024 EE states a cabinet tilted over causing a dolly rolled over on her rt foot
## 34025 EE states a chair broke causing her injured her neck and lt shoulder
## 34026 EE states a chair fell over her injuring her neck, rt rib, and rt wrist
## 34027 EE states a chair rolled away from under her causing her to fall to the floor landing on her lt hip
## 34028 EE states a chair slipped from under him causing him to fall receiving a small laceration above hislt eye
## 34029 EE states a chair slipped from underneath her causing her to fall to the floor injuring her lt ankle.
## 34030 EE states a chair with wheels tipped over causing her to land on her rt knee on a cement floor
## 34031 EE states a chemical fell to the floor and splashed in EE's eye and on EE's arm.
## 34032 EE states a chemical that was used to strip wax from the floor caused respiratory disorder
## 34033 EE states a client attacked another client and during restraint client hit staff in the arch of nose with fist.
## 34034 EE states a client grabbed her leg and held it andwhile trying to get client hands away from leg sheinjured her lower back.
## 34035 EE states a client grabbed him and pushed him intoa wall injurying his lt shoulder.
## 34036 EE states a client leaned on her rt hand
## 34037 EE states a client stumbled and fell on her causinback injury
## 34038 EE states a client was coming out of a room when he pushed her against the bathroom door.
## 34039 EE states a co-worker was being attacked by an in mate. EE attempted to restrain this inmate & durinthe struggle was pushed backwards into a wall.
## 34040 EE states a colleague squeezed her right hand while shaking it and a loud cracking sound was heard when he shook her hand
## 34041 EE states a consumer grabbed and pulled her lt arm
## 34042 EE states a cow was trapped in a feed lane and while trying free the cow the cow jerk causing EE rt hand to be caught injuring rt ring finger
## 34043 EE states a door closed on her injurying her neck and back.
## 34044 EE states a door closed on her lt forearm
## 34045 EE states a door closed on her rt forearm
## 34046 EE states a door closed on her rt hand
## 34047 EE states a door closed on her rt thumb.
## 34048 EE states a door closed on him injuring his rt index finger
## 34049 EE states a door closed on his lt finger
## 34050 EE states a door closed on his lt finger causing a severe laceration.
## 34051 EE states a door closed on his lt hand finger
## 34052 EE states a door closed on his lt hand injurying his lt middle finger.
## 34053 EE states a door closed on his rt finger
## 34054 EE states a door closed on his rt hand finger
## 34055 EE states a door closed on his rt hand fingers
## 34056 EE states a door closed on his rt hand injurying his finger.
## 34057 EE states a door closed on his rt shoulder
## 34058 EE states a door knob struck him on the rt arm
## 34059 EE states a door slammed and shut on her rt middlefinger.
## 34060 EE states a door slammed and struck him on the rt elbow.
## 34061 EE states a door slammed shut on his lt hand
## 34062 EE states a door struck her on the rt foot and toe
## 34063 EE states a door struck her on the rt hand
## 34064 EE states a door struck her rt forearm and injuredher back.
## 34065 EE states a door struck him on the left elbow.
## 34066 EE states a door struck him on the rt shoulder
## 34067 EE states a door struck his rt heel while he was exiting the door.
## 34068 EE states a door which was stuck dropped loose striking EE in the head
## 34069 EE states a dorm slider door closed on her lt hand
## 34070 EE states a driver back into her leg, trying to avoid being towed
## 34071 EE states a five gallon of bucket of detergent fell off the shelf striking his lt leg
## 34072 EE states a florescent light fell striking him on the head
## 34073 EE states a food cart struck her on the rt wrist
## 34074 EE states a gate door closed on her rt thumb
## 34075 EE states a heating wire for the temperature control of a metablization reactor started to burn while EE was doing maintenance on reactor.
## 34076 EE states a hog ran into his lt knee.
## 34077 EE states a honda four wheeler turned over and landed on him injuring his ribs
## 34078 EE states a inmate charged from his room, strickinee in his face
## 34079 EE states a ladder fell on her rt hand causing pain and swelling
## 34080 EE states a lady ran a stop light and hit van on the lt side that EE was driving.
## 34081 EE states a light fixture fell and struck her on the head.
## 34082 EE states a light fixture panel fell striking him on the head
## 34083 EE states a limb tree stuck him in the lt eye
## 34084 EE states a loud noise or bang has caused ringing to his rt ear.
## 34085 EE states a metal drawer closed on her lt finger
## 34086 EE states a nurse was horse playing around with pt when a nurse was pushed striking EE causing injury to shoulder, elbow, wrist, and hip.
## 34087 EE states a patient became aggitated pt hit staff in the face, the staff fell hitting rt shoulder on corner of a table befor hitting the ground.
## 34088 EE states a patient fell on EE.
## 34089 EE states a patient pushed him against a wall causing injury to his upper back
## 34090 EE states a patient ran off EE gave chase and EE restrained him, patient wrapped leg aroung EE's, when staff intervened EE leg was pulled/twisted
## 34091 EE states a patient was aggitated and agreed to take his med and instead of grabbing the med the patient grbbed EE wrist and twisted it.
## 34092 EE states a patient was trying to escape and she was assisting with placing patient in nci hold and the patient butted her head with their head
## 34093 EE states a patient went down during nci and yanked his l arm down with him
## 34094 EE states a person who has TB came into the area which he worked. TB airborne disease.
## 34095 EE states a pesticide EE sprayed his ofc & a few min later the phone rang & he answered it. What appeared to be pesticide on cord, splattered in eyes
## 34096 EE states a piece of burning ember went into his lt eye
## 34097 EE states a piece of concrete hit tooth --- chipped tooth.
## 34098 EE states a piece of debris flew into eye while driving down road, flushed eye several times and could not get the debris out.
## 34099 EE states a piece of dust entered into rt eye.
## 34100 EE states a piece of sheet metal fell from duct work and landed on right arm, cutting into the skin
## 34101 EE states a piece of splinter from a deck trailer imbedded under his lt hand middle finger
## 34102 EE states a piece of steel fell on top of his foot
## 34103 EE states a piece of wood fell and struck him on the head causing a laceration
## 34104 EE states a piece of wood lodged into his rt upperthigh area
## 34105 EE states a pt called her when she was in the office writing and she caught a pain in her neck.
## 34106 EE states a pt kicked her and pulled her hair.
## 34107 EE states a pt sprayed room deodorant in face causing eye irritation.
## 34108 EE states a pt struck her causing her to fall to the floor.
## 34109 EE states a pt struck him on the head with a garbage lid.
## 34110 EE states a pt was trying to come into the office and get cigarette and while trying to restrain thept she injured her rt finger.
## 34111 EE states a resident became upset causing EE to lose her balance and fall--while breaking to the fall EE injured her rt hand/wrist
## 34112 EE states a resident grabbed her rt hand and twisted it.
## 34113 EE states a resident hit him very hard in the lt temple area. EE was beginning basic care-routine
## 34114 EE states a resident stepped on rt foot.
## 34115 EE states a resident/patient was trying to get outdoorway, EE attempted to stop male patient he grabher left wrist and twisted it
## 34116 EE states a rock was thrown from passing vehicle &hit him on the head.
## 34117 EE states a sallyport door closed on her head
## 34118 EE states a she accidentally struck her head on a door.
## 34119 EE states a shelf fell and hit her on left shoulder.
## 34120 EE states a shelf fell and struck her rt hand
## 34121 EE states a shelf fell striking EE on the arm
## 34122 EE states a side door closed on him striking his rt shoulder
## 34123 EE states a slider door closed on his rt arm and shoulder area
## 34124 EE states a small area on lt hand discolored - possible dermatitis from client who has it on her fingers & leg. Rash & dermatitis leg & arm.
## 34125 EE states a small laceration to rt knee, bumped while cutting shrubs with a bush axe. Bush axe rebounded back from striking root, hit EE's knee
## 34126 EE states a splinter punctured his lt thigh
## 34127 EE states a splinter stuck into his rt thumb whileopening a door.
## 34128 EE states a stack of beds fell on his lt foot.
## 34129 EE states a steel walkway came loose causing EE tofall striking rt leg on a object and straining hisshoulder trying to keep from falling
## 34130 EE states a storage bin fell off wall and struck him on the rt foot.
## 34131 EE states a strand of wire cable penetrated rubber glove puncturing the middle finger of rt hand
## 34132 EE states a student bit him on the lt arm
## 34133 EE states a student was being handcuffed and elbowed EE in the ribs and chest area
## 34134 EE states a student was cleaning a wood planer w/adust hose and the wood dust blew into EE eye.
## 34135 EE states a student was riding motorcyle and wasn't paying attention to where she was going and hit EE.
## 34136 EE states a table fell on his rt hand
## 34137 EE states a tattoo gun fell out of package and struck his lt hand finger
## 34138 EE states a tick bit her on the rt side of chest
## 34139 EE states a tick was embedded in his naval
## 34140 EE states a trap door closed on his rt hand/finger
## 34141 EE states a tray hit her in the head-unknown EE chose not to go to clinic
## 34142 EE states a tree branch struck him in the lt eye during a dog handler drill
## 34143 EE states a tree limb hit him in the eye
## 34144 EE states a truck cut in front on him causing injury to his back
## 34145 EE states a vehicle ran a stop sign and hit the front of van EE was driving. ()
## 34146 EE states a visiting professor had a seizure whileoutside, fell hitting his head on the sidewalk. EE tried to keep him safe, got blood on his hands
## 34147 EE states a visitor fell on her causing her to sprain her rt knee.
## 34148 EE states a window slammed on his lt hand/finger
## 34149 EE states a woman pulled out into traffic in frontof her.
## 34150 EE states a wrenched slipped from his hand injuring his lt wrist
## 34151 EE states about 3weeks ago work load was heavy and pain in palm. Lt hand ring finger began to lock wwhen bent.
## 34152 EE states accidentally splashed soap on fingers (left 2nd and 3rd)/hand. ()
## 34153 EE states adjust tension on fire roll up door, screwdrive slip off sprocket, finger got caught between sprock and sheet metal cover
## 34154 EE states admin meds to client, client started hugging, climbing up on EE, EE lowered herself and client back down on mat, felt pain l abdomen
## 34155 EE states administering meds - opening packets andchildproof caps hurt right wrist
## 34156 EE states admitting patients and the dog became agitated and bit hand
## 34157 EE states after administering an injection and attempting to dispense of the needle she punctured her lt index finger
## 34158 EE states after answering a page he reached in theback seat of the vehicle and felt a sharp pain in his back and neck area.
## 34159 EE states after assisting with inmates she noticedpain in her lower back and rt hip
## 34160 EE states after attending a pic review session she notice pain of the rt wrist
## 34161 EE states after being in the building 1st hour of day she started to have headaches, blurred vision.
## 34162 EE states after carrying food trays to feed inmates her back became aggravated causing a strain due to previous injury.
## 34163 EE states after changed client felt pain in rt shoulder blade
## 34164 EE states after checking generators, lost footing as he stepped off platform onto cement blocks. Twisted right ankle/foot.
## 34165 EE states after cleaning countertops with cleaningsolution he accidently wiped his rt eye
## 34166 EE states after cleaning up blood and removing gloves her fingernail cut the inside of her rt wrist.
## 34167 EE states after controlling a fire and upon returning home he noticed red spots on his hands and leg area.
## 34168 EE states after doing a 3-person carry EE felt pain in her lower back. **ag's file# 02-2688**
## 34169 EE states after fire on 6th floor was over he began to write his statement & his nose was irritable. Soot came out when blown.
## 34170 EE states after fire range practice she felt pain in her rt arm
## 34171 EE states after firing during fire arm training she noticed ringing and echo sounds in her lt ear
## 34172 EE states after firing shotgun a bruise appeared on right bicep and bruise is getting larger. His fingers tingle and bicep throbs
## 34173 EE states after giving an injection to another EE the syringe dropped on her lt foot puncturing her lt toe
## 34174 EE states after giving change from 2 money boxes she strain her lt hand/arm.
## 34175 EE states after he parked transfer bus, he startedconducting a walk around inspection of bus, groundcaved in & his right foot & leg went into hole.
## 34176 EE states after inspection of inmates he noticed irritation and itching of his chest and back area
## 34177 EE states after lifting pinic tables she begin to have pain in her lower back area
## 34178 EE states after locking the screen door in the laundry room she turned to the right and felt a pain in her upper back.
## 34179 EE states after moving furniture she felt a pain in her back. Low back and left hip
## 34180 EE states after obtaining a lab specimen from an inmate EE pricked her finger with the needle
## 34181 EE states after patting down an inmate with shingles he developed chicken pox 3 days later
## 34182 EE states after pepper spray training he started having migraine headaches and tension in neck
## 34183 EE states after performing his routine duties, his hands started burning.
## 34184 EE states after pert training she noticed red blotches on her legs--and started having shortnessof breath
## 34185 EE states after providing care to resident her arm started itching, noticed rash like area on my arm and washed w/soap and warm water. Reported to supervisor goff ()
## 34186 EE states after putting handcuffs on an inmate that had been fighting in the bathroom she stepped down out of the sink area and twisted her rt ankle
## 34187 EE states after restraining a student he suffered a heart attack clmt was previously ppd ppd rating on another file
## 34188 EE states after running while responding to an emergency code she noticed swelling of her rt knee
## 34189 EE states after taking off a glove the residue from the glove got into his eye.
## 34190 EE states after taking student to a room and closing the door the latch came loose striking EE on the lt hip
## 34191 EE states after taking the trash, went to put the golf cart u; got off walked onto loading dock (it was raining) water was standing on dock; fell completely back hurting back, buttocks, and head ()
## 34192 EE states after the end of her work day she was walking in parking lot she tripped and fell injuryto her forehead, rt leg, rt foot and ankle
## 34193 EE states after training he notice soreness in his lt ankle
## 34194 EE states after transferring patient into bed she began experiencing a burning in the middle to lower back
## 34195 EE states after using the restroom she has severe pain in her lower back
## 34196 EE states after wiping feet on floor mat slipped and fell hitting head on floor
## 34197 EE states all the mopping he does has caused rt knee to give away.
## 34198 EE states alleges she and officer were lifting an inmate onto s gurney and she injuried her neck and lower back
## 34199 EE states alleges she was exiting control booths and the closet door was open behind booth door causing fingers to wedge between the 2 doors.
## 34200 EE states alleges that he was getting down from the chair on tower #1 and struck his knee on some object
## 34201 EE states almost tripped over cable on the floor.
## 34202 EE states altercation with inmate when he hit my left hand and right side of face and neck
## 34203 EE states altercation with patient caused back, r shoulder and r forearm pain
## 34204 EE states an aggressive pt started throwing items causing a large bruise on lt leg and something gotinto both eyes.
## 34205 EE states an agitated patient attacked EE and another staff member. Injured hip,. Leg. Wrist.
## 34206 EE states an air jack fell and struck him on lt leg
## 34207 EE states an angry inmate jerked a chair which caused it to hit her in the abdominal area.
## 34208 EE states an angry inmate struck the door of a cell with his fist and blood sprayed from the fistinto EE lt eye and arms.
## 34209 EE states an angry patient hit him on the left shoulder.
## 34210 EE states an explosion from a water pump caused a bright uv light to burn both eyes
## 34211 EE states an inmate bit him on the lt side of his nipple
## 34212 EE states an inmate blew cleanser powder in both eyes.
## 34213 EE states an inmate came out of his cell and struck him in the mouth
## 34214 EE states an inmate charged into him causing him to injured his rt knee
## 34215 EE states an inmate cut his finger dripped blood on his wrist when assisting the inmate with a bandaid
## 34216 EE states an inmate dropped a wagon handle on his lt foot/toe
## 34217 EE states an inmate gave her contraband two razor blades, wrapped in newspaper, EE states she twisted newspaper & razor cut hand
## 34218 EE states an inmate got on the elevator with her and turned the lights out--causing mental and emotional stress
## 34219 EE states an inmate grabbed and twisted his rt wrist
## 34220 EE states an inmate grabbed her arm causing her arm to be caught in the chain of the handcuffs
## 34221 EE states an inmate grabbed her lt hand and pulledit inside his cell
## 34222 EE states an inmate grabbed her lt wrist and twisted it
## 34223 EE states an inmate grabbed her lt wrist and twisted it.
## 34224 EE states an inmate grabbed her rt wrist and pulled her into the closet ****ag.. Stacy phipps***
## 34225 EE states an inmate grabbed him around the neck and while trying to remove inmate hand from neck EE fell on the table striking his lt knee/rt elbow
## 34226 EE states an inmate grabbed his lt hand and struckhim in the stomach
## 34227 EE states an inmate head butted him while being escorted
## 34228 EE states an inmate kicked her in the rt knee
## 34229 EE states an inmate opened a door and struck his rt hand
## 34230 EE states an inmate placed a bottle of clorox on his desk---the clorox splashed into his lt eye.
## 34231 EE states an inmate pulled back on a door causing it to strike her lt foot
## 34232 EE states an inmate pushed EE down while EE was attempting to get him in his cell, during the inci-dent EE hit the stair rails and cut finger.
## 34233 EE states an inmate pushed a bunk bed causing the bed to strike EE on the rt shoulder and neck area
## 34234 EE states an inmate pushed a linen cart striking his rt ankle.
## 34235 EE states an inmate ran into him with a hand truckcausing him to fall backward
## 34236 EE states an inmate spitted blood on his hand and chest area.
## 34237 EE states an inmate spitted on her
## 34238 EE states an inmate sprayed him with urine
## 34239 EE states an inmate sprayed some unknown liquid substance from a bottle into his face and eyes.
## 34240 EE states an inmate started having a seizure and when trying to keep the inmate from falling on the ground the inmate landed on him--back injury
## 34241 EE states an inmate struck her on the lt arm.
## 34242 EE states an inmate struck him in the chest area
## 34243 EE states an inmate struck him in the eye with handcuffs.
## 34244 EE states an inmate struck him in the face with a cup
## 34245 EE states an inmate struck him in the face with a flashlight
## 34246 EE states an inmate struck him in the head with fist
## 34247 EE states an inmate struck him on the lt arm with a watch
## 34248 EE states an inmate struck him with a spring clip in the middle of his lower back area
## 34249 EE states an inmate struck him with handcuffs.
## 34250 EE states an inmate threw a battery at him striking him on the rt elbow
## 34251 EE states an inmate threw a bottle of mustard at her striking her on the rt breast
## 34252 EE states an inmate threw a box of talcom powder striking her on the upper rt arm
## 34253 EE states an inmate threw a pair of handcuff at her injuring her lt knee
## 34254 EE states an inmate threw a styrofoam cut filled with urine
## 34255 EE states an inmate threw a table striking him on the rt foot
## 34256 EE states an inmate threw a tray and struck him onthe lt arm
## 34257 EE states an inmate threw some beans on him.
## 34258 EE states an inmate threw some bleach in her face
## 34259 EE states an inmate threw some liquid in his face
## 34260 EE states an inmate threw some unknown liquid at her face/and upper body
## 34261 EE states an inmate threw some unknown liquid substances at her
## 34262 EE states an inmate threw some unknown substance at her
## 34263 EE states an inmate threw some unknown substance in his face
## 34264 EE states an inmate threw some unknown substance on her
## 34265 EE states an inmate threw some unknown substances at him
## 34266 EE states an inmate threw some urine at him
## 34267 EE states an inmate threw some urine on him
## 34268 EE states an inmate threw toilet water in his face
## 34269 EE states an inmate threw unknown liquid at her
## 34270 EE states an inmate threw urine in his face.
## 34271 EE states an inmate tried to assault his partner by grabbing at her and he grabbed the inmates hand cuffs to control him the inmate twisted the handcu
## 34272 EE states an inmate was driking some water and while talking some of the water went into EE rt eye
## 34273 EE states an inmate was drilling a hole in the ceiling when some of the dust went into his lt eye
## 34274 EE states an inmate was pushing a cart when the cart rolled on top of EE rt foot
## 34275 EE states an inmate was running out of dorm after fight when EE grabbed inmate to cuff him inmate fell up against EE getting blood on left arm and shr
## 34276 EE states an inmated grabbed her lt hand and wouldnot let go
## 34277 EE states an inmated spitted in her face
## 34278 EE states an inmated walked passed her and spit in her face
## 34279 EE states an insect bit her on the neck.
## 34280 EE states an insect bit her on the rt hand
## 34281 EE states an insect flew into his lt eye when he proceeded to secure a gate.
## 34282 EE states another EE pushed a door open knocking her against a wall striking her back.
## 34283 EE states another EE was cleaning with a degreaserproduct EE inhaled the vapors causing a respiratory reaction. Antibotics and inhaler
## 34284 EE states another EE was pushing cart and cart hit EE on back of heel.
## 34285 EE states another hct put head of bed down and clamping in on hand
## 34286 EE states another officer closed a door to the control room injurying her rt fingers
## 34287 EE states another officer closed a slider door on her rt upper arm and knee
## 34288 EE states another officer grabbed her rt hand causing an injury.
## 34289 EE states another officer took me down to mat in offensive move, my hand and finger hit mat. Injured rt 4th finger.
## 34290 EE states another officer was opening a door when the door knob struck her on her lt arm/wrist
## 34291 EE states another person grabbed him in the bear hug and injured his chest muscles
## 34292 EE states another staff member opened door and hit EE on the toe, resulting in wound.
## 34293 EE states another vehicle pull out and struck the front of his car
## 34294 EE states anything he does makes his lower back hurt.
## 34295 EE states area adjacent to work is the smoking area. EE has been diagnosed with asthma and allergies, smoke caused breathing problems
## 34296 EE states as I picked up the lancet holder I was stuck w/ a contaminated lancet on my left index finger, resulting in a puncture.
## 34297 EE states as I was doing break falls I sprang a muscle in my lower abdomen.
## 34298 EE states as I was pushing food cart down the hallway my rt knee gave out
## 34299 EE states as a result of struggling with an inmate who refused to return to his cell he was thrown aganist the bars in the intensive control block
## 34300 EE states as a result of the ground being wet he slid and injured his lt knee
## 34301 EE states as going down some steps he pulled a mucslce in his lt loweg leg.
## 34302 EE states as he attemped to open a door someone from the other side of the door pushed it strikingee on the rt hand.
## 34303 EE states as he attempted to sit in a chair the chair slipped causing EE to fall injurying his lt wrist.
## 34304 EE states as he finished cleaning the commode he turned around to exit the stall, hit the side of his face, cutting the rt eyelid below the eyebrow
## 34305 EE states as he got down from chair on tower 1 to open gate #1 he twisted his back as he stepped down.
## 34306 EE states as he opened the door to th outside gym a bee flew out and stung him on the left side of face.
## 34307 EE states as he restrained a juvenile that was attacked prior to. EE made a hard contact with cement floors with knees
## 34308 EE states as he stepped into the hallway, she slipped and fell to right knee on wet floor
## 34309 EE states as he was "dragging" an inmate from a fire into a safe area, he felt his knee "pop".
## 34310 EE states as he was attempting to bring his self-defense partner to a standing position he had his lt hand thumb in an unnatural position dislocation
## 34311 EE states as he was decending the stairs, his footslipped and as he was falling he grabbed the hand-rail hitting his side against the steps.
## 34312 EE states as he was driving down the road a hornetcrawled up his right pants leg. It stung him twiceapprximately 6 to 10 inches above his knee.
## 34313 EE states as he was entering the gate he shut the door of the gate on his rt hand.
## 34314 EE states as he was exiting a door his lt foot struck the high step causing him to fall injuring his big toe
## 34315 EE states as he was exiting the gate house he stroke his rt elbow on the door he noticed a lot of swelling on elbow and went to medical
## 34316 EE states as he was getting back on a tow motor his foot slipped on wet ground causing him to falland injured his rt wrist.
## 34317 EE states as he was getting off the bus carrying the weapons he stepped to the ground & felt something pull in his back between his should bla
## 34318 EE states as he was loading equipment from loading dock into a truck, he stepped to the right and fell on to the lowered truck ramp. ()
## 34319 EE states as he was reaching for the restroom door he struck his rt thumb on the hand rail.
## 34320 EE states as he was securing lock the gate closed on his rt hand.
## 34321 EE states as he was sitting down in a chair the chair flipped over upside down causing EE to fall to the floor injurying his rt leg and hip.
## 34322 EE states as he was standing up from a rolling chair the chair rolled from under him when he injured his back.
## 34323 EE states as he was stepping out of the ppv truck his foot landed on it's side causing his knee to bend in the opposite direction that it bends
## 34324 EE states as he was walking by an inmate cell doorthe inmate threw a cup with urine at him striking his face, chest and leg area
## 34325 EE states as he went to sit in his chair at his desk, the chair tipped over causing him to hit hischest on the edge of the desk.
## 34326 EE states as he went to slide a chair back the legof the chair broke causing EE to fall on the floor
## 34327 EE states as he went to unlock a phone box the lid accidently slipped out of his lt hand strikinghis fingers
## 34328 EE states as lotioning her legs, noticed a red area with a blister like bump on it. Feet started itching like they were on fire on 072604
## 34329 EE states as she exited captain's loop, she steppeon wet floor and fell to the floor hitting her back on the floor.
## 34330 EE states as she exited her truck to enter the training bldg she fell in the parking lot ()
## 34331 EE states as she stepped to go through a sliding door the door immediately closed on her rt arm
## 34332 EE states as she turned to go do something she struck her upper right eye area on a pole.
## 34333 EE states as she was carrying a box she tripped over a floor mat hitting her knees on the floor and her mouth and nose on the box.
## 34334 EE states as she was cleaning a pt came from behind her and started striking her on the head and shoulders.
## 34335 EE states as she was climbing steps between archdale and dobbs buildings she slipped on a rock on wet steps causing her to fall forward ()
## 34336 EE states as she was coming down some steps her foot slipped causing her to fall.
## 34337 EE states as she was coming up the front door, she slipped on ice and fell on left arm area and buttocks. ()
## 34338 EE states as she was entering the building to begin work her left foot caught on the bunched door mat causing her to fall to the right, twisting left knee and ankle. ()
## 34339 EE states as she was entering the building to report for work she was coming into the main door and the door closed on her ()
## 34340 EE states as she was entering the sallyport door the door closed striking top of EE head
## 34341 EE states as she was getting out of a perimeter vehicle she twisted both ankles and caused an injury to her back.
## 34342 EE states as she was getting out of her car in parking lot in front of rev bldg, her feet slipped out from under her due to ice on parking lot. She caught herself with her right hand on inside door handle of car and felt a pull in her chest and back. ()
## 34343 EE states as she was going down some steps which was wet she slipped injuring her rt thumb and backarea.
## 34344 EE states as she was going to lunch she stepped off the curb to cross the street in front of revenue building and twisted her knee. ()
## 34345 EE states as she was going up some steps her heel from shoe was caught on the edge of steps causing her to fall injurying her shoulder and back area.
## 34346 EE states as she was leaving d-wing in seg housingunit and was closing the gate and closed the gate on her lt middle finger
## 34347 EE states as she was lowering a trapped door to the stair way the handle came off the door and struck EE on the rt knee.
## 34348 EE states as she was observing inmate she stood up from her chair when the chair came from under her causing her to fall to the floor striking head
## 34349 EE states as she was removing a sandwich from the microwave the melted cheese burn her on the rt hand.
## 34350 EE states as she was removing the shotgun from it's rack in order to move to the catwalk she hit her rt hand on the gun rack
## 34351 EE states as she was rushing around her desk, she tripped over a calculator cord and fell. ()
## 34352 EE states as she was sitting down in a chair the chair slid from under her causing her to injure the left side of her body.
## 34353 EE states as she was sitting in an office chair, she rolled back & reached for papers & the chair slipped from underneath her causing her toi
## 34354 EE states as she was stepping off a bus she slip and grabbed the rail with her rt arm to keep from falling causing a strain muscle of the rt arm.
## 34355 EE states as she was supervising inmates picking up trash along I-540 east, a large truck passed blowing debris into EE left eye.
## 34356 EE states as she was walking in aisle in her work area she stepped on a small rock/pebble. Her ankle twisted & she fell to the floor on her knees. ()
## 34357 EE states as she was walking out the bathroom to turn off light she struck her rt hand on the switch
## 34358 EE states as she was walking she stepped off the sidewalk causing her foot to turn.
## 34359 EE states as she was walking to her car she tripped on a large rock injuring her rt ankle.
## 34360 EE states as she went to the hall, fell to bee boat bed and hit it with her right foot causing EE to fall, coming down on her hands & knees
## 34361 EE states assisted three nurses to transfer inmatefrom floor @ bedside to bed. Then assisted w/movinginmate from bed to mattress on floor.
## 34362 EE states assisting another cha to transfer a patient from bed to chair as I reached to grab his pants I felt a pain in the lower back right side
## 34363 EE states assisting client back to mat, client pulled back and EE's lft shoulder pulled along w/client-strain lft shoulder
## 34364 EE states assisting client to stand; grabbed gait belt and client stood and proceeded to try to sit down on floor; EE helped lower client to the floor straining right shoulder. ()
## 34365 EE states assisting client wearing gloves; gloves irritating to hands. ()
## 34366 EE states assisting in overhead, kicked on left side of face by child
## 34367 EE states assisting patient with standing, sitting and being changed, felt pain in the back of r knee
## 34368 EE states assisting resident in from watersking and hit foot on concrete runner, little toe on righfoor swelled and turned blue
## 34369 EE states attached by student who was attempting to get keys to escape
## 34370 EE states attempted to attcack staff while pic hold was used. EE injured lower back.
## 34371 EE states attempting to apply deodorant to client when the client swung left hand and struck EE across the mouth causing soreness and bleeding. ()
## 34372 EE states attempting to step into private vehicle rt foot slipped on oil slick in parking lot causing to fall and land on rt elbow
## 34373 EE states attempting to take client to time out room, something gave in back when I lost grip on client's upper arm
## 34374 EE states back injury happen while applying nci hold to a patient
## 34375 EE states back started hurting after she finished getting patients up and dressed in her unit
## 34376 EE states back started to hurt when attempted to get into van.
## 34377 EE states bathing and dressing, providing incontinence care for 16 hours to clients. ()
## 34378 EE states bathing client, after bathing, felt a pain in chest. ()
## 34379 EE states bathing client; when EE turned client towards her; EE felt a pull in left lower shoulder and upper back. ()
## 34380 EE states because of excessive dust he experiencedbreathing problems
## 34381 EE states bent down to pick a report that fell on the floor and hit his l eye on cornor of desk
## 34382 EE states bit by spider
## 34383 EE states bitten by spider when cleaning 2 animalsroom pens
## 34384 EE states blister like areas broke out upper lip, spread to lower lip. Supervisor wants her to check it due to MRSA exposure
## 34385 EE states both hands hurt from keying-has prev had carpal tunnel
## 34386 EE states both palms are broken out from frequent washing and soap.
## 34387 EE states bread was on fire and tried to open window & the window slammed down both hands.
## 34388 EE states broke out in rash from using heavy duty bathroom cleaner
## 34389 EE states bronchitis caused by reaction to fumes from roofing sealant
## 34390 EE states buggy full of water and milk was pushed against the heel of her foot
## 34391 EE states bulging disks from 6wks of reviewing documents
## 34392 EE states bumpd hand during 7am check, not sure ifdone then or when got client up b/c hit it again oon lift
## 34393 EE states bumped right hand on the pole in the dishroom
## 34394 EE states burning on lt side of abdomen noticed it was red and itchy, reported to Dr. Dawkins at that time; then was treated for MRSA
## 34395 EE states by doing his essential job functions, the work and condition has a burden on back, feet, toes. The prolonged standing, running, walking.
## 34396 EE states by the team colloding into my back and the inmate assaulting me my front side causing injuries to the groin
## 34397 EE states by turning key in metal door and hittingagainst the wall the door have a tendency to jam making the door difficult to open.
## 34398 EE states cabinet fell off wall EE states multipleinjuries. Rt-lateral neck, rt-palm & wrist, chest & facial abrasion under lt-eye.
## 34399 EE states came home and notice his lt leg was swollen and in pain. Superficial blood clot due to prolong standing and sitting
## 34400 EE states came in contact with poison ivy while cutting a hazard tree
## 34401 EE states carpal tunnel
## 34402 EE states carpal tunnel results of continuous use of computer, typing
## 34403 EE states carpel tunnel of the thumb--repetitive use of hands for keying numbers/information into computer and use of mouse.
## 34404 EE states carrying box of cost reports from mail room, 25-35lbs, which caused pain in neck and back
## 34405 EE states carrying groceries in both hands into front door when EE fell over first step landing onright knee
## 34406 EE states carrying tool tray; tripped on sidewalk; sidewalk stands 3 1/2 ()
## 34407 EE states changing client, when rolled client, jammed lt thumb and wrist
## 34408 EE states changing client-stomping-lifting clients legs w/ one hand sliding udder client w/ other, later in day felt pain in lower l side of back
## 34409 EE states changing needle port from one site to another when neddle stuck second finger l hand, needle penetrated gloved
## 34410 EE states checking behind vending machines in visitation smelled like machine was buring tripped over electrical cord
## 34411 EE states checking the yd#3 gate to see if locked,, something sharp was sticking out from the bottom and cut her rt index finger
## 34412 EE states cleaning showers at the time, didn't pay any attention to what happened.
## 34413 EE states cleaning wheelchair; hit knuckle (left hand 2nd finger) against metal part of chair. Swollen finger. ()
## 34414 EE states clearing up sewing room. Pulled the clothing cart and struck the marking machine. Her right hand got caught between th cart and machine
## 34415 EE states client attempting to run out bldg., she went after him. Client turned around and hit EE inface with his hand. Head contusion
## 34416 EE states client became aggressive and had to be retrained, during the restraint, client spit in EE's face, afterward EE's back started to hurt
## 34417 EE states client came into kitchen; took another client's soda. EE had her hand on the cup; client wrapped her hands on EE's hands and bit EE's left hand on the top. ()
## 34418 EE states client came running out of room making noises, grabbed EE's arm digging nails into left arm. ()
## 34419 EE states client forced him nito wall
## 34420 EE states client headbutted EE striking her in thenose.
## 34421 EE states client jumped up from the table and assaulted EE and another client hten EE again the attacks lasted about 5mins
## 34422 EE states client kicked her in the knee
## 34423 EE states client ran into her w/elbows sticking out and struck EE in the middle of the forehead EE saw stars and dots for a few moments.
## 34424 EE states client ran into her with a wheelchair and catching her hand between the wheelchair and the wall.
## 34425 EE states client scratched her on the arm.
## 34426 EE states client sliding down in chair; call for help; nurse placed arm under left arm; EE placed arm under right arm; pulled client up and felt a pull in right shoulder. ()
## 34427 EE states client spit in EE's eye.
## 34428 EE states client started toward street; she turned to redirect and foot got hung around swing leg and EE lost balance falling forward on patio floor hurting both knees, ankles and left wrist. ()
## 34429 EE states client struck her in the face. Client had been placed in proper hold after becoming agressive.
## 34430 EE states client struck her on the rt arm and shoulder area.
## 34431 EE states client walked up and hit me in my lt breast. Pain in lt breast.
## 34432 EE states client was biting and scratching during a restraint
## 34433 EE states client was fighting staff and client bitee on hip.
## 34434 EE states client was getting changed. Client was in behavior, EE trying to clean client. When finished, EE felt pain in back. ()
## 34435 EE states client was getting in and out of bed; while lifting client off floor throughout night back became stiff and sore.
## 34436 EE states client was in behavior; she was assisting in holding client by performing medical procedure; client was resistive and had to be physically restrained; my shoulder was having a lot of pain. ()
## 34437 EE states client was in crisis situation and had to be restrained, client was put on floor in order to bo controlled and EE banged knee on floor.
## 34438 EE states client was in dayroom for 3hrs after eating then began fighting EE.
## 34439 EE states client was in dental office and complaining of taking to long and not wanting anything and bit the bit forearm.
## 34440 EE states client was striking out his arms while she was giving medication to him through feeding tube. EE had pain in back, shoulder, neck next day
## 34441 EE states client was walking down hallway struck EE on the rt side of face and shoulder
## 34442 EE states client went to hit another EE -- EE blocked the hit and client hit EE on top of lt hand.
## 34443 EE states client's foot slipped and he started to fall and she reached to try to prevent fall and she felt some pain in low back.
## 34444 EE states client's leg bag came loose & urine splashed onto EE's face, eyes and hair.
## 34445 EE states co-worker grabbed her by the neck and in trying to pull away from her she hit head on wall. Head contusion and sore neck
## 34446 EE states co-worker slipped on water, EE caught her before she fell, but EE slipped hurting back of lt side.
## 34447 EE states code was called out and responded while placing cervical collar on pt mild ammonia capsuleup pt nose and smell burned EE eyes/nose.
## 34448 EE states col garrett was trying to start pressurewasher. EE walked behind him, his hand slipped off the rope handle and hit right side of mouth
## 34449 EE states combative patient was being escorted to eto. EE's shoulder was dislocated during struggle with patient.
## 34450 EE states combative pt attacked her by kicking, pulling hair out and scratching---injury to head &neck---scratch under eye
## 34451 EE states coming out of old segregation after locking the door, a wooden board fell from againstthe wall and hit EE on the lt side of head
## 34452 EE states coming to work and stepped on steps which had debris on them, fell
## 34453 EE states conference table legs broke and injured both legs.
## 34454 EE states constant ringing of telephone gives severe headaches, and ringing in the ear.
## 34455 EE states corner of piece of paper stuck in right eye
## 34456 EE states cup of hot coffee slipped out of her hand and landed on left forearm causing burn
## 34457 EE states cut fingers on food processor for district function
## 34458 EE states cut hand on can with sharpe edge.
## 34459 EE states cut the top of rt hand on nail in door.
## 34460 EE states cut with scissors on right thumb ()
## 34461 EE states cutting up student social security number with scissors and cut top of left thumb
## 34462 EE states dealing with agitated patient, pulled l back while lifting patient
## 34463 EE states developed back building by buld jesus christ superstar
## 34464 EE states developed psych, emotional, and physicalinjuries resulting from supervisor refusing to al low to leave work when sick.
## 34465 EE states dipping cages in vercon and chemicals splashed into eyes
## 34466 EE states doing a training course he got some of the pepper spray in his eye and on this hand
## 34467 EE states doing cell extraction training he was struck in the eye and forehead
## 34468 EE states doing various typing, and keying has developed pain in both hands- had prev neck, back probs in 1996.
## 34469 EE states door has hump in mid EE was standing in doorway, turned around, foot stayed btwn hump and floor, twisted rt knee
## 34470 EE states door shut on her thumb
## 34471 EE states door to quiet room slammed on rt hand causing swelling to lateral aspect of hand. Fracture rt hand.
## 34472 EE states driving at night to conduct a home visithe was struck by another vehicle
## 34473 EE states driving company vehicle to get acqurium supplies when she was struck by another vehicle trying to make a left turn. Whiplash injury
## 34474 EE states driving perimeter vehicle with no air conditioner and got very hot.
## 34475 EE states due to a fire the smell was so strong EE tried to let the windows up to air out the rm. EE had to pull up hard on window felt pull in back
## 34476 EE states due to clerical duties she has pain wrist.
## 34477 EE states due to climbing up & down a 20'extentionladder while emt Mr Price, knee on rt side swelled up & developed some stiffness
## 34478 EE states due to daily repetitive hand use in keying data, handling large stacks of files, and mail problem is beginning to start in left hand and left thumb.
## 34479 EE states due to repetitve motion of gasping of tapes/boxes with rt hand caused sharp pain in inner elbow area.
## 34480 EE states due to striking her head on desk she fainted
## 34481 EE states due to the heater malfunction the fumes from the heater has caused headaches and dizziness
## 34482 EE states due to the internal investigation on her2 supervisors she has suffered emotion and mental stress.
## 34483 EE states due to the low humidity under extreme condition his skin has started to cracked
## 34484 EE states due to the nature of her job duties she sustained lateral epicondylitis of her lt arm
## 34485 EE states due to the repetitive motion of typing everyday she has developed carpal tunnel syndrome neck, shoulder, arm, and hand pain
## 34486 EE states due to the repetitive motion on job her lt arm is in constance pain
## 34487 EE states due to uneven & broken pavement she tripped and fell on campus while returning from lunch injuring rt ankle abrasion lt knee
## 34488 EE states during a baton training course she lost her balance and fell striking her head on the floor
## 34489 EE states during a bicycle training class he injured his lt knee.
## 34490 EE states during a breakfast feeding serving inmates an inmate grabbed EE rt hand injurying hand and fingers
## 34491 EE states during a cell search he was struck in the face by an inmate
## 34492 EE states during a certification training course his knee gave away causing him to fall to the ground
## 34493 EE states during a computer training course she noticed pain and swelling of the lt hand.
## 34494 EE states during a confrontation with an inmate he injured his lt thumb.
## 34495 EE states during a confrontation with an inmate he injured his rt thumb.
## 34496 EE states during a confrontation with an inmate heinjured his lt shoulder and lt chest area.
## 34497 EE states during a confrontation with an inmate hejammed his lt finger.
## 34498 EE states during a course of firearms she became dizzy and fainted from the heat.
## 34499 EE states during a crisis situation, ran from one side of bldg to other side to assist with physicalrestraint of a student, injured l back.
## 34500 EE states during a curfew check he slipped and fell on ice injuring his back
## 34501 EE states during a curfew check he slipped on dampgrass and twisted his lt knee.
## 34502 EE states during a curfew check he stepped into a ditch and twisted his rt knee.
## 34503 EE states during a curfew check he tripped on a railroad tie-in attempt to break the fall he felt a sharp pain in his neck and lt arm
## 34504 EE states during a curfew check he was running from a dog when he stepped on a board causing a nail to puncture his rt foot
## 34505 EE states during a daily prayer injured his shin
## 34506 EE states during a duck hunt he reinjured his rt knee
## 34507 EE states during a fire control his neck, legs, handskin, ---was injured
## 34508 EE states during a fire drill he struck the back of his head
## 34509 EE states during a fire range course he reinjured his back while standing up from a squatting position**previous claim file in 1997**********
## 34510 EE states during a fire range shooting her shoulder was injured
## 34511 EE states during a firearm requalification course the recoil of a shotgun caused injury to her rt shoulder
## 34512 EE states during a firearm training course her rt shoulder was bruised and began to swell.
## 34513 EE states during a firearm training course she felt pain in her rt shoulder
## 34514 EE states during a foot chase his rt hand was broken
## 34515 EE states during a gun reloading class some of thepowder accidently got on her rt hand causing a burn
## 34516 EE states during a handcuff training technique he injured his rt wrist
## 34517 EE states during a home visit he stepped on a water meter cover and fell injurying his lt knee and lt shoulder
## 34518 EE states during a home visit he was bitten by a dog on the lt inner thigh
## 34519 EE states during a home visit of a probationer he was bitten by a dog on the lt arm
## 34520 EE states during a home visit of a probationer he was bitten on the rt hand by a dog
## 34521 EE states during a home visit of an offender she stepped on uneven gravel and twisted her lt ankle
## 34522 EE states during a home visit of an offender she stepped onto the ground and twisted her lt ankle
## 34523 EE states during a home visit she slipped and fellinjuring her back and hand
## 34524 EE states during a home visit she was bitten by a dog
## 34525 EE states during a lethal defense training course she notices pain of her rt shoulder, arm, neck, and back
## 34526 EE states during a lethal training technique he injured his rt hand and wrist
## 34527 EE states during a lineup his rt hand was bitten by an unknown source
## 34528 EE states during a locker search her lt hand thumbwas puntured by a needle
## 34529 EE states during a locker search her rt thumb was caught in the shelve of the locker
## 34530 EE states during a med call her finger was caught between the window and frame.
## 34531 EE states during a pert training class he felt a pop in his lt shoulder.
## 34532 EE states during a pert training course his lt forearm was injured.
## 34533 EE states during a pert training course she was knocked on the concrete floor injuring her lt buttock
## 34534 EE states during a physical altercation with a disruptive inmate, EE received small lacerations on the back of right hand and upper right arm.
## 34535 EE states during a physical confrontation with inmate he struck his rt hand against the floor
## 34536 EE states during a physical restraint on an out ofcontrol student he was scratched by the student.
## 34537 EE states during a pit hold on client she injured her rt toe.
## 34538 EE states during a pit procedure he tripped and fell striking his head against the wall
## 34539 EE states during a refresher gun course the gun kicked back causing injury to her rt shoulder area
## 34540 EE states during a room search an inmate grabbed her--EE has stratches across upper chest and lt and rt hand/knuckles
## 34541 EE states during a routine check and visit she wasbitten by a rat on the lt index finger
## 34542 EE states during a routine check he was stabbed on the lt arm with an unknown object by an inmate.
## 34543 EE states during a routine check her finger was caught between a clipboard and bars on control boothe.
## 34544 EE states during a routine check on inmates he started to climb the stairwell when he felt a sharp pain above the knee cap of rt knee.
## 34545 EE states during a routine search on an inmate his lt middle finger was cut.
## 34546 EE states during a school function she slipped andfell on tennis court injuring her rt hand
## 34547 EE states during a search an inmate closed the locker door on her rt knee.
## 34548 EE states during a search in a unit he picked up a razor blade that was on the floor and cut his rt middle finger.
## 34549 EE states during a search on an inmate the inmate grabbed his lt hand injurying his lt thumb.
## 34550 EE states during a search procedure he knelt down on his lt knee which caused pain
## 34551 EE states during a search procedure his lt hand palm was punctured with an ink pen
## 34552 EE states during a self defense training class he injured his back.
## 34553 EE states during a self defense training class he injured his rt shoulder/arm
## 34554 EE states during a self defense training course he injured both shoulder
## 34555 EE states during a self defense training course he injured his low back area
## 34556 EE states during a self defense training course he kneel down on a mat and heard a pop in his rt knee
## 34557 EE states during a self defense training course he was thrown by his partner causing injury to hiscervical spine and rt shoulder
## 34558 EE states during a self defense training course her lt wrist started hurting
## 34559 EE states during a self defense training course her rt shoulder was injured.
## 34560 EE states during a self defense training his rt wrist was injured.
## 34561 EE states during a self defense training she injured her rt elbow
## 34562 EE states during a self defense training techniqueshe twisted her rt knee
## 34563 EE states during a self denfense class he twisted his rt middle finger.
## 34564 EE states during a self denfense training class he stood up from a prone position and stepped the wrong way the twisted his lt knee
## 34565 EE states during a self denfense training course he injured his lt knee.
## 34566 EE states during a self denfense training course he injured his lt shoulder
## 34567 EE states during a self denfense training technique he felt his rt wrist/hand pop
## 34568 EE states during a sercuity check he cut his lt finger on a fence.
## 34569 EE states during a sercuity check he turned and twisted his lt knee.
## 34570 EE states during a sercuity check of a dump truck the hood of the dump truck fell injurying her rt shoulder.
## 34571 EE states during a shotgun training course she injured her rt shoulder
## 34572 EE states during a site investigation for marijauana he was exposed to ticks
## 34573 EE states during a technique with a baton her lt ring finger struck the baton causing a stingingsensation
## 34574 EE states during a timber exam a tree limb swung striking EE in the lt eye.
## 34575 EE states during a training activity she lifted a table to move when the top of table fell on her rtfoot
## 34576 EE states during a training cell extraction he felt a pop in his rt elbow.
## 34577 EE states during a training course a door struck him on the lt hand.
## 34578 EE states during a training course another officergrabbed his rt wrist and bent it
## 34579 EE states during a training course he fell off a pole and landed on his back.
## 34580 EE states during a training course he felt sharp pain in his shoulder/elbow
## 34581 EE states during a training course he injured his rt knee
## 34582 EE states during a training course he started having pain in his lower back
## 34583 EE states during a training course he was running thru some woods when a tree branch caught his pantleg causing him to twist his lt knee.
## 34584 EE states during a training course her rt foot wascaught on a mat causing pain of the rt knee
## 34585 EE states during a training course his rt elbow was twisted and struck against a wall
## 34586 EE states during a training course she became nausea and began to vomit
## 34587 EE states during a training course she felt pain in her upper rt arm area
## 34588 EE states during a training course she injured her neck and was exposed to pepper spray
## 34589 EE states during a training course she injured herlt wrist
## 34590 EE states during a training exercise his leg was struck with a baton
## 34591 EE states during a training exercise his rt thumb was injured
## 34592 EE states during a training exercises he came in contact with poison ivy--lt and rt arms/hands
## 34593 EE states during a training procedure she injured her rt hand/elbow
## 34594 EE states during a training session he injured hisback
## 34595 EE states during a training session he injured hisback while trying to reposition his training partner
## 34596 EE states during a training session he injured hisback, hip, and rt leg.
## 34597 EE states during a training tactic he hyper extended his rt wrist
## 34598 EE states during a training technique he fell and landed on his rt thumb
## 34599 EE states during a training technique he felt a pop in his lt knee
## 34600 EE states during a training technique he felt painin his groin area
## 34601 EE states during a training technique he felt painin his lt and rt wrist
## 34602 EE states during a training technique he injured his back
## 34603 EE states during a training technique he injured his neck/back area
## 34604 EE states during a training technique he injured his rt leg and rt shoulder
## 34605 EE states during a training technique he injured his rt leg/knee
## 34606 EE states during a training technique she fell on a floor mat and injured her lt knee
## 34607 EE states during a unarmed self defense class her rt wrist was injured
## 34608 EE states during a unarmed self defense training she tripped over someone and fell causing injury to her rt shoulder
## 34609 EE states during a use of force an inmate threw some unknown liquid at him
## 34610 EE states during a use of force an inmate was assanlting a staff member and after oc pepper failed to stop inmate he hit inmates face with fist
## 34611 EE states during a use of force he fell on the floor and injured his lt leg and both arms.
## 34612 EE states during a use of force he got some pepperspray in both eyes.
## 34613 EE states during a use of force he injured his lt finger.
## 34614 EE states during a use of force he somehow injuredhis right arm and right knee
## 34615 EE states during a use of force he was kicked by a staff member in the face
## 34616 EE states during a use of force on an inmate EE struck the inmate head with his fist
## 34617 EE states during a use of force on an inmate and while placing inmate in handcuffs he received a scratch to the rt forearm
## 34618 EE states during a use of force on an inmate he came in contact with blood to the open skin of the lt ring finger
## 34619 EE states during a use of force on an inmate he felt a pop in his rt shoulder and both arms
## 34620 EE states during a use of force on an inmate he injured his back and arms
## 34621 EE states during a use of force on an inmate he injured his lt knee
## 34622 EE states during a use of force on an inmate he injured his lt knee and neck
## 34623 EE states during a use of force on an inmate he injured his rt elbow
## 34624 EE states during a use of force on an inmate he injured his rt hand and fingers
## 34625 EE states during a use of force on an inmate he injured his rt hand.
## 34626 EE states during a use of force on an inmate he injured his rt hand/finger
## 34627 EE states during a use of force on an inmate he injured his rt index finger
## 34628 EE states during a use of force on an inmate he injured his rt shoulder
## 34629 EE states during a use of force on an inmate he received at scatch to his rt upper arm.
## 34630 EE states during a use of force on an inmate he struck his rt hand against a wall
## 34631 EE states during a use of force on an inmate he twisted his lt knee
## 34632 EE states during a use of force on an inmate he was accidentally struck by a baton on the lt hand
## 34633 EE states during a use of force on an inmate he was caught between a door frame and inmate cutting his lt index finger
## 34634 EE states during a use of force on an inmate he was cut by a razor on the rt thumb
## 34635 EE states during a use of force on an inmate he was pushed against the wall by the inmate striking his lt shoulder area
## 34636 EE states during a use of force on an inmate he was sprayed with pepper spray in both eyes
## 34637 EE states during a use of force on an inmate he was struck with a baton to the rt hand
## 34638 EE states during a use of force on an inmate her lt knee struck the floor.
## 34639 EE states during a use of force on an inmate his back, shoulder, and lt leg was injured
## 34640 EE states during a use of force on an inmate his lt wrist was injured.
## 34641 EE states during a use of force on an inmate his rt forearm was scratched
## 34642 EE states during a use of force on an inmate his rt hand/eye was injured
## 34643 EE states during a use of force on an inmate his rt shoulder was injured.
## 34644 EE states during a use of force on an inmate his rt wrist and lt ring finger was injured.
## 34645 EE states during a use of force on an inmate injuring lt hand/thumb
## 34646 EE states during a use of force on an inmate she fell to the floor injurying his back
## 34647 EE states during a use of force on an inmate she fell to the floor on both knees while attempting to prevent inmate from falling
## 34648 EE states during a use of force on an inmate str uck his rt elbow on the wall of a cell this occurred while EE and other staff were trying to restrai
## 34649 EE states during a use of force on an inmate the inmate bit his lt upper arm.
## 34650 EE states during a use of force on an inmate the inmate fell on him injuring his lt hand
## 34651 EE states during a use of force on an inmate the inmate grabbed his hand and scratch it
## 34652 EE states during a use of force on an inmate the inmate pushed him into some steel bars causing a cut to his forehead
## 34653 EE states during a use of force on an inmate the inmate spitted on him
## 34654 EE states during a use of force on an inmate the inmate struck EE in the face.
## 34655 EE states during a use of force on an inmate the inmate struck him in the face with knee and also he was exposed to the inmate blood
## 34656 EE states during a use of force on an inmate the inmate struck him on the rt hand and rt wrist withhis foot.
## 34657 EE states during a use of force on inmate he came in contact with blood
## 34658 EE states during a use of force she injured her rt knee
## 34659 EE states during a use of force she was bitten by an inmate
## 34660 EE states during a use of force with an inmate he received a laceration to his rt hand.
## 34661 EE states during a use of force with an inmate his elbow struck a steel bed.
## 34662 EE states during a visit to the Dr. For a non-job related injury he diagnosed EE w/tindinitis in both wrists. Prescribed brace to the rt hand the wors
## 34663 EE states during a visit to the offender home he lost his balance twisting his lower back
## 34664 EE states during a woodland search he was walking thru some woods when he stepped into a hole and fell twisting his lt knee
## 34665 EE states during air pack training he received a cut on his rt arm
## 34666 EE states during an altercation with an inmate he was struck on the nose.
## 34667 EE states during an altercation with an inmate hisrt hand struck the bed frame.
## 34668 EE states during an anticiapted use of force EE fot left hand caught between helmet and the hand restraints causing lacerations to fingers
## 34669 EE states during an anticipated use of force with an inmate, he injured both arms (swollen wrist)
## 34670 EE states during an award presentation he slipped and fell injuring his rt arm/shoulder
## 34671 EE states during an emergency with sick officer she was assisting other medical personnel getting officer on exam table she felt pull in lower back
## 34672 EE states during an investigation of a wetland he recd a tick bite to the rt eye and groin area
## 34673 EE states during an outing with client she felt a muscle pull on the lt side of back.
## 34674 EE states during an unarmed self defense class she injured her lt shoulder
## 34675 EE states during an unarmed self defense training he felt pain in his rt groin area
## 34676 EE states during an unarmed self defense training his back was injured
## 34677 EE states during an unarmed self defense training technique he fell landing on his rt elbow
## 34678 EE states during an unarmed self defense training technique her lt hand/finger was struck by a baton
## 34679 EE states during annual firearms training I was instructed to fire from a kneeling postion when I felt a sharp pain in my hip area
## 34680 EE states during anticipated use of force on england unit. EE rec'd two smal cuts on his ring fingeron right hand.
## 34681 EE states during anticipated use of force on inmate he somehow injured his rt leg.
## 34682 EE states during baton class, EE injured her left shoulder during front exercise
## 34683 EE states during baton training he was struck in the mouth with a baton
## 34684 EE states during baton training she injured her rt knee
## 34685 EE states during baton training the stretching and twisting has caused the lining of her rib cage to become inflammed and shortness of breath
## 34686 EE states during beach trip there was excessive lifting.
## 34687 EE states during camp activity-tug-of-wag, EE injured ankle
## 34688 EE states during cell check round he turned and twisted the wrong way and injured his back.
## 34689 EE states during cell extraction training he fell injuring his rt leg/knee
## 34690 EE states during cell extraction training he felt a pop in his rt knee
## 34691 EE states during cell extraction training he inhaled a large amount of pepper spray which has caused respiratory problems
## 34692 EE states during cell extraction training he injured his lt shoulder
## 34693 EE states during cell extraction training he injured his rt hand/fingers
## 34694 EE states during cell extraction training he injured his rt wrist
## 34695 EE states during cell extraction training he twisted his lt ankle
## 34696 EE states during cell extraction training he was accidently struck by another EE in the rib cage
## 34697 EE states during cell extraction training he was taken down to the floor & fell on his rt hand.
## 34698 EE states during cell extraction training his lt leg and shoulder was injured
## 34699 EE states during cell extraction training his rt knee and rt arm was injured
## 34700 EE states during cell training slipped on exercisemat when he pulled a muscle in groin
## 34701 EE states during curfew check she stepped from a porch and injured her rt knee.
## 34702 EE states during field contact with offender she was driving the state vehicle when she failed to stop causing an accident with another vehicle
## 34703 EE states during field investigation he was rear-ended by another vehicle
## 34704 EE states during field research she was bitten by fire ants on the rt arm
## 34705 EE states during field work he came in contact with posion ivy
## 34706 EE states during fire range training his rt shoulder was injured
## 34707 EE states during firearm training course he noticea cracking sounds in his lt ear
## 34708 EE states during firearm training he became dizzy.
## 34709 EE states during firearm training he bent down and felt a pop in his lt knee
## 34710 EE states during firearm training he felt pain in his neck
## 34711 EE states during firearm training she injured her rt shoulder
## 34712 EE states during firearm training she injured her rt upper arm--recoil from firing
## 34713 EE states during firearm training she was stung by a bee.
## 34714 EE states during firearm training, the weapon kicked back several times with a lot of force in her lt shoulder
## 34715 EE states during foot patrol he tried to go under a tree limb when he twisted his body causing injury to his rt knee.
## 34716 EE states during home visit he lost his balance and while trying to keep himself from falling he injured his back
## 34717 EE states during home visit of a resident he was bitten by the resident dog on the lower lt leg
## 34718 EE states during inspection he was pricked by a squirrel claw on the rt index finger
## 34719 EE states during laundry duties she noticed pain in her wrist
## 34720 EE states during medication rounds an inmate threw a milk carton containing urine at her
## 34721 EE states during oc pepper spray training she suffered respiratory disorder.
## 34722 EE states during office renovation she lifted a computer injuring her lt shoulder/neck area
## 34723 EE states during pepper spray training he was sprayed directly in the eyes
## 34724 EE states during pepper spray training he was sprayed in the face.
## 34725 EE states during pepper spray training she began to have intense headaches and blurred vision
## 34726 EE states during pepper spray training she was exposed to pepper spray in lt eye
## 34727 EE states during pepper spray training some of the pepper spray got into both eyes causing inflammation
## 34728 EE states during pert baton training staff fell on top of him injuring his lt shoulder
## 34729 EE states during pert training exercises he injurehis rt ankle
## 34730 EE states during pert training he felt pain in hislow back area
## 34731 EE states during pert training he injured his rt knee
## 34732 EE states during pert training he jumped over a ditch and twisted his lt knee
## 34733 EE states during pert training he noticed his rt wrist was swollen
## 34734 EE states during pert training he pulled a muscle in his lt thigh
## 34735 EE states during pert training he slipped on a rock and twisted his rt knee
## 34736 EE states during pert training he stepped the wrong way and twisted rt ankle
## 34737 EE states during pert training he tripped and fellover another EE leg
## 34738 EE states during pert training he twisted his lt knee.
## 34739 EE states during pert training he was crawling lowto the ground when he struck his lt knee on something hard
## 34740 EE states during pert training he was getting out of state van when he slipped on the metal step puncturing a hole in left leg
## 34741 EE states during pert training he was running a two miles run when he turned the wrong way and injured his lt knee
## 34742 EE states during pert training he was running when injured both knees
## 34743 EE states during pert training his lt arm was injured
## 34744 EE states during pert training his rt foot was injured
## 34745 EE states during pert training several team memberfell on his rt leg injuring his rt knee
## 34746 EE states during pert training she became over heated and start feeling light headed
## 34747 EE states during pert training she was struck on the lt leg.
## 34748 EE states during pert training while running she re injured her rt foot.
## 34749 EE states during pert training while utilizing a baton his lt arm was injured.
## 34750 EE states during phyisical training while performing the flutter kick exercise, she pulled muscle in pelvis and groin area. ()
## 34751 EE states during pic EE feels pain in knee cap fells like a rock is behind knee.
## 34752 EE states during pic class after he put an instructor down on the mat he hurt his lt knee. No accid.
## 34753 EE states during pic training EE's rt hand/wrist wassqueezed and grabbed.
## 34754 EE states during pit training she felt a pop in her chest area.
## 34755 EE states during playground activity she fell injuring her lt elbow and wrist
## 34756 EE states during pt training he started having chest pains
## 34757 EE states during road crew and while loading a dump truck a heavy door cut off the tip of his finger. EE is not working.
## 34758 EE states during road squad an inmate stomp his rt foot and struck EE in the stomach.
## 34759 EE states during role call, patient became violent and began to hit writer
## 34760 EE states during rope training one of the trainee was being pulled up the wall and starting to fall when EE reached over to pull him up straining back
## 34761 EE states during round checks something blew from the ceiling fan into her lt eye
## 34762 EE states during routine checkup for inmates an inmate threw a cup with unknown substances at him
## 34763 EE states during routine chemical extractions she developed back pain
## 34764 EE states during routine testing of funnels she started having back pain.
## 34765 EE states during security check she struck her legon a chair.
## 34766 EE states during security check while walking down a slope he twisted his rt ankle..
## 34767 EE states during self defense training another officer kicked him in the lt leg below the knee.
## 34768 EE states during self defense training class she noticed pain of the rt side of neck area.
## 34769 EE states during self defense training course he injured his chest.
## 34770 EE states during self defense training he felt pain in his abdomen area
## 34771 EE states during self defense training he injured his back.
## 34772 EE states during self defense training he injured his lower back
## 34773 EE states during self defense training he injured his lt hand
## 34774 EE states during self defense training he injured his lt wrist.
## 34775 EE states during self defense training he injured his neck.
## 34776 EE states during self defense training he injured his rt knee.
## 34777 EE states during self defense training he twisted his lt wrist.
## 34778 EE states during self defense training his back was injured
## 34779 EE states during self defense training his lt handwas injured
## 34780 EE states during self defense training his rt wrist was injured
## 34781 EE states during self defense training she injuredher lower back
## 34782 EE states during self defense training she injuredher lower back.
## 34783 EE states during self defense training she injuredher lt forearm.
## 34784 EE states during self defense training she injuredher lt thumb.
## 34785 EE states during self defense training she injuredher lt wrist.
## 34786 EE states during self defense training she injuredher rt knee
## 34787 EE states during self defense training she lost her balance and injured her rt knee resulting in medial meniscus tear
## 34788 EE states during self denfense training he injuredhis lt ring finger.
## 34789 EE states during self denfense training she injureher lt wrist/arm
## 34790 EE states during self denfense training technique she was thrown backward landing on her rt shoulderand face
## 34791 EE states during sercuity check he open the emergency door and injured his lt hand
## 34792 EE states during sercuity check something got intohis lt eye.
## 34793 EE states during shotgun training recertification she injured her lt shoulder
## 34794 EE states during situational firearms training, running behind a student and accidently stepped wrong in a hole
## 34795 EE states during staff development training he injured his lower back.
## 34796 EE states during the attempt to bathe patient EE turned felt muscle strain and could not adjust thepatient bed.
## 34797 EE states during the flood she was injured
## 34798 EE states during the week the gloves are not last-ing & the water from the sinks splashes back onto wrist & caused a ringworm.
## 34799 EE states during the work day his shoulder became sore and uncomfortable.
## 34800 EE states during training exercise, crowd managemenpracticing striking dummy w/baton. Lost grip & baton struck top r side of head
## 34801 EE states during training he fell injuring his lt knee
## 34802 EE states during training he felt pain in his lt knee.
## 34803 EE states during training he felt pain in his rt wrist and arm.
## 34804 EE states during training he injured his chest.
## 34805 EE states during training he injured his lower leg
## 34806 EE states during training he injured his lt knee.
## 34807 EE states during training he injured his rt ankle
## 34808 EE states during training he injured his rt elbow.
## 34809 EE states during training he injured his rt shoulder
## 34810 EE states during training he injured his rt shoulder.
## 34811 EE states during training he injured his rt wrist EE was during push ups exercises
## 34812 EE states during training he pulled a muscle in rt thigh.
## 34813 EE states during training he sprained his lt knee
## 34814 EE states during training he stepped between two rocks and sprain his rt ankle.
## 34815 EE states during training he struck his head against a wall
## 34816 EE states during training he suffered heat exhaustion.
## 34817 EE states during training he was administered pepper spray which has caused blurred vision
## 34818 EE states during training he was extracted thru a tire and fell to the ground striking his rt shoulder
## 34819 EE states during training he was sprayed with pepper spray causing headaches ***EE was transported by ambulance to hosp****
## 34820 EE states during training he was sprayed with pepper spray.
## 34821 EE states during training he was struck by a batonin the rt rib cage.
## 34822 EE states during training he was trapped in a roomfor 15 min after a smoke grenade went off. This has caused respiratory problems.
## 34823 EE states during training her lt arm was injured
## 34824 EE states during training his lt forearm was injured.
## 34825 EE states during training his lt leg was caught in a fence causing EE to fall injuring his lt ankle and groin area
## 34826 EE states during training his rt elbow was injured
## 34827 EE states during training his rt shoulder started hurting
## 34828 EE states during training on how to ride a bike athigh speed he lost control of the bike and fell injuring his lt wrist.
## 34829 EE states during training session he felt pain in his groin area (hip)
## 34830 EE states during training she caught her rt foot in a mat causing her o fall and twist her rt ankle
## 34831 EE states during training she injured her back.
## 34832 EE states during training she injured her chest area.
## 34833 EE states during training she injured her rt wrist
## 34834 EE states during training she was exposed to pepper spray
## 34835 EE states during training she was struck with a baton on the lt finger
## 34836 EE states during training that was conducted at a motel she was going down some steps and twisted her lt foot.
## 34837 EE states during training was taking down her partner to the floor alleges she pulled something in her lt thigh..
## 34838 EE states during training with bloodhounds he was bitten by tick in groin area
## 34839 EE states during unarmed self defense training he injured rt wrist
## 34840 EE states during use force situation he was bittenby inmate on the right hand between the thumb and index finger. Bit broke skin requiring med. Attent.
## 34841 EE states during use of force EE was struggling with inmate and right shoulder was injured.
## 34842 EE states during use of force with inmate hand was cut by unknown object
## 34843 EE states during use of force, inmate was being restrained, and EE injured his lt thumb trying to handcuff the inmate
## 34844 EE states during vehicle training he injured his lt elbow.
## 34845 EE states during weapon firing EE experienced temporary loss of hearing in his right ear. He wasusing bearing protection during firing.
## 34846 EE states during wrestling practice with team his right arm got extended over head while preforming a move on an opponent. C/o immediate pain.
## 34847 EE states during yard duties he sprain his lt knee
## 34848 EE states during yard duties he stepped into a washout causing his lt foot to be trapped when tried to turn to release he felt a pop in his knee
## 34849 EE states during yard duty he stepped onto an uneven area and twisted his rt ankle
## 34850 EE states during yard duty he was bitten by an insect on the arms and neck area.
## 34851 EE states during yard patrol something flew into her rt eye
## 34852 EE states dust from renovation demolition & asbestos removal created sickness & req. Dr Visit.
## 34853 EE states edema of upper left lid/eye swelling
## 34854 EE states elevator ernt through inprodomal area around tooth and penetrated lt index finger dental elevator penetrated lt index finger
## 34855 EE states emptying trash and felt a sharpe pain in rt hip and back
## 34856 EE states equipment was being removed from buildigand around buildings
## 34857 EE states eruptions of bumps on skin below lower lips
## 34858 EE states escort patient to quiet room and patient kicked staff in the front of both legs.
## 34859 EE states escorting an inmate inmate spit in officer's face & eyes
## 34860 EE states escorting inmates to shower, hands on cuffs, the inmate twisted around, EE hands caught between the handcuffs.
## 34861 EE states escorting patient to quiet room. Fell onfloor on both knees.
## 34862 EE states every time he got out of chair to check on patient he felt a sharp pain in upper shoulder and neck.
## 34863 EE states excessive typing and writing has caused pain in rt arm and wrist
## 34864 EE states excessive use of computer mouse
## 34865 EE states experiencing pain/numbness in his arms and hands in January 2000, pain has gotten worse. Cause is repetitive typing
## 34866 EE states exposed to inmate's blood
## 34867 EE states exposed to scabies while working with patients
## 34868 EE states eyes started itching 8/5/96 after she arrived home, eye itching, swollen almost closed and red
## 34869 EE states fainted in the lobby of the courthouse when attempting to leave the building at the end of the day.
## 34870 EE states feeding chow dropped trap door to give inmate tray inmate punched me in the jaw
## 34871 EE states feel like I pulled my back but don't know how or when.
## 34872 EE states fell and bruised forehaed, arms, and leg( rt knee, elbow),
## 34873 EE states fell down stairs, got by jim henderson (shd) going to post office. Heel got lip? Of stairs
## 34874 EE states fell down steps and landed on knee and hand
## 34875 EE states fell due to the uneven side walk while working the upper yard
## 34876 EE states fell off loading dock twisted my knee the metal plate flap was not down and I fell between the dock a dumpster also the light was not on
## 34877 EE states fell on hand while playing basketball with client.
## 34878 EE states fell on slick floor injurying left knee, lower leg, ankle and foot.
## 34879 EE states fell on steps coming out of bldg injuring rt hand & knee. ()
## 34880 EE states fell while going into cathell bldg. Injured rt ankle.
## 34881 EE states fell while walking long hall from dock entrance
## 34882 EE states felt dizziness, nervous system abnormalities, extreme duress & stress
## 34883 EE states felt pull in r shoulder/upper arm when opening the door of handicap van
## 34884 EE states finger was scraped on the carpet and wedged under student doing a physical restraint to the floor.
## 34885 EE states finger was smashed between rocks while moving rocks in the stream to dislodge and collectmacroverterbrates in the streambed.
## 34886 EE states fitting sheet metal on hood and racked left arm over exposed sharp edge of sheet metal. ()
## 34887 EE states fixing client's bed; when EE got up felt a catch in right lower back above hip. ()
## 34888 EE states fluid build up under knee as result of physical training during basic training
## 34889 EE states foal kicked out and caught EE in the thigh with foot
## 34890 EE states foot caught bathroom door. Right foot as she was running to answer phone.
## 34891 EE states foot slipped and he caught himself by doing the split before falling to the floor
## 34892 EE states foot slipped off step while taking a pt to ward 522. Hurt lt hip.
## 34893 EE states foot started to hurting appears to be swelling, feels like a strain.
## 34894 EE states foreign object in rt eye.
## 34895 EE states forklift hit bump on dock and steering handle hit wrist
## 34896 EE states found tick when work day was over and EE showered, could not get head out.
## 34897 EE states fumes from cleaning fluid (pine oil) caused eyes to itch
## 34898 EE states fumes from mildew remover came in contact with eyes.
## 34899 EE states gathering necessary keys and equipment for escape drill, shut door on her hand
## 34900 EE states getting a temp on a client. The client started rolling over on her back. EE was trying to hold the client when she felt her right shoulder pop. ()
## 34901 EE states getting back in chair, hit right side ofhead by the timle area.
## 34902 EE states getting client on stretcher; right leg got stuck under stretehcer and she fell back on a metal piece.
## 34903 EE states getting ready to sit in chair, the back of the chair was broke. As I prepared to sit down the chair slipped back, fell out of chair
## 34904 EE states giving a client a bath, repositioned client on high tub felt a tightenging up in the lt shoulder
## 34905 EE states going to ward 238 to assist with body alarm. He was injured during the altercation.
## 34906 EE states going up step when door closed on back of heel (left). ()
## 34907 EE states going upstairs tripped toe of shoe caught step causing me to loose balance and fell up stairs pulled chest muscle
## 34908 EE states got out of chair; client sitting in wheelchair beside me and I stumped over the wheelchair, hit the side of ankle on the foot rest. ()
## 34909 EE states got som contact cleaner in eye either mist in air or on finger
## 34910 EE states grass blew in right eye
## 34911 EE states had a car accident
## 34912 EE states had been lifting and carrying heavy bags containing psychologic materials
## 34913 EE states had direct with inmate that was diagnosed with scabies.
## 34914 EE states had stopped a violator, as EE returned toviolators vehicle to issue citation, he stepped on edge of pavement and felt his ankle give, roll off
## 34915 EE states had to push on carts adn caps fear valley to put load lock up. The position I was in EE lower back popped. The pain got worse
## 34916 EE states had went to car to put uniform in car after entering gatehouse, the door closed on my rt hand tip of index finger, getting caught.
## 34917 EE states hall was being mopped, fell & slipped on soapy floor. I did not see the yellow place card
## 34918 EE states hand caught in the closing door while preventing inmate from leaving cell
## 34919 EE states hand goes numb, wrist feels sore/tight and fingers tense/lock-up
## 34920 EE states hand started hurting & swelled slightly while work. After awhile it started to hurt badly.
## 34921 EE states hand was in door casing when door closedupon right hand.
## 34922 EE states handling a broom she was scratched on the lt side of check and neck area
## 34923 EE states hands have become itchey and cracked from use of ward gloves and soap
## 34924 EE states harmful fumes caused him to become sick and nauseated.
## 34925 EE states having pain in my thigh which was causedby trying to restrain a patient.
## 34926 EE states he & other maint. Workers were removing ice from sidewalkds in front of building in betwe-en gate house & entrance & felt snap in lower back
## 34927 EE states he accidentally fell down stairs while carrying an inmate personal property causing injury to his arm, elbow, leg, hip, and ankle
## 34928 EE states he accidently bumped into glass while taking pictures---recd a cut on forehand or head?
## 34929 EE states he and another were in a state vehicle on his way to pick up an abseconder stated that he was hit from behind by another vehicle
## 34930 EE states he attempted to help staff with force meds on patient. Writer received a scratch on right arm.
## 34931 EE states he attempted to separte clients during altercation
## 34932 EE states he back into a door wall causing back injury
## 34933 EE states he became dehydrated due to the temper- ature & humidity at the firing range while in recertification training.
## 34934 EE states he became stressed out when he found out that other employees knew he was being investigated
## 34935 EE states he became very hot and collasped
## 34936 EE states he began to feel sick when he passed out
## 34937 EE states he began to have tightness in his chest and shortness of breath
## 34938 EE states he began to strap the load down while ontop of the truck. In process of strapping down load--case of water gave way-EE fell off truck.
## 34939 EE states he begin to have pain in the rt foot due to prolong standing
## 34940 EE states he bent down to tie his shoe and when hestood up he felt a pop in his rt knee
## 34941 EE states he bent over to cut a piece of tape off some furniture when he felt his back pop
## 34942 EE states he bent over to pick up a piece of paperon the floor causing back injury
## 34943 EE states he bent over to pick up some computer cable when he felt pain in lower back.
## 34944 EE states he bent over to pick up some trash and struck his head on the control box
## 34945 EE states he bent to lift plastic crate when he felt a muscle pull in his back
## 34946 EE states he bent to put a table down when he he twisted his back which caused sharp pain.
## 34947 EE states he bit into a hamburger and broke one ofhis tooth
## 34948 EE states he bumped his head on a van door.
## 34949 EE states he bumped his leg on a cell door.
## 34950 EE states he bumped into a dock cutting his rt leg
## 34951 EE states he came in contact with blood while observing an inmate.
## 34952 EE states he came in contact with poison ivy whichhas caused severe blistering and itching on his arms, legs, feet
## 34953 EE states he came in contact with poison ivy.
## 34954 EE states he came in contact with some poison ivy.
## 34955 EE states he caught his left foot under rubber matat console & almost fell over the chair in controlroom and pulled something in his hip.
## 34956 EE states he closed the door on his finger.
## 34957 EE states he confronted a patient about his beha- viors, pt became upset, pt spit in EE face, jumped upand hit EE on lt forehead with fist
## 34958 EE states he cut his finger on a razor blade whilesearching a small black pouch which was on a table
## 34959 EE states he cut his lt hand and finger on a saw blade
## 34960 EE states he cut his lt index finger on a table saw
## 34961 EE states he cut his lt leg on an unknown object while chasing a subject who was trying to run away from being arrested
## 34962 EE states he cut his lt thumb and index finger while removing a coke can from a fence
## 34963 EE states he cut his lt thumb on the laundry buggy
## 34964 EE states he cut his wrist while cutting with a knife
## 34965 EE states he cut thumb on cooler casing while on transfer bus
## 34966 EE states he depressed safetly on board and missedthe board stricking his rt leg with the nail gun.
## 34967 EE states he developed an ear infection during an underwater session
## 34968 EE states he does not remember anything. He was working and the next thing he knew he was being taken to pender memorial hospital.
## 34969 EE states he doesn't know what happened to his back just that he woke up and his back was stiff and hurting
## 34970 EE states he dropped a jug of bleach when it got into his both of his eyes.
## 34971 EE states he dropped a pencil between a desk and file cabinet and while moving both the desk and cabinet to retrieve the pencil he injured abdomen
## 34972 EE states he experience chest pain due to stress.
## 34973 EE states he failed over pole at back of trailer striking his lt knee
## 34974 EE states he fainted causing him to fall to the floor and injured his lt foot/ankle
## 34975 EE states he fell and injured his rib cag
## 34976 EE states he fell and injured his rt ankle
## 34977 EE states he fell and tripped on stairs injuring his rt knee
## 34978 EE states he fell down the stairs from the medical department when his foot slipped on unknown liquid and hurt his foot
## 34979 EE states he fell during training--EE was climbingover a wall and struck his lt finger
## 34980 EE states he fell from a walkway landed on a concrete surface and struck his lt shoulder and lt leg.
## 34981 EE states he fell in a driveway and injured his rt knee
## 34982 EE states he fell in hole in front of staff developement building. Fell face first strained lower back.
## 34983 EE states he fell off a ladder while placing a window in a house--EE strain his lt foot
## 34984 EE states he fell off a water control structure while removing gate boards causing injury to his ribs
## 34985 EE states he fell off bike causing injury to his rt shoulder--EE was demonstrating during a training class
## 34986 EE states he fell off trailor striking his head and nose.
## 34987 EE states he fell on a wet floor causing injury tohis back (inmate clm)
## 34988 EE states he fell on asphalt in front of the gatehouse causing injury to his rt leg
## 34989 EE states he fell on his lt leg.
## 34990 EE states he fell on ice in parking lot causing injury to his head, rt elbow, back, neck, etc
## 34991 EE states he fell on some steps and injured his lt elbow
## 34992 EE states he fell out of his chair injuring his coccyx. The chair had some missing screws.
## 34993 EE states he fell while assisting a pt.
## 34994 EE states he fell while attempting to sit in a chair pulling a muscle in his lt groin area
## 34995 EE states he fell while coming down the tower stepinjuring back and ankle.
## 34996 EE states he felled on his lt side while assistingwith an aggressive pt.
## 34997 EE states he felt light-headed and dizzy.
## 34998 EE states he felt no pain or heard anything pop looked down and noticed wrist was swollen
## 34999 EE states he felt pain in back while drilling a hole for anchor support
## 35000 EE states he felt pain in his back while folding a12 inch ladder.
## 35001 EE states he felt pain in lower back during a routine check while looking under a sewing machine
## 35002 EE states he felt pop in left hip while trying to keep a patient from falling. ** rehab nurse - reverta pegg 828-777-4499 **
## 35003 EE states he felt sharp pain within his stomach /chest area
## 35004 EE states he felt tingling in arm when lifting resident from chair
## 35005 EE states he got a metal splinter in his finger.
## 35006 EE states he got concrete in l hand.
## 35007 EE states he got something in eye doing cleaning up in boiler room.
## 35008 EE states he got something is his eye while cutting a hole in a concrete wall & stated he had on prescr. Glasses, safety glasses & a face ?
## 35009 EE states he grabbed a bag the wrong way and pulled a muscle in his lower back
## 35010 EE states he grasped an inmate's leg to subdue himand the inmate kicked his lt. Hand, hitting it against a chair.
## 35011 EE states he had a allergic reaction to detegent in hotel while on overnight assignment
## 35012 EE states he had a severe allergic reaction to chemical used in the building.
## 35013 EE states he had an allegic reaction to a bee sting
## 35014 EE states he had an altercation with inmate and EE's r 2nd finger was bit
## 35015 EE states he had completed a contraband search of prison bus & as he stepped down on step at rear of bus-was wet-his foot slipped & he fell to ground.
## 35016 EE states he had fired from kneeling position and when standing his lt knee felt like it popped and twisted causing him to fall on both knees
## 35017 EE states he had his hand in window seal while someone was looking at it and it fell on his fingers
## 35018 EE states he had just opened a small ulcer on inmates lip & stuck the needle into his left middle finger
## 35019 EE states he had just unloaed his road squad weapons at the outside gun locker when he was stung by some type of hornet on rt arm
## 35020 EE states he had removed a hot pan from the warmer and was taking them to the serving line and turned the corner to sharp and hit his ankle
## 35021 EE states he had severe pain in lt shoulder while erecting scaffold at entrance of admisistratin building. Left shoulder pain.
## 35022 EE states he had something blow off bath blanket into his eye
## 35023 EE states he had to crawl under a workstation to install 2 network lan cables and 2 power cords. When he finished installation, he rolled over to his right to get up from under the workstation and felt severe pain shoot through his right shoulder. ()
## 35024 EE states he had witnessed an inmate using a tattoo gun, tattooing an inmates back, the employee was trying to get ahold of the improvised tattoo equipment, when he reached down to pick up the device he pricked his right index finger causing a puncture ()
## 35025 EE states he has a spider on his upper back
## 35026 EE states he has been doin quite a bit of hand processing and hand and wrist has become sore.
## 35027 EE states he has been feeling dizzy and having headaches due to exposurer to construction dust innew building
## 35028 EE states he has constant pain of his rt finger and elbow area
## 35029 EE states he has had repeated exposure to open MRSA positive legions. EE also states this has required 2 sinus operations. Persistant sinus infection.
## 35030 EE states he has received a rash on both arms and thighs from unknown reason.
## 35031 EE states he has sores on left thumb, under his right arm, and on right forearm
## 35032 EE states he heard a loud pop under the control panel and a small amount of smoke came out and filled the control room and a bad odor
## 35033 EE states he heard an alarm & responded to it.. When he went around corner he believes he blacked out
## 35034 EE states he helped nurse get im from floor into wheelchair & over next 34hrs. Felt sharp, stabbing pain in lwr. Rt. Back.
## 35035 EE states he hit a bad place in the road that caused back pain due to a prior back condition.
## 35036 EE states he hit his hand with a hammer. Deep abrasion to left hand
## 35037 EE states he hit his head on the metal bars of the exercise area in segregation while trying to secure combative inmate.
## 35038 EE states he hit the microscope with his left elbow during imaging with the microscope.
## 35039 EE states he hurt his back while giving patients baths.
## 35040 EE states he hurt his rt arm elbow, bicep and shoulder when he completed a forward jab into training mat during pr-24 recertificatin
## 35041 EE states he hurt left ankle while placing patientin seclusion & restraint & did not want to be seen on doa.
## 35042 EE states he hurt right foot while restraining a patient.
## 35043 EE states he in process of securing perimeter gatewhen locking mechanism caught on some ice and lostbalance. EE injured left arm and shoulder pain
## 35044 EE states he inhaled harmful chemicals that had been mixed together.
## 35045 EE states he injured both knees while assisting with an aggressive inmate
## 35046 EE states he injured himself during an altercationwith an inmate.
## 35047 EE states he injured himself trying to restrain a pt.
## 35048 EE states he injured his arm and knee while tryingto restrain a pt.
## 35049 EE states he injured his arm during training.
## 35050 EE states he injured his back and leg while tryingto keep a pt from running out of the office.
## 35051 EE states he injured his back and rt wrist while closing the sally port gate
## 35052 EE states he injured his back while attempting to break up a fight between 2 students.
## 35053 EE states he injured his back while attempting to close a door to a dumpster
## 35054 EE states he injured his back while carrying a large box of mail to mail bus
## 35055 EE states he injured his back while chasing a probationer who was trying to escape from the courtroom
## 35056 EE states he injured his back while going down some steps with a hand truck.
## 35057 EE states he injured his back while lifting a bag containing an inmate's property
## 35058 EE states he injured his back while lifting a bookcase
## 35059 EE states he injured his back while lifting an inmate
## 35060 EE states he injured his back while lifting paint buckets.
## 35061 EE states he injured his back while lifting two dessert trays.
## 35062 EE states he injured his back while lifting weightwhich was being tested on a scale
## 35063 EE states he injured his back while lifting.
## 35064 EE states he injured his back while loading wet laundry.
## 35065 EE states he injured his back while opening and closing a large sliding gate.
## 35066 EE states he injured his back while trying to apprehend an offender--foot chased
## 35067 EE states he injured his back while trying to keep two student from fighting.
## 35068 EE states he injured his back while trying to lift a cooler
## 35069 EE states he injured his back while trying to restrain an inmate
## 35070 EE states he injured his back while trying to restrain an inmate.
## 35071 EE states he injured his back while trying to stop a tree from falling down on inmates
## 35072 EE states he injured his back while trying to turnover a 55 gallon motor oil drum
## 35073 EE states he injured his hand while attempting to cleaning some unknown object
## 35074 EE states he injured his knees during an use of force when someone apparently fell on him.
## 35075 EE states he injured his lower back by picking up trash
## 35076 EE states he injured his lower back while bending a pipe on pipe bender
## 35077 EE states he injured his lower back while lifting boxes of computers
## 35078 EE states he injured his lower back while lifting heavy doors.
## 35079 EE states he injured his lower back while trying to keep a pt from falling.
## 35080 EE states he injured his lt ankle while getting out of the car
## 35081 EE states he injured his lt ankle while running.
## 35082 EE states he injured his lt ankle while trying to break up a fight between two students.
## 35083 EE states he injured his lt arm while trying to subdue an inmate.
## 35084 EE states he injured his lt elbow/arm while operating a chainsaw
## 35085 EE states he injured his lt foot while stepping onsome steps.
## 35086 EE states he injured his lt hand while cutting a pipe with a hacksaw.
## 35087 EE states he injured his lt knee while instructinga self defense class.
## 35088 EE states he injured his lt shoulder and neck.
## 35089 EE states he injured his lt shoulder while cuttingdown a locust tree
## 35090 EE states he injured his lt shoulder while moving office furniture
## 35091 EE states he injured his lt shoulder/neck during a self defense training course
## 35092 EE states he injured his lt wrist while removing beds from the hospital.
## 35093 EE states he injured his rt elbow while pulling a pipewrench.
## 35094 EE states he injured his rt hand while pushing himself up
## 35095 EE states he injured his rt hand/wrist during an exercise training course
## 35096 EE states he injured his rt knee during self defense training
## 35097 EE states he injured his rt knee on the console of a vehicle which he was driving
## 35098 EE states he injured his rt knee while trying to stop two inmates from fighting.
## 35099 EE states he injured his rt shoulder and lower back while attempting to restrain an inmate
## 35100 EE states he injured his rt shoulder while trying to practice a move on his partner.
## 35101 EE states he injured left foot when he stepped offprison bus onto shoulder of road and stepped into hole and pulled muscle in left foot.
## 35102 EE states he injured the top of his head-- foot slipped on stairway
## 35103 EE states he is having chest pains.
## 35104 EE states he is having problems with chest pain and sleeping which is caused by work-related stress.
## 35105 EE states he is having uncontrolled itching as a result of reaction to hepatitis b vaccine he received
## 35106 EE states he is suffering from anxiety recurrent depression and other psycho-emotional difficultiesas a result of an investigation by department.
## 35107 EE states he jumped a canal and twisted his lt knee
## 35108 EE states he jumped from a railing of a trailer causing a lt foot injury
## 35109 EE states he kneel down to pick up a screw driver and while raising up he struck his head on the corner of a panel
## 35110 EE states he knocked on the window to get two inmates attention when the window broke cutting rt hand/finger
## 35111 EE states he lifted a beehive box during an inspection and felt pain in his back
## 35112 EE states he lifted a box of paper and injured hisback
## 35113 EE states he lifted a door up by rod the rod slipped causing door to slam cutting part of EE lt middle finger off
## 35114 EE states he lifted a refrigerator compressor about a month ago & his back bothered him for a few days & them improved. Pain has now flared up
## 35115 EE states he lost his balance and fell backward striking his head on a bookcase
## 35116 EE states he lost his balance and fell twisting his rt wrist.
## 35117 EE states he lost his balance while going down a steep hill twisting his rt ankle
## 35118 EE states he missed a step and fell on some stairsinjuring his rt ankle
## 35119 EE states he missed a step and fell striking his side on the metal railing
## 35120 EE states he missed the last step in the middle ofthe stairwell where there is a landing.
## 35121 EE states he nicked inner left ankle while sitting ar noc.
## 35122 EE states he notes gradual onset of pain in his left shoulder/neck area after serving residents meals. Denies any accident or unusual occurrance
## 35123 EE states he notice a red rash on rt knee---- questionable insect bite
## 35124 EE states he noticed a small puncture wound on hisrt forearm.
## 35125 EE states he noticed blisters on his rt foot/toe causing his rt leg to become infected f18 filed
## 35126 EE states he noticed eye irritation and headaches after the flood from hurricane floyd
## 35127 EE states he noticed pain in his lt knee after completing a certification training course.
## 35128 EE states he noticed trainee using axe improperly and began showing him proper use of axe and duringprocess he pulled muscles in lower back.
## 35129 EE states he notices irritation in his eyes and sinuses due to the mold spores on the damp wall from the flood (floyd)
## 35130 EE states he observed a small infected area on the top of his righ shoulder
## 35131 EE states he obtained a scrape from a sheild while extracting an inmate--lt forearm
## 35132 EE states he on a 6ft ladder handing blind & the legs on the ladder gave away. EE was able to brace himself and landed on his feet and fell backwards onto hgluteus maxima. ()
## 35133 EE states he opend door on locker of road squad bus & door fell open striking him in forehead.
## 35134 EE states he opened the bottom of a steamer and hot water ran into his shoe causing burns to his rt foot.
## 35135 EE states he passed out in the bathroom striking his head.
## 35136 EE states he pick up a clock that had fell and struck the back side of his rt hand
## 35137 EE states he pick up a hypodermic needle in parking lot and while trying to secure the needle his lt thumb was punctured
## 35138 EE states he picked up a box from a worktable to handtruck and experienced considerable pain. He states he was wearing a brace.
## 35139 EE states he picked up a bundles of shingles and pulled a muscle in his back.
## 35140 EE states he picked up a piece of metal and rubbedhis rt eye
## 35141 EE states he picked up a shotgun and felt a pop in his back
## 35142 EE states he picked up box of trash bags & felt like he pulled something on the right side of back & hip
## 35143 EE states he picked up laser printer and strained rt elbow and fingers, per sharon with ag's office nothing new recd
## 35144 EE states he picked up property bag of inmate, brown bag had exposed staple, stuck lt middle finger
## 35145 EE states he placed hand restraints on disruptive inmate when inmate kicked EE in the mouth.
## 35146 EE states he pulled a gate open and felt pain in his back
## 35147 EE states he pulled a muscle between his shoulder blade and back while lifing boxes of copy paper
## 35148 EE states he pulled a muscle in his groin area while trying to keep from falling pushing a rolling hand cart
## 35149 EE states he pulled a muscle in his lower back
## 35150 EE states he pulled a muscle in his rt shoulder
## 35151 EE states he pulled a muscle in his rt shoulder while reaching to get an object from an inmate.
## 35152 EE states he pulled a muscle while lifing weights during a physical training test--neck and shoulderarea
## 35153 EE states he pulled a sofa from wall when he felt pain in lower back.
## 35154 EE states he pulled a tick off his back
## 35155 EE states he pulled his back while trying to pre- vent patient from falling off of bed.
## 35156 EE states he pulled muscle in middle finger rt hand while pulling plastic from box of index cards
## 35157 EE states he pulled out in traffic and was involvein an auto accident causing body aches/pain and injured his knee
## 35158 EE states he pushed open the fire door on a hall to secure it let go of the door and placed his handin the door jamb the fire door slammed shut
## 35159 EE states he pushing ht e mower and tripped and fell injuring his lt & rt collarbone, wrists, and upper torso and back.
## 35160 EE states he ran into a pipe that was hanging down
## 35161 EE states he reached down to pick up an item he has dropped when his rt eye struck the dresser drawer
## 35162 EE states he receive tick bites while performing k-9 training. EE is being treated for lyme's disease
## 35163 EE states he received a call on a disturbance on the ballfield & when he turned toward the field, his r. Knee made a loud pop & began to hurt.
## 35164 EE states he received a cut on top of lt hand during a use of force on an inmate.
## 35165 EE states he received a cut to his rt finger while pulling on a cart
## 35166 EE states he received a cut to his rt leg while cutting with a box blade.
## 35167 EE states he received a needlestick to his lt thumb
## 35168 EE states he received a rash on his hands, face, arms, and neck
## 35169 EE states he received a splinter to his rt hand when he grabbed his jacket from the top of the table
## 35170 EE states he remembers going thru the gate fence at lower #5 and he cant remember anything after that
## 35171 EE states he responded to a code 300 upon restraining the inmate was scratched by the inmate or the handcuffs
## 35172 EE states he responded to medical emergency he turned around into the stairs and hit his forehead
## 35173 EE states he sat down on the edge of the table and it kicked out from under him and fell on the floor hitting the lower back and buttock area
## 35174 EE states he sat in a chair it collapsed and he fell to the floor landing on his buttocks--experienced pain in buttocks (hip) areas
## 35175 EE states he sat in chair in control area with broken wheel which turned over. He hit his lt hip, left elbow, shoulder and head on the floor.
## 35176 EE states he saw water running in the janitor closet, when he reached to turn off the water, he slipped on residue on the floor--injured back
## 35177 EE states he scraped knuckles on bookcase while moving a desk
## 35178 EE states he shut a sngl-cell door & it hit lockinmech, shot back & he again slammed door & felt pain in groin area.
## 35179 EE states he slipped 6ft off a bulldozer to groundjarred his upper and lower back, exacerbating prevexisting back pains. ** faulkenbury eligible **
## 35180 EE states he slipped and fell down stairs receiving a heel contusion
## 35181 EE states he slipped and fell in water on floor injurying his lt knee
## 35182 EE states he slipped and fell off sidewalk and injured his back, ankle, knee, and hip
## 35183 EE states he slipped and fell off the steps of bus while unloading inmates---causing injury to his buttocks
## 35184 EE states he slipped and fell on a research vesselboard striking his head on a ladder
## 35185 EE states he slipped and fell on a rubber mat while entering thru a door causing injury to her rt hand and shoulder
## 35186 EE states he slipped and fell on a wet floor causing injury to his neck
## 35187 EE states he slipped and fell on concrete that hadbeen freshly painted causing injury to his lt hand
## 35188 EE states he slipped and fell on ice causing injury to her rt arm
## 35189 EE states he slipped and fell on ice causing injury to her shoulder and hand
## 35190 EE states he slipped and fell on ice causing injury to his head/neck area
## 35191 EE states he slipped and fell on ice causing injury to his rt foot and lt wrist
## 35192 EE states he slipped and fell on ice causing injury to his rt knee
## 35193 EE states he slipped and fell on ice causing injury to his rt knee and groin area
## 35194 EE states he slipped and fell on ice during a sercurity check causing rt shoulder injury
## 35195 EE states he slipped and fell on ice injurying hislt elbow and back
## 35196 EE states he slipped and fell on ice while gettingout of his truck causing injury to his knee
## 35197 EE states he slipped and fell on ice while walkingin parking lot causing injury to his rt hip and lower back
## 35198 EE states he slipped and fell on icy steps causinginjury to his rt knee
## 35199 EE states he slipped and fell on some mud strikinghis head against ground causing injury to his front tooth
## 35200 EE states he slipped and fell on some steps at theentrance of the building injurying his hip and leg
## 35201 EE states he slipped and fell on some water causing him to lose his balance injuring his neck and shoulder area
## 35202 EE states he slipped and fell on some water that was on the floor
## 35203 EE states he slipped and fell on some wet steps.
## 35204 EE states he slipped and fell on stairs
## 35205 EE states he slipped and fell on wet concrete floor causing his rt hand to get caught between the door and brick wall
## 35206 EE states he slipped and fell on wet floor injuring his back
## 35207 EE states he slipped and fell on wet floor injuring his lt knee
## 35208 EE states he slipped and fell on wet floor landingon his back and rt side
## 35209 EE states he slipped and fell on wet floor striking his rt hand/wrist
## 35210 EE states he slipped and fell while coming down the steps.
## 35211 EE states he slipped and fell while entering ambulance transporting inmates to hosp
## 35212 EE states he slipped and fell while going up some steps.
## 35213 EE states he slipped and fell while stepping into a doorway of a cellblock injuring rt arm/knee
## 35214 EE states he slipped and while trying to break fall he injured his lt wrist
## 35215 EE states he slipped off a truck.
## 35216 EE states he slipped on a can and grabbed the fence so he wouldn't fall and cut his hand on fence
## 35217 EE states he slipped on a piece of cardboard at a landfill striking his finger against the truck.
## 35218 EE states he slipped on a piece of ice and fell injuring his lt hand/arm
## 35219 EE states he slipped on a wet floor causing injury to his lower back
## 35220 EE states he slipped on floor stripper and fell injurying his back, head, and neck.
## 35221 EE states he slipped on ice while getting out of the truck twisting his lt knee
## 35222 EE states he slipped on ice while walking on sidewalk causing injury to his lt knee
## 35223 EE states he slipped on icy steps causing injury to his back
## 35224 EE states he slipped on main stairs to bldg. Attempted to catch myself and hit handrail with wrist ()
## 35225 EE states he slipped on some freshly mopped steps but while holding onto the rail to keep from falling he injured his lower back
## 35226 EE states he slipped on some ice and fell.
## 35227 EE states he slipped on some ice and landed on hisback.
## 35228 EE states he slipped on some steps and while trying to prevent the fall he felt sharp pain of his lower back area
## 35229 EE states he slipped on some stripper that was on the floor causing her to slide across the floorinto a cabinet door
## 35230 EE states he slipped on stairs while they were being cleaned.
## 35231 EE states he slipped on steps and fell after showering -- injurying 2nd toe of lt foot (laceration), 3rd toe on lt foot(broken)
## 35232 EE states he slipped on the ice on sidewalk
## 35233 EE states he slipped on wet floor and while tryingto keep from falling his rt knee hit the floor causing his lt foot to slide from under him
## 35234 EE states he slipped on what appeared to be frozen ice injuring low back, left knee, left wrist ()
## 35235 EE states he slipped while checking fence & fence line on southside of upper gate. He has pain in lumbar area.
## 35236 EE states he slippped and fell on ice causing injury to his leg/groin area
## 35237 EE states he slippped and fell on some steps whichwere wet
## 35238 EE states he smashed his lt ring finger on a gate.
## 35239 EE states he smashed his rt finger between a tailgate on a dump truck
## 35240 EE states he sprain his rt ring finger while attempting to put a battery charger on cables of a car
## 35241 EE states he started coughing and pulled a muscle in his neck
## 35242 EE states he started having chest pain after being involved in a use of force on an inmate
## 35243 EE states he started having pain in back & legs while traveling and getting in & out of van over period of time
## 35244 EE states he started to experience pain in lower back sometimes after his pic classes. He hurt all weekend and reported back pain to clinic on 04-09
## 35245 EE states he started to get into the chair on post#2 the chair had blocks of wood under legs and slipped off metal step
## 35246 EE states he started to sit down & the chair just slid out from under him & he hit the floor on his right hip & right arm.
## 35247 EE states he started to walk down from the top of the stairs when his lt foot twisted & he lost his balance & he fell forward & rolled down stairs
## 35248 EE states he started walking and legs started hurting
## 35249 EE states he states he slipped and fell on ice in parking lot injuring his lt wrist
## 35250 EE states he step up onto the sidewalk when he felt a pulled in his lt leg
## 35251 EE states he steped in a hole lost his balance twisting his lower back & strained his back
## 35252 EE states he stepped across landscape timbers striking his heel against the timber
## 35253 EE states he stepped down on his rt foot causing it to twist and pop
## 35254 EE states he stepped into a hole and twisted his lower back
## 35255 EE states he stepped into a hole and twisted his lt ankle.
## 35256 EE states he stepped into a hole and twisted his rt knee
## 35257 EE states he stepped into a hole in ground and twisted his rt ankle
## 35258 EE states he stepped into a hole in the ground and twisted his rt ankle
## 35259 EE states he stepped into a hole striking his lt knee.
## 35260 EE states he stepped off a bus and twisted his rt knee
## 35261 EE states he stepped off a curb and twisted his rt ankle
## 35262 EE states he stepped off a curve and twisted his rt ankle.
## 35263 EE states he stepped off a floor panel and injuredhis lt foot.
## 35264 EE states he stepped off a laundry truck and struck his lt arm on the side of the trailer.
## 35265 EE states he stepped off a ramp and twisted his rt ankle
## 35266 EE states he stepped off a riding lawn mower and twisted his lt ankle
## 35267 EE states he stepped off a sidewalk and tripped on a speed bumper twisting lt ankle.
## 35268 EE states he stepped off a sidewalk and twisted his lower back
## 35269 EE states he stepped off a sidewalk and twisted his lt ankle
## 35270 EE states he stepped off a sidewalk and twisted his rt ankle
## 35271 EE states he stepped off a truck and twisted his lt leg injuring his back.
## 35272 EE states he stepped off concrete on to the groundand lost his balance causing all his weight to shift to his rt ankle
## 35273 EE states he stepped off sidewalk and twisted his rt knee.
## 35274 EE states he stepped off the curb causing him to twist his lt ankle
## 35275 EE states he stepped off the squad bus and twistedhis rt knee
## 35276 EE states he stepped off the van he felt a sharp pain in his lower back
## 35277 EE states he stepped on a cross tie when his rt knee gave away
## 35278 EE states he stepped on a nail that was protrudingfrom a board--EE was wearing his safety boots
## 35279 EE states he stepped on a platform and slipped andfell injuring back, knee, and elbow
## 35280 EE states he stepped on a rock and twisted his lt ankle
## 35281 EE states he stepped on a rock causing him to falltwisting rt knee
## 35282 EE states he stepped on a sewer cap and later feltpain in lower back area & lt ankle/foot. Ttd started 10/18/01..
## 35283 EE states he stepped on an uneven ground and twisted his rt foot
## 35284 EE states he stepped on an uneven sidewalk and twisted his rt leg
## 35285 EE states he stepped on an uneven surface causing a pull muscle of his lt calf(lower leg)
## 35286 EE states he stepped on an unknown object and felta pop in rt knee.
## 35287 EE states he stepped on little stick on sidewalk in front of door leg slid back too fair twisting lt knee
## 35288 EE states he stepped on something under a rubber mat injuring his lt ankle
## 35289 EE states he stepped on top of a box and missed the plank and fell on back of the tractor causing injury to his neck and finger
## 35290 EE states he stepped on unlevel concrete and twisted his rt knee
## 35291 EE states he stepped out of the dorm and slipped on ice and while trying to keep from falling he injured his lt shoulder
## 35292 EE states he stepped out of the state truck and his knee gave out.
## 35293 EE states he stepped over the chain w/his lt leg followed by rt. When foot touched the ground, heard/felt pop & pain in rt calf area..
## 35294 EE states he stepped unto garbage truck when his foot slipped and EE fell backward causing pain in lower back
## 35295 EE states he stepped up into a van when his foot slipped causing him to fall backward to the ground injuring his neck
## 35296 EE states he stepped up into van and hit his head on top of the door opening.
## 35297 EE states he stepped up on steps with lt leg. Pain radiating down leg.
## 35298 EE states he stood up from his chair when the chair turned over and EE fell on his lt side
## 35299 EE states he stood up out of chair as he turned tolook out window his lower back began to spasm
## 35300 EE states he stood up to hand paperwork to the secretary when he felt a sharp pain in his back this caused him to bend over backward
## 35301 EE states he strain his neck and shoulder while operating a ?
## 35302 EE states he strained his back while using a digger
## 35303 EE states he strained left knee during unarmed self-defense training. Strained & swelling to left knee
## 35304 EE states he strained the lower part of his abdomen while installing new landscape
## 35305 EE states he struck a deer while riding in the state vehicle causing injury to his lt and rt knee
## 35306 EE states he struck a wall when some paint chip and went into his rt eye
## 35307 EE states he struck his arm on a railing after stepping on a broom head
## 35308 EE states he struck his head on a metal cell door.
## 35309 EE states he struck his head on a metal shelf causing a scalp lacertion
## 35310 EE states he struck his head on the bottom of the stairs.
## 35311 EE states he struck his head on the bunk while removing personal property from inmate's locker.
## 35312 EE states he struck his head on the corner of a window frame.
## 35313 EE states he struck his lt elbow against the edge of the table.
## 35314 EE states he struck his lt knee on a desk
## 35315 EE states he struck his lt knee on a door
## 35316 EE states he struck his rt hand against a door.
## 35317 EE states he struck his rt knee against a door
## 35318 EE states he struck his rt knee on a desk causing a laceration
## 35319 EE states he struck his rt shoulder against a wallduring a use of force on a inmate
## 35320 EE states he struck his rt thigh on a post which caused him to fall and while trying to break the fall he injured his rt wrist.
## 35321 EE states he struck his shin (leg) while jumping a 5 ft wall during a training course
## 35322 EE states he struck r leg on end of drawer
## 35323 EE states he struck the back of his rt hand on a metal tube.
## 35324 EE states he stumbled on his right leg as he entered office door. His right leg went under his left leg twisting his right knee.
## 35325 EE states he stumped his toe on a brick and fell injuring his rt knee.
## 35326 EE states he thinks he got pink eye from inmate, he noticed irritation 4-5 days ago and went to er.
## 35327 EE states he thought he injured his right shoulderwhen trying to loosen bolts on a clean steam generator.
## 35328 EE states he took a swallow of his soda and his throat began to burn severely.
## 35329 EE states he tried to break up a fight and get a juvenile under control and fell to the cement floor
## 35330 EE states he tried to open a door because it was stuck & he had to pull hard on the door w/both hands & felt pain in l. Arm from elbow to forearm.
## 35331 EE states he tripped & fell while securing brooms & mops in janitor closet located in inmate dayroom
## 35332 EE states he tripped and fell face down on step striking face against the floor
## 35333 EE states he tripped and fell injuring his rt wrist
## 35334 EE states he tripped and fell on some stairs and while trying to catch himself with his lt hand he injured his lt shoulder.
## 35335 EE states he tripped and fell over a black mat injuring his rt hand
## 35336 EE states he tripped and fell over a fan cord injurying his back and lt shoulder.
## 35337 EE states he tripped and fell over a floor grate causing injury to his back
## 35338 EE states he tripped on his way into work. EE injured knee, calf.
## 35339 EE states he tripped on some steps and injured hisback.
## 35340 EE states he tripped over a bag of trash and injured his hand.
## 35341 EE states he tripped over a desk and injured rt knee and rt shoulder
## 35342 EE states he tripped over a floor mat causing low back pain
## 35343 EE states he tripped over a limb that was stickingout from under a bush in a parking lot causing injury to his lt knee, lt hand, and rt hand
## 35344 EE states he turned and walked into some metal pipe that were on the back of a truck resulting ina cut on the rt side of face.
## 35345 EE states he turned ankle over on ramp/uneven pavement
## 35346 EE states he turned his ankle over while coming down from tower 2.
## 35347 EE states he turned his left foot over during a restrant of an agressive client.
## 35348 EE states he turned on the fan when something blew into his lt eye
## 35349 EE states he turned quickly in chair to reach for books
## 35350 EE states he turned to walk into commisary. When apain hit him in rt hip down into rt. Leg. EE statedhe almost fell to the floor.
## 35351 EE states he twisted his (left) wrist as he helped to restrain a patient. ()
## 35352 EE states he twisted his ankle when he stepped outof the restroom injurying his lt foot.
## 35353 EE states he twisted his ankle while performing cell extraction training.
## 35354 EE states he twisted his back while getting out of van
## 35355 EE states he twisted his lt ankle and fell
## 35356 EE states he twisted his lt ankle while emptying trash in stairwell.
## 35357 EE states he twisted his lt foot when he stepped on the corner of the sidewalk.
## 35358 EE states he twisted his lt knee during a site preparation
## 35359 EE states he twisted his lt knee while he was getting out the unit vehicle.
## 35360 EE states he twisted his right knee while doing defense training drills, slipped and felt pop ** EE salary continuance eligible **
## 35361 EE states he twisted his rt ankle while operating an atv machine
## 35362 EE states he twisted rt arm while picking up a bucket of water.
## 35363 EE states he use force on a inmate at the completion of that use of force his lft lower back hur and his 4th finger was swollen.
## 35364 EE states he used his rt foot to push a cement planter away from a door he later felt pain in hisrt knee.
## 35365 EE states he wa typing reports time sheets and narratives for the shift on a contnuous basis
## 35366 EE states he walked into a machinery shop where someone was grinding metal when a piece of the metal flew into EE rt eye
## 35367 EE states he walked into kitchen and slipped on floor, but regained his balance before falling.
## 35368 EE states he walked into two metal pipes that wereon the back of a truck striking him on the rt sideof face.
## 35369 EE states he walked off elevator and walked into a cart that was being pushed by another EE
## 35370 EE states he walking and slipped on some frost that was on the ground injuring his lt arm/hand hip/leg
## 35371 EE states he was a passenger in the state vehicle when the vehicle was struck in the rear by anothervehicle
## 35372 EE states he was adjusting his position in a chair when he felt his wrist pop
## 35373 EE states he was arresting an offender the offender resisted arrest and the offcier grabbed the offender's jacket
## 35374 EE states he was assault by an inmate who strangled him around the neck
## 35375 EE states he was assaulted by an inmate
## 35376 EE states he was assaulted by an inmate on upper left arm
## 35377 EE states he was assaulted by an inmate the inmatebroke his glasses and grabbed his lt hand and bentit
## 35378 EE states he was assaulted by an inmate with a flashlight--striking him in the face
## 35379 EE states he was assaulted by an inmate. EE was struck on the shoulder and the inmate spit in EE's face.
## 35380 EE states he was assaulted by inmate and knocked to ground on concrete landing on right elbow ()
## 35381 EE states he was assaulted by inmate. Abrasion to left cheek, above left eye and has broken tooth
## 35382 EE states he was assaulted by inmate. EE was scratched on both arms, hands, and bruised hip.
## 35383 EE states he was assigned to west yard in which an inmate has been diagnosed with TB.
## 35384 EE states he was assigned to yards 2 and 3 he entered the 1042 bldg. To get paper work pushed the control door shut and his lt hand finger got caught
## 35385 EE states he was assisting a fellow officer who was being assulted by an inmate when he struck his right knee on the concrete floor
## 35386 EE states he was assisting a staff member in placing a patient in a chair and felt a pull in his left side when he turned to lift into chair.
## 35387 EE states he was assisting another officer with a violent inmate & that the inmate hit him on the left wrist.
## 35388 EE states he was assisting client fasten her pantsthe client appeared to be falling backward. EE grasgrasped the client pants causing injury to rt hand
## 35389 EE states he was assisting dump truck operator with lifter, when lifter fell on right toe ()
## 35390 EE states he was assisting in carrying of casket down steps at funeral and experienced pain in lower back area.
## 35391 EE states he was assisting other staff getting patient off floor into geri-chair and felt a pain in lower back.
## 35392 EE states he was assisting pushing a disabled patrol vehicle when he injured his lower back and rt hip.
## 35393 EE states he was assisting restrain a disruptive inmate when he felt a poping sensation in his leftknee, by a sharp shooting painful sensation.
## 35394 EE states he was assisting to locate files when he noticed his rt finger swelling
## 35395 EE states he was assisting with an inmate when his wrist was caught between handcuff.
## 35396 EE states he was assisting with placing a patient in the nci hold and twisted his knee
## 35397 EE states he was attacked by a pt causing an injury to the lt shoulder.
## 35398 EE states he was attacked by a pt.
## 35399 EE states he was attacked by an inmate
## 35400 EE states he was attacked by patient from behind- EE hit patient in the head causing fracture to hishand. Employee resigned 11/26/07.
## 35401 EE states he was attempting arrest when the offender ran forwads a telephone pole a guige supporting it the offender spun around the guide wire... ..
## 35402 EE states he was attempting to frisk inmate after handcuffing him before escorting inmate upstairs to nurse's station to have bllod drawn. Right knee
## 35403 EE states he was attempting to handcuff inmate while holding inmate's left arm, he hit his head on the inmate's left shoulder pushing glasses.
## 35404 EE states he was attempting to help restrain an inmate. EE grabbed inmate around head with his left arm & inmate fell to floor. Rt knee involved
## 35405 EE states he was attempting to open a door in the b-block housing area. He grabbed and yanked the handle and felt his shoulder pop out and back
## 35406 EE states he was attempting to place an inmate in hand restraints, the inmate punched EE in lft temple and scratched lft shoulder and back of the neck
## 35407 EE states he was attempting to redirect an agitatepatient & patient attacked him, hitting & scratch EE also fractured rt little finger.
## 35408 EE states he was attempting to restrain an aggressive inmate when the inmate picked him up and threw him to the cement floor.
## 35409 EE states he was attempting to start a tractor and while jumping off the tractor to disengage thestarter he slipped on ice and fell on his rt knee
## 35410 EE states he was backing out of kitchen, supervising the inmates as they unloaded the truck, EE blacked out and fell hurting l knee
## 35411 EE states he was bitten by a bull dog while serving warrants.
## 35412 EE states he was bitten by a dog on the rt lower leg
## 35413 EE states he was bitten by a dog while on duty at a juvenile home. The dog bit EE on the lt ankle.
## 35414 EE states he was bitten by a spider on the back
## 35415 EE states he was bitten by a spider on the back of neck
## 35416 EE states he was bitten by a spider on the rt arm
## 35417 EE states he was bitten by a spider on the rt handfinger.
## 35418 EE states he was bitten by a tick
## 35419 EE states he was bitten by a tick on the upper rt and lt legs
## 35420 EE states he was bitten by an insect of the lt forearm
## 35421 EE states he was bitten by an insect while supervising recreation unit.
## 35422 EE states he was bitten by dog on the lt leg whilevisiting a probationer home
## 35423 EE states he was bitten by mosquito on the stomach
## 35424 EE states he was bitten by something that has caused reddness of the lower rt leg
## 35425 EE states he was bitten by spider on the back
## 35426 EE states he was bitten on the lt leg by a dog.
## 35427 EE states he was bitten or stung by some unknown type of insect.
## 35428 EE states he was breaking upa fight b/t two inmates when he was struck one of the inmate's chin
## 35429 EE states he was carefully moving tire and it bounced up striking lt middle finger---mashing finger.
## 35430 EE states he was carrying a lap top computer and amail projector under his lt arm and some papers inhis rt hand when his lt foot slipped off sidewalk
## 35431 EE states he was carrying dishes into the dish room when he slipped and fell on the wet floor.
## 35432 EE states he was carrying material three 20', 2" sections of pipe felt pain in back and let pipe hit ground
## 35433 EE states he was carrying table through doorway and hit finger against corner of doorway, cutting right 5th finger.
## 35434 EE states he was chasing a suspect when he fell and injured his lt elbow
## 35435 EE states he was checking fire doors as he turned the door his finger was pinched
## 35436 EE states he was checking items that had been delivered in side of semi-trailer, slipped as he came out, hit lt foot struck rock/stone on ground
## 35437 EE states he was checking rear fire doors and sallyports. Twisted left foot
## 35438 EE states he was checking the yard and stepped down on 1st step and felt a sharp pain in right thigh - pulled right hamstring
## 35439 EE states he was cleaning carpet at eagle landing using carpet extractor machine, machine gave away at the locking pin causing injury to rt front leg ()
## 35440 EE states he was cleaning desk drawer and was stuck with a sewing needle.
## 35441 EE states he was cleaning ice off of windsheild of the state vehicle he was driving and hit rt hand on the windsheild wiper
## 35442 EE states he was cleaning lint trap container on t5 machine and staple stuck in the middle finger on right hand. ()
## 35443 EE states he was climbing a frame ladder when he slipped twisting left knee ()
## 35444 EE states he was climbing down the steps and his foot slipped off the ring and he fell.
## 35445 EE states he was climbing steps to tower 1 when half way up felt his rt knee pop
## 35446 EE states he was closing safety guard on syringe &my hand slipped & stuck the needle into the lt thumb
## 35447 EE states he was coming down a ladder when his l foot got caught on a rung, fell backwards, landinon paint roller pan
## 35448 EE states he was coming down the steps and his right foot slipped causing him to land hard and twist his right ankle.
## 35449 EE states he was coming in the front door of officwhen a probationer was escaping arrest, pushing, throwing EE to the side onto 2 metal chair & floor
## 35450 EE states he was conducting a pat down of an inmate when he completed this he stepped back into some water and his rt foot slipped and twisted rt knee
## 35451 EE states he was conducting a traffic stope and reched overn to his duty bad to grab his flashlight as he was exiting out the car he struck the back of his hand on the steering wheel ()
## 35452 EE states he was conducting a two mile physical fitness test his lower back portion snapped and became very painful
## 35453 EE states he was conducting an investigation of crime scene, slipped on steps---that were wet from rain.
## 35454 EE states he was conducting home visit when he was bitten by two dogs on lt hand and both legs
## 35455 EE states he was conducting the sewing plant fencetest in gatehouse control when he was exposed to chemicals in a fire extinguisher.
## 35456 EE states he was crossing the cannon hall parking lot when he slipped on the icy pavement and fell.
## 35457 EE states he was crossing the street from thomas hall when he tripped on the curbing & fell face first into the pavement.
## 35458 EE states he was cuffing an inmate who had been fighting with inmate. EE hands became contaminatedwith blood
## 35459 EE states he was cutting a fire line in a laurel thicket when stick went into his left nostril
## 35460 EE states he was cutting grass on corr. Unit - west yard-got something in left eye
## 35461 EE states he was cutting through hose with new pocketknife when he cut his lt index finger.
## 35462 EE states he was cutting veg for lunch when the knife slipped and he cut his lt hand
## 35463 EE states he was cutting wire ties off a french knife slipped and cut his middle finger
## 35464 EE states he was demonstrating a kick on the punchingbag and immediately felt pain in his rightfoot and had trouble walking on his foot.
## 35465 EE states he was descending the staircase in bc2a, when his lft foot slipped on the top step, injuringlft ankle, broken, torn ligaments
## 35466 EE states he was directing traiffic at an inter- section and was struck by a vehicle and thrown onto the street.
## 35467 EE states he was dizzy and fell to the floor landing on his right side of his hip and hand. EE also complained of back pain
## 35468 EE states he was doing a wiring project in the furniture bldg. He went to the truck to pick up his supplies and stepped off bank twisting back
## 35469 EE states he was doing curfew cks when coming downa set of steps & 1 of the steps gave way & he felldown steps landing of backside
## 35470 EE states he was doing fire saftey duties and while walking toward the nurses station he stepped on something slick and fell on lt leg and lt hip
## 35471 EE states he was doing ground fighting technique during crdt training & his ankle twisted & made a loud pop.
## 35472 EE states he was driving down freeman mill rd in state veh traffic slowed & began moving again when he was struck in rear by another vehicle
## 35473 EE states he was driving on hwy 70 when a car ahead of him stopped to make left-hand turn. He applied brakes when he rearended vehicle. Back/nck
## 35474 EE states he was driving the college dump truck loaded w/steel-- weight shifted & truck went off edge of road--causing EE to lose control of it.
## 35475 EE states he was ducking under a pipe when he came out on the other side he was struck in the mouth by a pipe hanger.
## 35476 EE states he was dusting high window seals in the stairwell
## 35477 EE states he was engaged in firearms training the injury occured when he was firing the shotgun
## 35478 EE states he was engaged in training as his partner took him to the floor he felt pain in lower back
## 35479 EE states he was entering a gate when an insect bit him on the back of the neck.
## 35480 EE states he was entering dorm, when he slipped ona mat at the front door, causing his right leg & hand to hit the floor.
## 35481 EE states he was entering master conrol, when he struck the back of his right hand on the corner of the lock for the trap door.
## 35482 EE states he was escorting a restrained inmate down stairwell, slipped at bottom of stairs & fullweight transferred to left ankle.
## 35483 EE states he was escorting an inmate from the showers when the inmate turned and head butted hislt. Cheek of his face.
## 35484 EE states he was escorting an inmate to his cell from the shower when inmate refused to return to cell EE had to use physical force to return inmate
## 35485 EE states he was escorting an inmate to segregat- ion and tripped over step down on sidewalk.
## 35486 EE states he was escorting an inmate tot he 208 yard to shut off the water and slipped on ice on sidewalk
## 35487 EE states he was escorting an inmate, attempted tohandcuff inmate, inmate became uncooperative; inmate hit officer on (rt) side of face.
## 35488 EE states he was escorting client back to chair, client legs gave way, causing all weight on EE, while preventing client from fallinf injured back
## 35489 EE states he was evacuating inmates out of cellblock 605. Had scott air pack on.
## 35490 EE states he was exiting the gatehouse, he struck his r elbow on the door
## 35491 EE states he was exiting the kitchen at door f2b, the mat was wet, EE slipped and fell, his rt side of l back, rt knee and rt hip
## 35492 EE states he was exiting unit when he stepped in hole in the parking lot. EE didn't see the hole due to the light being out
## 35493 EE states he was expose to blood from an inmate.
## 35494 EE states he was exposed to TB
## 35495 EE states he was exposed to a patient with suspected active scabies.
## 35496 EE states he was exposed to blood from an inmate while restraining the inmate.
## 35497 EE states he was exposed to blood which touch his open wound on his rt thumb
## 35498 EE states he was exposed to blood while making an arrest
## 35499 EE states he was exposed to bodily fluid while performing cpr on an inmate
## 35500 EE states he was exposed to harmful chemicals
## 35501 EE states he was exposed to pepper spray while escorting inmates to shower
## 35502 EE states he was exposed to pinkeye while supervising trainees.
## 35503 EE states he was exposed to poison ivy while cutting and removing a tree that fell in the road.
## 35504 EE states he was exposed to poison ivy while demonstrating to an inmate how to cut with a weed-eater.
## 35505 EE states he was exposed to poison sumac which hascaused a rash on parts of his body.
## 35506 EE states he was exposed to scabies from an inmate
## 35507 EE states he was exposed to scabies from several students.
## 35508 EE states he was exposed to tuberculosis
## 35509 EE states he was exposed to tuberculosis when he went to visit a probationer in jail.
## 35510 EE states he was exposed to tuberculosis.
## 35511 EE states he was faxing papers & papers fell behind printer & when he went to pick up papers, his head bumped cabinet mounted on wall ()
## 35512 EE states he was feeding patients and felt something go into his eye.
## 35513 EE states he was flushing an tv line and stock himelf with the needle in his lt index finger
## 35514 EE states he was getting off forklift when the back of his rt thigh was cut by a metal clip
## 35515 EE states he was getting off golf cart -- client hit EE -- EE slipped on the metal bar on the cart & fell hitting head on golf cart & hurt rt shldr
## 35516 EE states he was getting out of chair to hand overthe keys and the desk when he stood up his rt side of his rt foot rolled under
## 35517 EE states he was getting out of roving patrol and as he went to close the driver side door it struck him on the left eyebrow
## 35518 EE states he was getting out of van and his foot stuck on the running board and he started to fall, caught self with rt foot and twisted knee
## 35519 EE states he was getting ready to hook up trailer and he felt a sharp pain in his chest.
## 35520 EE states he was getting up and the hydraulic cylinger collasped and jerked his back
## 35521 EE states he was going down stairs from control center # 3 to control center #2 when his foot slipped & he fell before catching himself.
## 35522 EE states he was going down the tower stairs, his rt food slipped off of the step, he was trying to step on. He landed awkwardly on his rt. Leg.
## 35523 EE states he was going home, stepped off curb fell in circle area in front of pci building
## 35524 EE states he was going to bathroom and upon returning down hall he slipped in some water and hurt his lt knee and back
## 35525 EE states he was going to staff smokin area & twisted left ankle & it popped & he felt fine.
## 35526 EE states he was going up the front steps and slipped and fell. ()
## 35527 EE states he was going upstairs into control room, when his ankle gave away and fell hitting his r elbow on stairway railing
## 35528 EE states he was handing inmate folders out trap door to officer & staple from one of the folders caught lt-wrist area causing injury.
## 35529 EE states he was handing out the mail when some letters fell out of his hand. EE bent down to pickup letters and struck his head against door catch.
## 35530 EE states he was having trouble gathering his thoughts and his blood pressure was high causing him to feel nausea and vomiting.
## 35531 EE states he was helping a client sit down. The client grabbed EE's arm and jerked it several times and then his the EE's arm. Human bite on lft arm
## 35532 EE states he was helping another officer try to get control of an inmate who was resisting and somehow injured left ring finger and forehead.
## 35533 EE states he was helping escort inmate out of cell612 due to paper fire in dayroom area.
## 35534 EE states he was helping load chairs onto a truck to transport to dor's main building. Wheels of one chair caught on side of loading ramp. As EE tried to lift chair & unhinge wheel to get it back on ramp, he heard loud pop at his shoulder & felt pain.
## 35535 EE states he was helping to apprehend an inmate when another officer placed inmate face down on bed and pulled EE along with inmate.
## 35536 EE states he was hit by the door, his lower back might have been affected although he was hit in the region of the upper back
## 35537 EE states he was hit in the mouth while trying to control an inmate EE 25% left ring finger
## 35538 EE states he was hit in the rear driver side of state vehicle by another car.
## 35539 EE states he was holding a box of blankets to the side so he could move the matress and box springs to place blankets in storage area.
## 35540 EE states he was holding an empty iv bag with the tubing attached to the needle inside port the needle pierced through the bag into rt finger
## 35541 EE states he was hooking trailer to community worksquad van when he felt a sharp pain in the lower right side of back.
## 35542 EE states he was in a confrontation with an inmateto the floor and hit his arm on the floor or wall
## 35543 EE states he was in a session with an inmate and inmate became aggitated and pushed EE out of chairinto wall lacerating EE's elbow.
## 35544 EE states he was in a smoke filled trng rm when another individual turned around and scott airpack he was wearing hit him in the mouth & chipped tooth
## 35545 EE states he was in advanced crdt/pert training attempting an escape technique & thumb bent back- wards
## 35546 EE states he was in altercation with a inmate
## 35547 EE states he was in basement helping put in lightscaught my foot in some pi tripped and fell. Started feeling dizzy & lightheaded after I fell
## 35548 EE states he was in contact with a pt who has a rash which has caused swelling and itching of the eye.
## 35549 EE states he was in contact with an immate who tested positive for tuberculosis
## 35550 EE states he was in line up when the word about the staph infection breakout at bcci was announcedconcerned of sore on his upper arm.
## 35551 EE states he was in process of shoveling walk way due to snow when he stepped out of vehicle lost balance fell injuring left side hip area ()
## 35552 EE states he was in pursuit of motorcycle, when he lost control and slid across the centerline ans struck a stopped tractor-trailer head-on
## 35553 EE states he was in squatting position to work on a keyboard and his knee shifted and caught pain in rt knee
## 35554 EE states he was in the hallway putting pt in therapeutic hold, injured back, pt was fighting against him.
## 35555 EE states he was in the process of being relieved of the control tower when he slipped down a couple of stairs causing him to hit his l back/arm
## 35556 EE states he was in the process of sitting down ina chair, so he could log some calls for inmates. Another staff member did not notice him attempting
## 35557 EE states he was injured by lifting scale and slipping off the curb
## 35558 EE states he was injured on johnson yard, specificsnot known due to employee resigning
## 35559 EE states he was injured while placing patient in nci(therapeutic hold) injured lt leg.
## 35560 EE states he was injuryed while lifting cases of food and water during the hurricane floyd relief operation--injurying his upper/lower back & lt leg
## 35561 EE states he was inspecting belts and pulley on the exhaust fan a gust of wind blew the turbine which caused the pulley to rotate cutting EE finge
## 35562 EE states he was inspecting wire cover b/t sinks on the 4th floor and a screw was loose and cut his finger
## 35563 EE states he was installing a steal bed frame & when he bent down to pick up frame, felt sharp pain in back ()
## 35564 EE states he was installing an electric motor & itslipped catching his finger between the motor & the machine.
## 35565 EE states he was investigating a collison--he cut his arm on broken glass that came from a van door window that swung forward suddenly.
## 35566 EE states he was involved in a confrontation with an inmate which has caused an injury to his lt armand rt elbow
## 35567 EE states he was involved in a motor vehicle accident
## 35568 EE states he was involved in a motor vehicle accident causing a back injury
## 35569 EE states he was involved in a motor vehicle accident causing injury to his ribs
## 35570 EE states he was involved in a motor vehicle accident injuring his lower rt side and rt hip.
## 35571 EE states he was involved in a motor vehicle accident injurying his lt shoulder.
## 35572 EE states he was involved in a motor vehicle accident injurying his neck and rt wrist.
## 35573 EE states he was involved in a motor vehicle accident when a deer ran out in front of the vehicle
## 35574 EE states he was involved in a motor vehicle accident when another vehicle struck his vehicle from the rear
## 35575 EE states he was involved in a motor vehicle accident when another vehicle struck his vehicle from the rear causing back injury
## 35576 EE states he was involved in a motor vehicle accident when the patrol car struck a concrete drainage cover in the median--EE injured his back
## 35577 EE states he was involved in a motor vehicle accident when the vehicle hydro plane and struck another vehicle
## 35578 EE states he was involved in a motor vehicle accident while transporting inmates
## 35579 EE states he was involved in a motor vehicle accident while transporting parolees
## 35580 EE states he was involved in a motor vehicle accident, his patrol vehicle was struck by anothervehicle that failed to yield at an intersection.
## 35581 EE states he was involved in a motor vehicle accident. N
## 35582 EE states he was involved in a motor vehicle accident. The vehicle hydro plane and struck another vehicle.
## 35583 EE states he was involved in a use of force & fellto floor while attempting to restrain an inmate. EE initially reported injury on 5/5/04
## 35584 EE states he was involved in an arrest when the suspect resisted and an altercation ensued-- injurying EE rt hand/rt shoulder/head.
## 35585 EE states he was involved in the annual firearms class. During the training EE states that powder or metal from the shotgun blast entered left eye.
## 35586 EE states he was involved in the prison emergency reposne training got posion ivy on his arms hands then spread all over body
## 35587 EE states he was involved ina use of force subduing an inmate when the injury occured
## 35588 EE states he was invoved in altercation in which liquid was thrown
## 35589 EE states he was kicked by a cow while unloading atrailer.
## 35590 EE states he was kneeling on right knee he picked up case of juices twisting from right to left and felt pain in right lower back
## 35591 EE states he was knock down by another EE which caused injury to his lt shoulder.
## 35592 EE states he was leaning against a table when a bar frame fell on him.
## 35593 EE states he was leaning out of the bathroom when the hot water heater exploded.
## 35594 EE states he was leaning over rail to repair sheetrock and strained his back
## 35595 EE states he was letting inmated in and out of cell blocks when he scraped his ankle with the block door.
## 35596 EE states he was lifting a box of compressors and the weight shifted, causing his arm to twist and he felt his elbow snap.
## 35597 EE states he was lifting a box of targets and was placing them on top of steel cabinet and felt pain in his stomach
## 35598 EE states he was lifting and setting boards into place and holding them in place to be nailed for a storage building.
## 35599 EE states he was lifting handling cart onto the back of gator vehicle and felt pain in shoulder
## 35600 EE states he was lifting heavy boxes and pallets and sustained hernia
## 35601 EE states he was lifting patient and felt pain in his back
## 35602 EE states he was lifting steel from a steel rack to move to a layout table when he felt something pull in his back
## 35603 EE states he was lightning a gas grill when it exploded.
## 35604 EE states he was loading limbs on truck to haul to burn pile.
## 35605 EE states he was lowering the tailgate og truck and struck his elbow on the loading dock.
## 35606 EE states he was making a perimeter check and stepped in a hole with right foot causing him to lose balance, causing a strain in groin area.
## 35607 EE states he was making his round when he saw a table in middle of floor and pushed it in corneree back started hurting.
## 35608 EE states he was making rounds repositioning pt and started having bac, hand and leg pain
## 35609 EE states he was measuring and gauging base tile and cut his lt finger on exposed lath wire
## 35610 EE states he was moving a desk and pulled bac)
## 35611 EE states he was moving a desk back into an office that he had tiled when he felt a sharp pain in upper back
## 35612 EE states he was moving roofing shingles from from ground to back of truck for relocation and injured his lower rt back.
## 35613 EE states he was not feeling well and could not breath
## 35614 EE states he was obsering inmates. EE stepped backwith his left leg causing him to fall on his tailbone.
## 35615 EE states he was observing inmates at weight bldg at mcu when inmate dropped weights and weight bounced on the ground and hit his lt ankle
## 35616 EE states he was observing the supply closet, thatis going to be rentovated and was bit by somehtingunder right arm
## 35617 EE states he was on a field visit to taxpayer in mt. Airy nc. Since tp wasn't home, he left business card in door. As he walked back to his car, tp's dog lunged & bit EE's right thigh, leaving 2 puncture wounds, scratches & bruising. ()
## 35618 EE states he was on break sitting in the computer room, texting, felt an itching feeling, scratched. Didnt see anything on him. Later used an alcohol wipe on it. Swollen the next day. ()
## 35619 EE states he was on call enroute to the unit when he hit an ice patch on the highway went into the shoulder and flipped vehicle
## 35620 EE states he was on foot patrol in the school of ed checking property when he step off edge of stage causing fall injuring left toe, left ankle & lower back.
## 35621 EE states he was on loading dock saw cart begin to roll grabbed cart and felt something pop in his back
## 35622 EE states he was on post six and had a seizure and fell to the rt and hit his head and rt shoulders
## 35623 EE states he was on scaffold and he swung around and felt pull in shoulder
## 35624 EE states he was on the floor trying to seperate inmates fighting & was affected by oc pepper sprayhe also pulled muscle in shoulder.
## 35625 EE states he was on the yard by the back door of tthe abe/ged classroom when an insect flew into hisrt. Eye, stung or bit eye.
## 35626 EE states he was opening cabinet he was struck by a piece of plastic in lt eye
## 35627 EE states he was opening doors & a large garage door of programs. When finished rtnd to the sgt's ofc & his lt palm & index finger started swelling
## 35628 EE states he was opening steel door at entrance ofhigh rise & the door came across top of foot striking his right foot/toes
## 35629 EE states he was opening the double gates near recieving and stepped in a hole with his left foot
## 35630 EE states he was packing inmate's property. While EE was taking inmates's pants out of his locker hefelt a sharp point stick in his 4th right finger.
## 35631 EE states he was participating in a game with another resident assistant and EE ran into a column in from of the library and cut his eye.
## 35632 EE states he was participating in the required physical fitness run--during the run EE experienced a cramp in his groin area.
## 35633 EE states he was passenger in a state van. A car pulled out the intersection and the van was unableto avoid a collison, striking the car
## 35634 EE states he was passing by a fire alarm when the alarm went off causing hearing loss and ringing of ears
## 35635 EE states he was passing out dept event surveys when he was bitten by a dog.
## 35636 EE states he was pat searching an inmate when a pencil in the inmates pocket broke & the point. Stuck EE in meaty part of right hand
## 35637 EE states he was performing a rectal exam on hiv inmate when the glove compromised and fecal material and body fluids contaminated his rt hand
## 35638 EE states he was performing a use of force on an inmate, he hit his right hand on the bunk in the cell, causing injury.
## 35639 EE states he was performing fence test using metal rod; dropped metal rod & hit lt index fingeragainst metal fence
## 35640 EE states he was performing front rolls during defensive tactics instruction--rolled on lt shoulder resulting in pain in upr. Muscles of shld
## 35641 EE states he was performing training when he felt something pop in his lower back
## 35642 EE states he was picked up inmates personal property while standing up states that he turned to the rt and his back popped
## 35643 EE states he was picking up a chair to move it outof the way and a nail punctured and cut the middlefinger on left hand.
## 35644 EE states he was picking up a trash can with cabbage inside to empty into dumpster and felt pain to his lower back
## 35645 EE states he was picking up trash and debris from the off campus warehouse. When picking up an object, right thumb was cut. ()
## 35646 EE states he was picking up trash when a inmate threw what is thought to be urine on him.
## 35647 EE states he was picking up trays on the upper tier of unit I a dorm when he pep the trap of altor sanders, and inmate threw liquid in his face like piss. ()
## 35648 EE states he was placing a wood cabinet into cart when a piece of board came loose and stroke EE with a rusty nail on index finger on left hand. ()
## 35649 EE states he was placing combative patient in nci hold and fell on back.
## 35650 EE states he was placing forms in file cabinet while on limited duty, bent down to place a document in a file and felt some pains in back
## 35651 EE states he was placing items in the rear of the car when his foot slipped of the brake causing thecar to jerk injuring his back.
## 35652 EE states he was placing ppv #2 into rotation, while getting into vehicle left knee popped
## 35653 EE states he was placing student in pic hold and hit knee/ shoulder.
## 35654 EE states he was playing basketball w/other team members when he went for a lay-up & was grabbed by someone. He came down hard on lft leg. Torn ligament
## 35655 EE states he was practicing patient escape & fell back onto shaft causing a pop in his right knee.
## 35656 EE states he was preparing sauce for supper pouring sauce from one pot to another EE states sauce spilled on his rt-hand.
## 35657 EE states he was proceeding through the main door at master control when the door was shut on me andleft on it wasn't opened until other EE opened
## 35658 EE states he was processing a criminal offender sentenced to probation which requires close conversation for a prolonged period in an office setting
## 35659 EE states he was pulling a hose around a house during a fire when he felt a pop in his right calf causing pain. ()
## 35660 EE states he was pulling a load of three boxes up two flights of stairs when he felt something pull in his rt lower back
## 35661 EE states he was pulling a rack when he struck hishand on a door way wall.
## 35662 EE states he was pulling tape off a container whenhe fell off of a ladder causing upper body contusion
## 35663 EE states he was pulling trash out of one of the labs and yanked the bag up fast, some liquid stuffsplashed into EE's face and got into lt eye
## 35664 EE states he was pulling/moving furniture from the quade and after work felt pain on his back ()
## 35665 EE states he was pushed against a wall by an inmate while searching the inmate.
## 35666 EE states he was pushed by an inmate fell to the floor injuring his rt hand/wrist
## 35667 EE states he was pushed by an inmate in the chest area
## 35668 EE states he was pushing a desk on a dolly and felt a pop in his foot, then got a charlie horsed in his calf
## 35669 EE states he was pushing a diabled vehicle off theroadway and sprained his left big toe.
## 35670 EE states he was pushing equip. Off truck bed, tangled ft. In cloth os
## 35671 EE states he was putting something under the patient to lift off mat. Patient uncrossed his legs and struck EE in lft eye
## 35672 EE states he was putting the contraband in the file cabinet, the cap came off and needle stuck him in the finger
## 35673 EE states he was putting up stock in the janitors closet when he turned and hit his left elbow on a wooden shelf. ()
## 35674 EE states he was reaching to get a box off wooden shelf and a splinter embedded into lt forearm
## 35675 EE states he was removing a pinic table when the seat of the pinic table fell on his lt hand.
## 35676 EE states he was removing battery packs from cordless drill and having to reach far apart and he strained his lt thumb
## 35677 EE states he was removing carpet and was pushing a scraper with his lt foot and injuried his rt knee
## 35678 EE states he was removing chairs from a classroom for floor stripping and waxing when he became short of breath, felt faint with some numbness.
## 35679 EE states he was removing promotion tent and cut hand--index finger.
## 35680 EE states he was removing the clean out plug from sewage line and pressure from the line covered him in completaly with human feces
## 35681 EE states he was repairing a panic hardware on the glass doors, a student closed the door smashing his r middle finger in the door jam
## 35682 EE states he was repairing the refrigeration system when a leak occurred, caused burns to both hands
## 35683 EE states he was replacing end of cord with the phillips head screwdriver when it slipped & went into into inside of lt hand knuckle on index finger.
## 35684 EE states he was replacing pipe on fire pump when he got something in his lt eye.
## 35685 EE states he was responded to several complaints from people on pier, EE jumped from pier to sand dune, to inspect people on beach
## 35686 EE states he was responding to a call when he injured his heel on this rt foot.
## 35687 EE states he was responding to a fight & while exiting through the yard gate he fell and scraped both knees
## 35688 EE states he was responding to an aggressive patient and his leg was caught in the leg of the chair and he twisted his ankle.
## 35689 EE states he was responding to fight in bldg#2 while running down the sidewalk he slipped and fell on his back
## 35690 EE states he was restraining an inmate who was attempting to break free from his grasp when EE felt a tug in his shoulder
## 35691 EE states he was role playing as an inmate during a cell extraction drill.. States he fell back & skinned the backs of both arms & bumped back of head
## 35692 EE states he was rotating stock and unloading truck. He states he moved around 150lbs. And felta little twinge in his lower back
## 35693 EE states he was running bloodhounds when he injured rt foot/toe
## 35694 EE states he was running to another unit to asst. In a fire drill and injured his toe.
## 35695 EE states he was sawing plywood when the saw kicked the wood into his stomach and side. ()
## 35696 EE states he was scratched by a fingernail of a parolee
## 35697 EE states he was scratched by a pt.
## 35698 EE states he was screeding concrete when he strained his r shoulder.
## 35699 EE states he was searching an inmate on the recreational field he alleges that the inmate moved causing him to jam his rt 2nd finger
## 35700 EE states he was searching and a tatoo needle struck rt finger
## 35701 EE states he was shutting down fire hydrant he wasusing to fill water tank when water from other hose connection knocked him backward into pipe
## 35702 EE states he was sitting at control and another officer was spraying bleach to clean desk and bleach splashed off desk into his eye.
## 35703 EE states he was sitting at desk, when he went to get up he pushed the chair back and the back legs broke causing him to fall to the floor
## 35704 EE states he was sitting at his desk when he pull out his work tray and when he stood up he struck his chest on the tray
## 35705 EE states he was sitting at the control desk in building 1044 when his hand started to itch then swell
## 35706 EE states he was sitting in a chair in the control room when the lt rear leg broke off causing him to fall on the floor and hitting the back of his
## 35707 EE states he was sitting in chair looking through release dates books in order to file material
## 35708 EE states he was sitting in my chair and my chair legs broke ()
## 35709 EE states he was spit on the neck by an inmate
## 35710 EE states he was sprayed into my face and eyes with oc pepper spray (training). Spray and particles got into eyes causing pain & irritation
## 35711 EE states he was sprayed with pepper spray during a training session. This has caused respiratory problems.
## 35712 EE states he was spraying weed on 20 acre land and was attacked by a tick was removed surgically.
## 35713 EE states he was stacking cooler lids when a lid fell and struck EE on the top of the head.
## 35714 EE states he was stacking trays from conveyor belt3 at a time when he felt pain in his back
## 35715 EE states he was standing at a cell door and inmate spit on him
## 35716 EE states he was standing at the kitchen door while watching inmates during breakfast
## 35717 EE states he was standing behind a vistor when she collapsed backward into him causing him to bent his back backwards as he tried to support her back
## 35718 EE states he was standing in a ditch bank when dirt started caving in causing EE to lose his balance and fall injurying his back.
## 35719 EE states he was standing on a floor panel which broke causing EE foot to drop 12" to the ground.
## 35720 EE states he was standing on walk outside the front door waiting for line-up to start when he was hit in the head bu a rock thrown over fence.
## 35721 EE states he was standing outside inmate's cell door when inmate took cup, dipped in toilet, & threw on his left arm, torso, and leg.
## 35722 EE states he was standing talking to another officer when he fainted striking the back of his head and elbow on the floor
## 35723 EE states he was standing to retrieve a sign bracket to put signs out when his rt knee struck the door causing his knee cap to be dislocated.
## 35724 EE states he was standing up off toilet when he slipped on the wet floor and trying to stop the fall he twisted his back.
## 35725 EE states he was stepping down from a step and hisleft knee twisted.
## 35726 EE states he was stepping from carpet to tile floor, his foot slid and he went down on knees
## 35727 EE states he was stepping into control room, rreached back to close the door, his ring was caught on the laten, the ring cut into his finger
## 35728 EE states he was stepping over six inch wall and rocks on the other side gave away causing him to twist his lt knee
## 35729 EE states he was stopped to change a flat tire. The tire fell on his left middle finger while mounting on state vehicle's right wheel.
## 35730 EE states he was stretching his lt arm when the sallyport door closed on his arm
## 35731 EE states he was stripping the 2nd floor hallway when he slipped and fell in stripper ()
## 35732 EE states he was struck by a door striking him on the upper cheek, rt hand, and rt knee.
## 35733 EE states he was struck by a flying object while assisting a trainee
## 35734 EE states he was struck by a pt on the rt cheek.
## 35735 EE states he was struck by an aggressive patient
## 35736 EE states he was struck by an inmate on the back of the head
## 35737 EE states he was struck by an inmate on the rt cheek and head
## 35738 EE states he was struck by inmate on the side of face
## 35739 EE states he was struck by patient causing injury to back and shoulder area.
## 35740 EE states he was struck in the abdomen by an inmate.
## 35741 EE states he was struck in the face by an inmate and also got pepper spray in both eyes.
## 35742 EE states he was struck in the face by an inmate on the rt side of face. EE eye glasses was broken.
## 35743 EE states he was struck in the face by an inmate.
## 35744 EE states he was struck in the head by a student.
## 35745 EE states he was struck in the head by an inmate.
## 35746 EE states he was struck in the mouth by an inmate. He also received minor scrapes to his lt and rt wrist.
## 35747 EE states he was struck in the mouth by pt.
## 35748 EE states he was struck in the nose by a patient.
## 35749 EE states he was struck in the rt eye by an inmate
## 35750 EE states he was struck on the head by an inmate
## 35751 EE states he was struck on the lt side of back by an inmate while restraining the inmate.
## 35752 EE states he was struck on the lt side of face by a patient.
## 35753 EE states he was struck several times in the head and facial area by an inmate.
## 35754 EE states he was struck w/ sudden dizziness, nausea, which made him turn blue in color. He turned pale w/ a cold clammy sweat. Cause unknown.
## 35755 EE states he was strugling with inmate during use of force and hit his left knee on teh side of the bed, he fell against the bed.
## 35756 EE states he was stuck by the end of a knife bladewhile searching the janitor's closet. Stuck lft hand palm under thumb.
## 35757 EE states he was stung by a bee on the head, lt armand rt arm
## 35758 EE states he was stung by a bee on the lt arm
## 35759 EE states he was stung by a bee on the rt eye
## 35760 EE states he was stung by a bee on the rt forearm
## 35761 EE states he was stung by a bee on the rt forearm.
## 35762 EE states he was stung by a wasp on lt hand
## 35763 EE states he was stung by a wasp on the ear, arm, and chin area
## 35764 EE states he was stung by a wasp on the lt cheek.
## 35765 EE states he was stung by a wasp on the rt hand
## 35766 EE states he was stung by a wasp on the rt side ofneck
## 35767 EE states he was stung by a yellow jacket on the lt wrist area.
## 35768 EE states he was stung by a yellow jacket on the rt leg.
## 35769 EE states he was stung by an insect on the lip
## 35770 EE states he was supervisin bathroom breaks for the inmates and am inmate struck EE in the mouth with his closed fist.
## 35771 EE states he was supervising an inmate moving a pallet of stock from the freight elevator pallet started to turn over
## 35772 EE states he was supervising an inmate with a weedeater some of the debris struck him under his lt eye
## 35773 EE states he was supervising inmates returning to the housing floor when he was struck in face with a closed fist of inmate
## 35774 EE states he was supervising maintenence in the 1043 building. Maintenece was drilling some holes in the fans when some steel got into EE's eye.
## 35775 EE states he was supervising unit 8 when he was assaulted by inmate.
## 35776 EE states he was supv inmates in dng hall. Assisting capt. Mccrary, sprayed with o. C., fell to floor, others atop him. Struck head and r knee on floor.
## 35777 EE states he was sweeping the floor with push broom and tripped over chair leg
## 35778 EE states he was taking bag of charts off cart when the charts fell on his lt hand
## 35779 EE states he was taking food out of the steamer and steam flew out on hand--probably 1st deg burn to lft hand
## 35780 EE states he was taking inmate from one part of prison to another. As inmate walked through door EE was pulling it shut-finger got caught between
## 35781 EE states he was talking to another staff person who was sitting down, he squatted and felt his left knee pop.
## 35782 EE states he was talking to co-workers when one of the co-workers grabbed him around the neck
## 35783 EE states he was talking to inmates when his right foot stuck and twisted knee, making a popping sound
## 35784 EE states he was tearing out a wall when his righthand slipped and struck a metal stud cutting his hand.
## 35785 EE states he was tearing t-shirts into paint rags when he felt a pop in rt shoulder.
## 35786 EE states he was the attacker in a r. A. D. Class when a participant in the class kicked him in the right knee causing it to pop and he fell down.
## 35787 EE states he was threatened by a student with a pencil and both struggled over pencil.
## 35788 EE states he was thrown from a fast track causing a back injury
## 35789 EE states he was thrown off a horse to the ground
## 35790 EE states he was training a dog when he was bittenby the dog
## 35791 EE states he was training how to open gate, stood up and hit the razor wire with top of his head
## 35792 EE states he was transporting a female offender when it was discovered she was being treated for TB
## 35793 EE states he was traveling in state-owned vehicle on state business. Second vehicle operator shiftedlanes & turned in front of EE causing accident.
## 35794 EE states he was traveling west on crab creek rd when a vehicle approaching from opposite directionother vehicle turne infront of EE.
## 35795 EE states he was trimming a piece of tile fit under a colum when the tile broke causing the utility knife he was using to cut the tile cut
## 35796 EE states he was truck in the rear by a truck injurying his neck, shoulder, and back.
## 35797 EE states he was trying to arrest an offender. Offender resisted and assulted EE.
## 35798 EE states he was trying to assist with putting a pt in Mr And fell over another cna during transferof pt from floor to bed.
## 35799 EE states he was trying to calm a client when the client bit EE on right arm
## 35800 EE states he was trying to gain control and subdue inmate, EE took hold of inmate's pants from the rear and fell on his rt knee
## 35801 EE states he was trying to move piano which was onwheels and pulled on piano but it didn't budge one of the wheels was off felt pull in back
## 35802 EE states he was trying to open the door to fire proof cabinet which was hard to open. When it opened the upper corner hit him in the left temple
## 35803 EE states he was trying to place handcuffs on inmate.
## 35804 EE states he was trying to prevent from falling & could not support the patients weight and patient fell injuring EE's back.
## 35805 EE states he was trying to prevent patient from hitting his head and it was EE's 1st day back froman automobile accident he was involved in.
## 35806 EE states he was trying to stop two patients from fighting and he fell on his knees. A patient had kicked EE's knees on 03/09/2004
## 35807 EE states he was turning off water next to cell 601-1 when inmate threw liquid through a crack in the door on him.
## 35808 EE states he was turning water off to two cells and an inmate threw a watery substance on him. (possibley urine)
## 35809 EE states he was tyring to stop a inmate from pulling a tv off the wall and the inmate turned and hit EE in the mouth.
## 35810 EE states he was unaware of accident until he noticed a redness and was sore
## 35811 EE states he was uncapping needle after giving injection and had a needle stick in the left indexfinger.
## 35812 EE states he was unloading a truck in tarboro and stepped off the side of the curb injurying his rt knee.
## 35813 EE states he was unloading equipment from the worktruck to work in basement. EE stepped in a hole inthe pavement and twisted his right knee.
## 35814 EE states he was unloading stage platfoms from truck, as he removed 1 platform, the other one pinned him against the truck wall
## 35815 EE states he was unloading supplies when he slipped on ice covered walkway and fell injuring his left knee. Ice was reported but not treated
## 35816 EE states he was unlocking the door the the education building when the accidentally tripped and fell forward on the concrete pad.
## 35817 EE states he was unstopping the soap tube when a soap ball left the tube and bounced off the ballerand bounced back and hit him in the right eye.
## 35818 EE states he was upset when he struck the corkboard on the wall
## 35819 EE states he was using a pocketknife to cut plastic when the knife slipped and cut his rt hand
## 35820 EE states he was using a screwdriver to adjust an outlet into a baseboard when screwdriver slipped and jammed into his right hand.
## 35821 EE states he was using the handrail while going upsteps when some unknown object cut his lt finger.
## 35822 EE states he was using the restroom and turned to walk back down the hall and bumped his right elbow on a galvinized pipe
## 35823 EE states he was visually inspecting the fence and injured joint on rt foot
## 35824 EE states he was walking a inmate back from count. When he inhaled a toxic material used to clean the elevator, while in ther elevator ()
## 35825 EE states he was walking a student to dinning hallhe slipped/fell on his back/his foot folded under **pl atty - ken johnson**
## 35826 EE states he was walking across dining hall and slipped and fell on wet floor
## 35827 EE states he was walking along perimeter road & slipped and fell forward ()
## 35828 EE states he was walking and fell due to the ice on the ground he then got up and fell again EE was escorting the fire extinguisher inspector
## 35829 EE states he was walking and hit head on ventilation shroud projecting 4-6 inches from side of building
## 35830 EE states he was walking area the wooded area and later notice bug bite
## 35831 EE states he was walking assisting inmates pickingup liter when a bug flew into his rt eye
## 35832 EE states he was walking behind dorm and got into a nest of ticks
## 35833 EE states he was walking down flight of stairs and fell on concrete steps.
## 35834 EE states he was walking down sidewalk & when he walked onto the basketball court he slipped & fell backwards landing on his back ..
## 35835 EE states he was walking down some stairs when he twisted his rt knee
## 35836 EE states he was walking down stairs from the office fell on the stairs; was going downn to make copies of the test.
## 35837 EE states he was walking down stairs while couducting count & landed on foot odd hurting his big toe on lt foot.
## 35838 EE states he was walking down stairs, missed one and rolled his ankle. ()
## 35839 EE states he was walking down stairs, was using handrail, & his right foot slid forward causing him to fall, landing on rt. Knee, upper rt. Hi
## 35840 EE states he was walking down the hill from the parking lot, slipped and fell on the ice injuring his back
## 35841 EE states he was walking down the steps and stepped on edge of step and fell and landed on left knee
## 35842 EE states he was walking down the steps and tripped on the stairs falling backwards hitting his lower and middle back and hands
## 35843 EE states he was walking down the steps when he injuried hisself.
## 35844 EE states he was walking downt he steps on tower when his foot slipped off of one of the steps
## 35845 EE states he was walking from sidewalk to grass area and slipped & fell due to icy conditions on sidewalk & grass. Injured neck & back.
## 35846 EE states he was walking in dorm when he felt a small bite on his right foot.
## 35847 EE states he was walking in the parking lot on hisway to his vehicle when he slipped and fell on some ice.
## 35848 EE states he was walking inside of the segregation unit when he felt a sharp pain go up his rt leg
## 35849 EE states he was walking int building and the sidewalk had not been cleared of snow and ice when he fell and hit the side of the building.
## 35850 EE states he was walking on the side of dorm g andstepped wrong on a slope incline.
## 35851 EE states he was walking out a door when slipped and fell on ice
## 35852 EE states he was walking out of the kitchen officedoor when he slipped on water on the floor
## 35853 EE states he was walking out of the operations building to the records building and stepped down on the sidewalk and his left ankle twisted.
## 35854 EE states he was walking out the back door of the kitchen leading on to the back yard when he slipped on the first step falling on his right elbow.
## 35855 EE states he was walking out the door, stepped down and left ankle twisted.
## 35856 EE states he was walking patients to breakfast and patient wanted to go different, as EE tried to redirect, they both fell
## 35857 EE states he was walking supervising inmates on work crew he had to cross a ditch when he stepped down in a ditch he turned his rt foot
## 35858 EE states he was walking through door-w10c laundrydoor closed suddenly on his right hand, middle finger
## 35859 EE states he was walking through kitchen carrying large plastic containers when he tripped over a fryer vat containing hot oil & fell, splashing
## 35860 EE states he was walking through mech rm and was hit by air draft causing dust particles to go in eyes
## 35861 EE states he was walking through the j25a door when he slipped & laid his ankle over.
## 35862 EE states he was walking thru door of a loading dock when he was stung by a bee on the hand
## 35863 EE states he was walking thru the woods when a tree limb struck him in the rt eye.
## 35864 EE states he was walking ti security elevator the floor was wet EE slipped and landed on his behind
## 35865 EE states he was walking to an inmate sitting on a bench and twisted his leg and injuryed lt knee
## 35866 EE states he was walking to bthrm in storage area & he hit his knee on the handle of the floor scrubber. Rt knee
## 35867 EE states he was walking to his office when he slipped on wet floor & fell twisting his lower-back.
## 35868 EE states he was walking to the dorm when he was stung by a wasp on the left side of head.
## 35869 EE states he was walking to the medical trailer, and he turned the corner of the admin bldg his feet slipped, causing him to lose his balance, causing
## 35870 EE states he was walking to unlock the gate and hestepped in some soft dirt and twisted his right ankle.
## 35871 EE states he was walking toward his van and tripped on a piece of wire that was partically buried inthe ground and he put his right hand out to. ..
## 35872 EE states he was walking toward the gate & slippedon some ice & fell on his back & neck. Injury to back, neck, shoulders
## 35873 EE states he was walking towards operations building when a inmate ran up to him striking him in his rt eye
## 35874 EE states he was walking up a set of concrete steps outside the muti purpose building and he fell
## 35875 EE states he was walking up bank to check lights on exterior of sac bldf and strained calf muscle.
## 35876 EE states he was walking up stairs in library, turned a corner and felt a clich in his left knee
## 35877 EE states he was walking up stairway when he stumbled thus twisting his left ankle
## 35878 EE states he was walking up the staircase to level 2 and injured his r foot
## 35879 EE states he was walking up the stairs in the eastwing conducting count when he felt a sharp pain in his left hip and thigh area.
## 35880 EE states he was walking up the steps and another employee was walking behind him and tripped causinee to fall on his legs and hit rt knee was pinned
## 35881 EE states he was walking up the steps in dorm 3 and slipped on the step hitting his rt knee
## 35882 EE states he was walking up the steps when his foot slipped and did not get fully on the step lettinhg his heel drop injuring his achilles tendon
## 35883 EE states he was walking when hit rt knee twisted
## 35884 EE states he was walking while making rounds on housing unit and is not sure when occurred
## 35885 EE states he was watching traffic and tripped over trash bag, fell down ditch bank and into water. Bent lt leg trying to stop rolling.
## 35886 EE states he was wiping off a thick layer of dust off of cabinet. Struck a nail that was sticking up as he ran his hand across the top.
## 35887 EE states he was working during tower duty when he was stung by a bee under the rt eye
## 35888 EE states he was working in gatehouse when he was exposed to chemicals from a fire extinguisher
## 35889 EE states he was working on a 2 1/2 back flow valve ---- injuryed his neck.
## 35890 EE states he was working on a cell door onthe 6th floor while removing the security cover plate it dropped and pinned his rt middle finger to frame
## 35891 EE states he was working on road with inmates when he got bit by something EE thinks it May have been a spider
## 35892 EE states he was working on the 6th floor n. Wing when he attempted to close a window on the cell door, inmate hit window causing it to crush hand.
## 35893 EE states he was working staff hall and slipped on the wax floor. The wax was wet at the time
## 35894 EE states he was working with a lawn mower when hepulled the rope to see would it crank without the blade the rope slipped out of hand causing a cut.
## 35895 EE states he was working with blood hounds, while going down a steep embankment he tripped falling and started to experience pain in his left knee
## 35896 EE states he was wrking in control ctr #1, stood up quickly and l leg twisted causing sharp pain in l knee as if it had come out of place
## 35897 EE states he was yelling disturbance when inmate refused to comply w/order to disperse, and inmate then struck EE in the lft jaw w/his fist
## 35898 EE states he went to get some chemical he was in a hurry and when he sat it down and popped the topsome chemical splashed in his rt eye,
## 35899 EE states he went to lock door and patient came from behind the door and attacked him.
## 35900 EE states he went to move a five gallon bucket from one case to another and fell to his knees from low and mid back pain.
## 35901 EE states heard the beeper of soap dispenser and stepped on the railing off the sink next to the dishwasher and hit my knee on the bottom edge of the sink ()
## 35902 EE states helping another cna with combative patient, they fell on the ground - lt rotator cufftear
## 35903 EE states helping put client in chair; client dropped; to keep client from falling; pulled her up to sit in chair hurting back. ()
## 35904 EE states helping restrain a patient by carrying patient from courtyyard to ward. The patient scra-tched EE's lt hand.
## 35905 EE states helping staff get client up from the jumplina.
## 35906 EE states her back begin to hurt
## 35907 EE states her back had been bothering her all week. She was pulling trash, bent over and could barely straighten up.
## 35908 EE states her back was injured while riding an elevator that came to an abruptly stop
## 35909 EE states her boot was caught on the end of dumpster causing her to fall injuring lower back
## 35910 EE states her daily task to carry mail from admin. Bldg to main bldg, she had to carry a box. Box was extremely heavy. Strained back & shoulder muscl
## 35911 EE states her elbow struck a scapel
## 35912 EE states her feet slipped from under her when she was leaving to go home for the evening. EE states she believes the floor was damp due to rain/misty the day of incident ()
## 35913 EE states her finger got caught in a door while itwas closing.
## 35914 EE states her finger was caught in the strings of mailbag.
## 35915 EE states her finger was closed in a door.
## 35916 EE states her finger was mashed and cut on an addressograph machine
## 35917 EE states her foot slipped causing her rt knee to strike the floor
## 35918 EE states her foot slipped from under her causing her to fall on ice to the pavement
## 35919 EE states her foot tripped on an unbalanced concrete causing her to fall injuring her rt shoulder, hands, and foot
## 35920 EE states her foot was asleep and she steeped on it wrong.
## 35921 EE states her foot was caught between a mattress and wall twisting rt ankle
## 35922 EE states her foot was caught causing her to trip and fall over carpet moulding.
## 35923 EE states her foot was caught in cord causing her to fall backward injurying her back.
## 35924 EE states her foot was caught in the telephone cord causing her to fall injuring her hip and ankle
## 35925 EE states her foot was caught in the telephone line causing her to fall and injured her rt hand and lt leg.
## 35926 EE states her foot was caught while stepping down some steps causing her to fall and striking elbow against pavement.
## 35927 EE states her hand became swollen and numb while taking tree core samples
## 35928 EE states her hands were going to sleep, tingling, weakness w/ turning and burning at times
## 35929 EE states her index finger was injured while intervening in a fight between two students.
## 35930 EE states her knee locked while going down some steps causing her to fall striking lt knee on floor
## 35931 EE states her left shoulder struck a metal cabinet
## 35932 EE states her leg gave out when she bent down to pick up her keys
## 35933 EE states her lt and rt knee was struck against a desk which has caused some bruising.
## 35934 EE states her lt eye started hurting--she went to the doctor and found out she had an eye infection
## 35935 EE states her lt foot was caught in a telephone cord causing her to trip and fall--causing back injury
## 35936 EE states her lt hand struck an electrical box.
## 35937 EE states her lt hand was caught inside a door
## 35938 EE states her lt index finger was caught between adoor and a shelf.
## 35939 EE states her lt index finger was caught in a closed door
## 35940 EE states her lt knee gave away causing her to fall to the floor
## 35941 EE states her lt thumb was closed in door.
## 35942 EE states her lt thumb was cut while cleaning glass
## 35943 EE states her metal band struck the control panel sending a electrical shock thru her body
## 35944 EE states her neck, shoulder, and back was injured while assisting with an out of control student.
## 35945 EE states her nose was injured by the center shaft of a rotating tool bin
## 35946 EE states her rt eye has become severely irritated
## 35947 EE states her rt finger was caught between car door.
## 35948 EE states her rt finger was caught in a key drawer
## 35949 EE states her rt finger was caught in door while she was holding door for clients in wheelchairs entering the building.
## 35950 EE states her rt foot slipped causing her to fall injurying her rt shoulder/hip area.
## 35951 EE states her rt foot slipped off the edge of a sidewalk.
## 35952 EE states her rt foot slipped off the sidewalk injuring rt leg/groin
## 35953 EE states her rt hand finger was injured--unknown as to how???
## 35954 EE states her rt hand was closed in the restroom door.
## 35955 EE states her rt index finger was caught between a door and a food cart
## 35956 EE states her rt index finger was caught between a trap door
## 35957 EE states her rt index finger was caught in a door
## 35958 EE states her rt index finger was caught in between the door and door frame.
## 35959 EE states her rt shoulder popped while another employee performed unarmed self-defense tech
## 35960 EE states her rt shoulder was injured while shooting a shot gun.
## 35961 EE states her shift had ended, EE was going to caree states parking lot was covered with snow and ice she slipped falling on right hip and knee.
## 35962 EE states her shoe caught on office carpet causingher to fall, landing full force on her rt shoulder
## 35963 EE states her shoe struck the floor causing her tofall injuring her chest area.
## 35964 EE states her shoe was caught on the bottom of steps causing her to fall injurying her rt ankle
## 35965 EE states his arm was scratched apprximately six inches while trying to bring an inmate under control.
## 35966 EE states his back was injured during a training technique
## 35967 EE states his eye was irritated from oc pepper spray
## 35968 EE states his felt a pop in his lt foot
## 35969 EE states his finger on his rt hand was caught in the handcuffs while trying handcuff an inmate.
## 35970 EE states his finger on right hand went numb with pain & tingled up rt arm & shoulder from mopping with heavy mops & washing walls in towers.
## 35971 EE states his finger was caught between a trap door
## 35972 EE states his finger was caught between two doors.
## 35973 EE states his finger was caught in a door
## 35974 EE states his finger was caught on an upholstery tack causing a laceration
## 35975 EE states his finger was cut by a piece of metal.
## 35976 EE states his finger was injured due to pushing a box.
## 35977 EE states his fingers was cut by a razor wire.
## 35978 EE states his foot slipped from under him causing him to fall injurying his back.
## 35979 EE states his foot slipped off steps causing him to twist his rt ankle
## 35980 EE states his foot was caught in a tree limb causing swelling of the lt knee
## 35981 EE states his hand slipped off latch causing him to fall backward to floor injuring his lt arm/ shoulder
## 35982 EE states his hand was caught in an electrical door.
## 35983 EE states his hand was on the top door handle and when he turned the handle he twisted his hand causing it to pop near his rt thumb
## 35984 EE states his hand was shut in a car door
## 35985 EE states his hand was struck against a trapped door
## 35986 EE states his hat flew off and distracted him and he hit a bridge and it threw him out of cart
## 35987 EE states his hearing has declined
## 35988 EE states his heel of his shoe got caught on the step and to keep from falling he grabbed the rail pulling a muscle in his rt arm (bicep)
## 35989 EE states his injury occurred in self-defense during an altercation with an inmate
## 35990 EE states his left shoulder hurts becaused he is right handed and same for his right shoulder
## 35991 EE states his lft finger was accidently mashed. While aligning a shaft.
## 35992 EE states his lt arm was caught between a door injuring lt middle finger
## 35993 EE states his lt finger was injured by an aggressive pt.
## 35994 EE states his lt foot slipped off dock causing legto strike the edge of dock.
## 35995 EE states his lt foot struck the edge of a metal bookshelf
## 35996 EE states his lt hand was caught in a machine no 19, just form 18 filed by EE
## 35997 EE states his lt hand/thumb was close between the door and door jam
## 35998 EE states his lt index finger was caught between the door.
## 35999 EE states his lt leg was cut by a razor while attempting to lock a gate
## 36000 EE states his lt ring finger was caught in a sliding trap door
## 36001 EE states his lt thumb was injured while removing acrylic from dentures.
## 36002 EE states his neck was injured during wrestling practice.
## 36003 EE states his partner was completing a pop head technique and was going into handcuff position. Partners weight shifted causing leverage rt arm
## 36004 EE states his rt arm was caught between a slider gate
## 36005 EE states his rt arm were swollen after firing a shotgun.
## 36006 EE states his rt finger was caught between a door and the doorframe.
## 36007 EE states his rt finger was caught between the door and the locking device
## 36008 EE states his rt foot slipped causing her to twist her back.
## 36009 EE states his rt foot slipped on some rags that were left on the top steps and while trying to regain his balance his top foot struck the rail
## 36010 EE states his rt foot slipped on some steps which was wet from rain causing him to fall injuring hishead/hand
## 36011 EE states his rt foot was caught in the fence causing him to fall injuring rt ankle
## 36012 EE states his rt hand and finger were burned whiletrying to put out a fire.
## 36013 EE states his rt hand finger was caught in the door of a truck while shutting the door
## 36014 EE states his rt hand finger was cut on a metal box
## 36015 EE states his rt hand started to swell
## 36016 EE states his rt hand was closed in a cell door
## 36017 EE states his rt index finger was caught in the lt side door of a dump truck
## 36018 EE states his rt index finger was cut doing a fence testing
## 36019 EE states his rt index finger was shut in door of vehicle
## 36020 EE states his rt knee gave away causing him to fall to the floor and injured his lt wrist
## 36021 EE states his rt knee gave away causing him to twist his rt ankle.
## 36022 EE states his rt knee gave way causing pain.
## 36023 EE states his rt middle finger was closed in a door
## 36024 EE states his rt shoulder was struck by a door.
## 36025 EE states his rt thumb was bent backward while trying to restrain an aggressive inmate
## 36026 EE states his rt thumb was injured while interacting with a client
## 36027 EE states his shoes was wet causing him to slip and while trying to keep from falling he injured his rt knee
## 36028 EE states his started hurting and wrist area became numb
## 36029 EE states his vehicle was struck by a vehicle as he was attempting to slow for another vehicle thathad crossed the center line in front him.
## 36030 EE states his vehicle was struck by a vehicle from the rear---injuring his rt chest area, pain in lt shoulder, and neck area.
## 36031 EE states hit door handle while attempting to place patient in pic hold hit lt shoulder on door handle.
## 36032 EE states hit in eye with an elbow while playing basketball.
## 36033 EE states hit knee cap on cabinet handle in med room. Sitting going through patient medication pro-files & turned to get a bag of medicine.
## 36034 EE states hit lt finger on door jam while pushing gero -chair.
## 36035 EE states hit rt foot (top on the bone part) on the corner of the drawer at the desk
## 36036 EE states holding client up as EE was pulling client's pants up pulling muscle in back
## 36037 EE states holding door for the staff to come in with clients when door slammed on right middle inger.
## 36038 EE states hooking individual in van for transport for trip. Bent down to hook the seat belt when came back up was in much pain on right side. Strain on right side of body in the back.
## 36039 EE states hurt back while lifting
## 36040 EE states hurt both wrist and hands
## 36041 EE states hurt l knee by knelling at the firing range
## 36042 EE states hurt lft knee while trying to restraining a patient
## 36043 EE states hurt low back while changing a patient
## 36044 EE states hurt lt shoulder while assisting to place resident in mechanical restraints during sb episode
## 36045 EE states hurt r thumb by lifting, driving and typing
## 36046 EE states hurt rt knee while mopping, water on the floor in the restroom
## 36047 EE states hurt self and got hernia by lifting and pulling on heavy furniture
## 36048 EE states hurt self by carrying resident to time out
## 36049 EE states hurt self by keyboarding
## 36050 EE states hurt self by pulling vines out of tree and from the ground
## 36051 EE states hurt self by reaching for drill in bottom ofift
## 36052 EE states hurt self cleaning up break room and pulled the trash bag from the trash can
## 36053 EE states hurt self during pert training with a pr-24 baton
## 36054 EE states hw was preparing to search for an inmate, when the inmate kicked his left knee out. Hurting his left knee and heel
## 36055 EE states ice must have been on step & she slipped, witness states no ice and EE probably misstepped - rt foot and achilles tendon
## 36056 EE states ice/frozen snow on parking lot, slipped and fell on back. Hit head and back on frozen ice and snow causing headache, pain in right shoulder and lower back. ()
## 36057 EE states in cell extraction training, was lifting instructor in standing position; lifting dead weight. ()
## 36058 EE states in last few months has been doing xtra writing due to temp help leaving and xtra work.
## 36059 EE states in mist of shifting library books her lt hand had sharp pains between thumb and mid palm area. Her thumb went numb while trying to lift a book. ()
## 36060 EE states in recert. Trg. Maneuver partner attempt. To secure lt. Arm, lost control & when re-securing fell full weight on EE causing EE's body to twi
## 36061 EE states in service training qualification with 12 gauge shotgun, bad round caused the barrel to jam, subsequent explosion,
## 36062 EE states in the shower rm toileting patient-goesto get pamper, slipped on wet floor-inj ankle/knee**EE maybe due wp as result of surg and ppd****
## 36063 EE states in usad trg. Sweep & press move, partnerrammed his rt. Shoulder in her lft. Leg, caused eeto fall on her rear & hyperextended her leg.
## 36064 EE states increasing pain and discomfort in both thumbs.
## 36065 EE states inhalation of cigarette smoke and the fume from the fire extinguisher has caused breathing problems
## 36066 EE states injured back while collecting shad from an electrofishing boat, lifting large nets of fishwhile bending and twisting over boat
## 36067 EE states injured back while transporting patient from wheelchair to bed, had assistance fro other staff member.
## 36068 EE states injured finger due to inadvertant contact while participating in schedule activity, basketball with students
## 36069 EE states injured lower back when removing adult scales from trunk during rain storm
## 36070 EE states injured lt shoudler while changing patient
## 36071 EE states injury cased by supervisor's failure to adhere to ada and apa. Job related stress.
## 36072 EE states injury is stress due to improper/incomp. Handling of a complaint alleging EE of having a weapon on state premises.
## 36073 EE states injury occured as a result of being pinned aganist a wall when another EE fell backward.
## 36074 EE states injury occured due to heavy lifting and repetitive motion while delivering and picking up food trays. Strain r arm/elbow.
## 36075 EE states injury occured in auto accident.
## 36076 EE states injury occured opening medication bottles with child proof lids
## 36077 EE states injury occured while EE was restraining an aggresive patient
## 36078 EE states injury occurred as I was going with custody to ask inmate to go on medical appt as I walked up inmate pushed cell door open struck forearm
## 36079 EE states injury occurred handcuffing an inmate inwhich he fell.
## 36080 EE states injury while cont. Pippetting from sample tubes the attacted side of the body is the one which held the tube
## 36081 EE states inmate attempted to grab himself in or about his upper body in a rapid manner and in keeping him from doing so he turned and ankle poped
## 36082 EE states inmate became irrite an order to leave by the staff. Inmate made accerded moves toward EE, he was had cut and subduced
## 36083 EE states inmate collapsed and to prevent injury to the inmate & to med staff, she reached for the inmate, grabbing him under the arms.
## 36084 EE states inmate grabbed her by the lt wrist while she was talking to him
## 36085 EE states inmate hand just mopped floor and while EE was trying to take control of another inmate EE slipped and fell. Injury to left upper thigh
## 36086 EE states inmate hit her. EE was taking inmates pulse after setting fire to cell & trying to hang self. Right temple red & swollen.
## 36087 EE states inmate jammed sliding peer door nurse station while I was trying to free door lt index finger got stuck
## 36088 EE states inmate pushed him against the wall. Sprain to two knuckles on right hand
## 36089 EE states inmate shoved his food tray through the wicker door & the sharp tray edge sliced my arm.
## 36090 EE states inmate slammed control door against his left shoulder and elbow. EE has contusion to arm and shoulder.
## 36091 EE states inmate spit blood on face chest and shoulder
## 36092 EE states inmate threw a chair and struck him on the rt arm
## 36093 EE states inmate threw a chair at her hitting her left leg from the upper thigh to the lower leg
## 36094 EE states inmate threw liquid in face May have bben urine
## 36095 EE states inmate threw liquid substance on her face
## 36096 EE states inmate threw some liquid substance which struck his rt arm.
## 36097 EE states inmate threw two cups of ice and hit him on the lower leg and foot. No injury - no treatment
## 36098 EE states inmate threw urine in his face
## 36099 EE states inmate threw urine outside the cell he was in as EE walked by.
## 36100 EE states inmate tossed tatoo gun onto ground EE picked it up and held it close to body and slightlystuck needle into abdomen
## 36101 EE states inmate was bleeding from rt arm applying direct pressure on inmates arm with sheets towels and gauze
## 36102 EE states inmate was fighting with another officer and she tried to stop the fight when inmate kicked her
## 36103 EE states inmate was lying on floor talking about everything wrong with him I assisted him to a wheelchair
## 36104 EE states inmate yanked hands through the wicker door.
## 36105 EE states inmates were stripping floor in dorm 4. The fumes from the chemicals made him dizzy, disoriented and chest hurt.
## 36106 EE states inspecting the removal of a freezer doorwhen something flew in left eye.
## 36107 EE states instrucing class, stepped, got off balancehis knee twisted, caught himself on wall with rt hand, hit pencel sharpener, cover fell, cut palm/hand
## 36108 EE states instructing & demonstrating subject control techniques during basic school, executed a subject throw when subject knee struck ribcage
## 36109 EE states instructing crdt guard in front, fell back on left shoulder, burning pain from shoulder to left elbow.
## 36110 EE states involved in use of force
## 36111 EE states irate patient attempted to choke EE. Pt pulled EE's hair. EE hit her rt knee on bed while trying to restrain pt. Arm/shoulder hurting.
## 36112 EE states it began with pain in hand and arm progressed numbness in finger rt hand
## 36113 EE states it possible it soap or gloves that has hands irritated after the long use of it.
## 36114 EE states it was raining and her foot slipped on the wet cement as she was walking
## 36115 EE states jammed finger on desk drawer
## 36116 EE states jammed middle index finger while playing basketball with a student.
## 36117 EE states job assigned by supervisor to remove carpet and tile from work area for new equipment.
## 36118 EE states key stuck in lock, constantly trying to turn, jammed right thumb.
## 36119 EE states kicked in the eye by a patient during process of therapeutic hold
## 36120 EE states know she was lifting some clients and when she turned could fell something pull in rt shoulder and chest.
## 36121 EE states l eye feels like something is over it, complaint that eye was stuck together when she got up this am
## 36122 EE states lab animal allergies, stopped up with allergies and headaches
## 36123 EE states ladder slipped and he fell off 8ft onto wet grass.
## 36124 EE states lawn mower ran over yellow jacket nest. Was stung on rt side of body.
## 36125 EE states leaving a committee meeting at nc centraee tripped on chunk of concrete laying on the side-walk, lt foot & ankle twisted, fell
## 36126 EE states leaving lafayette hall, stepped on uneven pavement or debris causing a fall and a turned ankle
## 36127 EE states left forearm began hurting after re-dir-ecting client in behavior to prevent injury to herclient. Left lateral epecondilitis
## 36128 EE states left hand injury ()
## 36129 EE states left hand sore between middle and 4th finger. Pain also in top of hand due to repetitive motion
## 36130 EE states left upper arm hit by sliding door
## 36131 EE states left wrist is hurting because she had surgery in right hand. Using left hand while right hand healed.
## 36132 EE states leg "gave away" & she fell on knees & rthand. Employee out 3 days.
## 36133 EE states leg was twisted while conducting cell extraction training EE states that when he arrivedhe noticed swelling in his lt knee
## 36134 EE states lifted a box to place it on the shelf when all of sudden she was in severe pain and coulnot more for several minutes.
## 36135 EE states lifted a client from one chair to anotheand during a fire drill and repeated lifting other patinets.
## 36136 EE states lifting a 6' table on truck when felt a pull in lower back.
## 36137 EE states lifting a heavy boiler he felt a burningsensation in his groin area
## 36138 EE states lifting and carrying patient, was struggling, fighting and trying to bite staff
## 36139 EE states lifting box and pulled something in box
## 36140 EE states lifting boxes central medical records pulling charts and aggravated nerve in back.
## 36141 EE states lifting client fro portable toilet to bed, strained lt side of groin
## 36142 EE states lifting dirty linen out of cart hurt elbow
## 36143 EE states lifting groceries from van to bin and felt a pull in left shoulder. ()
## 36144 EE states lifting kettle top off of kettle and steam burned wrist area
## 36145 EE states lifting laundry bag and puttign it in cart and felt something pull in lt side of shoulder.
## 36146 EE states lifting package at dock, twisted back
## 36147 EE states lifting patient up in bed and pulling from the side of bed
## 36148 EE states lifting up power washer and putting into the back of a gator-main vehicle
## 36149 EE states lifting used food trays from cart to place n table she felt a pain in her shoulder and going down left arm to wrist
## 36150 EE states lifting. I remember feeling pain in shoulder after I had been to work working for a while. I have a lot of swelling that has been going on also extreme pain in my shoulder/neck area since that date. ()
## 36151 EE states loading and unloading clients medical records and placing them on the shelves in another office
## 36152 EE states loading piece moved and could not get hand out, pinned hand in truck. Rehab-martha curie- 919-542-0551
## 36153 EE states lt ear irritated and itching and thinks it's a fungus from the stethoscope.
## 36154 EE states lt eye became very irritated went to employee health then to eye Dr. Small metal like material found on eye.
## 36155 EE states lt eye was swollen.
## 36156 EE states lt hand struck something into skin and area is swollen, red and hurting.
## 36157 EE states me and another employee was pulling up client, where client was down in chair hurting neck, left shoulder, left arm. ()
## 36158 EE states medication behind desk and EE reached behind the desk and EE's arm became stuck between the deska nd wall.
## 36159 EE states medication splashed in her eye while shewas drawing liquid up into syringe. Foreign substance in right eye
## 36160 EE states metal rebar brushed across arm while placing concrete wheelstep--cutting rt forearm.
## 36161 EE states middle finders on right hand have been hurting since May 2005
## 36162 EE states middle finger stopped working. Attributes to 22 years of driving for er
## 36163 EE states misjudged position of chair missing chair & fell backwards onto floor contusion to lowback & rt wrist
## 36164 EE states mold in bldg caused respiratory distressshortness of breath, chest pain, vocal disorders since January 2005
## 36165 EE states motor on boat quit. While trying to take motor cover off. Officer slipped & fell on out drive of boat -- injuryed lt shoulder and neck.
## 36166 EE states moving 12' block from outside to inside the building
## 36167 EE states moving a file cabinet with a hand cart, the cabinet tipped to the right, EE grabbed it to stop it from falling and strained his back
## 36168 EE states moving bed on a medical unit and bent ltthumb back
## 36169 EE states moving client's bed left knee twisted.
## 36170 EE states moving irrigation reel when rt hand got caught between tung and steel bar causing a deep punture wound to hand
## 36171 EE states moving small box from shelf to floor, felt pain in back
## 36172 EE states nbending over going through things and when EE stood up had a sharp pain shoot through lthip.
## 36173 EE states no single event caused strained back- extensive physical labor involved in putting a picture frame together and lifting caused this
## 36174 EE states noise in coal handling bldg made him loose his hearing.
## 36175 EE states normal job duites
## 36176 EE states nose fracture due to softball injury while playing for the co-ed team.
## 36177 EE states not sure how incident occured woke up 2/19/09 & back and chest wall hurting thought it was gas
## 36178 EE states noticed rash on rt hand, sort of burns.
## 36179 EE states noticed spider bit around 10:30 with severe itching and red spot.
## 36180 EE states nursing cart was beside ()
## 36181 EE states on 02091996 EE pushing medication cart off elevator and elevator bumped right shoulder bruise to right shoulder
## 36182 EE states on 6/20/2012 she felt shortness of breath and pain in chest. She states it was from paint fumes. ()
## 36183 EE states on doi at 2:30am he was working at a student activity & he was escorting an intoxicated student from the entry line when student suddently grabbed him causing him to fall and hit lft are & rt knee ()
## 36184 EE states on light duty due to cts surgery on right hand, now the left hand has started to ach and pain, with tingling and numbness
## 36185 EE states on rope course, crossed between trees and right arm touched tree
## 36186 EE states on yard duty, placed her rt hand on window sill & the window fell on rt hand cutting her middle finger & ring finger
## 36187 EE states one of te large recycle bin lids fell on her right hand and thumb while recycling materials from the lab
## 36188 EE states open cart and bar popped out and hit EE in the eye.
## 36189 EE states opened door on stem chef and steam burned hand and thumb.
## 36190 EE states opening a autocave to get trash out, thehot liquid boiled over and sprayed out when open
## 36191 EE states opening a box too close to wall and my hand hit the wall. Bruising and swelling to right hand. ()
## 36192 EE states opening half door, pushed it open and got large splinter in fingernail.
## 36193 EE states opening inner receiving gate to transporinmate to local er. EE lifted the center past top open both gate and center post fell on lt thumb
## 36194 EE states opening preps for Dr Spry when wrist began to hurt and progressively worsened until unable to use. (using scissors)
## 36195 EE states operating a computer keyboard for long periods each day
## 36196 EE states operating a wire grinder and it jumped back striking EE in the knee.
## 36197 EE states other vehicle was attempting to turn lt when vehicle of lt lane in the opposite direction stopped to allow that vehicle to turn
## 36198 EE states out of frustration he struck his rt handagainst a locker
## 36199 EE states outmof control client attacked staff he was placed in a pic hold. When help came client turned and flipped writer to the floor.
## 36200 EE states outside interacting with patients and injured rt ring finger
## 36201 EE states oven fell back on her, no witness ** rtw ld 1/30 *** oow again 2/7/07.
## 36202 EE states over a period of time from cleaning and bending over in deep sink in endo room sterilizing instruments for about 20 mins caused back pain. ()
## 36203 EE states over a period of time he started having pain in lt hip pain.
## 36204 EE states over a period time experiencing pain in (r) shoulder at blade. Tingling down the entire rtarm & fingers - pain in (r) wrist.
## 36205 EE states over last six weeks due to heavy typing and writing, she had developed carpal tunnel syndrome.
## 36206 EE states over the last several months has had repetitive use of computer keyboard and has resulted in pain in wrists.
## 36207 EE states pain and numbness in rt hand and arm from repetitive motion from use of computer
## 36208 EE states pain constantly in rt little finger notice a couple days ago. Pain extends from finger to forearm and elbow
## 36209 EE states pain in both hands, tingling and burninggrowing more noticeable as of April 2004
## 36210 EE states pain in leg standing and putting weight on leg sharp pain uplt leg. Not twisting or bend-ing or nothing just standing.
## 36211 EE states pain in thumb from catching turkeys and holding them
## 36212 EE states pain in wrist during use of keyboard.
## 36213 EE states pain the both hands and wrists from doing extra paper work
## 36214 EE states pain to lt thumb and hand. Pain started in pic training w/partner.
## 36215 EE states painter painted locks used, lots of force used turning the locks and pulled muscle- right hand.
## 36216 EE states pallet of light bulbs was being lifted with fork lift & the pallet broke causing light bulbs to fall off pallet & fall on his back.
## 36217 EE states passing out medications. EE bent down at med cart and felt sharp pain in left shoulder blade in her back. ()
## 36218 EE states passing out meds; another staff came in to weigh clients. EE stood up to give client a med; chair got pushed away; EE fell to floor missing chair and hit scales hurting tailbone and right wrist.
## 36219 EE states patient aggressivly grabbed EE l hand rtw ld at same wages 5/10/04; rtw fd 11/10/04
## 36220 EE states patient attacked EE from behind with no provaction
## 36221 EE states patient attacked co-worker, staff assisted co-worker and writer fell on EE's arm during the attenpt to restarin the patient.
## 36222 EE states patient attacked staff in the face; nurses glasses are scrtached in process. EE was struck is hit lt temple.
## 36223 EE states patient became aggitated and staff assisted by placing patient in nci hold, and EE injuried her thumb.
## 36224 EE states patient became agitqated and began to hit and kicked at EE and struck thumb.
## 36225 EE states patient became combative and patient hadto be taken to floor in a therapeutic hold. Injuryto the rt forearm and knee.
## 36226 EE states patient became combative to staff and bit her lt breast
## 36227 EE states patient became combative when staff was assisting to put patient back into restraints. EE leg struck the corner of the restraint bed.
## 36228 EE states patient became forceful and relstive knocking my glasses off and pushing me against the door. Injury to back.
## 36229 EE states patient being changed by two hcts. Pt was kicking, spitting and pinching hcts. EE was holdpt leg. Pt kicked EE thumb bending nailbed.
## 36230 EE states patient bit EE on lt breast breaking skin and bruising it.
## 36231 EE states patient bit arm in a therapeutic carry.
## 36232 EE states patient bit her on the hand, breaking skin, leaving bruise
## 36233 EE states patient came running out of bedroom attacking staff swinging both arms and hitting staff in the face.
## 36234 EE states patient came towards her and pulled her glasses off of her head ns kicked EE. Injured thigh.
## 36235 EE states patient exploded from a chair and starting throwing blows on either side of my head and f ace knocking EE backwards into a chair.
## 36236 EE states patient fell down in floor and started when told to go to quiet room kicked staff on the knee.
## 36237 EE states patient fell off bed injurying EE lt leg.
## 36238 EE states patient fell on her knee causing left leg and back strain
## 36239 EE states patient fell on lt wrist and hand causing severe pain and numbness. Occurred during restraint of patient.
## 36240 EE states patient fell on staff members' l ankle
## 36241 EE states patient fell to floor on top of EE's legs/p surgery 3-10-2003
## 36242 EE states patient got agitated and became combative and struck EE on the rt side of the neck.
## 36243 EE states patient got upset in class, offered to lead him back to ward. Patient is blind. Patient attcked me for no reason
## 36244 EE states patient got upset. Patient shouted with clinched fists abuse to staff. Patient resisted therapeutic control
## 36245 EE states patient grabbed hand during interventionof another altercation with another patient.
## 36246 EE states patient grabbed keys from hct and snapped thumb back.
## 36247 EE states patient grabbed rn-pulled EE down the hall- trying to get keys- staff intervened and patient came in nurse station after rn again.
## 36248 EE states patient had an altercation w/peer and placed thereuptic hold on patient and put stress on back.
## 36249 EE states patient had sock around neck and EE wentto take it from the patient and when EE runinng out of room EE hit lower back on door handle.
## 36250 EE states patient having seizures hitting head lifting repositioning patient. Felt pressure in back and middle back
## 36251 EE states patient hedabutted EE on the lt side of head.
## 36252 EE states patient hit EE in head w/ chair causing * laceration to scalp * clmt stated she does not need any add'l trmt
## 36253 EE states patient hit him in the genital area
## 36254 EE states patient hit him on the head.
## 36255 EE states patient hit him while putting patient inseclusion.
## 36256 EE states patient hit him, repeatedly and when they fell to the floor EE hit both knees on the floor
## 36257 EE states patient hit staff in rt cheek while restraining the patient to be put in the quiet room.
## 36258 EE states patient hostile and bit EE on the rt upper arm; patient attempted attack EE and EE arm hit metal bed frame.
## 36259 EE states patient kicked EE in lt shin.
## 36260 EE states patient kicked me in the side of my temple when myself and other staff was changing him from one bed to another
## 36261 EE states patient kicked staff in chest when asst. In giving forced meds & had to hold pt's legs. Also injured right shoulder
## 36262 EE states patient knocked wrist when EE was trying to take shoes off.
## 36263 EE states patient lost balance fell to floor & broke his fall by resting his body against right back side of EE.
## 36264 EE states patient reached up and grabed EE glasse s from her face leaving an open scratch in e forehead.
## 36265 EE states patient refused to turn in his food traystarted swinging at EE. EE hurt right knee trying to restrain patient
## 36266 EE states patient started hearing voices and started throwing punches at EE.
## 36267 EE states patient stepped back on EE's leg and hurt knee also.
## 36268 EE states patient stepped on foot.
## 36269 EE states patient stepped on toe, nail bent back and back, neck and shoulder sore while trying to restrain the patient
## 36270 EE states patient stood up from w/c, grabbed EE by neck and twisted fingers and pulling on arm
## 36271 EE states patient stood up from w/c, grabbed EE byneck from behind, also trying to twist EE's finger& pulling on EE's arm.
## 36272 EE states patient struck EE on left side of face with fist *clmt was overpd ttd 8-13 x 8-31 for $820. 50**
## 36273 EE states patient struck EE on the wrist while EE was assisting treatment.
## 36274 EE states patient struck hct in lt eye. Writer njured lt arm trying to restrain patient.
## 36275 EE states patient struck him in the face.
## 36276 EE states patient stuck EE in the eye.
## 36277 EE states patient swung at staff person then hit hit EE in the eye.
## 36278 EE states patient threw a chair & attatcked EE during redirection to return to his room. Also tripped EE & she fell to floor.
## 36279 EE states patient threw a shoe hitting EE in the groin.
## 36280 EE states patient threw water in her face afterwards, plunged after her w/clinched fists, she therapeutically hold on patient. Felt pain in low back.
## 36281 EE states patient tried to jump out of bed and EE caught patient and strained shoulder.
## 36282 EE states patient used both hands to pull her hairon the lt side of her head and would not turn loose.
## 36283 EE states patient walked into nurses office & was cursing at staff. EE intervened & patient grabbed her around the neck.
## 36284 EE states patient walked out of peers room and lunged at EE and said she was going to punch EE inthe face and did.
## 36285 EE states patient walked up to her and started hitting her on the left side of her head.
## 36286 EE states patient was attacking staff and he was trying to place patient in nci hold and hit left leg on floor
## 36287 EE states patient was attempting to attack another employee and when assisting patient, fell and injured left 5th finger
## 36288 EE states patient was being escorted to bathroom. During ambulating patient patient dropped and to prevent patient from hitting floor, EE broke fall.
## 36289 EE states patient was being restrained and head butted in the nose.
## 36290 EE states patient was combative /staff and then patient fell to the floor-staff fell also.
## 36291 EE states patient was falling and both the patient and EE fell to the floor. Injured hip and rt hand
## 36292 EE states patient was fighting peer & EE intervened & patient kicked up and struck EE in the throat and she fell-hi head on floor and lost consciousne
## 36293 EE states patient was getting into shower and patient fell back against EE and EE fell against the door. Injured back.
## 36294 EE states patient was going over to courtyard andstaff jumped up to get him and rt knee twisted.
## 36295 EE states patient was on the floor kicking and kicked EE in the chest.
## 36296 EE states patient was out on smoke break, became combative, staff and patient fell to the ground, EE was punched and knees were skinned up
## 36297 EE states patient was sent out of school. He refused to leave and began to attack wards. EE andhelped to hold patient and hurt ribs
## 36298 EE states patient was stuck between bed and wall EE pulled bed frame up pulling something on shoulder.
## 36299 EE states patient was unsteady & fell back on her causing strain on shoulder.
## 36300 EE states patient were fighting in day area throwing punches at other patients and was restrained and wrist was twisted in the progress.
## 36301 EE states patients became upset when he was told to go to time out. Patient became aggressive and bit staff on lt arm.
## 36302 EE states pencil rolled off table & struck her in the thigh. EE out 3 days. EE scheduled off 9/10/07
## 36303 EE states pepper spray has caused her face to become numb on the rt side.
## 36304 EE states pepper spray was sprayed in face causingtightness and pain in chest
## 36305 EE states performing data entry on computer, writing, preparing reports daily
## 36306 EE states performing normal duties, driving vehicle, another car ran red light and hit ncsu truck
## 36307 EE states performing surgical removal of wisdom tooth and suturing patient when new needle just glazed EE's skin but no blood
## 36308 EE states persistent itching all over body more serious under both arms-exposure to scabies
## 36309 EE states picked up 3 large boxes (shredded paper)and moved them to her office quickly.
## 36310 EE states picked up a case of fruit and a pain came in my back causing me to go to my knees and then EE could not get up for a while.
## 36311 EE states picked up trays nd felt joint in elbow snap. It started swelling later.
## 36312 EE states picking box up and when EE went to stand up hit head on shelf. ()
## 36313 EE states picking client up in the jump o line twisted back. Hurt back and hands.
## 36314 EE states picking up breathing machine to take to the rooms and sharp pain in arm going into hand (left hand and left arm). ()
## 36315 EE states picking up lunch tray nd rt hand started aching.
## 36316 EE states placing gallons of water in the refrigerator, bend over and felt a pull in my back.
## 36317 EE states placing pans on trayline & lifting up robo w/peaches in it. She walked over to sink and felt pain in back.
## 36318 EE states playing basketball during pe, shot the ball and felt a pull in l shoulder
## 36319 EE states playing basketball w/students and 2-3 days later EE leg felt stiff and cracking noise injoint.
## 36320 EE states playing with students, the basketball stuck EE on the 4th finger on rt hand, causing it to jammed
## 36321 EE states poking at closed sign, her shoe was caught underneath a floor mat, she fell on her r knee
## 36322 EE states possibly injured lifting, transferring and pulling.
## 36323 EE states posture of workstation caused strain on neck, shoulder and arm
## 36324 EE states printing seminar notices, putting paper into the manual feed tray and piece of paper slip-ped out and poke EE in the eye
## 36325 EE states processing water chlorine, turn on pump and the line came loose, and EE got wet on rt side of face, arm, neck and rt leg
## 36326 EE states progressive condition involving right hand, wrist, arm, suspected early cts related to computer programming
## 36327 EE states prolonged standing/walking during shift has injury
## 36328 EE states pt attacked her by hitting her in the head. EE glasses were broken during this attack.
## 36329 EE states pt came into the office and started punching writer in the forehead and chest with clclosed fist. Pt had writer against wall.
## 36330 EE states pt came up to shake hand pushed against him causing EE to start falling backward EE tryingto catch himself strained right leg muscle
## 36331 EE states pt grabbed EE keys and started running down hall to door--EE chased after pt and got tripped up and fell on floor.
## 36332 EE states pt grabbed another EE shirt and spit in other EE face, injured EE asst with pt and during struggle EE fell on chair injuring rt arm.
## 36333 EE states pt hit him several times and injured his finger.
## 36334 EE states pt kicked EE on the lt calf, priednails into hct's skin and lt arm.
## 36335 EE states pt pulled down on her hand while trying to assist pt up and EE felt pain in her hand laterstrain rt hand
## 36336 EE states pt pushed EE against wall and pt was put on bed, w/me and another tech was top of me lt knee was pushed on top of the railing.
## 36337 EE states pt refused to go to the quiet room. Pt punched staff in face and started to fight, fell and scrtached EE face on corner of couch in room.
## 36338 EE states pt scratched EE on the lt forearm.
## 36339 EE states pt tried to escape during transitioning from school to the unit. Staff chased him down and therupeutically assist him to the ground.
## 36340 EE states pt walked over to another and started hitting another pt in the face and EE fell against the chair trying to pull them apart hurting knee
## 36341 EE states pt was attempting to assault other peers. Patient had to be held struggling back pain after incident.
## 36342 EE states pt was being redirected away from the work station and the pt became combative intaking him down. Pt fell on writers rt hand.
## 36343 EE states pt was being redirected from threatrningother patients. Pt then took a swing at EE and hit EE ing the rt eye.
## 36344 EE states pt was fighting EE writer nad caused EE to stumble into the corner oft he nurses station causing scratch on EE's back.
## 36345 EE states pt was jumping out of the chair and while trying to keep him from falling, injured lt arm and shoulder.
## 36346 EE states pull resident up in wheel chair and pulled a musle in his back ()
## 36347 EE states pulled a kleenex from box which was located on top of my desk and white thick powder substance got on desk, arms, toes and clothing
## 36348 EE states pulled muscle in low back while lifting patient with assistance.
## 36349 EE states pulled something in arm when unloading trays off carts.
## 36350 EE states pulling and lifting on steel tracks on bobcat caused hurting small of back to knees.
## 36351 EE states pulling on a steering wheel to remove from shaft, felt pain in belly button. Had appen-dectomy & hernia repair during summer.
## 36352 EE states pulling rack out of cage washer when rt foot was hooked by loose safety trend and twisted r knee getting out of racks
## 36353 EE states pulling tens from upper shelf. EE used two step ladder when she stepped down, she fell on the floor in a seated position hurting buttocks.
## 36354 EE states pulling wheelchair back and tipper on back of wheelchair roller on her right foot. Side of foot swollen. ()
## 36355 EE states punctured in the lt index finger with a lancet needle
## 36356 EE states pushing client to table. Turned around to ask another staff a question, client pushed himself away from table and the wheelchair run away.
## 36357 EE states put bag on desk in office. A broken chair was up against book shelf. EE states she got caught up in chair; when she turned she fell on floor
## 36358 EE states putting client to bed and lower part of back started to hurting.
## 36359 EE states putting client's helmet on coffee table when she slipped and fell on the floor on buttocks.
## 36360 EE states putting paper in her printer and the printer fall on her foot
## 36361 EE states putting patient in restraints and 4th finger on rt hand hit the floor when patient kicked at EE.
## 36362 EE states putting patient in s&r, she kicked writer on lt jaw.
## 36363 EE states putting up files; hit right fifth toe on door casing. ()
## 36364 EE states py went to bull rush to make an escape out of the door EE was grabbed by another staff member and hand was stopmed on by the pt.
## 36365 EE states rafting with cabin group, down river, hit a rock and EE's back was jerked forward and then back, injuring her lower back
## 36366 EE states reached by client's face to reposition his shirt; client leaned forward and bit EE's left arm. ()
## 36367 EE states reachsed down to pick up manequin & whenpulled him up something pulled on my left side of back
## 36368 EE states reading s. O. P. He rubbed rt eye started hurting and tuned red.
## 36369 EE states reinjured arm when reached out to keep inmate from falling
## 36370 EE states removed gloves and has a reaction
## 36371 EE states removing old glass aquarium from lobby, it was fractured on the edge, lifted the tank ontoa cart when the laceration occured
## 36372 EE states removing sheets from wooden shelves and a rusty nail penetrated the top of her band
## 36373 EE states repeated picking up and carrying of large awkwardly shaped items and squeezing handles
## 36374 EE states repeated typing ()
## 36375 EE states repetative motion of typing, writing and computer mouse use
## 36376 EE states repetative motion use of computer, mouse, aggravates r wrist and index fingers
## 36377 EE states repetative moton from stain from lifting and bumping
## 36378 EE states repetative use of arm coaching tennis team and development of bone spurs caused him to have surgery on 12/8/06.
## 36379 EE states repetative work-filing, typing and writiing
## 36380 EE states repetitive motion
## 36381 EE states repetitive motion/lack of wrist and arm support when working at computer---rt arm is sore.
## 36382 EE states repetitive movements caused pain in neck and shoulders.
## 36383 EE states repetitive use of computer has caused carpal tunnel syndrome in both hands.
## 36384 EE states repetitive use of computer keyboard is causing strain in left arm
## 36385 EE states repetitive use of keyboard and mouse on daily basis
## 36386 EE states repetitive use of right arm with computer.
## 36387 EE states repetitive work with clients caused lumpon right wrist. Ganglion cyst on right wrist.
## 36388 EE states repetitive/excessive use of mouse, keyboard & calculator has caused carpal tunnel problems to flare up.
## 36389 EE states repetitve motion of keyboard & computer mouse caused cts.
## 36390 EE states replacing probe convers in the ear thernmometer hurting index finger EE had a small cut on her finger
## 36391 EE states reporting to work headed to transportation officer came out of stairwell did not see wet floor signs slipped and fell on both knees and hand
## 36392 EE states repositioning client in wheelchair when right shoulder popped. ()
## 36393 EE states requires to swim with patients(swimmer'sear).
## 36394 EE states resident became combative and pushed EE to the door.
## 36395 EE states resident coughed while feeding sending food & saliva into face & lt eye of EE
## 36396 EE states resident grabbed arm during pt care whenee tried to pull away EE noticed a scratch on the rt wrist.
## 36397 EE states resident grabbed me from behind, tried tochoke me, she then grabbed my hair jerking neck & head.
## 36398 EE states resident hit her in the abdomen area andshe is 5 months pregnant. The hit caused her to have feelings of cotractions/pressure in her abdomen
## 36399 EE states resident pulled on arm while going down stairs, stepped on a recessed area of step
## 36400 EE states resident punched him on right side of face ()
## 36401 EE states resident was having a behavior problem and resident stepped on EE's big toe.
## 36402 EE states resident was in the bathroom and I was trying to get the resident out of the bathroom, resident reach back with left arm, and hit me in the left eye ()
## 36403 EE states resident was leaning and EE tried to sit resident up straight and resident poked EE in the eye.
## 36404 EE states resident was upset and grabbed staff by the back of shirt and pulled on top of him onto the bed and twisting EE back in award position.
## 36405 EE states resident was upset, when released from chair restraint, resident slapped eye glasses off her face causing bruise & swelling of lt eye.
## 36406 EE states resident was walking up steps & fell back into her. Staff grabbed rail supporting her- self & resident resulting in the back strain.
## 36407 EE states responded to body alarm and hit lip on door of ward.
## 36408 EE states responded to code 900 EE arrived inmate was seated in a chair outside of cell #15 his rt rt arm was covered in blood & floor around chair
## 36409 EE states responding to a code 300, EE assisted with trying to subdue and control an inmate. EE tried to walk away, notice pain in lt ankle & heel
## 36410 EE states retrieving a project from a shelf, lost grip and the projector slipped. Cut finger on a sharp edge on the projector.
## 36411 EE states return to dock, heading toward car, stepped off the dock and stepped on plastic bag, slipped, fell and rolled into water
## 36412 EE states returning from dropping off deposit, tripped on brick that was uneven and fell into mulch, hitting chin and glass came off
## 36413 EE states returning from lunch tripped and fell injuring right hip and knees ()
## 36414 EE states rhat while transporting inmates to central prison for medical appointments he was parking the transport vehicle outside of cp's receiving. ..
## 36415 EE states riding on elevator and elevator came to abrupt stop
## 36416 EE states right arm caught in door between elbow and shoulder.
## 36417 EE states right hand, top skin broken, cut off table where tea is made.
## 36418 EE states ripping a piece of plywood with circular saw
## 36419 EE states rt ear hurts and is swollen from using earphone
## 36420 EE states rt hand/fingers has locked causing severe pain
## 36421 EE states rt knee was swollen and leg gave way andshe fell to the floor
## 36422 EE states rt leg gave away and EE fell in the parking lot and landed on lt arm and knee.
## 36423 EE states rt leg was caught underneath student for a brief while student was being restrained.
## 36424 EE states rt shoulder oppped while putting patient in seclusion and restraint.
## 36425 EE states rt wrist hurting and pain remains from using computer.
## 36426 EE states rt wrist is sore when she does a lot of typing at the computer.
## 36427 EE states rt wrist was injured during self defensetraining
## 36428 EE states running after inmate who was attempting to escaoe whe EE got to the entrence gate behind operations EE's lt ankle went the opp, way
## 36429 EE states running down hall to check on disturbancin patient room, foot slipped in drain hole in hallway and fell
## 36430 EE states running to a code 2 drill in the gym, she twisted her r ankle
## 36431 EE states running to pic minor on aaf-c felt something pop in r knee
## 36432 EE states sandal got caught under mat, she tripped fell and struck back of head on bookshelf
## 36433 EE states scraped wrist on pot machine
## 36434 EE states searching dormitory for contraband, whilemoving lockers away from the walls & fire box. He felt a light pop and sting in the socket are
## 36435 EE states seat belt of a state owned car hit him iin the mouth on a tooth.
## 36436 EE states seh was walking down ramp to go to courtramp was wet and she slipped and fell down on righknee and butt causing knee to bend backwards.
## 36437 EE states self inflicted laceration to finger cause by scissors
## 36438 EE states several things were happening simutanously and assisted w/ 2 of them, someone stepped on r foot, injured back,
## 36439 EE states sfe was assisting w/a pt who kicking and her finger became caught under the pt leg causin pain.
## 36440 EE states sharp pain occurs when he lifts or carries heavy objects
## 36441 EE states she "tried to prevent (inmate) from falling & hurt my back (lower back)".
## 36442 EE states she May have overworked. She feels pain in back of neck and right side of back from lifting patients
## 36443 EE states she accidentally back into a board injuring her back, neck, leg
## 36444 EE states she accidentally closed a door on her rt hand.
## 36445 EE states she accidently struck lt eye with an envelope
## 36446 EE states she after inmate had administer his insulin shot, placed syringe in her pocket, taking it out of her pocket she stuck self in rt hand
## 36447 EE states she and another staff member were turning over a duplicating machine, duplicator fellonto her r arm, jamming it against the other machin
## 36448 EE states she and co-worker were moving tables. The last table to be moved fell on EE's hand. Table was turned on its side. Co-worker's grip slipped, which caused her to fall. EE's hand was between table and floor. ()
## 36449 EE states she arrived to work at dor's charlotte office. She got out of her car in the parking lot and started to get her computer out of the car. She turned in a 360 degree angle & felt a strong pain in her back. ()
## 36450 EE states she assisted resident 2-3 times in getting on & off of low leisure lounge--during one of these times EE felt extreme pull in lower spine
## 36451 EE states she attempted to move the examination table when she injured her back. Dob; 10. 25. 50
## 36452 EE states she backed up and stepped on a bookshelfcausing rt ankle injury
## 36453 EE states she became disoriented, heated while firing weapon. Went to one knee & then laid down, was moved to cool area.
## 36454 EE states she became over exhausted from heat causing her to become sick
## 36455 EE states she became overheated and dizzy
## 36456 EE states she began to have back pain at work--- does not know what cause it
## 36457 EE states she began to have pain in her rt and lt arm and leg while typing and lifting boxes
## 36458 EE states she began to have pain in his wrist, elbow, and shoulder due to excessive use of computer
## 36459 EE states she began to have upper respiratory problems during the month of July, due to mold infestation. ()
## 36460 EE states she begin to experience difficult breathing and light-headness
## 36461 EE states she bend over to pick up used paper towels off the floor and when raising back up, hit the top of her head on the edge of the paper towel dispenser on the wall ()
## 36462 EE states she bending over to pick up a box off ofthe floor went to stand up felt a sharp pain in ltside and back that radiated down lt leg.
## 36463 EE states she bent down to retrieve a chart from a file cabinet when she felt pain in her lower leg
## 36464 EE states she bent over and could not get back up EE is having back pain
## 36465 EE states she bent over to clean floor in janitors closet and when she went to stand, she hit her head on the water faucet
## 36466 EE states she bent over to pick up a bag with trash and back started hurting ()
## 36467 EE states she bent over to pick up something from floor when she struck her head on a hanging water hose nozzle.
## 36468 EE states she bent over to wrap tape around electrical cord and stood up and injured back. Referredto glenda.
## 36469 EE states she bent over to write inmate's name on a box when she felt a pain in lower back.
## 36470 EE states she brushed a table in the dayroom with her lt hand a razor blade was consealed under the lip of the table
## 36471 EE states she bumped a broom handle that was hanging from a shelf causing a mop to strike her on the head
## 36472 EE states she bumped her head on the corner of thecell while passing money receipts to inmates
## 36473 EE states she came in contact with poison sumac.
## 36474 EE states she came out of dt office & went to empty tash can in room 102 & felt a sharp pain in her lower back & pain went down her leg
## 36475 EE states she caught a dresser w/tv on top to keepdresser from falling on client. Injured rt hand
## 36476 EE states she caught and twisted rt foot while coming down a flight of stairs to help a patient
## 36477 EE states she climbed up a small 2-step ladder to turn on the switch to the air detector and whenshe stepped off the ladder she injured her lt knee
## 36478 EE states she close the door on her rt finger.
## 36479 EE states she closed door on her lt hand while exiting a van.
## 36480 EE states she closed side gate door to enter horseshoe area, she pulled door to close it and finger caught between door and the door facing.
## 36481 EE states she closed the control gate on her rt thumb
## 36482 EE states she comes into contact with people who o are infected with scabies in infirmary & outpat ient floors
## 36483 EE states she contracted-impetigo an airborne bacterial infection on her face/nose from workplacenvironments.
## 36484 EE states she cut her finger on a door lock when coming into the building. Laceration to right thumb.
## 36485 EE states she developed laryngitis after talking for a long length of time for a lecture
## 36486 EE states she did not see a wet floor sign inside but outside the building she then went to rnc to sign in. EE slipped & fell on knees. Sprain rt knee
## 36487 EE states she does administrative duties and lot of typing
## 36488 EE states she dropped keys and went to pick them up and when she was getting up her head hit the sorner of the clipboard.
## 36489 EE states she drunk from a can that an inmate had allegedly rubbed his penis on
## 36490 EE states she drunk her water that was left in the refrigerator and after completing drinking she felt dizzy
## 36491 EE states she enterred the s wing to assist in locking inmates down for chow, lost her balance and fell hitting the floor, hitting her left arm
## 36492 EE states she experience pain in left wrist while performing data entry.
## 36493 EE states she experienced some pain radiating down to fingertip to forearm--the pain is ongoing
## 36494 EE states she fainted in the tunnel near c-4 after donating blood.
## 36495 EE states she fell & tripped on steps injuring rt hand ()
## 36496 EE states she fell and injured both knee---no apparent reason for the fall
## 36497 EE states she fell and injured her lt wrist and rt knee.
## 36498 EE states she fell and injured her rt elbow and knee while running after a student.
## 36499 EE states she fell and slipped on wet floor causing a back injury
## 36500 EE states she fell and twisted her rt ankle
## 36501 EE states she fell down some stairs causing both knee, leg, and ankle injury
## 36502 EE states she fell down some stairs injuring her rt ankle and hand
## 36503 EE states she fell down some steps
## 36504 EE states she fell down some steps and landed on her lt foot
## 36505 EE states she fell down step striking her lt knee
## 36506 EE states she fell going up the stairs carrying charts to unit I. ()
## 36507 EE states she fell in gym causing injury to her back, arms, and shoulder
## 36508 EE states she fell in office building on area rug, fell forward onto hands and knee
## 36509 EE states she fell in parking lot injuring her lt shoulder
## 36510 EE states she fell in the administration building after stepping on wet floorin undergraduate admissions ()
## 36511 EE states she fell in the kitchen injuring her lt elbow family phy-butner creedmoor family medicine
## 36512 EE states she fell in the parking lot, the heel of her shoe was caught between a crack in the pavemencausing her to loose balance.
## 36513 EE states she fell into a hole and twisted her rt ankle.
## 36514 EE states she fell into a hole injurying her lt knee.
## 36515 EE states she fell on ice injuring her t hand, kneeand hip
## 36516 EE states she fell on icy sidewalk outside of building near parking lot causing injury to her lt knee and elbow
## 36517 EE states she fell on stairway injuring her lt arm
## 36518 EE states she fell out of van onto cement causing injury to her lt knee
## 36519 EE states she fell over a file drawer injuring herrt elbow
## 36520 EE states she fell over a large floor scale hitting the back of her head and rt hip hard on the concrete, then the scale fell on her hitting her on the lt upper arm and hitting her in the head again ()
## 36521 EE states she fell to the floor during a training exercise and twisted her lt knee.
## 36522 EE states she fell when toe of shoe caught edge ofrubber mat. Injnured left hand, arm, nose, upper lip, left knee
## 36523 EE states she fell while entering into the nurses station and injured her elbow.
## 36524 EE states she fell while trying to keep an intoxicated visitor from falling--EE injured her lower back
## 36525 EE states she fell while walking down some steps.
## 36526 EE states she fell while walking on wet floor.
## 36527 EE states she felled down some steps injurying herhip, legs, and arm.
## 36528 EE states she felt a pop in her lt knee
## 36529 EE states she felt a pop/sharp pain in her mid to low, rt side back area assisting a patient from wheelchair to his bed
## 36530 EE states she felt a pull of her lt shoulder whileassisting lifting a client from bed to wheelchair
## 36531 EE states she felt a sharp pain in her lt ankle
## 36532 EE states she felt pain a couple of hours following the completion injury to right shoulder
## 36533 EE states she felt pain in her rt wrist
## 36534 EE states she felt something bite/sting her on the right big toe while she was sitting at her desk. ()
## 36535 EE states she finished mopping and reached for the door knob and twisted knee as she grabbed onto the door frame.
## 36536 EE states she found ticks on her lt leg, back and stomach
## 36537 EE states she gave a patient insulin treatment when she went to shut the door she slammed lt hand in the door causing to stick lt thumb with shot
## 36538 EE states she gave an allergey injection and when she turned away from the drug cart, she struck herself with the needle.
## 36539 EE states she got out of car & stepped on sidewalkthen her knee "popped". No days out.
## 36540 EE states she got some trash into rt eye.
## 36541 EE states she got up from her desk and tripped over her own feet. Right knee hit the ground first then the left knee and right hand.
## 36542 EE states she had a cut on her rt thumb and while handcuffing an inmate she got some of the inmates blood on her thumb
## 36543 EE states she had an allergic reaction during pepper spray training
## 36544 EE states she had an allergic reaction from vinyl gloves.
## 36545 EE states she had an allergic reaction to a flu shot that was taken on 10/22/98
## 36546 EE states she had an allergic reaction to a flu shot.
## 36547 EE states she had an allergic reaction to antibacterial soap that is used on the unit.
## 36548 EE states she had an allergic reaction to latex gloves.
## 36549 EE states she had an allergic reaction to the pepper spray during a training course
## 36550 EE states she had been in sun all day came to workand fainted during line up suffered sunburns to the legs and heat exhaustion
## 36551 EE states she had gotten out of her car and was walking across parking lot when she stepped into a dip in pavement, tripped and fell.
## 36552 EE states she had just finished giving hepatitis binjection to an inmate laid syringe on table while reaching for band aid she stuck her finger w/syri
## 36553 EE states she had pain in back when she lifted sheed out of laundry cart. Back strain
## 36554 EE states she had returned to the office from a trip to the courthouse and noticed that the left side of her upper lip was swollen.
## 36555 EE states she had to pulled with her arms while entering a vehicle because of the flooded road this has causes pain in her arm, neck, and shoulder
## 36556 EE states she had transported im to 4150 had just unbuckled the im seatbelt and was stepping out of van lost her balance and fell backwards to ground
## 36557 EE states she had walked over to the student worker's desk to give her assignment foot got tangled in student's book bag strapes
## 36558 EE states she has a herniated cervical disk and carpal tunnel in rt wrist, due to long term excessive pc work.
## 36559 EE states she has been under stress from job due to supervisor and superintendent harrassing and making false statements.
## 36560 EE states she has carpal tunnel of the rt hand **EE is schedule for surgery on 4/9/01******
## 36561 EE states she has developed carpal tunnel syndrome
## 36562 EE states she has had progressive numbness and tingling in right hand and fingers. EE states thather fingers feel swollen but they are not
## 36563 EE states she has low back pain from carrying (4x4x12) storm drain signs on beach, sand dunes & from digging holes for 12ft post
## 36564 EE states she has numbness and feels weight in her lt hand arm. She states she is constantly moving medical charts.
## 36565 EE states she has obtained serious sinus and chestattacks.
## 36566 EE states she has ongoing numbess in her fingers due to job duties.
## 36567 EE states she has receives insect bites on her arms.
## 36568 EE states she has started having pain of her lt wrist. EE states she do not recall what has causedthis injury.
## 36569 EE states she has suffered severe depression due to sexual harassment and retaliatory act done by fellow coworkers
## 36570 EE states she has work-related stress
## 36571 EE states she having severely itching and burning of her lt hand
## 36572 EE states she held her bowels for two hours causing hemmorhoids **EE had surgery for total hemmorhoid removal***
## 36573 EE states she hit her forehead on top cabinet in the break area while washing a coffee mug. ()
## 36574 EE states she hit her lt 5th finger on the bathroom partition.
## 36575 EE states she hit her right hand against the metal plate on a stitcher in the print shop. ()
## 36576 EE states she hit her toe on foot stool as she stepped down from medical cabinet in medical trailer. Fracture of toe on right foot
## 36577 EE states she hung her rt foot on a computer cord & tripped. She fell on the floor hitting her lip, two front teeth and right knee.
## 36578 EE states she hurt her hand while taking fire armstraining
## 36579 EE states she hurt self by performing the bent wristechnique
## 36580 EE states she injured her back and r shoulder during firearms training
## 36581 EE states she injured her back at home while bending over to pick up a piece of paper. She went to her Dr And he took her oow for 3 days.
## 36582 EE states she injured her back while closing a slider door
## 36583 EE states she injured her back while lifting a boxcontaining files
## 36584 EE states she injured her back while lifting a laundry basket.
## 36585 EE states she injured her back while lifting a patient to bed
## 36586 EE states she injured her back while lifting boxesof paper
## 36587 EE states she injured her back while lifting cooler
## 36588 EE states she injured her back while playing ball with patients.
## 36589 EE states she injured her back while pushing and pulling a hand cart to another building
## 36590 EE states she injured her back while securing the mop and mop bucket in the fence area
## 36591 EE states she injured her back while throwing trash in the dumpster.
## 36592 EE states she injured her back while trying to lift a basket of mail.
## 36593 EE states she injured her back while trying to lift a case of liquid soap.
## 36594 EE states she injured her knee and shoulder duringtraining.
## 36595 EE states she injured her knee, hands and groin area while trying to close a supply closet which was difficult to close
## 36596 EE states she injured her lower back while demonstrating on how to use equipment.
## 36597 EE states she injured her lower back while liftingand moving office supplies such as files, books, boxes, etc
## 36598 EE states she injured her lower back while shearing a 200lbs sheep. Animal was moving around a lot & keeper had to pull her up &otherwise manage her.
## 36599 EE states she injured her lt foot while chasing a defendant
## 36600 EE states she injured her lt foot/ankle
## 36601 EE states she injured her lt hand while trying to open a door for an inmate.
## 36602 EE states she injured her lt hip while straining to open a door
## 36603 EE states she injured her lt shoulder while picking up a computer
## 36604 EE states she injured her rt ankle in parking lot
## 36605 EE states she injured her rt arm while lifting a pt.
## 36606 EE states she injured her rt arm while mopping
## 36607 EE states she injured her rt arm while trying to restrain a pt.
## 36608 EE states she injured her rt arm with a shotgun during a training session
## 36609 EE states she injured her rt hand and rt shoulder buffing.
## 36610 EE states she injured her rt hand while trying to clean from under a mattress.
## 36611 EE states she injured her rt shoulder while firinga shotgun
## 36612 EE states she injured her rt shoulder while lifting a heavy tea can
## 36613 EE states she injured her rt shoulder while opening a sally port gate
## 36614 EE states she injured her shoulder during nci training
## 36615 EE states she injured her wrist while assisting with a patient
## 36616 EE states she injured her wrists and knees while helping a client down the on floor some months ago.
## 36617 EE states she injured herself while assisting a client in and out of a van
## 36618 EE states she injurying her rt thumg and wrist stapling and data entry over a period of time.
## 36619 EE states she is allergic to chemicals we use to clean the library.
## 36620 EE states she is having pain and stiffness in the wrist area and also tingling in fingers
## 36621 EE states she is having pain in her rt hand, with numbness in the finger. She also stated there is some pain in the wrist both..
## 36622 EE states she is having pain in her rt wrist from typing/keyboarding activities
## 36623 EE states she is having pain in her wrist and elbow due to excessive typying
## 36624 EE states she is under mental stress due to sexualharassment
## 36625 EE states she jammed her left thumb subduing an inmate, contusion to left thumb
## 36626 EE states she leaped against a wall and started tofeel a burning sensation in her lower back. Upon exam a clear creme like substance was found.
## 36627 EE states she left her drink unattended while supervising inmate and when she took a swallow it taste like contaminated chemical
## 36628 EE states she left her office to consult w/ staff member, entered breezway from her office, foot hit a wet spot on the floor causing her fall
## 36629 EE states she lifted 2 gallons of food in a 4 gallon pan onto serving line.
## 36630 EE states she lifted an inmate out of his wheelchair to transport van when she felt pain in her back
## 36631 EE states she lifted box & shoulder/back was aching
## 36632 EE states she lifted three racks of dishes from drying tower to counter top, carried pot of oatmealin kitchen EE has pain in shoulder up to neck
## 36633 EE states she lifted trash bag out of can when sheshe strained her back. Professor cleaning out office to retire.
## 36634 EE states she lifting a laundry bag to put in laundry bin and felt back pain.
## 36635 EE states she lost her balance and fell while going up steps injuring her lt knee
## 36636 EE states she lost her balance and while trying to keep herself from falling she injured her lt hand
## 36637 EE states she missed a couples of steps and injureher rt leg.
## 36638 EE states she missed a step and fell while gettingin a van injuring her rt leg/hip
## 36639 EE states she missed a step while going down the stairs and slid down the stairs ()
## 36640 EE states she missed lower step when leaving building. Twisted lt ankle causing EE to fall. Rt knee rt hip lt ankle.
## 36641 EE states she moved chair back and hit head and neck on door of medication window
## 36642 EE states she moved to a new workstation and it was too high, causing right arm to be painful
## 36643 EE states she must have strained back when pulling a box of paper
## 36644 EE states she must havve turned wrong because she now has pain in her knee.
## 36645 EE states she notice swelling in her abdomen. Her duties are knocking out food trays & pulling tray carts. She is scheduled for surgery Oct. 30
## 36646 EE states she noticed pain in rt hand and thumb after constance use during activities and basic care duties.
## 36647 EE states she noticed pain in rt side while assistwith client.
## 36648 EE states she observed a rash on her neck and brea-stline on 072304.
## 36649 EE states she off the sidewalk twisting her lt foot--spraining lt ankle
## 36650 EE states she only recalls flying through the air but did not remember exactly what had happened hersupervisor found her sitting on the sidewalk in..
## 36651 EE states she open a cabinet and a book fell out causing neck pain
## 36652 EE states she opened rt side of double doors. EE EE stepped back to let someone go in first-the btm of the door passed over top of EE foot.
## 36653 EE states she opened steamer door and steam burned her arm.
## 36654 EE states she picked up a cooler and pulled a muscle in her back.... 3/7/03 10% ppd back. ..
## 36655 EE states she picked up a tray of tea and felt something pop in her left wrist
## 36656 EE states she pinched her rt thumb between the control door
## 36657 EE states she pulled a muscle in her back while mopping the floor
## 36658 EE states she pulled a muscle in her rt arm duringself-defense training
## 36659 EE states she pulled a muscle in her upper lt arm while striking inmate with a baton
## 36660 EE states she pushed away from a desk while in a chair with rollers when the chair tipped over to the side causing EE to fall to the floor.
## 36661 EE states she reached into the cbc tray to get a test strip and punctures left pointer finger on open syringe
## 36662 EE states she reached to overhead cupboards and then brought her arm down to write and noticed a crick in neck that became shooting pain in neck.
## 36663 EE states she reached up to a patient's cubie thenattempted to pull bottom of drawer out, helping look for clothes and felt pull in right hip.
## 36664 EE states she recd a contusion to her arm by a reckless supervisor.
## 36665 EE states she recd bites from insect(mites) while handling some hay which is used to feed animals.
## 36666 EE states she received a needle stick while checking inmate's blood sugar.
## 36667 EE states she received a rash all over her body
## 36668 EE states she remove the latex glove from her rt hand and rubbed her rt eye when her eye started to burn
## 36669 EE states she rolled her desk chair to the left to pick up files. Chair broke & she hit her knees on a side chair and injured her back. ()
## 36670 EE states she rushed into her office when she heard the phone ring and hit her left knee on the corner of her desk. ()
## 36671 EE states she sat down in a chair in nurses station. The leg of the chair broke. EE states she fell to the floor on her left side, elbow and bottom hit the floor. ()
## 36672 EE states she sat down in one of the kitchen chairs and it gave way causing back pain. ()
## 36673 EE states she sat down in the chair at dest and the wheels on the chair folded and she fell to the floor.
## 36674 EE states she sat down, turned maybe too hard or fast and injured her left shoulder ()
## 36675 EE states she securing trap door on pst #8 she states she had a pain in abdomen
## 36676 EE states she shut her rt thumb in a file cabinet
## 36677 EE states she shut the metal gate with her lt hand her finger got caught as she was about to make security check and other duties
## 36678 EE states she slipped & fell in a puddle of water injuring left arm & left leg and lower back.
## 36679 EE states she slipped & fell on some water on the floor.
## 36680 EE states she slipped and fell causing injuring toher neck, elbow, and ankle
## 36681 EE states she slipped and fell causing injury to her back
## 36682 EE states she slipped and fell causing injury to her rt shoulder, arm, and hip area.
## 36683 EE states she slipped and fell down some steps causing injury to her lt knee.
## 36684 EE states she slipped and fell in parking lot
## 36685 EE states she slipped and fell in parking lot injuring her lt leg/knee. It was raining at the time.
## 36686 EE states she slipped and fell in the hallway where the floor had been mopped.
## 36687 EE states she slipped and fell in water in med room on residental mental heath.
## 36688 EE states she slipped and fell injuring her rt ankle
## 36689 EE states she slipped and fell injurying her head, lt leg, shoulder, and hip.
## 36690 EE states she slipped and fell injurying her rt knee.
## 36691 EE states she slipped and fell on a black mat in front door to gatehouse injurying her knee, ankle, legs
## 36692 EE states she slipped and fell on a floor mat injuring her lt foot
## 36693 EE states she slipped and fell on a floor mat twisting her lt ankle
## 36694 EE states she slipped and fell on a floor strikingher knee and elbow
## 36695 EE states she slipped and fell on a heavily waxed floor causing injury to rt hip and shoulder. EE is 22 wks pregnant.
## 36696 EE states she slipped and fell on a rock injuryingher rt shoulde, cheek, and both knee. Also eye glasses were broken.
## 36697 EE states she slipped and fell on a slippery wet floor causing injury to her lt shoulder.
## 36698 EE states she slipped and fell on a spill of rice injuring her rt knee.
## 36699 EE states she slipped and fell on a waxed floor injuring her lt knee
## 36700 EE states she slipped and fell on a waxed floor injurying her lower back, rt leg, and lt elbow.
## 36701 EE states she slipped and fell on a waxed floor injurying her rt knee and hands
## 36702 EE states she slipped and fell on a wet and greasyfloor injuring her hip, leg, foot, and arm
## 36703 EE states she slipped and fell on a wet floor causing injury to her back, neck, head, lt knee, lt ankle, and lt wrist.
## 36704 EE states she slipped and fell on a wet floor causing injury to her lt inner thigh
## 36705 EE states she slipped and fell on a wet floor causing injury to her lt leg/ankle
## 36706 EE states she slipped and fell on a wet floor causing injury to her rt wrist
## 36707 EE states she slipped and fell on a wet floor injurying her hip, leg, and foot.
## 36708 EE states she slipped and fell on a wet floor injurying her rt middle finger.
## 36709 EE states she slipped and fell on a wet floor there was no warning sign inidicating the floor was wet
## 36710 EE states she slipped and fell on a wet mopped floor. Sprain of rt ankle and lft knee contusion
## 36711 EE states she slipped and fell on a wet ramp causing injury to her rt knee.
## 36712 EE states she slipped and fell on an uneven sidewalk causing injuryto the rt leg and lt ankle
## 36713 EE states she slipped and fell on an uneven sidewalk, fractured left humerus (arm).
## 36714 EE states she slipped and fell on floor injuring her lt ankle
## 36715 EE states she slipped and fell on ice causing a head injury
## 36716 EE states she slipped and fell on ice causing her to land on her rt arm and buttocks
## 36717 EE states she slipped and fell on ice causing injury to her rt foot
## 36718 EE states she slipped and fell on ice causing injury to his rt groin/rt lower buttock
## 36719 EE states she slipped and fell on ice covering thesidewalk causing injury to her lt elbow
## 36720 EE states she slipped and fell on ice in parking lot injurying her rt knee, arm, hand
## 36721 EE states she slipped and fell on ice injurying rt arm, hip, and leg.
## 36722 EE states she slipped and fell on ice twisting herlt foot/ankle
## 36723 EE states she slipped and fell on ice while walking across the parking lot causing back pain
## 36724 EE states she slipped and fell on porch--EE statesit was snowing
## 36725 EE states she slipped and fell on ramp causing injuring to her knee and lower back
## 36726 EE states she slipped and fell on some applesauce while entering a door causing injuring to her knees, leg, foot, and wrist pain
## 36727 EE states she slipped and fell on some butter that was on the floor injurying her lt shoulder.
## 36728 EE states she slipped and fell on some feces that was on the floor causing injury to both knees and hands.
## 36729 EE states she slipped and fell on some steps causing injury to her rt elbow/rt ankle.
## 36730 EE states she slipped and fell on some steps while entering into a building causing rt hand and front tooth injury
## 36731 EE states she slipped and fell on some steps whileleaving work.
## 36732 EE states she slipped and fell on some unknown solution while walking down hallway
## 36733 EE states she slipped and fell on some water injurying lt ankle
## 36734 EE states she slipped and fell on steps while climbing the stairs causing legs, back, hip and head injury
## 36735 EE states she slipped and fell on the wet bathroomfloor injuring her left knee ***EE had immediate surgery done*****
## 36736 EE states she slipped and fell on wet floor causininjury to her lt knee.
## 36737 EE states she slipped and fell on wet floor injurying her rt knee. ***attorney richard harper*****828 586 3305
## 36738 EE states she slipped and fell on wet floor which had been freshly mopped causing rt knee and hip injury
## 36739 EE states she slipped and fell on wet floor while walking down a hall.
## 36740 EE states she slipped and fell on wet surface causing injury to her rt knee and buttock
## 36741 EE states she slipped and fell over some clothing that was lying on the foor causing rt knee/ankle injury
## 36742 EE states she slipped and fell while coming out ofoffice injurying her back and buttock.
## 36743 EE states she slipped and fell while trying to chase a defendant.
## 36744 EE states she slipped and fell while walking down a ramp
## 36745 EE states she slipped and struck her rt shoulder on some bars while exiting the bathroom.
## 36746 EE states she slipped but caught herself before she fell causing injurying to her lt ankle.
## 36747 EE states she slipped down some stairs and fell injuring her lt elbow
## 36748 EE states she slipped off some steps injuring her rt shoulder, arm, hand, hip, and leg.
## 36749 EE states she slipped on a wet floor and fell injurying her hip and hand. The roof was leaking.
## 36750 EE states she slipped on a wet mat injuring lt hip
## 36751 EE states she slipped on sidewalk causing injury to her lt hand.
## 36752 EE states she slipped on slick spot in lobby of law building injury rt ankle, hip, back, wrist and head
## 36753 EE states she slipped on some ice and twisted her ankle and fell injury back and rt knee
## 36754 EE states she slipped on some sand and gravel in the parking lot injuring her rt knee.
## 36755 EE states she slipped on some water that was on the floor causing injury to her neck/rt shoulder EE did not fall****
## 36756 EE states she slipped on something on the edge of the steps and fell
## 36757 EE states she slipped on the floor that had floor stripper appiled to it
## 36758 EE states she slipped on wet floor on the way to class-wet floor sign had been moved from doorway to side & was not visible from room EE was exiting
## 36759 EE states she slipped on wet floor twisting her lt knee
## 36760 EE states she slippped and fell injurying her rt knee.
## 36761 EE states she smashed her fingers between therma trays when removing trays from machine to drying rack
## 36762 EE states she sprained back while struggling with a patient. Lumbar sprain
## 36763 EE states she sprained her lt ankle during a training course
## 36764 EE states she sprained rt arm & back during crdt training
## 36765 EE states she squatted down to clean a bedside table & felt like her knee stuck then pushed herself back up & was hurting
## 36766 EE states she started breathing treatment on client, turned to back machine up-hit rt elbow on machine.
## 36767 EE states she started feeling dizzy and while exiting the door to get some air she tripped and fell on some loose gravel
## 36768 EE states she started feeling weak and dizzy due to the excessive heat
## 36769 EE states she started toward two boys who were fighting and put arm between to separate, one boy lunged forward and her arm hyper-extended and she heard a pop. Right elbow. ()
## 36770 EE states she step down off some steps when she heard a popping sound in her lt knee ********:::::::: denied claim:::::::::: **********
## 36771 EE states she step down on some step and turned the wrong way and twisted her rt ankle.
## 36772 EE states she step off some steps when she felt a pop in her lt knee.
## 36773 EE states she stepped down off a van her rt foot was caught on some steps and bent backward causingher rt knee to pop
## 36774 EE states she stepped down on a stool when she felt pain in lower back and lt leg.
## 36775 EE states she stepped downward off the last step in order to exit the stairway door and left foot and anke turned inward. ()
## 36776 EE states she stepped in a bed of ants.
## 36777 EE states she stepped in hole while walking from parking lot to her work building.
## 36778 EE states she stepped into a hole injurying her back, shoulder, and elbows
## 36779 EE states she stepped into a hole injurying her ltankle.
## 36780 EE states she stepped off a sidewalek and twisted her rt ankle
## 36781 EE states she stepped off a sidewalk and fell twisting her rt foot
## 36782 EE states she stepped off a sidewalk injuring her lt knee
## 36783 EE states she stepped off an uneven pavement twisting her ankle.
## 36784 EE states she stepped off bus and struck her rt knee on a wooden pole.
## 36785 EE states she stepped off bus and struck her rt knee on some rocks.
## 36786 EE states she stepped off edge of cement and twisted her lt ankle.
## 36787 EE states she stepped off edge of sidewalk & lost balance. ()
## 36788 EE states she stepped off some steps injurying herlt knee or lt ankle.
## 36789 EE states she stepped off the curb of sidewalk and twisted her lt ankle
## 36790 EE states she stepped on a crack in driveway of a hotel and twisted her rt foot.
## 36791 EE states she stepped on a plastic carpet protector causing her to fall twisting her lt kneeand lt ankle
## 36792 EE states she stepped on a rock and twisted her lt ankle
## 36793 EE states she stepped on a rock and twisted her lt ankle causing her to lose her balance and fall
## 36794 EE states she stepped on a rock while walking across railroad track and sprained her lt ankle and foot
## 36795 EE states she stepped on a slick spot and slid down in the hallway
## 36796 EE states she stepped on a wet mat and fell; she caught the door but scarred her rt knee-pulled her hip and rt side.
## 36797 EE states she stepped on her lt foot wrong causing pain in lt leg
## 36798 EE states she stepped on object on office floor when she was walking to the copier---injured her rt ankle/foot/rt knee-strained muscles in leg
## 36799 EE states she stepped on the sidewalk and twisted her ankle.
## 36800 EE states she stepped onto a sidewalk and twisted his lt ankle
## 36801 EE states she stepped out of a van and twisted herlt ankle.
## 36802 EE states she stepped out of his car into a hole and twisted his lt ankle
## 36803 EE states she stepped out of office onto recently mopped floor and fell hitting back of head and back on floor.
## 36804 EE states she stepped over a brick and twisted hisrt knee.
## 36805 EE states she stepped over the parking barrier and fell on her stomach, ()
## 36806 EE states she stood up and twisted right knee. ()
## 36807 EE states she stood up at the nurses'station and heard a pop in her left ankle
## 36808 EE states she stood up from a chair after working with computer when she felt pain in her lower back
## 36809 EE states she stooped to open a lower file drawer in 5 drawer file cabinet and pulled or hurt something in her back
## 36810 EE states she strain her back while shifting bookson library shelf
## 36811 EE states she strain her rt wrist/thumb area while trying to open a door
## 36812 EE states she strained her lt shoulder while pulling a steel door
## 36813 EE states she struck a matching starting a fire causing a burn to her lt hand
## 36814 EE states she struck her forehead on a shelf.
## 36815 EE states she struck her hand on a nail.
## 36816 EE states she struck her head against the bus doorframe
## 36817 EE states she struck her head on a desk cabinet.
## 36818 EE states she struck her knee on the corner of desk.
## 36819 EE states she struck her leg against a table
## 36820 EE states she struck her lt knee on a metal table.
## 36821 EE states she struck her lt knee on a table leg.
## 36822 EE states she struck her lt thumb on door lock causing a metal piece to pierce the fingernail.
## 36823 EE states she struck her rt 3rd finger on the backof a wheelchair. A metal object lodged into the finger.
## 36824 EE states she struck her rt foot against a wheelchair.
## 36825 EE states she struck her rt hand on a locker
## 36826 EE states she struck her rt hand on the corner of a desk
## 36827 EE states she struck her rt hand ring finger on a rifle
## 36828 EE states she struck her rt knee and leg on the bumper of a car.
## 36829 EE states she struck her rt knee on the metal partof a desk
## 36830 EE states she struck her rt thumb against a desk
## 36831 EE states she stuck her finger by a needle after drawing blood.
## 36832 EE states she stuck her head on a door while tryinto open a trap door.
## 36833 EE states she stuck her left hand with a needle she had used to give insulin to a diabetic hiv positive patient.
## 36834 EE states she suffers from carpal tunnel syndrome which is alleged to be caused by repetitive motion
## 36835 EE states she think she hit her knee on the unit, it began to hurt after she left work and got into her vehicle.
## 36836 EE states she tried to move a table top which was blocking the door to a supply cabinet. She lost control of the heavy table and it slammed against her right foot. ()
## 36837 EE states she tripped and fell in a parking lot with gravel injuring her lt knee.
## 36838 EE states she tripped and fell injurying her rt elbow
## 36839 EE states she tripped and fell on a rubber mat and twisted her rt ankle
## 36840 EE states she tripped and fell on floor striking lt knee.
## 36841 EE states she tripped and fell on rt hip
## 36842 EE states she tripped and fell on the sidewalk of cafeteria drive twisting her right hand.
## 36843 EE states she tripped on some juice on the floor causing injury to chin, tooth, and knee.
## 36844 EE states she tripped over a drainage grate while crossing over bridge to legislative building causing rt knee and foot injury
## 36845 EE states she tripped over a plastic file box causing injury to her rt wrist and lt knee
## 36846 EE states she tripped over a vacuum cleaner cord and fell hitting chest and knee on floor.
## 36847 EE states she tripped over an underbrush and hit her rt knee on a log and also was exposed to some blood from an inmate.
## 36848 EE states she tripped over chain in kitchen
## 36849 EE states she tripped over curb while walking to her work building.
## 36850 EE states she tripped over her feet as she turned to leave students door
## 36851 EE states she tripped over make-up case and sprained rt ankle
## 36852 EE states she tripped over some tree roots causinginjury to her rt shoulder, hand, and knees.
## 36853 EE states she tripped over the telephone lines that was lying in the floor
## 36854 EE states she turned and injured her rt ankle while pulling a nail from a barn wall.
## 36855 EE states she turned her left ankle outward while walking from her desk to the restroom on 2nd floor south in revenue building
## 36856 EE states she turned in her chair to pull out deskdrawer and felt sharpe pain in back.
## 36857 EE states she turned quickly at her desk and struck her lt hand on the desk. Also, complains of low back pain.
## 36858 EE states she twisted her ankle as she was stepping onto a sidewalk. She fell on her left hip. She then got up & continued to her destination. Later, her ankle was swelling and getting more painful. ()
## 36859 EE states she twisted her ankle walking on gravel when she was entering the building to start work.
## 36860 EE states she twisted her back while lifting wood.
## 36861 EE states she twisted her lt ankle while trying tochase a client who was trying to run away from the program area.
## 36862 EE states she twisted her lt knee causing her to fall
## 36863 EE states she twisted her rt ankle while stepping off some steps
## 36864 EE states she twisted her rt ankle while walking
## 36865 EE states she used the restroom after an inmate had used it and when she sat down on the commode seat some of urine had been left on the seat
## 36866 EE states she wa passing out the beverages in segregtion. An inmate grabbed her right arm and pulled it in the food door attempting to break it
## 36867 EE states she walked into the sergeant's office and the floor was wet while being cleaned. She states she slipped and fell to floor.
## 36868 EE states she walking across floor to workstation and slipped and fell hurting rt leg.
## 36869 EE states she was a inmate up in the bed after changing hinm and trying to reposition him with both arms under his houlder and pulling down sheet when she felt a pull in her lt shoulder and lower right back ()
## 36870 EE states she was about to sit down in a chair when the chair slipped from underneath her she statedthe chair hit her in lower back
## 36871 EE states she was asked to get needed material for charge nurse. Stepped out the room and fell into indian style position to floor didn't see water, no sign ()
## 36872 EE states she was assaulted by an inmate in her classroom--inmate grabbed EE arms and lt breast
## 36873 EE states she was assaulted by an inmate injuring rt arm/shoulder
## 36874 EE states she was assaulted by an inmate--inmate choked her with his hands
## 36875 EE states she was assisiting by placing patient inpic hold. EE states she woke up the next morning with pain in lower back.
## 36876 EE states she was assisiting the dentist while thedentist was using an explorer to remove from a tooth and her finger was in close proximiy to the too
## 36877 EE states she was assisting a female student in removing items from a room when the student becameupset and threw a shoe at EE striking her rt eye
## 36878 EE states she was assisting client off the floor and heard her knee pop
## 36879 EE states she was assisting in a code 1000 and gotblood on her arm from an inmate. (shelia perdue)
## 36880 EE states she was assisting separating two students from fighting and must have twisted her left knee in the process. ()
## 36881 EE states she was assisting staff with a combativepatient and the patient kicked her in the knee
## 36882 EE states she was assisting to restrain an inmate from assauiting a staff member and the inmate stomped her big toe on the rt foot and kicked her rt
## 36883 EE states she was assisting w/changing aggressive & combative patient & injured her back & shoulder
## 36884 EE states she was assisting with an inmate when she injured her back.
## 36885 EE states she was assisting with an inmate who had been sprayed with pepper spray and slipped on the wet shower floor while assiting
## 36886 EE states she was assisting with placing a pt in a pic hold when the patient kicked EE in the back.
## 36887 EE states she was assisting with staff to place combative patient in nci hold and fell injurying knee.
## 36888 EE states she was assiting moving a patient from the bed to a wheelchair and patients leg gave way and he began to fall and she was helping him back to his bed when the patient fell back on her rt arm with all his wieight and she felt something pull down
## 36889 EE states she was at ice maker when she turned around to exit the rm, took about 3 steps & slipped and on wet spot on floor injuring rt knee, hip & shoulder ()
## 36890 EE states she was at table in office and she was in the process of getting up, chair slid out from under her causing her to fall on the floor
## 36891 EE states she was attached by patient, while place patient in nci hold, patient dropped to floor pulling down on employee.
## 36892 EE states she was attack by a student who pushed her into a desk causing injuring to lt and middle fingers on the lt hand.
## 36893 EE states she was attacked by a client causing an upper rt rib
## 36894 EE states she was attacked by a client.
## 36895 EE states she was attacked by a patient
## 36896 EE states she was attacked by an inmate
## 36897 EE states she was attempted to reposition a patient when she felt a pull in her lower back ()
## 36898 EE states she was attempting to assit patient withadl's--pt became agressive and struck cna on the lt temple.
## 36899 EE states she was attempting to get inmate to secure in his cell she gave he pepper spray and inmateswung and hit her in the chin with his fist
## 36900 EE states she was attempting to reach a box that was on top shelf and was climbing on the bottom shelf. She fell on her back and shoulders.
## 36901 EE states she was attempting to restrain a child in daycare when the child bit her many times on the arms and shoulders.
## 36902 EE states she was attempting to roll forward in desk chair when the wheel of the chair suddenly locked and the chair stopped moving. Body continued to move forward causing her to suffer a hard fall out of the chair and onto the floor ()
## 36903 EE states she was attempting to separate two patients that were fighting and injuring her lt shoulder.
## 36904 EE states she was attempting to separate two residents when one resident struck her on the backof the neck with his fist.
## 36905 EE states she was attempting to subdue physically aggressive patient who was attacking the rn-- injurying her lt eye and knee.
## 36906 EE states she was bending down to put up an item, her foot slipped out from under her and her knee "slipped out of place"--rt knee sprain
## 36907 EE states she was bending over to pick up 3 trays and felt pain in lower back and hip.
## 36908 EE states she was bent down to pick up food from the floor and felt pain in lower back. She was working in warewash area of kitchen.
## 36909 EE states she was bitten by a dog on the lt and rtleg
## 36910 EE states she was bitten by a patient on the lt forearm
## 36911 EE states she was bitten by a spider on the lt forearm
## 36912 EE states she was bitten by a spider on the rt side of neck.
## 36913 EE states she was bitten on the lt leg by a student.
## 36914 EE states she was bitten on the rt leg by a tick.
## 36915 EE states she was bitten on the rt wrist by a spider.
## 36916 EE states she was breaking down boxes & hurt her back.
## 36917 EE states she was called by the nurse to help flush the patients urine. While flushing the urine it splashed in her face. ()
## 36918 EE states she was carrying trash out and wind blew door against her causing her to fall
## 36919 EE states she was catching trays in warewash area and trays bunched up and bent her thumb back
## 36920 EE states she was caught between door and doorway injurying her back and chest area.
## 36921 EE states she was changing client's clothes, he yelled out, dropped both legs on her wrist, bendingher wrist back
## 36922 EE states she was changing empty oxegen tanks when her hand got caught between bottom of full tank and top of another tank. ()
## 36923 EE states she was changing mop water and spilled disinfectant on right foot. ()
## 36924 EE states she was charting and stood up and began walking near a cabinet and a portion of the cabinet was projected outward and she hit her right knee. ()
## 36925 EE states she was charting and stuck a pencil in the palm of her rt hand
## 36926 EE states she was checking size of foley catheter from inmate and liquid splashed onto face and eyes
## 36927 EE states she was checking the cooler, to see if the meats were storage correctly and her little finger got caught between two pans
## 36928 EE states she was chening a client, client moved and her shoulder popped. EE was seen in er, she rtw on 5-1-09, 4-30-09 was her regular day off.
## 36929 EE states she was cleaning between the coffee table & sofa when she kicked metal sofa leg injuring rt 3rd toe. EE also states leg on chair set back to where they cannot be seen ()
## 36930 EE states she was cleaning poplar hall rc office- picked up an old typewriter off the floor to move to storage, straining her back.
## 36931 EE states she was cleaning room, tripped over a chair leg and caught herself with right hand
## 36932 EE states she was cleaning shelves in a closet when she felt a sting to her lt arm.
## 36933 EE states she was cleaning up after the dentist and while cleaning the instruments she did not see one of them sticking out and it poked her in the finger. ()
## 36934 EE states she was closing closet door and caught hand in door
## 36935 EE states she was closing door to cabinet & started to turn around at smae time. Corner of door hit on left side of face.
## 36936 EE states she was closing the door to the office when the door shut on her rt finger
## 36937 EE states she was collecting med filing. EE stooped to pull filing from basket and felt severe sharp pain when raising back up. ()
## 36938 EE states she was coming out of patients room and fell in hallway. Something wet on the floor. ()
## 36939 EE states she was coming to work entering her bldg when she fell on the pavement injuring both knees, rt elbow and twisted her back ()
## 36940 EE states she was coming to work, forgot her access badge & couldn't enter rev bldg from halifax mall entrance; had to walk around bldg to wilmington st entrance. EE turned to walk around to front of bldg & took 2-3 steps, she turned ankle & fell. ()
## 36941 EE states she was conducting count she rasied up and hit head on cabinet corner
## 36942 EE states she was conducting the eis strike tent when she began to stumble and fell on her left side on rocks behind segregation.
## 36943 EE states she was cooking when she burned her rt forearm on steam.
## 36944 EE states she was crossing street and stepped on uneven pavement crack which caused her lt ankle to turn out laterally to the left.
## 36945 EE states she was crushed in the slider, hurt face, head, shoulder, and leg
## 36946 EE states she was de-escalating client when client became frustrated and threw a tray and furniture at employee, hitting, kicking and causing (l) shoulder, elbow and (l) knee injuries. ()
## 36947 EE states she was defending herself from being assaulted causing injury to the rt hand.
## 36948 EE states she was delivering books to library when she fell on rain soaked steps she put out lt-hand to catch herself as she fell.
## 36949 EE states she was departing from work. She was walking to plug in the golf cart & tripped & rell on uneven part of the sidewalk. ()
## 36950 EE states she was directing traffic at football game when a vehicle struck her left arm when she signaled him to stop
## 36951 EE states she was disassembling the road work signs some fiberglass from the sign got into the third finger of her rt hand
## 36952 EE states she was dismantling picture frame & broken glass touched top of middle finger & broke skin.
## 36953 EE states she was doing a locker search, back locked up and she fell hitting head on cement block wall
## 36954 EE states she was doing a routine locker search of an inmates locker when an inmate became bellgeaand hit her repeatedly on her head, face, arms, back
## 36955 EE states she was doing disciplinary hearing, when inmate became aggitated and hit her in the mouth
## 36956 EE states she was doing home visits on adult offe-nders & was proceeding through an intersection w/ green light & another car hit her w/red light.
## 36957 EE states she was doing take- downs in unarmed selfdenfense training case
## 36958 EE states she was drawing blood from an inmate with a butterfly needle and she turned loose of the needle and it flipped back and stuck finger
## 36959 EE states she was drawing blood in b area and was putting butterfly needle in the sharps box and it flipped back up and stuck rt index finger
## 36960 EE states she was driving van and thought she had released the er brakes- pulling and looking down &ran nto the back of a mail van.
## 36961 EE states she was engaged in outdoor activities w/ client, playing racket ball and strained muscle in neck and shoulder
## 36962 EE states she was entering 234 med room and was holding on to the bottom half of the door when the upper half of the door was shut. It caught the 4th finger on the right hand. ()
## 36963 EE states she was entering Ms. Dugan's office, wasclosing the door, and closed it on left hand, injurring left index finger.
## 36964 EE states she was entering buildgin and the auto- matic door was not on and when pulled the door open, she felt a pull under the back of shoulder b
## 36965 EE states she was entering the ??? Building of thelibrary and was observing visitaion and while walking by the rockball table she hit a rod.
## 36966 EE states she was escorting a patient to the quietroom, patient reaches across and scratched her under her nose and kicked her left ankle
## 36967 EE states she was escorting inmate to shower inmate stepped into shower she attempted to uncuff the inmate when he slipped and aganist shower door. ..
## 36968 EE states she was escorting patients from one bldgto another & slipped & fell when going down step, hit her back on stair rail.
## 36969 EE states she was exiting the bldg during a fire drill, stepped off the stepa at the door of the rm b-101 and fell to the ground injuring rt knee, leg, ankle, arms & wrists ()
## 36970 EE states she was exiting the contrl ctr, when she reached the floor, it was covered with strip- per removal, plastic, & sheet, she slipped and fell
## 36971 EE states she was experiencing severe pain in wrists that radiated to her hands
## 36972 EE states she was exposed to TB from a defendant on probation
## 36973 EE states she was exposed to TB.
## 36974 EE states she was exposed to cold tempetures whileperforming job duties. EE states after coming intobldg several times to warm fingers
## 36975 EE states she was exposed to pepper spray
## 36976 EE states she was exposed to pepper spray causing headaches and high blood pressure
## 36977 EE states she was exposed to pink eye while at work.
## 36978 EE states she was exposed to some chemical which has caused respiratory problems.
## 36979 EE states she was exposed to tuberculosis by probationer who tested postive for tuberculosis.
## 36980 EE states she was filing and experienced a severe headache.
## 36981 EE states she was filing, she went to answer phoneand slipped on wet floor and her left foot went under a cabinet that the control unit sits on.
## 36982 EE states she was gettin ga box down from a shlef in closet when the box started to fall and she reached out to catch it when the box hit her finge
## 36983 EE states she was getting a pump on the rack and a filter box fell down and hit her rt eye ()
## 36984 EE states she was getting an inmate's blood pressure during a code blue and the inmate grabbed her lt hand and squeezed it
## 36985 EE states she was getting into a state van when her left foot slipped and fell on her right knee
## 36986 EE states she was getting out of chair, the chair rolled and she caught herself before she fell. She injured her lt knee. **dahr tanoury.. Ag**
## 36987 EE states she was getting out of the car and twisted her ankle.
## 36988 EE states she was getting out of the van when she stepped in a hole and twisted her left ankle. ()
## 36989 EE states she was getting ready to bathe client turned shower water on started to walk out of shower, slipped on mat, hurt rt leg, hit head on flr.
## 36990 EE states she was getting some gloves to chang someone and slipped in some air freshner. And hit the top of her foot. ()
## 36991 EE states she was getting to some boxes of clothesand that when she moved the table, it started to fall against her leg. She bent over and caught it.
## 36992 EE states she was going down stairs and stepped wrong and causing her to fall. Injured lt ankle hand.
## 36993 EE states she was going down stairs to lower h unit and she hit her rt elbow on the slider
## 36994 EE states she was going down the stairs and slippefalling down the steps
## 36995 EE states she was going into records building, fell going up the stairs landed on both hands
## 36996 EE states she was going through decontamination of pepper spray. Injury to lungs.
## 36997 EE states she was going through the first sallyport and the other officer close the door which hit her left arm
## 36998 EE states she was going to the clark's office to pick uo copy of client's defferred agreement she lost balance and fell down four steps
## 36999 EE states she was handling poulty racks and someone else hit another rack, causing the rack to hit her on the hand
## 37000 EE states she was having chest pain
## 37001 EE states she was having tingling sensation in thumb due ti repetitive motion.
## 37002 EE states she was helping a person she car pool w/-- w/ some bags when she lost her balance on the steps & fell backwards landing on her back.
## 37003 EE states she was helping an inmate move the dock board from the food truck and the inmate drop his side of the dock board and the board fell on foot
## 37004 EE states she was hit by an inmate on her lt shoulder area.
## 37005 EE states she was hit by inmate in face for no apparent reason while giving out medicine
## 37006 EE states she was hit in the ribs by two separate clients
## 37007 EE states she was hit on the left shoulder by the slider door.
## 37008 EE states she was hit while keeping two residents apart.
## 37009 EE states she was holding a medication cup in her right hand and offering med's to the patient through the food passage door when the patient grabbed her hand and pulled it thrught the food passage door. Forcing her arm against the frame of the door. ()
## 37010 EE states she was in bathroom when she slipped in water from toilet leak causing her to slide forward with one leg.
## 37011 EE states she was in nci class and was put in head lock when she turned her head inward to get out, she felt a snap in her neck. Her neck popped ()
## 37012 EE states she was in resident bedroom helping her change her soiled diaper and as she was waling around her w/c she slipped on urine that had leaked from her. Falling onto my knee. ()
## 37013 EE states she was in revenue cafeteria when someone bumped into her & stepped on front of her right shoe causing her to fall, injuring her right hip and right pinkie finger. ()
## 37014 EE states she was in route to a mental health appointment when she approached the unit upstairs the slider begain closing arm were impacted in doo
## 37015 EE states she was in route to medication window turned around corner and slammed face into wall
## 37016 EE states she was in sitting position giving pts transfer report via telephone to rn when the wooden board that covers the electric wires poped out of the wall and dropped & struck on both her knees & legs ()
## 37017 EE states she was injured while trying to restraina student--EE was headbutted by the student
## 37018 EE states she was injured while trying to restraina student--the student scratched her on her lt hand/arm
## 37019 EE states she was inspecting the top of wall locker and wanting to take a magazine down and cutting her little finger
## 37020 EE states she was inspecting vehicle entering and exiting, stepped wrong placing too much weight on r foot
## 37021 EE states she was instrcting an unarmed self defense class and was doing the top hand take down and as she went down she pulled and twisted her arm
## 37022 EE states she was inventoring supplies. Boxes of detergent fell on her & she twisted and jerked to try & avoid them
## 37023 EE states she was inventorying books an when removing them from the shelf and scanning the bar code she her a pop in rt shoulder ()
## 37024 EE states she was involved in a motor vehicle accident when another vehicle struck the car from the rear.
## 37025 EE states she was involved in a motor vehicle accident while driving the state vehicle causing back pain
## 37026 EE states she was involved in a motor vehicle accident while transporting an inmate to court house.
## 37027 EE states she was involved in a motor vehicle accident---the car hydroplane on water causing EE to hit a truck from the rear
## 37028 EE states she was involved in a motor vehicle accident--EE is preganant
## 37029 EE states she was involved in a motor vehicle accident--head on collison with another vehicle
## 37030 EE states she was involved in role play during training with another officer, when other officer stood up and table fell over right foot.
## 37031 EE states she was itching severly and being biten, it only occurred during am hours
## 37032 EE states she was kicked by a client on the lt side of neck.
## 37033 EE states she was kicked by pt while escorting them to another room
## 37034 EE states she was kicked in the rt knee by client and also her hair was pulled causing injury to herneck.
## 37035 EE states she was leaving a client's home by the back door after dark when she misjudged the steps and stumbled, twisting her right knee.
## 37036 EE states she was leaving administrative building when she slipped on the top step, falling hitting her knees, legs, wrist, and right shoulder.
## 37037 EE states she was leaving copier room and her finger got caught and it was slammed in the door
## 37038 EE states she was leaving group home going back toclass. She tripped over a piece of concrete on sidewalk causing her to fall.
## 37039 EE states she was leaving office when inmate hit her on right side of head and right elbow with door to storage room
## 37040 EE states she was leaving painting class (an independent course she takes outside of work) when she slipped and fell injuring both rt/lft knee due to lights in building being turend out. ()
## 37041 EE states she was leaving the dci rooma nd slippedon wet floor in front of id office; fell on rt side. Injurinf foot, leg, hand.
## 37042 EE states she was leaving the facility and holdingthe door open for other staff to exist and she fell over the ashtray scraping her elbow and b lt leg
## 37043 EE states she was leaving the home of probationer and stepped into hole due to uneven pavement and twisted her ankle
## 37044 EE states she was lifting boxes of chairs to unpack when one got caught on another box and she pulled it to get it loose straining chest muscles
## 37045 EE states she was lifting food trays fron hand truuck and felt pain in upper arm near her shoulder.
## 37046 EE states she was lifting inmate from a fall, with assistance and strained back.
## 37047 EE states she was lifting item off a shelf when she felt pain in lower back.
## 37048 EE states she was lifting patient from wheelchair onto her walker, patient lost balance, fell onto EE
## 37049 EE states she was lifting patient to bathe & dressee injured left shoulder
## 37050 EE states she was lifting patients personal property on to a cart from shelves. Bags were heavy and pulled a muscle in my lower back and inflammation of disc. ()
## 37051 EE states she was lifting soiled laundry to put in the bin and strained her back
## 37052 EE states she was locking door when the door slammed back on her. EE caught door with her hand & feltpain.
## 37053 EE states she was looking for reagent on the chemical supply shelves and developed a respirator inalation
## 37054 EE states she was looking out window of vending truck into mirror trying to get an eyelash out of eye when foot slipped off stop down catching wrist
## 37055 EE states she was making home visits. She was stop-ped, attempting to make a left turn, a truck came up behind her and hit her in the rear
## 37056 EE states she was mopping and felt pain in rt hand
## 37057 EE states she was moving a cow to a different group, lifted the gate and it fell onto her left foot, due to broken hinge on gate. ()
## 37058 EE states she was observing the inmates via camera when one of the inmates broke away from custody, jumped over, the nurses station, EE says her chair rolled away whgen she was getting away and slipped into the cabinents ()
## 37059 EE states she was on her way back to the kitchen office when she slipped on red top kitchen floor and fell down
## 37060 EE states she was on her way to work sitting at syop light car hit her from behind
## 37061 EE states she was on sidewalk coming from ruffin hall when she stepped up on sidewalk & grass lost balance & felt sharp pain in left foot. ()
## 37062 EE states she was on the firing range firing the shotgun
## 37063 EE states she was on unit floor spraying acid air freshner and the spray got in her eye. ()
## 37064 EE states she was opening a firedoor and the door came back and hit EE on head.
## 37065 EE states she was opening gate for vehicle when the gate stabilizer slammed on her right thumb
## 37066 EE states she was opening inmate mail and came in contact w/ a vial which contained a yellow liquid which was leaking.
## 37067 EE states she was opening lock on dorm supply closet when she thought someone was coming up be hind her. Lock fell and hit her on the head.
## 37068 EE states she was opening the folding table to fold laundry and her rt index finger got caught in table causing a blood blister
## 37069 EE states she was operating a floor machine, tryingto maneuver it around a corner when she twisted her lower back.
## 37070 EE states she was operating a state owned van whena car pulled out on the intersection and the van was unable to avoid a collsion, striking car
## 37071 EE states she was operating lettuce chopping machine her rt forefinger hit blade
## 37072 EE states she was operating recycle plastic at recyle centers and went to step up on truck lift and left foot slipped causing leg to strike truck edge
## 37073 EE states she was out on road squad in the woods watching inmates as assigned when she came into contact with red bugs/chiggers.
## 37074 EE states she was outside on break when she was bitten multiply times by a bee ()
## 37075 EE states she was participating in basic training and was injured by the shotgun recoil **atty rep**
## 37076 EE states she was passing medications when the phone rang when she turned to answer the phone her foot caught in the step stool and caused her to fall
## 37077 EE states she was passing out medications in seg unit and she was splashed in the face with an unknown liquid
## 37078 EE states she was passing out meds and was about to get supplies for a dressing change when she fell. EE states she can't remember if leg gave way or rember falling ()
## 37079 EE states she was passing through b/t food cart and the wall and hit her upper thigh hip on the frap door handle
## 37080 EE states she was patroling k&l blocks of dorm 4 &breathed in fumes from various cleaners and paint.
## 37081 EE states she was performing count in b-dorm and as she was coming down stairs, ankle popped
## 37082 EE states she was picking up a box off the floor when her rt wrist struck the corner of her desk.
## 37083 EE states she was picking up a mixing bowl and felt her rt hand pull.
## 37084 EE states she was placing files in the file cabinet when the side of the file cut her finger.
## 37085 EE states she was preparing cleaning supplies for patients am cleaning and chemical splashed into eeeyes. She was not wearing goggles.
## 37086 EE states she was preparing food for the district cabinet and cut her finger on a blade
## 37087 EE states she was preparing for meeting when she turned in opposite direction lost footing & fell injuring lft elbow, lft knee, rt knee, rt hip & rt shoulder ()
## 37088 EE states she was preparing to clean operatory & was stuck through her glove and into the palm of her rt. Hand below the little finger, dirty scaler
## 37089 EE states she was preparing to fire a 12 gauge shotgun. She fired the weapon, it kicked back veryhard on her right shoulder.
## 37090 EE states she was preping milk on trayline, pickedup crate of milk and felt sharp pain in her upper back
## 37091 EE states she was pulling a barrel of powder soap off shelf when it dropped on her lt foot
## 37092 EE states she was pulling a check from the bottom drawer of a file cabinet and puller her lower back
## 37093 EE states she was pulling charts to file paperwork when she pulled the chart out with one hand and twisted her wrist. ()
## 37094 EE states she was pulling coffe pot on a cart fromthe dining room to the admin. Building conf. Rm. Handle came off cart and pot fell over.
## 37095 EE states she was punctured by a needle when the syringe slipped.
## 37096 EE states she was pushed against a wall by an inmate injurying her chest/back area
## 37097 EE states she was pushing a cart loaded with 30lbsboxes of bar. B. Q one box fell and hit left hand.
## 37098 EE states she was pushing a medical records cart when some of the charts fell of the cart and when she stopped to pick up the charts she turned and came down on left ankle and it twisted. ()
## 37099 EE states she was putting a bag of dirty clothes inside the clothes house when she felt something pull of her rt arm.
## 37100 EE states she was putting a client in her chair. The client started to go into a ? And EE's hand struck clients chair--bruised and cut on lft hand
## 37101 EE states she was putting a jug of water on top of file cabinet and when she reached up she slipped and fell
## 37102 EE states she was putting charts on shelf when she felt something pop in lt shoulder
## 37103 EE states she was putting client to bed and her finger was caught under the client bending her finger back.
## 37104 EE states she was putting client to bed when she pulled on the bedrails & thumb got yanked back while pulling the rails up
## 37105 EE states she was putting expired lab tubes in biohazard container and received a needlestick to the right thumb
## 37106 EE states she was putting jugs in a container for storage. When I went to push container back broke my left thumb nail back behind the quick. ()
## 37107 EE states she was putting silverware in drawer and thumb hit foot processer blade--laceration of rt thumb
## 37108 EE states she was qualifying with shotgun the shotgun slipped off her rt shoulder
## 37109 EE states she was re-entering building and she slipped on the wet floor causing her hand to become lodged in the hinge of the door.
## 37110 EE states she was reaching for a paper towel on a cabient behind her desk she rolled her chair toward cabinet and while reaching chair tipped over
## 37111 EE states she was reaching for a spray bottle on top of the shelf which contains terminator solution. Bottle fell down and chemical fell in eyes ()
## 37112 EE states she was reaching for the coffee pot it was stuck and coffee from filter area had water in it and it spilled on her right hand ()
## 37113 EE states she was reared end in a car accident by another vehicle
## 37114 EE states she was recaping an insulin syringe and got needle stick in palm of hand
## 37115 EE states she was redirect an agitated client fromleaving the area. Client fell backwards hitting eeright knee with her helmet
## 37116 EE states she was refilling the cleaning solution bottle, and accidently sprayed the chemical solution into her r eye
## 37117 EE states she was relieving the first shift offcier and during the process she reached for the mini 14 shotgun her finger got a splinter
## 37118 EE states she was removing a heplock from a patient when blood splashed in her lt eye. ..
## 37119 EE states she was removing a leg rest from a wheelchair and her middle finger was mashed on the lever.
## 37120 EE states she was removing some staples out of a staple remover and staple remover slipped and remover cut EE thumb.
## 37121 EE states she was responding to a medical emergency on the 6th floor and while running she came downand turned her foot and it gave way
## 37122 EE states she was returning for picking up police reports--exiting her car--walking into bldg lost balance--could not regain it-fell on paved drive
## 37123 EE states she was returning from lunch & walking across lawson st from parking deck when she lost her footing and slipped on the sidewalk causing injury rt forearm, hand and left knee ()
## 37124 EE states she was returning office to normal conditions following hurricane--moving equipment and supplies when she experienced severe back pain
## 37125 EE states she was returning to th control area of the gatehouse when an unknown insect stung her on the left side of her upper neck.
## 37126 EE states she was riding the elevator to the 2nd floor when it dropped and jarred her back ()
## 37127 EE states she was rolling patient during rounds afterwards she had back pain
## 37128 EE states she was runnig after patient and fell hurting knee and leg.
## 37129 EE states she was running to assist with a code and fell on the concrete sidewalk
## 37130 EE states she was running to prevent a pt from attacking another pt and twisted her knee.
## 37131 EE states she was screening fuel in several dump trucks parked in a row on southbound side of us1 in franklin county, nc. Roadside was covered with grass & weeds & was muddy due to rain. (see additional notes below) ()
## 37132 EE states she was scrubbing shower on v ward-- with broom, when her feet slid out from under her.
## 37133 EE states she was searching contraband she cut herright thumb on a razor blade that was hidden in a battery pack
## 37134 EE states she was sitting at her desk and trying to roll her chair closer to computer & accidentially ran over her left big toes at the joint per EE. ()
## 37135 EE states she was sitting down and leaned against the wall and hit her head on the corner of a metal box
## 37136 EE states she was sitting in her chair which has rollers on the bottom. The chair slipped out from under her resulting in her falling to the tile floor
## 37137 EE states she was sitting on the left side of state vehicle in the last seat, vehicle hit a pot hole and her neck started hurting.
## 37138 EE states she was sprayed with window washing fluid in both eyes.
## 37139 EE states she was stabbed by a pt with an ink pen on the rt knee.
## 37140 EE states she was standing at copier on 2nd floor near workstation 2410 making copies as requested from after 8:30 am until 2:30 pm on 01/07/11 and again 03/10/11 from 9:30 am until 12:30 pm. (see below) ()
## 37141 EE states she was standing beside the mail van when a ladder fell and hit her in the back of her head on the left side. ()
## 37142 EE states she was standing in front of stall when stall door fell striking her on her l lower forearm
## 37143 EE states she was standing on the back porch of the kitchen when inmate opened the back door striking her lt elbow with door
## 37144 EE states she was standing on the edge of bed to clean dust off curtains and when she was stepping down her foot tangled and fell hitting chair
## 37145 EE states she was stepping down steps and her rt foot slipped catching herself on the rails and all of her weight landed on her lt side
## 37146 EE states she was stepping off of porch & twisted her ankle
## 37147 EE states she was stepping out of door to her office when her lt foot slipped causing her to fall.
## 37148 EE states she was stoped at a stoplight and was rear ended by another vehcile.
## 37149 EE states she was storing supplies that had been used @ meeting as she plact lt. Leg on top of box lt leg fell & hit 2nd step of stage ()
## 37150 EE states she was struck by a door she was holdingopen as she was pushing a cart thru the doorway EE filed for fml benefits beginning 6-11-08.
## 37151 EE states she was struck by a rock while observinga softball team.
## 37152 EE states she was struck by an inmate in the stomach and on the back of the head
## 37153 EE states she was struck in the back of the head by a student.
## 37154 EE states she was struck in the chest area by a client.
## 37155 EE states she was struck in the chest area by a door handle
## 37156 EE states she was struck in the face by client causing glasses to break.
## 37157 EE states she was struck in the face with a wire hanger by a student
## 37158 EE states she was struck in the head with a rock thrown by an inmate
## 37159 EE states she was struck in the rt eye by a client
## 37160 EE states she was struck on the head by a basketball.
## 37161 EE states she was struck on the head by a pt.
## 37162 EE states she was strucked and kicked by a pt. Injuring her lt and rt arm.
## 37163 EE states she was stuck by a needle while removinglabel from barrel to put on inmate record.
## 37164 EE states she was stuck in the face by an inmate injuring her face and cheek area
## 37165 EE states she was stuck in the palm of rt hand with a needle
## 37166 EE states she was stung by a bee on her rt hand.
## 37167 EE states she was stung by a bee on the lt arm
## 37168 EE states she was stung by a bee on the lt upper leg
## 37169 EE states she was stung by a bee under the chin.
## 37170 EE states she was stung on the lt ring finger by a bee. *****do not pay any medical bills*****
## 37171 EE states she was stung or bitten by an unknown insect.
## 37172 EE states she was supervising a group of patients and was talking with a patient who was upset. Pt turned &